Skip to content

Commit

Permalink
Merge pull request #60 from samirg1/windows-code-signing
Browse files Browse the repository at this point in the history
Windows code signing
  • Loading branch information
samirg1 authored Sep 8, 2023
2 parents 7be639c + 914fea1 commit 4940d68
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
create_autosmx_dmg.sh
create_autosmx_exe.ps1
store.json
**/**.vscode
**/**.DS_Store
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

---
Expand Down
Binary file added code_sign.crt
Binary file not shown.
4 changes: 2 additions & 2 deletions exe_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
Expand All @@ -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},
Expand Down

0 comments on commit 4940d68

Please sign in to comment.