Skip to content

Releases: oxeanbits/parsecs-android

Update version of Gradle and libraries

Choose a tag to compare

@Marinofull Marinofull released this 01 Nov 13:06
439f362

What's Changed

New Contributors

Full Changelog: 0.3.4...0.3.5

Fixing float precision when converting AsString

Choose a tag to compare

@rodiguif rodiguif released this 22 Nov 18:55
ab2b9a7

Fix decimal precision when converting to String

Choose a tag to compare

@rodiguif rodiguif released this 21 Nov 12:36
894009a

Adds optional param download to link equation

Choose a tag to compare

@rodiguif rodiguif released this 05 Oct 18:44
9cfec48

Removing icon and label from AndroidManifest

Choose a tag to compare

@rodiguif rodiguif released this 17 May 13:41
3c1dc8d

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

Choose a tag to compare

@rodiguif rodiguif released this 25 Nov 06:27
ec2dd28

Add timediff function and fix right function

Choose a tag to compare

@rodiguif rodiguif released this 24 Sep 13:21
f4cc664

Fix json malformed for link(str, str) equations

Choose a tag to compare

@rodiguif rodiguif released this 10 Aug 16:30
2d5518e

CHANGELOG

  • Replace quotes before build the json by escaped quotes.

Updating the parsec native code

Choose a tag to compare

@rodiguif rodiguif released this 11 Jun 19:31
e8d59f5

Fix type conversion of integers to float during default_value formula

Choose a tag to compare

@dnovaes dnovaes released this 09 Oct 16:59
22d7160
  • 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