Skip to content

Commit 7432093

Browse files
committed
Bump Version to Beta 7.
1 parent 04a31ca commit 7432093

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

Converter.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,6 @@
44
from importlib import reload
55
import sys
66
import os
7-
import threading
8-
import time
9-
target="com.pyquick.converter"
10-
from patch import enable
11-
enable(target)
127
from PySide6.QtWidgets import (
138
QApplication,
149
QWidget,

build_nk.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@ def compile_gui():
2828
# Nuitka compilation command
2929
cmd = [
3030
sys.executable, "-m", "nuitka",
31-
31+
"--standalone",
3232
"--assume-yes-for-downloads", # Assume yes for downloads
33-
"--mode=app",
3433
"--clang",
3534
"--lto=no",
35+
"--macos-create-app-bundle", # Create macOS app bundle
3636
#"--clang++-args=-headerpad_max_install_names",
3737
"--macos-app-icon=" + os.path.join(current_dir,"AppIcon.icns"), # App icon
3838
"--include-data-file=" + os.path.join(current_dir,"zip.png")+ f"=./zip.png",

0 commit comments

Comments
 (0)