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 11name = " SignalTables"
22uuid = " 3201582d-3078-4276-ba5d-0a1254d79d7c"
33authors = [" Martin.Otter@dlr.de <Martin.Otter@dlr.de>" ]
4- version = " 0.3.3 "
4+ version = " 0.3.4 "
55
66[deps ]
77DataFrames = " 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.
187187
188188## Release Notes
189189
190+ ### Version 0.3.4
191+
192+ - Bug fix in usePreviousPlotPackage()
193+
194+
190195### Version 0.3.3
191196
192197- 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>)`.
155155function usePreviousPlotPackage ():: Bool
156156 if length (PlotPackagesStack) > 0
157157 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 )
162159 end
163- return success
160+ return true
164161end
165162
166163
You can’t perform that action at this time.
0 commit comments