Skip to content

Commit

Permalink
Merge branch 'develop' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
DrRobsAT committed Jun 11, 2024
2 parents e89641a + 2643411 commit aef8eda
Show file tree
Hide file tree
Showing 31 changed files with 9,145 additions and 6,256 deletions.
47 changes: 47 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,45 @@
# Changelog

## Unreleased

### Added

### Changed

### Fixed

### Removed


## [1.0.2] - 2024-06-11

### Added

- type hints and documentation (Robert Arnold)
- support for region tags in .elem files (Robert Arnold)
- support for frames in dat_t and pts_t files (Robert Arnold)
- EPPoint attribute ecg for optimized ECG loading (Robert Arnold)
- CLI argument --keep-ecg to save ECGs to .pyceps (Robert Arnold)
- visualization of point ECGs in dash (#3) (Robert Arnold)
- import Carto3 PaSo data (Robert Arnold)
- export files to folder given with --save-study (#2) (Robert Arnold)
- support for frames in dat_t and pts_t files (Robert Arnold)
- support for region tags in .elem files (Robert Arnold)

### Changed

- some function names for clarity (load vs. import) (Robert Arnold)
- changed key for BSECG JSON files from "bsecg" to "ecg" (Robert Arnold)
- py7zr >= 0.21.0 is now required (Robert Arnold)

### Fixed

- wrong time dimension in IGB files (Robert Arnold)
- connector file names in newer Carto3 export format (Robert Arnold)
- error if basepath stored in .pyceps cannot be reached (Robert Arnold)
- disappearing lesions in dash for multiple RFI metrics (Robert Arnold)


## [1.0.1] - 2024-04-16

### Added
Expand All @@ -17,6 +57,7 @@
- load .pyceps with maps without points (Robert Arnold)
- import of point impedance and contact force data (Robert Arnold)


## [1.0.0] - 2024-04-10

### Added
Expand All @@ -41,6 +82,7 @@

_Old .pkl files are not supported anymore!_


## [0.1.1] - 2024-04-02

### Changed
Expand All @@ -52,6 +94,7 @@ _Old .pkl files are not supported anymore!_
- Set proper study root if data repository is not reachable (Robert Arnold)
- Import only specific maps if given as CLI command (Robert Arnold)


## [0.1.0] - 2024-03-11

### Added
Expand All @@ -70,12 +113,14 @@ _Old .pkl files are not supported anymore!_
- Import maps with zero points (Robert Arnold)
- Unintentionally skipped lines in VisiTag files (Robert Arnold)


## [0.0.3] - 2024-02-14

### Fixed

- Missing colormaps.json (Robert Arnold)


## [0.0.2] - 2024-02-14

### Added
Expand All @@ -92,10 +137,12 @@ _Old .pkl files are not supported anymore!_

_This release was yanked on PyPi due to a missing file._


## [0.0.1] - 2024-02-01

_Initial release._

[1.0.2]: https://github.com/medunigraz/pyCEPS/releases/tag/1.0.2
[1.0.1]: https://github.com/medunigraz/pyCEPS/releases/tag/1.0.1
[1.0.0]: https://github.com/medunigraz/pyCEPS/releases/tag/1.0.0
[0.1.1]: https://github.com/medunigraz/pyCEPS/releases/tag/0.1.1
Expand Down
4 changes: 2 additions & 2 deletions pyceps/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.

from .fileio.cartoio import CartoStudy
from .fileio.precisionio import PrecisionStudy
from pyceps.carto import CartoStudy
from pyceps.precision import PrecisionStudy
from .cli import run

Loading

0 comments on commit aef8eda

Please sign in to comment.