release notes + small fixes
This commit is contained in:
parent
ea83e67a96
commit
a03298669a
@ -3,8 +3,8 @@
|
|||||||
<manifest xmlns:a="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:a="http://schemas.android.com/apk/res/android"
|
||||||
package="org.solovyev.android.calculator"
|
package="org.solovyev.android.calculator"
|
||||||
a:installLocation="auto"
|
a:installLocation="auto"
|
||||||
a:versionCode="24"
|
a:versionCode="25"
|
||||||
a:versionName="1.2.24">
|
a:versionName="1.2.25">
|
||||||
|
|
||||||
<uses-permission a:name="android.permission.VIBRATE"/>
|
<uses-permission a:name="android.permission.VIBRATE"/>
|
||||||
<uses-permission a:name="android.permission.INTERNET"/>
|
<uses-permission a:name="android.permission.INTERNET"/>
|
||||||
|
@ -147,4 +147,13 @@
|
|||||||
или помочь в переводе приложения на свой родной язык.
|
или помочь в переводе приложения на свой родной язык.
|
||||||
</string>
|
</string>
|
||||||
|
|
||||||
|
<string name="c_release_notes_for_25">
|
||||||
|
1. Интегрирование функций ln() и lg()\n
|
||||||
|
2. Сохранение последнего открытого таба\n
|
||||||
|
3. Опция \'Удалить\' из контекстного меню в редакторе переменных\n
|
||||||
|
4. Проблема с 1/0\n
|
||||||
|
5. Проблема отображения для прошивок MIUI\n
|
||||||
|
6. Двойной ноль (00)
|
||||||
|
</string>
|
||||||
|
|
||||||
</resources>
|
</resources>
|
@ -147,4 +147,13 @@
|
|||||||
or help to translate the application to your native language.
|
or help to translate the application to your native language.
|
||||||
</string>
|
</string>
|
||||||
|
|
||||||
|
<string name="c_release_notes_for_25">
|
||||||
|
1. Integration of ln() and lg()\n
|
||||||
|
2. Last opened tab is remembered now (history, variables etc)\n
|
||||||
|
3. Remove option from context menu for variables\n
|
||||||
|
4. 1/0 bug\n
|
||||||
|
5. Gui defect for MIUI roms\n
|
||||||
|
6. Double zero (00) key
|
||||||
|
</string>
|
||||||
|
|
||||||
</resources>
|
</resources>
|
@ -7,7 +7,7 @@ package org.solovyev.android.calculator.math;
|
|||||||
|
|
||||||
import jscl.JsclMathEngine;
|
import jscl.JsclMathEngine;
|
||||||
import jscl.NumeralBase;
|
import jscl.NumeralBase;
|
||||||
import jscl.math.function.Constant;
|
import jscl.math.function.Constants;
|
||||||
import org.jetbrains.annotations.NotNull;
|
import org.jetbrains.annotations.NotNull;
|
||||||
import org.jetbrains.annotations.Nullable;
|
import org.jetbrains.annotations.Nullable;
|
||||||
import org.solovyev.android.calculator.StartsWithFinder;
|
import org.solovyev.android.calculator.StartsWithFinder;
|
||||||
@ -125,7 +125,7 @@ public enum MathType {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected String getSubstituteFromJscl(@NotNull String match) {
|
protected String getSubstituteFromJscl(@NotNull String match) {
|
||||||
return Constant.INF_CONST2.getName().equals(match) ? MathType.INFINITY : super.getSubstituteFromJscl(match);
|
return Constants.INF_2.getName().equals(match) ? MathType.INFINITY : super.getSubstituteFromJscl(match);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user