Skip to content

Commit

Permalink
Release 0.6.5 "Testimony": Small bug fixes
Browse files Browse the repository at this point in the history
This release does not contain much because FOSDEM took a lot of energy.

New features:

* menu: Connect `ceil` and `floor` functions
* Add real to polar conversions
* units: Add `dms` unit to angles menu

Bug fixes:

* decimal: Compute `ln(0.002)` correctly
* integer: Do not parse degree sign if in a complex
* units: Fix parsing of angle units
* font: Add radian glyph

Signed-off-by: Christophe de Dinechin <[email protected]>
  • Loading branch information
c3d committed Feb 11, 2024
1 parent 4cffc39 commit 54b228c
Show file tree
Hide file tree
Showing 6 changed files with 61 additions and 5 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,14 @@ and the [HP Prime](https://en.wikipedia.org/wiki/HP_Prime)
(at least the G1, since the G2 seems a bit more locked down), maybe others.
The basis for that work can be found in the [DB48X](https://github.com/c3d/db48x) project.

This project was presented at [FOSDEM 2023][fosdem]
This project was presented at [FOSDEM 2023][fosdem23] and [FOSDEM 2024][fosdem24]

[fosdem]: https://fosdem.org/2023/schedule/event/reversepolishlisp/
[fosdem23]: https://fosdem.org/2023/schedule/event/reversepolishlisp/
[fosdem24]: https://fosdem.org/2024/schedule/event/fosdem-2024-1990-how-much-math-can-you-fit-in-700k-/

[![Watch the video](https://img.youtube.com/vi/ea_ybeslGpA/maxresdefault.jpg)](https://www.youtube.com/watch?v=ea_ybeslGpA&list=PLz1qkflzABy-Cs1R07zGB8A9K5Yjolmlf)
[![Watch the video](https://img.youtube.com/vi/WU5Dg1mPkl8/maxresdefault.jpg)](https://www.youtube.com/watch?v=WU5Dg1mPkl8&list=PLz1qkflzABy-Cs1R07zGB8A9K5Yjolmlf)

https://www.youtube.com/watch?v=WU5Dg1mPkl8

## Why name the project DB48X?

Expand Down
18 changes: 18 additions & 0 deletions doc/4-ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Release notes

## Release 0.6.5 "Testimony": Small bug fixes

This release does not contain much because FOSDEM took a lot of energy.

## New features

* menu: Connect `ceil` and `floor` functions
* Add real to polar conversions
* units: Add `dms` unit to angles menu

## Bug fixes

* decimal: Compute `ln(0.002)` correctly
* integer: Do not parse degree sign if in a complex
* units: Fix parsing of angle units
* font: Add radian glyph


## Release 0.6.4 "Healing": Testing and fixes

This release focuses on heavy testing of the new variable-precision
Expand Down
18 changes: 18 additions & 0 deletions help/db48x.md
Original file line number Diff line number Diff line change
Expand Up @@ -1794,6 +1794,24 @@ the corresponding unit in the units file, for example:
```
# Release notes

## Release 0.6.5 "Testimony": Small bug fixes

This release does not contain much because FOSDEM took a lot of energy.

## New features

* menu: Connect `ceil` and `floor` functions
* Add real to polar conversions
* units: Add `dms` unit to angles menu

## Bug fixes

* decimal: Compute `ln(0.002)` correctly
* integer: Do not parse degree sign if in a complex
* units: Fix parsing of angle units
* font: Add radian glyph


## Release 0.6.4 "Healing": Testing and fixes

This release focuses on heavy testing of the new variable-precision
Expand Down
18 changes: 18 additions & 0 deletions help/db50x.md
Original file line number Diff line number Diff line change
Expand Up @@ -1794,6 +1794,24 @@ the corresponding unit in the units file, for example:
```
# Release notes

## Release 0.6.5 "Testimony": Small bug fixes

This release does not contain much because FOSDEM took a lot of energy.

## New features

* menu: Connect `ceil` and `floor` functions
* Add real to polar conversions
* units: Add `dms` unit to angles menu

## Bug fixes

* decimal: Compute `ln(0.002)` correctly
* integer: Do not parse degree sign if in a complex
* units: Fix parsing of angle units
* font: Add radian glyph


## Release 0.6.4 "Healing": Testing and fixes

This release focuses on heavy testing of the new variable-precision
Expand Down
2 changes: 1 addition & 1 deletion src/dm32/qspi_crc.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

#define QSPI_DATA_SIZE 191052
#define QSPI_DATA_SIZE 191436
#define QSPI_DATA_CRC 0x000cfed6

2 changes: 1 addition & 1 deletion src/dm42/qspi_crc.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@

#define QSPI_DATA_SIZE 190620
#define QSPI_DATA_SIZE 191004
#define QSPI_DATA_CRC 0x000cfed6

0 comments on commit 54b228c

Please sign in to comment.