We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2837fa8 commit c322becCopy full SHA for c322bec
code/impulse_mac.spec
@@ -1,9 +1,9 @@
1
# -*- mode: python ; coding: utf-8 -*-
2
import sys
3
from pathlib import Path
4
-from server import version
5
from PyInstaller.utils.hooks import collect_submodules
6
+version = "2.3.1"
7
project_root = Path('.').resolve()
8
block_cipher = None
9
@@ -65,8 +65,8 @@ app = BUNDLE(
65
"CFBundleIdentifier": "com.beejewel.impulse",
66
"CFBundleName": "Impulse",
67
"CFBundleDisplayName": "Impulse",
68
- f"CFBundleShortVersionString": {version},
69
- "CFBundleVersion": "2.3.0",
+ f"CFBundleShortVersionString": version,
+ "CFBundleVersion": version,
70
"NSMicrophoneUsageDescription": "Required for audio analysis",
71
"LSMinimumSystemVersion": "11.0",
72
}
0 commit comments