Skip to content

Commit

Permalink
Merge commit '8bb75c3' into mainnet
Browse files Browse the repository at this point in the history
  • Loading branch information
dpad85 committed Sep 12, 2018
2 parents f184819 + 8bb75c3 commit 073efc6
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ android {
minSdkVersion 21
targetSdkVersion 27
versionCode 23
versionName "0.3.7"
versionName "0.3.8-DEV"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
multiDexEnabled true
}
Expand Down Expand Up @@ -71,7 +71,7 @@ dependencies {
implementation 'org.slf4j:slf4j-api:1.7.25'
implementation 'com.github.tony19:logback-android:1.1.1-12'
// eclair core
implementation 'fr.acinq.eclair:eclair-core_2.11:0.2-android-beta10'
implementation 'fr.acinq.eclair:eclair-core_2.11:0.2-android-beta11'
// database orm
implementation 'org.greenrobot:greendao:3.2.2'
// required for greendao encryption, disabled for now
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -501,8 +501,12 @@ public void popinSyncProgress(final View view) {
@Subscribe(threadMode = ThreadMode.MAIN)
public void handleSyncProgressEvent(SyncProgress progress) {
final int p = (int) (progress.progress() * 100);
if (p == 100) {
if (p >= 100) {
mBinding.syncProgressIcon.clearAnimation();
} else {
if (mBinding.syncProgressIcon.getAnimation() == null || mBinding.syncProgressIcon.getAnimation().hasEnded()) {
mBinding.syncProgressIcon.startAnimation(mRotatingAnimation);
}
}
mBinding.setSyncProgress(p);
}
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<string name="home_sync_progress_about"><![CDATA[
The wallet is currently downloading an up-to-date map of the Lightning Network. Lightning payments might fail until synchronization is complete.
<br><br>
Note that this wallet computes its payments route on-device to protect your privacy.
Note that this wallet computes payments routes on-device to protect your privacy.
]]></string>
<string name="home_no_backup">NO BACKUP</string>
<string name="home_backup_disabled_icon_desc">Channels backup is disabled!</string>
Expand Down

0 comments on commit 073efc6

Please sign in to comment.