v97.0.2
This commit is contained in:
parent
58b2271e34
commit
22da218bb4
4 changed files with 7 additions and 5 deletions
|
|
@ -5,7 +5,7 @@
|
|||
* Install via _[chocolatey](https://community.chocolatey.org/packages/librewolf)_: `choco install librewolf`
|
||||
* or install via _winget_: `winget install librewolf`
|
||||
* **If your LibreWolf crashes on startup**, you probably miss the right [Visual C++ Runtime](https://support.microsoft.com/en-us/topic/the-latest-supported-visual-c-downloads-2647da03-1eea-4433-9aff-95f26a218cc0). You want the _Visual Studio 2015, 2017 and 2019_ version for **x64**, which would be **[this file](https://aka.ms/vs/16/release/vc_redist.x64.exe)**.
|
||||
* The .zip files are _'portable zip files'_ that allows for a user profile in the extracted zip file folders. It is _self-contained_.
|
||||
* The latest type **.zip files** are _'portable zip files'_ that allows for a user profile in the extracted zip file folders. It is _self-contained_ and runs on an usb stick.
|
||||
|
||||
# Where to submit tickets
|
||||
|
||||
|
|
|
|||
6
mk.py
6
mk.py
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
import os,sys,subprocess,os.path
|
||||
|
||||
bash_loc = 'd:/mozilla-build/msys/bin/bash.exe'
|
||||
bash_loc = 'c:/mozilla-build/msys/bin/bash.exe'
|
||||
do_zip = False
|
||||
|
||||
# native()/bash()/exec() utility functions
|
||||
|
|
@ -165,7 +165,9 @@ def artifacts():
|
|||
exec('cp -v LibreWolf-Portable/LibreWolf-Portable.* LibreWolf-Portable/*.exe librewolf-{}/'.format(version))
|
||||
os.chdir('librewolf-{}'.format(version))
|
||||
# installed from: https://www.autohotkey.com/
|
||||
exec('"c:/Program Files/AutoHotkey/Compiler/Ahk2Exe.exe" /in LibreWolf-Portable.ahk /icon LibreWolf-Portable.ico')
|
||||
exec('echo \\"c:/Program Files/AutoHotkey/Compiler/Ahk2Exe.exe\\" /in LibreWolf-Portable.ahk /icon LibreWolf-Portable.ico > tmp.bat')
|
||||
exec('cmd /c tmp.bat')
|
||||
exec('rm -f tmp.bat')
|
||||
# let's remove the ahk and icon and embedded executables
|
||||
exec('rm -f LibreWolf-Portable.ahk LibreWolf-Portable.ico dejsonlz4.exe jsonlz4.exe')
|
||||
os.chdir('..')
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
1
|
||||
1
|
||||
|
|
|
|||
2
version
2
version
|
|
@ -1 +1 @@
|
|||
97.0.1
|
||||
97.0.2
|
||||
Loading…
Add table
Reference in a new issue