File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 11# -*- mode: python ; coding: utf-8 -*-
22import sys
33from pathlib import Path
4+ from server import version
45from PyInstaller .utils .hooks import collect_submodules
56
67project_root = Path ('.' ).resolve ()
@@ -64,7 +65,7 @@ app = BUNDLE(
6465 "CFBundleIdentifier" : "com.beejewel.impulse" ,
6566 "CFBundleName" : "Impulse" ,
6667 "CFBundleDisplayName" : "Impulse" ,
67- "CFBundleShortVersionString" : "2.3.0" ,
68+ f "CFBundleShortVersionString" : { version } ,
6869 "CFBundleVersion" : "2.3.0" ,
6970 "NSMicrophoneUsageDescription" : "Required for audio analysis" ,
7071 "LSMinimumSystemVersion" : "11.0" ,
Original file line number Diff line number Diff line change 1010from flask import Flask , send_from_directory
1111
1212#----VERSION NUMBER -----------
13- version = "v2.3.0 "
13+ version = "v2.3.1 "
1414server = Flask (__name__ )
1515data_directory = os .path .join (os .path .expanduser ("~" ), "impulse_data_2.0" )
1616#------------------------------
You can’t perform that action at this time.
0 commit comments