Skip to content

Releases: oxeanbits/parsecs-android

Update version of Gradle and libraries

01 Nov 13:06
439f362
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: 0.3.4...0.3.5

Fixing float precision when converting AsString

22 Nov 18:55
ab2b9a7
Compare
Choose a tag to compare

Fix decimal precision when converting to String

21 Nov 12:36
894009a
Compare
Choose a tag to compare

Adds optional param download to link equation

05 Oct 18:44
9cfec48
Compare
Choose a tag to compare

Removing icon and label from AndroidManifest

17 May 13:41
3c1dc8d
Compare
Choose a tag to compare

Add Parsec.evalValues(list) to eval in batch and upgrade project to AndroidX

25 Nov 06:27
ec2dd28
Compare
Choose a tag to compare

Add timediff function and fix right function

24 Sep 13:21
f4cc664
Compare
Choose a tag to compare

Fix json malformed for link(str, str) equations

10 Aug 16:30
2d5518e
Compare
Choose a tag to compare

CHANGELOG

  • Replace quotes before build the json by escaped quotes.

Updating the parsec native code

11 Jun 19:31
e8d59f5
Compare
Choose a tag to compare

Fix type conversion of integers to float during default_value formula

09 Oct 16:59
22d7160
Compare
Choose a tag to compare
  • Adds conversion of integers to floats inside the default_value() evaluation, fixing the default_value() numbers incompatibility issue.

Example:

parsec> default_value(1, 10)
Result (type: 'i'):
ans = 1

parsec> default_value(1, 10.0)
Result (type: 'i'):
ans = 1

parsec> default_value(1.0, 10)
Result (type: 'i'):
ans = 1

parsec> default_value(1.0, 10.0)
Result (type: 'i'):
ans = 1

parsec> default_value(1.5, 10)
Result (type: 'f'):
ans = 1.5

parsec> default_value(1.5, 10.0)
Result (type: 'f'):
ans = 1.5

parsec> default_value(1.5, 10.5)
Result (type: 'f'):
ans = 1.5