File tree Expand file tree Collapse file tree 4 files changed +17
-3
lines changed Expand file tree Collapse file tree 4 files changed +17
-3
lines changed Original file line number Diff line number Diff line change
1
+ -------------------------------------------------------------------------------
2
+ Version 2.0.2 2024-06-13
3
+ -------------------------------------------------------------------------------
4
+
5
+ GUI:
6
+
7
+ - Various bug fixes.
8
+
9
+ - Specified UTF-8 encoding of data files to allow for non ASCII characters in variable names.
10
+
11
+ Devices:
12
+
13
+ - Added load cell class.
14
+
1
15
-------------------------------------------------------------------------------
2
16
Version 2.0.1 2024-01-12
3
17
-------------------------------------------------------------------------------
Original file line number Diff line number Diff line change @@ -20,5 +20,5 @@ pyControl
20
20
├── tasks # Task definition files
21
21
└── tools # Tools for working with pycontrol data
22
22
23
- Version: v2.0.1
23
+ Version: v2.0.2
24
24
---------------
Original file line number Diff line number Diff line change 1
1
import os
2
2
import json
3
3
4
- VERSION = "2.0.1 "
4
+ VERSION = "2.0.2 "
5
5
6
6
7
7
def get_setting (setting_type , setting_name , want_default = False ):
Original file line number Diff line number Diff line change 6
6
from . import hardware as hw
7
7
from . import utility as ut
8
8
9
- VERSION = "2.0.1 "
9
+ VERSION = "2.0.2 "
10
10
11
11
12
12
class pyControlError (BaseException ): # Exception for pyControl errors.
You can’t perform that action at this time.
0 commit comments