diff --git a/CHANGELOG.md b/CHANGELOG.md index 837eb4a..b8b07c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,45 @@ +# Version v1.1.0 + +## Features +* Add undo for all editable fields ([b9af1d1](https://github.com/Kastakin/PyES/commit/b9af1d1ec8f0087d2be18578f52e023914518d11)) + +## Enhancements +* Easier plot export ([39a887f](https://github.com/Kastakin/PyES/commit/39a887fb4445ad78926bae82cd30918ca722fd5d)) +* Plot error bars for concentrations on plot ([e562ed6](https://github.com/Kastakin/PyES/commit/e562ed698e8c45ddf7156677a1f84c9597ca88f1)) +* Aske for confirmation when changing projects ([d70732b](https://github.com/Kastakin/PyES/commit/d70732b891485bda212002a59ca17c1a90c9d095)) +* Add undo for compontents models ([0dacdc2](https://github.com/Kastakin/PyES/commit/0dacdc2ded283d135968ed3f889f2e2b6d9fbdda)) +* Add info dialogs to inputs ([](https://github.com/Kastakin/PyES/commit/)) +* Refactor of models code for undo ([cea0f69](https://github.com/Kastakin/PyES/commit/cea0f69f27bcb13ff99c47d8d487ac4dc31f1410)) +* Unify species models and add edit undo ([8d86ae7](https://github.com/Kastakin/PyES/commit/8d86ae7b006c2d9d8f803d671ed85618afc75f93)) +* Add undo for tables row swapping ([a84d860](https://github.com/Kastakin/PyES/commit/a84d86055c81feb4b6dee4a72abae004f52f0d01)) +* Add undo for comp tables add/remove ([baa396b](https://github.com/Kastakin/PyES/commit/baa396bf9da5220bb33424211543a9d2603fc432)) +* Add undo for species tables add/remove ([d64bef2](https://github.com/Kastakin/PyES/commit/d64bef2b25f6c019e97f05f38d1a465786cc4440)) +* Rework opening of files to report errors ([b08fd9c](https://github.com/Kastakin/PyES/commit/b08fd9cc1086335978966f2d935bb87c866f681c)) +* simplify rowCount and columnCount methods ([677cee1](https://github.com/Kastakin/PyES/commit/677cee1c572ca3d24cc9ae212bab38d915909a5f)) +* Allow opening files directly ([34cb86f](https://github.com/Kastakin/PyES/commit/34cb86fed369453ff3790eb126264ee11c0eebe3)) + +## Fixes +* Change input labels when ind comp change ([62f8d84](https://github.com/Kastakin/PyES/commit/62f8d840f00f72abcc2b8f2f7a79f3c29f8524ac)) +* Workaround empty species header exception ([4a2a2fa](https://github.com/Kastakin/PyES/commit/4a2a2fae00890bc34e6aa70603aaf86bfa1fca29)) +* Typos in graph axis title ([718319b](https://github.com/Kastakin/PyES/commit/718319b48188c05832b2a3991ccd030e9fccca64)) +* Remove unused comments ([cbeef10](https://github.com/Kastakin/PyES/commit/cbeef10b1602ae1035bedf80eab7d159d9259e83)) +* Better handle name of new components ([3871ee8](https://github.com/Kastakin/PyES/commit/3871ee8d4efe767a2b75caebd3174c1f3335efb9)) +* Remove debug statement ([98dcc99](https://github.com/Kastakin/PyES/commit/98dcc997d60dc430ab1ea224e4760619198e1c38)) +* Update open editor after swapping rows ([4a70434](https://github.com/Kastakin/PyES/commit/4a70434dfbca25f7d81ba18f172e97eba1f698d8)) +* Fix tests to account for dialog on close ([5dfdddb](https://github.com/Kastakin/PyES/commit/5dfdddb3b727828e681babf53db1ffd75c3af526)) +* Correct components view delegates ([ece92f7](https://github.com/Kastakin/PyES/commit/ece92f7c6a15f505c1856334a446c3999747775c)) +* Remove useless about qt dialog call ([527c25f](https://github.com/Kastakin/PyES/commit/527c25f1b9ae2099afe04835c9c8939ad69356c2)) +* Rewrite delegate init ([ae21b84](https://github.com/Kastakin/PyES/commit/ae21b84c9b61a5413659fe2193e8fd442e8a8060)) +* Simplify species actions ([fdc5f13](https://github.com/Kastakin/PyES/commit/fdc5f13b1bbf24657cb185e028e6352486cec510)) +* Remove unneeded check for species model ([f8ec329](https://github.com/Kastakin/PyES/commit/f8ec3292ffcbce255210e0bed754be6344ee0f67)) +* Handle files empty dataframes for solids ([07d8d0a](https://github.com/Kastakin/PyES/commit/07d8d0ae3b65d14b6893609205ad4dcf96f6da90)) + +## Chores +* Calrify enums coming from Qt ([ce5d64a](https://github.com/Kastakin/PyES/commit/ce5d64a8df908a47899331b0e993f53430819a0a)) +* Remove debug statements ([2605e81](https://github.com/Kastakin/PyES/commit/2605e8182a218092e825fc9283ca0adba9bf14d0)) +* Fix imports ([4719a01](https://github.com/Kastakin/PyES/commit/4719a01d429470689d4a14d834e6b4e458fcb106)) + + # Version v1.0.0 ## Enhancements diff --git a/pyproject.toml b/pyproject.toml index 11726dc..4ad0fb5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyes" -version = "1.0.0" +version = "1.1.0" description = "" authors = ["Lorenzo Castellino "] license = "GPLv3" diff --git a/release_text.md b/release_text.md index 32f5428..cb08fdd 100644 --- a/release_text.md +++ b/release_text.md @@ -1,10 +1,42 @@ -# Version v1.0.0 +# Version v1.1.0 + +## Features +* Add undo for all editable fields ([b9af1d1](https://github.com/Kastakin/PyES/commit/b9af1d1ec8f0087d2be18578f52e023914518d11)) ## Enhancements -* Rename errors uncertainty to avoid confusion ([de71680](https://github.com/Kastakin/PyES/commit/de716806790828cc94fb42495e5c13a3e1933e07)) -* Add user manual (pdf from latex) ([9276abe](https://github.com/Kastakin/PyES/commit/9276abede5912f496c720d9d2d0bb43d0a088919)) +* Easier plot export ([39a887f](https://github.com/Kastakin/PyES/commit/39a887fb4445ad78926bae82cd30918ca722fd5d)) +* Plot error bars for concentrations on plot ([e562ed6](https://github.com/Kastakin/PyES/commit/e562ed698e8c45ddf7156677a1f84c9597ca88f1)) +* Aske for confirmation when changing projects ([d70732b](https://github.com/Kastakin/PyES/commit/d70732b891485bda212002a59ca17c1a90c9d095)) +* Add undo for compontents models ([0dacdc2](https://github.com/Kastakin/PyES/commit/0dacdc2ded283d135968ed3f889f2e2b6d9fbdda)) +* Add info dialogs to inputs ([](https://github.com/Kastakin/PyES/commit/)) +* Refactor of models code for undo ([cea0f69](https://github.com/Kastakin/PyES/commit/cea0f69f27bcb13ff99c47d8d487ac4dc31f1410)) +* Unify species models and add edit undo ([8d86ae7](https://github.com/Kastakin/PyES/commit/8d86ae7b006c2d9d8f803d671ed85618afc75f93)) +* Add undo for tables row swapping ([a84d860](https://github.com/Kastakin/PyES/commit/a84d86055c81feb4b6dee4a72abae004f52f0d01)) +* Add undo for comp tables add/remove ([baa396b](https://github.com/Kastakin/PyES/commit/baa396bf9da5220bb33424211543a9d2603fc432)) +* Add undo for species tables add/remove ([d64bef2](https://github.com/Kastakin/PyES/commit/d64bef2b25f6c019e97f05f38d1a465786cc4440)) +* Rework opening of files to report errors ([b08fd9c](https://github.com/Kastakin/PyES/commit/b08fd9cc1086335978966f2d935bb87c866f681c)) +* simplify rowCount and columnCount methods ([677cee1](https://github.com/Kastakin/PyES/commit/677cee1c572ca3d24cc9ae212bab38d915909a5f)) +* Allow opening files directly ([34cb86f](https://github.com/Kastakin/PyES/commit/34cb86fed369453ff3790eb126264ee11c0eebe3)) + +## Fixes +* Change input labels when ind comp change ([62f8d84](https://github.com/Kastakin/PyES/commit/62f8d840f00f72abcc2b8f2f7a79f3c29f8524ac)) +* Workaround empty species header exception ([4a2a2fa](https://github.com/Kastakin/PyES/commit/4a2a2fae00890bc34e6aa70603aaf86bfa1fca29)) +* Typos in graph axis title ([718319b](https://github.com/Kastakin/PyES/commit/718319b48188c05832b2a3991ccd030e9fccca64)) +* Remove unused comments ([cbeef10](https://github.com/Kastakin/PyES/commit/cbeef10b1602ae1035bedf80eab7d159d9259e83)) +* Better handle name of new components ([3871ee8](https://github.com/Kastakin/PyES/commit/3871ee8d4efe767a2b75caebd3174c1f3335efb9)) +* Remove debug statement ([98dcc99](https://github.com/Kastakin/PyES/commit/98dcc997d60dc430ab1ea224e4760619198e1c38)) +* Update open editor after swapping rows ([4a70434](https://github.com/Kastakin/PyES/commit/4a70434dfbca25f7d81ba18f172e97eba1f698d8)) +* Fix tests to account for dialog on close ([5dfdddb](https://github.com/Kastakin/PyES/commit/5dfdddb3b727828e681babf53db1ffd75c3af526)) +* Correct components view delegates ([ece92f7](https://github.com/Kastakin/PyES/commit/ece92f7c6a15f505c1856334a446c3999747775c)) +* Remove useless about qt dialog call ([527c25f](https://github.com/Kastakin/PyES/commit/527c25f1b9ae2099afe04835c9c8939ad69356c2)) +* Rewrite delegate init ([ae21b84](https://github.com/Kastakin/PyES/commit/ae21b84c9b61a5413659fe2193e8fd442e8a8060)) +* Simplify species actions ([fdc5f13](https://github.com/Kastakin/PyES/commit/fdc5f13b1bbf24657cb185e028e6352486cec510)) +* Remove unneeded check for species model ([f8ec329](https://github.com/Kastakin/PyES/commit/f8ec3292ffcbce255210e0bed754be6344ee0f67)) +* Handle files empty dataframes for solids ([07d8d0a](https://github.com/Kastakin/PyES/commit/07d8d0ae3b65d14b6893609205ad4dcf96f6da90)) ## Chores -* update pre-commit ([1c180a0](https://github.com/Kastakin/PyES/commit/1c180a0924b4bc50718812be48601f0b4eb17083)) +* Calrify enums coming from Qt ([ce5d64a](https://github.com/Kastakin/PyES/commit/ce5d64a8df908a47899331b0e993f53430819a0a)) +* Remove debug statements ([2605e81](https://github.com/Kastakin/PyES/commit/2605e8182a218092e825fc9283ca0adba9bf14d0)) +* Fix imports ([4719a01](https://github.com/Kastakin/PyES/commit/4719a01d429470689d4a14d834e6b4e458fcb106)) diff --git a/src/build/settings/base.json b/src/build/settings/base.json index 53bfba6..11b6ba0 100644 --- a/src/build/settings/base.json +++ b/src/build/settings/base.json @@ -2,7 +2,7 @@ "app_name": "PyES", "author": "Lorenzo Castellino", "main_module": "src/main/python/pyes/main.py", - "version": "1.0.0", + "version": "1.1.0", "extra_pyinstaller_args": [ "--exclude-module", "PySide6.QtQml", diff --git a/src/main/python/pyes/ui/PyES_about.py b/src/main/python/pyes/ui/PyES_about.py index 4d40282..5eb1fea 100644 --- a/src/main/python/pyes/ui/PyES_about.py +++ b/src/main/python/pyes/ui/PyES_about.py @@ -107,7 +107,7 @@ def retranslateUi(self, dialogAbout): QCoreApplication.translate("dialogAbout", "About", None) ) self.label.setText( - QCoreApplication.translate("dialogAbout", "PyES Version 1.0.0", None) + QCoreApplication.translate("dialogAbout", "PyES Version 1.1.0", None) ) self.label_3.setText( QCoreApplication.translate( diff --git a/src/main/python/pyes/ui/PyES_about.ui b/src/main/python/pyes/ui/PyES_about.ui index 69aec72..edbf9ca 100644 --- a/src/main/python/pyes/ui/PyES_about.ui +++ b/src/main/python/pyes/ui/PyES_about.ui @@ -35,7 +35,7 @@ - PyES Version 1.0.0 + PyES Version 1.1.0 diff --git a/tbump.toml b/tbump.toml index 26bfab5..d3ea94d 100644 --- a/tbump.toml +++ b/tbump.toml @@ -2,7 +2,7 @@ # github_url = "https://github.com///" [version] -current = "1.0.0" +current = "1.1.0" # Example of a semver regexp. # Make sure this matches current_version before