Download redist files of VS2015
authorCheng Zhao <zcbenz@gmail.com>
Sun, 15 May 2016 01:30:19 +0000 (10:30 +0900)
committerCheng Zhao <zcbenz@gmail.com>
Sun, 15 May 2016 01:30:19 +0000 (10:30 +0900)
script/create-dist.py
script/update-external-binaries.py

index e25845432c774c33bf718e56b9291293b7eec369..56a42e794e44af46ba216c60f22aab0ae116fb6a 100755 (executable)
@@ -36,8 +36,7 @@ TARGET_BINARIES = {
     'icudtl.dat',
     'libEGL.dll',
     'libGLESv2.dll',
-    'msvcp120.dll',
-    'msvcr120.dll',
+    'msvcp140.dll',
     'ffmpeg.dll',
     'node.dll',
     'content_resources_200_percent.pak',
@@ -45,7 +44,8 @@ TARGET_BINARIES = {
     'xinput1_3.dll',
     'natives_blob.bin',
     'snapshot_blob.bin',
-    'vccorlib120.dll',
+    'vccorlib140.dll',
+    'vcruntime140.dll',
   ],
   'linux': [
     PROJECT_NAME,  # 'electron'
index fae268ea8cb77b12d2a10a7bf806ba4232bca32f..35e6325adfaea2c326ca203fc67cef9baa40ea41 100755 (executable)
@@ -8,7 +8,7 @@ from lib.config import get_target_arch
 from lib.util import safe_mkdir, rm_rf, extract_zip, tempdir, download
 
 
-VERSION = 'v0.8.0'
+VERSION = 'v1.0.0'
 SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
 FRAMEWORKS_URL = 'http://github.com/atom/atom-shell-frameworks/releases' \
                  '/download/' + VERSION
@@ -30,7 +30,7 @@ def main():
     download_and_unzip('Squirrel')
   elif sys.platform in ['cygwin', 'win32']:
     download_and_unzip('directxsdk-' + get_target_arch())
-    download_and_unzip('vs2012-crt-' + get_target_arch())
+    download_and_unzip('vs2015-crt-' + get_target_arch())
 
   with open(version_file, 'w') as f:
     f.write(VERSION)