Merge branch 'ExprEval' into 'master'
Updated ExprEval to v1.1. See merge request !1954
This commit is contained in:
commit
1a549e70a4
|
|
@ -12,8 +12,10 @@ Application that solves math expressions. Main features:
|
||||||
* Supports variables (e.g. you can do "a=5", then "a+1" and you get 6)
|
* Supports variables (e.g. you can do "a=5", then "a+1" and you get 6)
|
||||||
* Built-in basic function (like logarithms and trigonometry)
|
* Built-in basic function (like logarithms and trigonometry)
|
||||||
* Custom functions can be defined (e.g. "log(x,b)=log(x)/log(b)", then log(32,2) will print 5)
|
* Custom functions can be defined (e.g. "log(x,b)=log(x)/log(b)", then log(32,2) will print 5)
|
||||||
* Variables and unctions can be edited both from the prompt and dialogs
|
* Variables and functions can be edited both from the prompt and dialogs
|
||||||
* Can print parsing and evaluation steps.
|
* Can print parsing and evaluation steps.
|
||||||
|
* (Android 6.0+ only) can evaluate expressions from text selection in any application (ACTION_PROCESS_TEXT intent).
|
||||||
|
* Fully localizable - actually includes English and Italian, you can contribute yor translation with a pull request on GitHub.
|
||||||
|
|
||||||
This application is based on [https://github.com/gianluca-nitti/java-expr-eval
|
This application is based on [https://github.com/gianluca-nitti/java-expr-eval
|
||||||
this] open source (MIT licensed) library.
|
this] open source (MIT licensed) library.
|
||||||
|
|
@ -27,7 +29,12 @@ Build:1.0,1
|
||||||
subdir=app
|
subdir=app
|
||||||
gradle=yes
|
gradle=yes
|
||||||
|
|
||||||
|
Build:1.1,2
|
||||||
|
commit=v1.1
|
||||||
|
subdir=app
|
||||||
|
gradle=yes
|
||||||
|
|
||||||
Auto Update Mode:None
|
Auto Update Mode:None
|
||||||
Update Check Mode:Tags
|
Update Check Mode:Tags
|
||||||
Current Version:1.0
|
Current Version:1.1
|
||||||
Current Version Code:1
|
Current Version Code:2
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue