-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
49 changed files
with
2,039 additions
and
48 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 |
---|---|---|
@@ -1,14 +1,36 @@ | ||
import os | ||
|
||
# Build the windows from the .ui file | ||
os.system('./_scripts/build-windows.sh') | ||
#os.system('./_scripts/build-windows.sh') | ||
|
||
# Build the translations | ||
os.system('./_scripts/build-translations.sh') | ||
|
||
# Activate Custom Debug Settings | ||
debug = True | ||
# debug = False | ||
|
||
# Run the app | ||
os.system('python -m zapzap ' + ('--zapDebug' if debug == | ||
True else '')) | ||
# os.system('python -m zapzap ' + ('--zapDebug' if debug == | ||
# True else '')) | ||
""" import os | ||
def get_linux_distro(): | ||
distro_name = "Desconhecida" | ||
distro_id = "0" | ||
if os.path.exists("/etc/os-release"): | ||
with open("/etc/os-release") as f: | ||
for line in f: | ||
#print(line) | ||
if line.startswith("PRETTY_NAME"): | ||
# Extrair o nome da distribuição | ||
distro_name = line.split("=")[1].strip().replace('"', '') | ||
#break | ||
if line.startswith("ID"): | ||
# Extrair o ID da distribuição | ||
distro_id = line.split("=")[1].strip().replace('"', '') | ||
#break | ||
return distro_name, distro_id | ||
print(f"\nDistro: {get_linux_distro()}\n") """ |
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,4 +40,5 @@ am | |
el | ||
sr | ||
da | ||
bn | ||
bn | ||
bs |
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
Oops, something went wrong.