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 c686819..d5efb49 100644 --- a/README.md +++ b/README.md @@ -5,11 +5,11 @@ # VSCodium Portable
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). -* PortableApps.com Launcher released with the [GPL v2.0 license](https://raw.githubusercontent.com/Makazzz/VSCodiumPortable/master/VSCodiumPortable/Other/Source/LauncherLicense.txt). +* 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/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). 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"