Skip to content

Releases: slaclab/timechart

v1.5.3

21 May 22:16
469e6e9

Choose a tag to compare

What's Changed

  • DOC: README.md updates for pypi compatibility by @tangkong in #83

Full Changelog: v1.5.2...v1.5.3

v1.5.2

21 May 20:14
a6b1676

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.5.1...v1.5.2

v1.5.1

01 Sep 19:35

Choose a tag to compare

What's Changed

This is a packaging maintenance update release for PyPI.

NOTE: Version v1.5.0 has been yanked from PyPI.

This is due to the mistaken inclusion of vendored pydm and pyqtgraph libraries. It appears this may have been due to a broken environment when the source distribution archive was created. If you have a tag relying on v1.5.0, please update it to >=v1.5.1.

v1.5.0

13 May 16:55
c923dc8

Choose a tag to compare

What's Changed

  • MNT: strip spaces at beginning/end of PV names by @klauer in #61
  • ENH: Added fullscreen-like mode toggle option by @kabanaty in #70
  • FIX: do not force the open/save directories to '~' home by @klauer in #69
  • Show loaded filename in Window Title #65 by @zdomke in #71
  • ENH: Added ability to load PVs from command line by @kabanaty in #74
  • Import File Formats by @zdomke in #73
  • ENH: Add "Save Data to Disk" button by @zdomke in #78
  • ENH: Application Startup Script & CRAM integration by @zdomke in #79
  • Fixing startup script by @zdomke in #80
  • ENH: external tool using new pydm entrypoints mechanism by @klauer in #77

New Contributors

Full Changelog: v1.2.4...v1.5.0

TimeChart v1.2.4 Release Notes

05 Apr 17:57
82f1fe3

Choose a tag to compare

Bug Fixes

  • MNT: compatibility with font awesome 5 update in pydm #58 (Thanks @ZLLentz )

TimeChart v1.2.3

13 Mar 22:35

Choose a tag to compare

TimeChart v1.2.3 Release Notes

Enhancements

TimeChart v1.2.2

18 Jan 20:08
806f77e

Choose a tag to compare

TimeChart v1.2.2 Release Notes

Bug Fixes and Enhancements

This release includes a minor code fix, with CI and documentation enhancements

  1. Code fix to accommodate the recent errno import in Python 3.7
  2. Adding support files to trigger Travis CI for every commit push
  3. Adding Sphinx documentation and support files to generate HTML pages for the TimeChart Online Documentation.

TimeChart v1.2.1

18 Dec 23:05
c18df9a

Choose a tag to compare

TimeChart v1.2.1 Release Notes

Bug Fixes and Enhancements

This release fixes a string format that is incompatible with Python 2.7.

TimeChart v1.2.0

18 Dec 19:30
8477709

Choose a tag to compare

TimeChart v1.2.0 Release Notes

New Feature

This TimeChart release supports importing EPICS StripTool configuration (*.stp) files, in addition to the TimeChart's own JSON config files -- a new feature from the previous release.

You do not have to specify any additional parameters to let TimeChart know you are importing a StripTool config file. Just follow the same workflow when importing a config file to TimeChart -- it does not matter whether the config file you are trying to import is a TimeChart JSON file or a StripTool STP file.

For instance, you can import a StripTool config file from a command parameter just as you would with a TimeChart JSON config file:

timechart --config-file <path_to_stp_file or path_to_json_file>

TimeChart will figure out which config file type it is given, and will import the settings in the file appropriately.

Bug Fixes and Enhancements

  1. Fix the crash if an empty curve is selected.
  2. Detect a curve's connectivity state by using the curve.connected attribute instead of checking for NaN value

TimeChart v1.1.0

18 Oct 17:57
e70ed45

Choose a tag to compare

TimeChart v1.1.0 Release Notes

TimeChart is off to a new release, v1.1.0.

New Feature

Allow importing a config file from a command parameter:

timechart --config-file <path_to_json_config_file>

This will start TimeChart with the customized settings as specified in the config file, and if the config file contains one or more existing PV names, TimeChart will start graphing the PVs.

TimeChart currently can import only JSON config files it has exported. Support for Strip Tool config files is scheduled to be available in the next release.

Enhancement

Re-arrange the graph background and axis and grid color buttons. Make them close together as they're categorically related.

Bug Fixes

  1. Add the show right y-axis setting to the exported config file, and handle this data during config file import.
  2. Make the data settings reset a separate button for the Data tab