Skip to content

Commit

Permalink
2.37.0
Browse files Browse the repository at this point in the history
Signed-off-by: R4SAS <r4sas@i2pmail.org>
  • Loading branch information
r4sas committed Mar 15, 2021
1 parent b30bd69 commit bb93876
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/jni/i2pd
Submodule i2pd updated 1 files
+2 −2 ChangeLog
4 changes: 2 additions & 2 deletions app/src/main/java/org/purplei2p/i2pd/DaemonWrapper.java
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,8 @@ public static String getDataDir() { // for settings iniEditor

public void changeDataDir(String dataDir, Boolean updateAssets) {
I2PD_JNI.setDataDir(dataDir);
if( updateAssets ) processAssets();
//ToDo: move old dir to new dir?
if( updateAssets ) processAssets();
//ToDo: move old dir to new dir?
}

public boolean isStartedOkay() {
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/org/purplei2p/i2pd/I2PDActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -505,6 +505,6 @@ private void quit() {
} catch (Throwable tr) {
Log.e(TAG, "", tr);
}
//System.exit(0);
System.exit(0);
}
}
2 changes: 1 addition & 1 deletion app/src/main/res/menu/options_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@
<item
android:id="@+id/action_stop"
android:orderInCategory="99"
android:title="@string/action_stop" />
android:title="@string/action_exit" />
</group>
</menu>
1 change: 1 addition & 0 deletions app/src/main/res/values-ru/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

<string name="action_start">Запустить</string>
<string name="action_stop">Остановить</string>
<string name="action_exit">Выход</string>
<string name="action_graceful_stop">Корректная остановка</string>
<string name="action_cancel_graceful_stop">Отменить корректную остановку</string>
<string name="action_reload_tunnels_config">Перезагрузить туннели</string>
Expand Down
1 change: 1 addition & 0 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

<string name="action_start">Start</string>
<string name="action_stop">Stop</string>
<string name="action_exit">Exit</string>
<string name="action_graceful_stop">Graceful Stop</string>
<string name="action_cancel_graceful_stop">Cancel Graceful Stop</string>
<string name="action_reload_tunnels_config">Reload tunnels</string>
Expand Down
2 changes: 2 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/23700.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
* Updated codebase to 2.37.0
* Changes in main activity

0 comments on commit bb93876

Please sign in to comment.