Browse Source

fix merge conflicts

Vicente Reyes 6 years ago
parent
commit
1c13ffb556
6 changed files with 11 additions and 8 deletions
  1. 1 1
      .travis.yml
  2. 1 1
      README.md
  3. 2 2
      VSCodium-AppImage-Recipe.yml
  4. 2 2
      build.sh
  5. 4 1
      update_version.sh
  6. 1 1
      win32-build.yml

+ 1 - 1
.travis.yml

@@ -13,7 +13,7 @@ matrix:
     - os: osx
     - os: osx
 
 
 language: node_js
 language: node_js
-node_js: "8"
+node_js: "10"
 
 
 before_install:
 before_install:
   - curl -o- -L https://yarnpkg.com/install.sh | bash
   - curl -o- -L https://yarnpkg.com/install.sh | bash

+ 1 - 1
README.md

@@ -40,7 +40,7 @@ If you are on a Mac and have [Homebrew](https://brew.sh/) installed:
 brew cask install vscodium
 brew cask install vscodium
 ```
 ```
 
 
-_Note: if you see "App can’t be opened because it is from an unidentified developer" when opening VSCodium the first time, you can right-click the application and choose Open. This should only be required the first time opening on a Mac._
+_Note for Mac OS X Mojave users: if you see "App can't be opened because Apple cannot check it for malicious software" when opening VSCodium the first time, you can right-click the application and choose Open. This should only be required the first time opening on Mojave._
 
 
 #### <a id="install-with-choco"></a>Install with Chocolatey (Windows)
 #### <a id="install-with-choco"></a>Install with Chocolatey (Windows)
 If you use Windows and have [Chocolatey](https://chocolatey.org) installed (thanks to [@Thilas](https://github.com/Thilas)):
 If you use Windows and have [Chocolatey](https://chocolatey.org) installed (thanks to [@Thilas](https://github.com/Thilas)):

+ 2 - 2
VSCodium-AppImage-Recipe.yml

@@ -12,7 +12,7 @@ ingredients:
     - code
     - code
     - libgconf2-4
     - libgconf2-4
   dist: trusty
   dist: trusty
-  sources: 
+  sources:
     - deb http://archive.ubuntu.com/ubuntu/ trusty main universe
     - deb http://archive.ubuntu.com/ubuntu/ trusty main universe
   script:
   script:
     - pwd
     - pwd
@@ -32,4 +32,4 @@ script:
   - convert vscodium.png -resize 32x32 usr/share/icons/hicolor/32x32/apps/vscodium.png
   - convert vscodium.png -resize 32x32 usr/share/icons/hicolor/32x32/apps/vscodium.png
   - convert vscodium.png -resize 24x24 usr/share/icons/hicolor/24x24/apps/vscodium.png
   - convert vscodium.png -resize 24x24 usr/share/icons/hicolor/24x24/apps/vscodium.png
   - convert vscodium.png -resize 22x22 usr/share/icons/hicolor/22x22/apps/vscodium.png
   - convert vscodium.png -resize 22x22 usr/share/icons/hicolor/22x22/apps/vscodium.png
-  - ( cd usr/bin/ ; ln -s ../share/vscodium/vscodium  . )
+  - ( cd usr/bin/ ; ln -s ../share/vscodium/codium  . )

+ 2 - 2
build.sh

@@ -22,7 +22,7 @@ if [[ "$SHOULD_BUILD" == "yes" ]]; then
   nameShort='setpath(["nameShort"]; "VSCodium")'
   nameShort='setpath(["nameShort"]; "VSCodium")'
   nameLong='setpath(["nameLong"]; "VSCodium")'
   nameLong='setpath(["nameLong"]; "VSCodium")'
   linuxIconName='setpath(["linuxIconName"]; "vscodium")'
   linuxIconName='setpath(["linuxIconName"]; "vscodium")'
-  applicationName='setpath(["applicationName"]; "vscodium")'
+  applicationName='setpath(["applicationName"]; "codium")'
   win32MutexName='setpath(["win32MutexName"]; "vscodium")'
   win32MutexName='setpath(["win32MutexName"]; "vscodium")'
   win32DirName='setpath(["win32DirName"]; "VSCodium")'
   win32DirName='setpath(["win32DirName"]; "VSCodium")'
   win32NameVersion='setpath(["win32NameVersion"]; "VSCodium")'
   win32NameVersion='setpath(["win32NameVersion"]; "VSCodium")'
@@ -45,7 +45,7 @@ if [[ "$SHOULD_BUILD" == "yes" ]]; then
     # unless the app name is code-oss
     # unless the app name is code-oss
     # as we are renaming the application to vscodium
     # as we are renaming the application to vscodium
     # we need to edit a line in the post install template
     # we need to edit a line in the post install template
-    sed -i "s/code-oss/vscodium/" resources/linux/debian/postinst.template
+    sed -i "s/code-oss/codium/" resources/linux/debian/postinst.template
   fi
   fi
 
 
   if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
   if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then

+ 4 - 1
update_version.sh

@@ -136,6 +136,9 @@ git pull origin master # in case another build just pushed
 git add .
 git add .
 dateAndMonth=`date "+%D %T"`
 dateAndMonth=`date "+%D %T"`
 git commit -m "Travis update: $dateAndMonth (Build $TRAVIS_BUILD_NUMBER)"
 git commit -m "Travis update: $dateAndMonth (Build $TRAVIS_BUILD_NUMBER)"
-git push origin master --quiet
+if ! git push origin master --quiet; then
+  git pull origin master
+  git push origin master --quiet
+fi
 
 
 cd ..
 cd ..

+ 1 - 1
win32-build.yml

@@ -1,7 +1,7 @@
 steps:
 steps:
 - task: NodeTool@0 
 - task: NodeTool@0 
   inputs:
   inputs:
-    versionSpec: '8.x'
+    versionSpec: '10.x'
 - script: |
 - script: |
     choco install jq 
     choco install jq 
   displayName: 'install jq from choco'
   displayName: 'install jq from choco'