Changeset 369
- Timestamp:
- 03/31/12 05:20:22 (9 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Puzzlebox-Synapse.nsi
r315 r369 4 4 5 5 Name "Puzzlebox Synapse" 6 OutFile "Puzzlebox-Synapse-0. 5.2-setup.exe"6 OutFile "Puzzlebox-Synapse-0.8.0-setup.exe" 7 7 8 8 ; Some default compiler settings (uncomment and change at will): … … 38 38 ; File dist\synapse-server.exe 39 39 ; File dist\w9xpopen.exe 40 File dist\Puzzlebox.Synapse.Emotiv.Protocol.pyd 40 41 41 42 … … 1359 1360 Delete $INSTDIR\synapse-gui.exe 1360 1361 Delete $INSTDIR\puzzlebox_synapse_configuration.ini 1362 Delete $INSTDIR\Puzzlebox.Synapse.Emotiv.Protocol.pyd 1361 1363 1362 1364 Delete $INSTDIR\bz2.pyd -
trunk/Puzzlebox/Synapse/Emotiv/Client.py
r365 r369 92 92 def configureNetwork(self): 93 93 94 print self.server_port 95 94 96 if emotiv_protocol != None: 95 97 -
trunk/Puzzlebox/Synapse/Interface.py
r368 r369 543 543 #server_host = configuration.EMOTIV_SERVER_HOST 544 544 545 if device_address == 'Emotiv EPOC':545 if device_address == 'Emotiv Control Panel': 546 546 #server_port = configuration.EMOTIV_SERVER_PORT_CONTROL_PANEL 547 547 device_address = configuration.EMOTIV_SERVER_PORT_CONTROL_PANEL … … 1261 1261 1262 1262 devices.insert(0, 'EmoComposer') 1263 devices.insert(0, 'Emotiv Headset')1263 devices.insert(0, 'Emotiv Control Panel') 1264 1264 1265 1265 -
trunk/scripts/build-debug-exe.bat
r306 r369 5 5 6 6 rem ***Output to Console for Debugging 7 \Python27\Scripts\cxfreeze synapse-gui.py --compress --target-dir dist --base-name Console --include-modules PySide.QtNetwork --icon=images\puzzlebox.ico7 \Python27\Scripts\cxfreeze synapse-gui.py --compress --target-dir dist --base-name Console --include-modules PySide.QtNetwork,serial.win32 --icon=images\puzzlebox.ico 8 8 9 9 rem ***GUI Mode only for Distribution 10 rem \Python27\Scripts\cxfreeze synapse-gui.py --compress --target-dir dist --base-name Win32GUI --include-modules PySide.QtNetwork --icon=images\puzzlebox.ico10 rem \Python27\Scripts\cxfreeze synapse-gui.py --compress --target-dir dist --base-name Win32GUI --include-modules PySide.QtNetwork,serial.win32 --icon=images\puzzlebox.ico 11 11 12 12 -
trunk/scripts/build-exe.bat
r306 r369 5 5 6 6 rem ***Output to Console for Debugging 7 rem \Python27\Scripts\cxfreeze synapse-gui.py --compress --target-dir dist --base-name Console --include-modules PySide.QtNetwork --icon=images\puzzlebox.ico7 rem \Python27\Scripts\cxfreeze synapse-gui.py --compress --target-dir dist --base-name Console --include-modules PySide.QtNetwork,serial.win32 --icon=images\puzzlebox.ico 8 8 9 9 rem ***GUI Mode only for Distribution 10 \Python27\Scripts\cxfreeze synapse-gui.py --compress --target-dir dist --base-name Win32GUI --include-modules PySide.QtNetwork --icon=images\puzzlebox.ico10 \Python27\Scripts\cxfreeze synapse-gui.py --compress --target-dir dist --base-name Win32GUI --include-modules PySide.QtNetwork,serial.win32 --icon=images\puzzlebox.ico 11 11 12 12 … … 14 14 rem \Python27\python.exe \Development\pyinstaller-1.5.1\Makespec.py --onefile --windowed --icon=images\puzzlebox.ico --name=PuzzleboxSynapse synapse-gui.py 15 15 16 \Python27\python.exe \Development\pyinstaller-1.5.1\Build.py PuzzleboxSynapse.spec16 rem \Python27\python.exe \Development\pyinstaller-1.5.1\Build.py PuzzleboxSynapse.spec
Note: See TracChangeset
for help on using the changeset viewer.