v0.1.3 release, adding changelog
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
93add357e6
commit
6141658be2
5 changed files with 33 additions and 5 deletions
25
CHANGELOG.md
Normal file
25
CHANGELOG.md
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
# Changelog
|
||||||
|
|
||||||
|
## v0.1.3 (18 Jan 2022)
|
||||||
|
|
||||||
|
* Fixed bug: Confined packages (snapcraft & flatpak) won't show error messages related to update checks.
|
||||||
|
* FIxed bug: Equations of the form (x + y) / z were not being simplified properly.
|
||||||
|
|
||||||
|
-- Ad5001 <mail@ad5001.eu> Wed, 19 Jan 2022 20:00:00 +0100
|
||||||
|
|
||||||
|
## v0.1.2 (30 Sep 2021)
|
||||||
|
|
||||||
|
* Fixed bug: Unable to move Bode diagrams elements when having deleted the sum element.
|
||||||
|
* Fixed bug: Names were not not being changed from previous object when editing a new one.
|
||||||
|
* Fixed bug: Bode Magnitude was not drawn far enough
|
||||||
|
* Fixed bug: Bode Magnitude had undefined ending.
|
||||||
|
* Fixed other bugs from v0.1.1.
|
||||||
|
|
||||||
|
-- Ad5001 <mail@ad5001.eu> Mon, 30 Sep 2021 20:00:00 +0100
|
||||||
|
|
||||||
|
## v0.1 (26 Aug 2021)
|
||||||
|
|
||||||
|
* Initial release.
|
||||||
|
|
||||||
|
-- Ad5001 <mail@ad5001.eu> Mon, 06 Jun 2021 08:48:28 +0100
|
||||||
|
|
|
@ -199,7 +199,7 @@ function simplifyExpression(str) {
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
[// Starting & ending parenthesis if not needed.
|
[// Starting & ending parenthesis if not needed.
|
||||||
/^\((.*)\)$/g,
|
/^\s*\((.*)\)\s*$/g,
|
||||||
function(match, middle) {
|
function(match, middle) {
|
||||||
var str = middle
|
var str = middle
|
||||||
// Replace all groups
|
// Replace all groups
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
logarithmplotter (0.1.3) unstable; urgency=medium
|
logarithmplotter (0.1.3) stable; urgency=medium
|
||||||
|
|
||||||
* Fixed bug: Confined packages (snapcraft & flatpak) won't show error messages related to update checks.
|
* Fixed bug: Confined packages (snapcraft & flatpak) won't show error messages related to update checks.
|
||||||
|
* FIxed bug: Equations of the form (x + y) / z were not being simplified properly.
|
||||||
|
|
||||||
-- Ad5001 <mail@ad5001.eu> Mon, 30 Sep 2021 20:00:00 +0200
|
-- Ad5001 <mail@ad5001.eu> Wed, 19 Jan 2022 20:00:00 +0100
|
||||||
|
|
||||||
logarithmplotter (0.1.2) unstable; urgency=medium
|
logarithmplotter (0.1.2) unstable; urgency=medium
|
||||||
|
|
||||||
|
@ -12,10 +13,10 @@ logarithmplotter (0.1.2) unstable; urgency=medium
|
||||||
* Fixed bug: Bode Magnitude had undefined ending.
|
* Fixed bug: Bode Magnitude had undefined ending.
|
||||||
* Fixed other bugs from v0.1.1.
|
* Fixed other bugs from v0.1.1.
|
||||||
|
|
||||||
-- Ad5001 <mail@ad5001.eu> Mon, 30 Sep 2021 20:00:00 +0200
|
-- Ad5001 <mail@ad5001.eu> Mon, 30 Sep 2021 20:00:00 +0100
|
||||||
|
|
||||||
logarithmplotter (0.1) UNRELEASED; urgency=medium
|
logarithmplotter (0.1) UNRELEASED; urgency=medium
|
||||||
|
|
||||||
* Initial release.
|
* Initial release.
|
||||||
|
|
||||||
-- Ad5001 <mail@ad5001.eu> Mon, 06 Jun 2021 08:48:28 +0200
|
-- Ad5001 <mail@ad5001.eu> Thu, 26 Aug 2021 08:48:28 +0100
|
||||||
|
|
|
@ -43,6 +43,7 @@
|
||||||
<releases>
|
<releases>
|
||||||
<release version="0.1" date="2021-08-15"/>
|
<release version="0.1" date="2021-08-15"/>
|
||||||
<release version="0.1.2" date="2021-09-30"/>
|
<release version="0.1.2" date="2021-09-30"/>
|
||||||
|
<release version="0.1.3" date="2022-01-19"/>
|
||||||
</releases>
|
</releases>
|
||||||
<content_rating type="oars-1.0">
|
<content_rating type="oars-1.0">
|
||||||
</content_rating>
|
</content_rating>
|
||||||
|
|
|
@ -43,6 +43,7 @@
|
||||||
<releases>
|
<releases>
|
||||||
<release version="0.1" date="2021-08-15"/>
|
<release version="0.1" date="2021-08-15"/>
|
||||||
<release version="0.1.2" date="2021-09-30"/>
|
<release version="0.1.2" date="2021-09-30"/>
|
||||||
|
<release version="0.1.3" date="2022-01-19"/>
|
||||||
</releases>
|
</releases>
|
||||||
<content_rating type="oars-1.0">
|
<content_rating type="oars-1.0">
|
||||||
</content_rating>
|
</content_rating>
|
||||||
|
|
Loading…
Reference in a new issue