diff --git a/.gitignore b/.gitignore index dc4cec9..160f353 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ create_autosmx_dmg.sh +create_autosmx_exe.ps1 store.json **/**.vscode **/**.DS_Store diff --git a/README.md b/README.md index 410f8ef..4c4eadf 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,7 @@ Automation tool for SMX. Download the correct file for your OS below: - [Windows](https://github.com/samirg1/ALTER-SMX-Tool//releases/latest/download/AutoSMX.zip) (.exe) + - Ensure to open and install the certificate in the zip `'code_sign.crt'` - [Mac](https://github.com/samirg1/ALTER-SMX-Tool//releases/latest/download/AutoSMX.dmg) (.dmg) --- diff --git a/code_sign.crt b/code_sign.crt new file mode 100644 index 0000000..021ed55 Binary files /dev/null and b/code_sign.crt differ diff --git a/exe_setup.py b/exe_setup.py index e0885a5..e16e7e8 100644 --- a/exe_setup.py +++ b/exe_setup.py @@ -6,7 +6,7 @@ "excludes": ["pytest", "PyQt6", "PyQt5", "cv2", "numpy", "mypy", "test", "email", "pydoc_data", "multiprocessing", "rubicon"], "packages": ["pyautogui", "pyperclip", "attrs", "pynput"], "include_msvcr": True, - "include_files": ["autosmx.png", "src/img"], + "include_files": ["autosmx.png", "src/img", "code_sign.crt"], } bdist_mac = {"iconfile": "autosmx.ico", "bundle_name": "AutoSMX"} @@ -15,7 +15,7 @@ setup( name="AutoSMX", - version="1.0.1", + version="1.0.2", description="GUI Automater for SMX", author="Samir Gupta", options={"build_exe": build_exe, "bdist_mac": bdist_mac},