Skip to content

Commit ea71f31

Browse files
committed
1.3.0
fixed a bug causing the UI to incorrectly show "STOPPED" while farming was still in progress. Also includes minor UI and stability improvements.
1 parent b33f430 commit ea71f31

File tree

8 files changed

+816
-308
lines changed

8 files changed

+816
-308
lines changed

KickDropMiner.exe.spec

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# -*- mode: python ; coding: utf-8 -*-
2+
from PyInstaller.utils.hooks import collect_all
3+
4+
datas = [('webui/templates', 'templates'), ('webui/static', 'static'), ('webui/logpipe.py', 'webui'), ('locales', 'locales'), ('core', 'core'), ('farmer.py', '.'), ('worker.py', '.'), ('example_config.ini', '.')]
5+
binaries = []
6+
hiddenimports = []
7+
tmp_ret = collect_all('curl_cffi')
8+
datas += tmp_ret[0]; binaries += tmp_ret[1]; hiddenimports += tmp_ret[2]
9+
10+
11+
a = Analysis(
12+
['webui\\app.py'],
13+
pathex=[],
14+
binaries=binaries,
15+
datas=datas,
16+
hiddenimports=hiddenimports,
17+
hookspath=[],
18+
hooksconfig={},
19+
runtime_hooks=[],
20+
excludes=[],
21+
noarchive=False,
22+
optimize=0,
23+
)
24+
pyz = PYZ(a.pure)
25+
26+
exe = EXE(
27+
pyz,
28+
a.scripts,
29+
a.binaries,
30+
a.datas,
31+
[],
32+
name='KickDropMiner.exe',
33+
debug=False,
34+
bootloader_ignore_signals=False,
35+
strip=False,
36+
upx=True,
37+
upx_exclude=[],
38+
runtime_tmpdir=None,
39+
console=True,
40+
disable_windowed_traceback=False,
41+
argv_emulation=False,
42+
target_arch=None,
43+
codesign_identity=None,
44+
entitlements_file=None,
45+
)

0 commit comments

Comments
 (0)