Skip to content

Commit 68ce9bc

Browse files
committed
Release 0.7 changelog update
1 parent 96c241b commit 68ce9bc

File tree

1 file changed

+85
-1
lines changed

1 file changed

+85
-1
lines changed

documentation/changelog.md

Lines changed: 85 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,90 @@
11
# Changelog {#changelog}
22

3-
## Relese 0.6
3+
## Release 0.7
4+
5+
Released on 01 Feb 2017.
6+
Available at https://github.com/Ulm-IQO/qudi/releases/tag/v0.7 .
7+
8+
Changes/New features:
9+
10+
* Overhaul of most used hardware modules, including
11+
* Error codes and failed hardware calls are caught and passed up to the logic
12+
* Updates of methods documentation in hardware modules and corresponding interfaces
13+
* Logic modules are now listening to the hardware return values and react accordingly
14+
* Introduction of update signals in most logic and GUI modules to ensure coherency of logic and GUI module information. So upon changing something in the GUI this module will emit an update signal which is connected to the logic module. The same works vice-versa if a script or something is changing values in logic modules.
15+
* Stability improvements to pulsed measurement analysis toolchain (pulse_extraction_logic and pulse_analysis_logic)
16+
* Changed SpinBoxes in pulsed_maingui BlockEditor, EnsembleOrganizer and SequenceOrganizer to scientific SpinBoxes enabling scientific number format and unit prefix input
17+
* Pulsed measurement data is saved properly now. Scientific number format was introduced to avoid problems with too few digits
18+
* Better pulsed_master_logic structure that allows now also for direct waveform/sequence generation on pulse generator devices (without writing files)
19+
* Heaps of changes/improvements regarding fitting in qudi. Big parts of fit_logic have been rewritten. It may be necessary to adapt custom scripts using fits
20+
* Confocal is now consequently using SI units (config change needed)
21+
* Confocal can now work from different count sources which are selectable (multichannel support) (config change needed)
22+
* Voltage range for NI card channels can be set independently for each channel (config change needed)
23+
24+
Config changes:
25+
26+
In order to update to the latest version of qudi one has to apply minor changes to the config file.
27+
28+
Change configuration settings for the ni_card module:
29+
30+
* Replace "scanner_ao_channels" with "scanner_x_ao", "scanner_y_ao" and "scanner_z_ao".
31+
32+
Example:
33+
34+
scanner_x_ao: '/Dev1/AO0'
35+
36+
scanner_y_ao: '/Dev1/AO1'
37+
38+
scanner_z_ao: '/Dev1/AO2'
39+
40+
scanner_a_ao: '/Dev1/AO3'
41+
42+
If you do not need the 4th axis, just leave it out.
43+
44+
* You can either specify a voltage range for all axes:
45+
46+
voltage_range:
47+
48+
\- -10
49+
50+
\- 10
51+
52+
* or you have to specify one for each axis:
53+
54+
x_voltage_range:
55+
56+
\- -10
57+
58+
\- 10
59+
60+
y_voltage_range:
61+
62+
\- -10
63+
64+
\- 10
65+
66+
z_voltage_range:
67+
68+
\- 0
69+
70+
\- 10
71+
72+
a_voltage_range:
73+
74+
\- -5
75+
76+
\- 5
77+
78+
* Change all distances in ni_card to meters; you can use exponential notation. For example:
79+
80+
x_range:
81+
82+
\- -100e-6
83+
84+
\- 100e-6
85+
86+
87+
## Release 0.6
488

589
Released on 25 Nov 2016.
690
Available at https://github.com/Ulm-IQO/qudi/releases/tag/v0.6 .

0 commit comments

Comments
 (0)