From 2d737c2a2cde52ed3300dddffb4fe784f2933d4c Mon Sep 17 00:00:00 2001 From: Thaison Nguyen Date: Fri, 17 Dec 2021 15:19:15 +0100 Subject: [PATCH 1/3] change some links --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index c686819..a0787e7 100644 --- a/README.md +++ b/README.md @@ -5,11 +5,11 @@ # VSCodium PortablePortableApps.com - Your Digital Life, Anywhere

- GitHub release (latest by date) - GitHub Releases - GitHub All Releases - GitHub repo size - GitHub + GitHub release (latest by date) + GitHub Releases + GitHub All Releases + GitHub repo size + GitHub

VSCodium is a code editor redefined and optimized for building and debugging modern web and cloud applications with binary releases of VS Code without MS branding/telemetry/licensing. @@ -25,8 +25,8 @@ Download [the latest version of the installer][D1]. All other downloads are available [in the Releases section][D2]. VSCodium Portable is packaged in an installer, complete zip file and always download the last version of VSCodium. -[D1]: https://github.com/Makazzz/VSCodiumPortable/releases/latest -[D2]: https://github.com/Makazzz/VSCodiumPortable/releases +[D1]: https://github.com/thosoo/VSCodiumPortable/releases/latest +[D2]: https://github.com/thosoo/VSCodiumPortable/releases ## Features @@ -49,7 +49,7 @@ is packaged in an installer, complete zip file and always download the last vers ## License -* VSCodium Portable released with the [MIT license](https://raw.githubusercontent.com/Makazzz/VSCodiumPortable/master/LICENSE). +* VSCodium Portable released with the [MIT license](https://raw.githubusercontent.com/thosoo/VSCodiumPortable/master/LICENSE). * PortableApps.com Launcher released with the [GPL v2.0 license](https://raw.githubusercontent.com/Makazzz/VSCodiumPortable/master/VSCodiumPortable/Other/Source/LauncherLicense.txt). * VSCodium released with the [MIT license](https://raw.githubusercontent.com/VSCodium/vscodium/master/LICENSE). * Visual Studio Code released with the [MIT license](https://raw.githubusercontent.com/microsoft/vscode/master/LICENSE.txt). From 37efacd7e7c12f74afcf26c9b35a1ebf0dc78dfd Mon Sep 17 00:00:00 2001 From: Thaison Nguyen Date: Fri, 17 Dec 2021 15:23:29 +0100 Subject: [PATCH 2/3] add license --- LICENSE | 20 ++++++++++++++++++++ README.md | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index 8e698af..1bfe0a1 100644 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,25 @@ MIT License +Copyright (c) 2021 thosoo + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + Copyright (c) 2019 Makazzz Permission is hereby granted, free of charge, to any person obtaining a copy diff --git a/README.md b/README.md index a0787e7..d5efb49 100644 --- a/README.md +++ b/README.md @@ -50,6 +50,6 @@ is packaged in an installer, complete zip file and always download the last vers ## License * VSCodium Portable released with the [MIT license](https://raw.githubusercontent.com/thosoo/VSCodiumPortable/master/LICENSE). -* PortableApps.com Launcher released with the [GPL v2.0 license](https://raw.githubusercontent.com/Makazzz/VSCodiumPortable/master/VSCodiumPortable/Other/Source/LauncherLicense.txt). +* PortableApps.com Launcher released with the [GPL v2.0 license](https://raw.githubusercontent.com/thosoo/VSCodiumPortable/master/VSCodiumPortable/Other/Source/LauncherLicense.txt). * VSCodium released with the [MIT license](https://raw.githubusercontent.com/VSCodium/vscodium/master/LICENSE). * Visual Studio Code released with the [MIT license](https://raw.githubusercontent.com/microsoft/vscode/master/LICENSE.txt). From 09fad0a4fc64b44dc585ac5ee3ce0f23c422cbf9 Mon Sep 17 00:00:00 2001 From: Thaison Nguyen Date: Sat, 18 Dec 2021 09:03:53 +0100 Subject: [PATCH 3/3] Fix bump script --- bump.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bump.ps1 b/bump.ps1 index ee6f1a7..756aa4a 100644 --- a/bump.ps1 +++ b/bump.ps1 @@ -10,11 +10,11 @@ $tag = (Invoke-WebRequest $releasesUri | ConvertFrom-Json).tag_name $appinfo = Get-IniContent ".\VSCodiumPortable\App\AppInfo\appinfo.ini" $appinfo["Version"]["PackageVersion"]=-join($tag,".0") $appinfo["Version"]["DisplayVersion"]=$tag -$appinfo | Out-IniFile -Force -FilePath ".\VSCodiumPortable\App\AppInfo\appinfo.ini" +$appinfo | Out-IniFile -Force -Encoding ASCII -Pretty -FilePath ".\VSCodiumPortable\App\AppInfo\appinfo.ini" $installer = Get-IniContent ".\VSCodiumPortable\App\AppInfo\installer.ini" $installer["DownloadFiles"]["DownloadURL"]=-join("https://github.com/VSCodium/vscodium/releases/download/",$tag,"/VSCodium-win32-ia32-",$tag,".zip") $installer["DownloadFiles"]["DownloadFilename"]=-join("VSCodium-win32-ia32-",$tag,".zip") $installer["DownloadFiles"]["Download2URL"]=-join("https://github.com/VSCodium/vscodium/releases/download/",$tag,"/VSCodium-win32-x64-",$tag,".zip") $installer["DownloadFiles"]["Download2Filename"]=-join("VSCodium-win32-x64-",$tag,".zip") -$installer | Out-IniFile -Force -FilePath ".\VSCodiumPortable\App\AppInfo\installer.ini" \ No newline at end of file +$installer | Out-IniFile -Force -Encoding ASCII -Pretty -FilePath ".\VSCodiumPortable\App\AppInfo\installer.ini"