diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 11f0811..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,14 +0,0 @@ -stages: - - build - -build_job: - stage: build - script: - - '& git submodule update --init --recursive' #pull the settings submodule - - '& $env:CI_PROJECT_DIR\package.ps1' - artifacts: - expire_in: 1 yrs - paths: - - librewolf - tags: - - windows diff --git a/7za.exe b/7za.exe deleted file mode 100644 index 2bdd57d..0000000 Binary files a/7za.exe and /dev/null differ diff --git a/License.txt b/License.txt deleted file mode 100644 index 48dc6c6..0000000 --- a/License.txt +++ /dev/null @@ -1,31 +0,0 @@ - 7-Zip Extra - ~~~~~~~~~~~ - License for use and distribution - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - - Copyright (C) 1999-2019 Igor Pavlov. - - 7-Zip Extra files are under the GNU LGPL license. - - - Notes: - You can use 7-Zip Extra on any computer, including a computer in a commercial - organization. You don't need to register or pay for 7-Zip. - - - GNU LGPL information - -------------------- - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You can receive a copy of the GNU Lesser General Public License from - http://www.gnu.org/ - diff --git a/package.ps1 b/package.ps1 deleted file mode 100644 index f33e289..0000000 --- a/package.ps1 +++ /dev/null @@ -1,30 +0,0 @@ -# delete old things... -Remove-Item -Path firefox.exe -Force -Remove-Item -Path librewolf -Force - - -# windows download version lastest win64 -$url = "https://download.mozilla.org/?product=firefox-latest-ssl&os=win64" - -# windows download version lastest win32 -#$url = "https://download.mozilla.org/?product=firefox-latest-ssl&os=win" - -$downloadfile = "$PSScriptRoot\firefox.exe" - -Write-Output "Downloading to $downloadfile" - -# download firefox -Invoke-WebRequest -Uri $url -outfile $downloadfile - -Write-Output "Extracting $downloadfile to librewolf" -# extract with 7zip -& "$PSScriptRoot\7za.exe" x -olibrewolf .\firefox.exe - -Write-Output "Delete files with privacy....." -# remove contact with mothership -Remove-Item -Path librewolf\core\crashreporter.exe -Force -Remove-Item -Path librewolf\core\updater.exe -Force -Remove-Item -Path librewolf\core\pingsender.exe -Force - -Write-Output "Copy librewolf settings" -Copy-Item -Path "$PSScriptRoot\settings\*" -Destination "$PSScriptRoot\librewolf\core" -Recurse -force \ No newline at end of file