Skip to content

Commit

Permalink
Prepare 0.4.8.6
Browse files Browse the repository at this point in the history
  • Loading branch information
mhatta committed Dec 3, 2020
1 parent 0093507 commit 4eb58d9
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
6 changes: 3 additions & 3 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ apply plugin: 'com.android.application'
android {
compileSdkVersion 29
defaultConfig {
versionCode 26
versionName '0.6.1.5'
versionCode 27
versionName '0.6.1.6'
minSdkVersion 21
targetSdkVersion 26
multiDexEnabled true
Expand Down Expand Up @@ -72,7 +72,7 @@ dependencies {
// Remote dependencies
implementation 'com.sun.mail:android-mail:1.6.5'
implementation 'com.sun.mail:android-activation:1.6.5'
implementation "net.i2p:router:0.9.47"
implementation "net.i2p:router:0.9.48"
implementation "net.i2p.android:client:$rootProject.i2pVersion@aar"
implementation 'net.i2p.android:helper:0.9.5@aar'
implementation 'net.i2p.android.ext:floatingactionbutton:1.10.1'
Expand Down
2 changes: 1 addition & 1 deletion android/src/main/res/raw/help_changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<h2>0.6</h2>
<ul>
<li>Built with I2P 0.9.47</li>
<li>Built with I2P 0.9.48</li>
<li>Enable NTCP2</li>
<li>Migrated to AndroidX</li>
<li>Various housekeeping</li>
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ allprojects {
}
}

project.ext.i2pVersion = '0.9.47'
project.ext.i2pVersion = '0.9.48'

static String compat(String src) {
if (src.contains('.')) {
Expand All @@ -37,7 +37,7 @@ static String javaExecutable(String targetJavaHome, String execName) {
}

configure([project(':core'), project(':webapp')]) {
project.version = '0.4.8.5'
project.version = '0.4.8.6'

project.afterEvaluate {
jar {
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/java/i2p/bote/I2PBote.java
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@
*/
public class I2PBote implements NetworkStatusSource, EmailFolderManager, MailSender, PasswordVerifier {
public static final int PROTOCOL_VERSION = 4;
private static final String APP_VERSION = "0.4.8.5";
private static final String APP_VERSION = "0.4.8.6";
private static final int STARTUP_DELAY = 3; // the number of minutes to wait before connecting to I2P (this gives the router time to get ready)
private static volatile I2PBote instance;

Expand Down
4 changes: 4 additions & 0 deletions history.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
I2P-Bote Version History
------------------------

0.4.8.6 (Released on December 3, 2020)
* Built with I2P 0.9.48
* Various housekeeping, updating, etc.

0.4.8.5 (Released on November 29, 2020)
* Enable NTCP2
* Various housekeeping, updating, etc.
Expand Down

0 comments on commit 4eb58d9

Please sign in to comment.