File tree Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Expand file tree Collapse file tree 3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 1
1
name = " SignalTables"
2
2
uuid = " 3201582d-3078-4276-ba5d-0a1254d79d7c"
3
3
authors = [" Martin.Otter@dlr.de <Martin.Otter@dlr.de>" ]
4
- version = " 0.3.3 "
4
+ version = " 0.3.4 "
5
5
6
6
[deps ]
7
7
DataFrames = " a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
Original file line number Diff line number Diff line change @@ -187,6 +187,11 @@ are different to the Python 2.x version.
187
187
188
188
## Release Notes
189
189
190
+ ### Version 0.3.4
191
+
192
+ - Bug fix in usePreviousPlotPackage()
193
+
194
+
190
195
### Version 0.3.3
191
196
192
197
- Bug fix: getValuesWithUnit(..) is now correctly returning the values vector, if no unit is defined.
Original file line number Diff line number Diff line change @@ -155,12 +155,9 @@ and call `usePlotPackage(<popped PlotPackage package>)`.
155
155
function usePreviousPlotPackage ():: Bool
156
156
if length (PlotPackagesStack) > 0
157
157
plotPackage = pop! (PlotPackagesStack)
158
- success = usePlotPackage (plotPackage, pushPreviousOnStack= false )
159
- # else
160
- # @warn "usePreviousPlotPackage(): Call ignored, because nothing saved."
161
- # success = false
158
+ usePlotPackage (plotPackage, pushPreviousOnStack= false )
162
159
end
163
- return success
160
+ return true
164
161
end
165
162
166
163
You can’t perform that action at this time.
0 commit comments