Skip to content

Commit

Permalink
Merge branch 'release/2.0.7' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Konano committed Apr 18, 2022
2 parents 043a879 + 2351e35 commit 1dbe400
Show file tree
Hide file tree
Showing 5 changed files with 48 additions and 44 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pyinstaller-win-alpha.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Make package
shell: cmd
run: |
venv64\Scripts\pyinstaller .\main.spec --onefile
venv64\Scripts\pyinstaller .\main.spec
md public
move dist\main.exe public\arknights_mower.exe
- name: Package into zip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pyinstaller-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Make package
shell: cmd
run: |
venv64\Scripts\pyinstaller .\main.spec --onefile
venv64\Scripts\pyinstaller .\main.spec
md public
move dist\main.exe public\arknights_mower.exe
- name: Package into zip
Expand Down
2 changes: 1 addition & 1 deletion arknights_mower/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
__cli__ = not (__pyinstall__ and not sys.argv[1:])

__system__ = platform.system().lower()
__version__ = '2.0.6'
__version__ = '2.0.7'
Binary file added logo.ico
Binary file not shown.
86 changes: 45 additions & 41 deletions main.spec
Original file line number Diff line number Diff line change
Expand Up @@ -4,45 +4,49 @@
block_cipher = None


a = Analysis(['main.py'],
binaries=[],
datas=[
('arknights_mower/fonts', 'arknights_mower/__init__/fonts'),
('arknights_mower/models', 'arknights_mower/__init__/models'),
('arknights_mower/templates', 'arknights_mower/__init__/templates'),
('arknights_mower/resources', 'arknights_mower/__init__/resources'),
('arknights_mower/data', 'arknights_mower/__init__/data'),
('arknights_mower/vendor', 'arknights_mower/__init__/vendor'),
('venv64/Lib/site-packages/onnxruntime/capi/onnxruntime_providers_shared.dll', 'onnxruntime/capi/'),
],
hiddenimports=[],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False)
a = Analysis(
['main.py'],
pathex=[],
binaries=[],
datas=[
('arknights_mower/fonts', 'arknights_mower/__init__/fonts'),
('arknights_mower/models', 'arknights_mower/__init__/models'),
('arknights_mower/templates', 'arknights_mower/__init__/templates'),
('arknights_mower/resources', 'arknights_mower/__init__/resources'),
('arknights_mower/data', 'arknights_mower/__init__/data'),
('arknights_mower/vendor', 'arknights_mower/__init__/vendor'),
('venv64/Lib/site-packages/onnxruntime/capi/onnxruntime_providers_shared.dll', 'onnxruntime/capi/'),
],
hiddenimports=[],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False,
)
pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)

pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)

exe = EXE(pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
[],
name='main',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=True,
disable_windowed_traceback=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None )
exe = EXE(
pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
[],
name='main',
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,
)

0 comments on commit 1dbe400

Please sign in to comment.