cleanup some leftover files; remove ci for the time being – needs to be rewritten

This commit is contained in:
ohfp 2021-02-04 23:46:31 +01:00
parent ec10c4e6f5
commit cc443a5cba
No known key found for this signature in database
GPG key ID: 2954CC8585E27A3F
4 changed files with 0 additions and 75 deletions

View file

@ -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

BIN
7za.exe

Binary file not shown.

View file

@ -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/

View file

@ -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