Skip to content

Releases: unageek/graphest

v0.8.3

17 Nov 12:27
Compare
Choose a tag to compare

Downloads

Changes

  • Improved parsing of nested absolute values.

v0.8.2

11 Nov 03:34
Compare
Choose a tag to compare

Downloads

Changes

  • Fixed an issue where the complex-valued power z^w and logarithm log(b, z) gave incorrect results when one of the arguments was real. 🐞

v0.8.1

09 Nov 06:36
Compare
Choose a tag to compare

Downloads

Changes

  • Fixed an issue where it took a long time to parse relatively complex relations. 🐞

v0.8.0

04 Nov 13:37
Compare
Choose a tag to compare

Downloads

⚠️ Breaking Changes ⚠️

  • Changed the definition of mod(x, y) from x βˆ’ |y| ⌊x / |y|βŒ‹ to x βˆ’ y ⌊x / yβŒ‹, to better match other scientific software packages.
    • To reproduce the old definition, use mod(x, |y|).
  • Removed log(x), use log(10, x) instead.
  • Renamed ranked_max and ranked_min to rankedMax and rankedMin, respectively.

Changes

  • Initial support for complex functions. πŸŽ‰
  • Now you can use a minus sign βˆ’ (U+2212) in place of a hyphen-minus -.
    • The app automatically converts hyphen-minuses to minus signs while you are typing a relation.
  • Now you can use the standard symbols for logical connectives: ∧ (U+2227), ∨ (U+2228), and Β¬ (U+00AC) in place of &&, ||, and !, respectively.
  • Added conditional expression if(COND, t, f).

Gallery

x + i y = exp(i t)

mod(arg((x + i y)^(1 + i)), Ο€/6) = Ο€/12

y = if(x < 0, sin(x), tan(x))

v0.7.0

11 Oct 11:49
Compare
Choose a tag to compare

Downloads

Changes

  • Added Windows installer! πŸŽ‰

Gallery

Graph of sin(sqrt(x)) = cos(sqrt(y)), plotted with the high-res mode (Graph menu > High Resolution) turned on:

graph

v0.6.0

08 Oct 01:04
Compare
Choose a tag to compare

Download

πŸ“¦ Download for macOS (Apple silicon)

Changes

  • Redesigned the menu bar.
    • Added Graph > High-resolution.
      • The option is only available for Retina or high-DPI displays.
    • Added Graph > Show Axes and Show Grid.
    • Added Graph > Abort Graphing.
    • Added Help > Graphest Help, which was previously in the toolbar.

v0.5.6

27 Sep 17:25
Compare
Choose a tag to compare

Download

πŸ“¦ Download for macOS (Apple silicon)

Changes

  • Improved precision of explicit relations, which had been degraded since v0.5.3. ✨
    In the previous versions, relations as simple as y = 1 were plotted with large error bounds.
  • Fixed the issue where the position of the graph became a little off while zooming in. 🐞
  • Fixed the issue where relations start with - were not accepted. 🐞

v0.5.5

14 Sep 16:53
Compare
Choose a tag to compare

Download

πŸ“¦ Download for macOS (Apple silicon)

Changes

  • Fixed an issue that explicit relations of the form x = f(y) were plotted incorrectly since v0.5.3. 🐞

v0.5.4

11 Sep 07:49
Compare
Choose a tag to compare

Download

πŸ“¦ Download for macOS (Apple silicon)

Changes

  • Now graphs look pixel-perfect on Retina displays! ✨

Gallery

graph

v0.5.3

06 Sep 16:32
Compare
Choose a tag to compare

Download

πŸ“¦ Download for macOS (Apple silicon)

Changes

  • Various performance improvements