Releases: oxeanbits/parsecs-android
Releases · oxeanbits/parsecs-android
Update version of Gradle and libraries
What's Changed
- Update version of Gradle and libraries by @krysthianlessa in #29
New Contributors
- @krysthianlessa made their first contribution in #29
Full Changelog: 0.3.4...0.3.5
Fixing float precision when converting AsString
Fix decimal precision when converting to String
Adds optional param download to link equation
Removing icon and label from AndroidManifest
Add Parsec.evalValues(list) to eval in batch and upgrade project to AndroidX
Add timediff function and fix right function
Fix json malformed for link(str, str) equations
CHANGELOG
- Replace quotes before build the json by escaped quotes.
Updating the parsec native code
Fix type conversion of integers to float during default_value formula
- Adds conversion of integers to floats inside the
default_value()
evaluation, fixing thedefault_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