File tree 4 files changed +40
-3
lines changed
4 files changed +40
-3
lines changed Original file line number Diff line number Diff line change
1
+ -------------------------------------------------------------------------------
2
+ Version 1.8 release candidate 1 07/10/2022
3
+ -------------------------------------------------------------------------------
4
+
5
+ GUI:
6
+
7
+ - GUI is now compatible with PyQt 6 and Python 3.10.
8
+
9
+ - New GUI settings dialog.
10
+
11
+ - Required device driver files are now automatically transferred to the pyboard
12
+ when a task or hardware definition is uploaded.
13
+
14
+ - Various small improvements and bug fixes.
15
+
16
+ Framework:
17
+
18
+ - Major refactoring of framework code to make it simpler and more readable.
19
+
20
+ - Analog inputs now stream data to the computer continously while the GUI is
21
+ running rather than having record() and stop() methods to start and stop
22
+ data streaming.
23
+
24
+ - Events triggered by timers are now output to the data log by default.
25
+
26
+ - Removed decimate argument from digital input as it was not used in practice.
27
+
28
+ - Added Frame_trigger device class for triggering camera frames as a specified
29
+ frequency and recording the frame times to an analog data file.
30
+
31
+ - Added uRFID device class for controlling Priority 1 Designs RFID module.
32
+
33
+ Data import:
34
+
35
+ - Added session_dataframe function for generating a pandas dataframe from
36
+ a pyControl data file.
37
+
1
38
-------------------------------------------------------------------------------
2
39
Version 1.7.2 30/06/2022
3
40
-------------------------------------------------------------------------------
Original file line number Diff line number Diff line change 1
1
import os
2
2
import json
3
3
4
- VERSION = "1.8 "
4
+ VERSION = "1.8rc1 "
5
5
6
6
top_dir = os .path .dirname (os .path .dirname (os .path .abspath (__file__ ))) # Top level pyControl folder.
7
7
dirs = {
Original file line number Diff line number Diff line change 3
3
from . import state_machine as sm
4
4
from . import hardware as hw
5
5
6
- VERSION = '1.8 '
6
+ VERSION = '1.8rc1 '
7
7
8
8
class pyControlError (BaseException ): # Exception for pyControl errors.
9
9
pass
Original file line number Diff line number Diff line change @@ -15,6 +15,6 @@ tasks : Task definition files
15
15
tools : Tools for importing and visualising pycontrol data
16
16
pyControl_GUI.py : Python script to launch the GUI.
17
17
18
- Version: v1.7.2
18
+ Version: v1.8rc1
19
19
---------------
20
20
You can’t perform that action at this time.
0 commit comments