-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from ThePorgs/update/1719846963
Resources update 01-Jul-24
- Loading branch information
Showing
47 changed files
with
4,162 additions
and
3,954 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
from lazagne.config.manage_modules import get_modules_names | ||
from lazagne.softwares.browsers.chromium_browsers import chromium_based_module_location | ||
from lazagne.softwares.browsers.firefox_browsers import mozilla_module_location | ||
|
||
all_hidden_imports_module_names = get_modules_names() + [mozilla_module_location, chromium_based_module_location] | ||
hiddenimports = [package_name for package_name, module_name in all_hidden_imports_module_names] | ||
|
||
if __name__ == "__main__": | ||
print("\r\n".join(hiddenimports)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# -*- mode: python ; coding: utf-8 -*- | ||
|
||
|
||
a = Analysis( | ||
['laZagne.py'], | ||
pathex=[], | ||
binaries=[], | ||
datas=[], | ||
hiddenimports=[], | ||
hookspath=['.'], | ||
hooksconfig={}, | ||
runtime_hooks=[], | ||
excludes=[], | ||
noarchive=False, | ||
optimize=0, | ||
) | ||
pyz = PYZ(a.pure) | ||
|
||
exe = EXE( | ||
pyz, | ||
a.scripts, | ||
a.binaries, | ||
a.datas, | ||
[], | ||
name='laZagne', | ||
debug=False, | ||
bootloader_ignore_signals=False, | ||
strip=False, | ||
upx=True, | ||
upx_exclude=[], | ||
runtime_tmpdir=None, | ||
console=True, | ||
disable_windowed_traceback=False, | ||
argv_emulation=False, | ||
target_arch=None, | ||
codesign_identity=None, | ||
entitlements_file=None, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
11 changes: 11 additions & 0 deletions
11
linux/LaZagne/lazagne/softwares/mails/thunderbird_mails.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
from lazagne.config.soft_import_module import soft_import | ||
|
||
mozilla_module_location = "lazagne.softwares.browsers.mozilla", "Mozilla" | ||
Mozilla = soft_import(*mozilla_module_location) | ||
|
||
# Name, path | ||
thunderbird_mails = [ | ||
(u'thunderbird', u'.thunderbird'), | ||
] | ||
|
||
thunderbird_mails = [Mozilla(browser_name=name, path=path, category='mails') for name, path in thunderbird_mails] |
Binary file not shown.
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
from lazagne.config.manage_modules import get_modules_names | ||
from lazagne.softwares.browsers.chromium_browsers import chromium_based_module_location | ||
from lazagne.softwares.browsers.firefox_browsers import mozilla_module_location | ||
|
||
all_hidden_imports_module_names = get_modules_names() + [mozilla_module_location, chromium_based_module_location] | ||
hiddenimports = [package_name for package_name, module_name in all_hidden_imports_module_names] | ||
|
||
if __name__ == "__main__": | ||
print("\r\n".join(hiddenimports)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,3 +40,4 @@ exe = EXE(pyz, | |
upx_exclude=[], | ||
runtime_tmpdir=None, | ||
console=True ) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
from lazagne.config.manage_modules import get_modules_names | ||
from lazagne.softwares.browsers.chromium_browsers import chromium_based_module_location | ||
from lazagne.softwares.browsers.firefox_browsers import mozilla_module_location | ||
|
||
all_hidden_imports_module_names = get_modules_names() + [mozilla_module_location, chromium_based_module_location] | ||
hiddenimports = [package_name for package_name, module_name in all_hidden_imports_module_names] | ||
|
||
if __name__ == "__main__": | ||
print("\r\n".join(hiddenimports)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,6 +32,6 @@ exe = EXE( | |
name='lazagne.exe', | ||
debug=False, | ||
strip=None, | ||
upx=True, | ||
upx=False, | ||
console=True | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.