1
mirror of https://github.com/m2049r/xmrwallet synced 2025-09-02 15:53:04 +02:00

Compare commits

...

3 Commits

Author SHA1 Message Date
m2049r
b11357f379 bump version 2018-10-13 10:05:52 +02:00
m2049r
eba0156a6d info/warn about v9 upgrade (#442) 2018-10-13 10:05:17 +02:00
m2049r
bf64d8bd89 add 2018-10-01 height (#441) 2018-10-13 10:04:30 +02:00
5 changed files with 19 additions and 5 deletions

View File

@@ -7,8 +7,8 @@ android {
applicationId "com.m2049r.xmrwallet"
minSdkVersion 21
targetSdkVersion 27
versionCode 133
versionName "1.8.3 'Bullets And Octane-Pirates'"
versionCode 134
versionName "1.8.4 'Bullets And Octane-Pirates'"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
externalNativeBuild {
cmake {

View File

@@ -43,6 +43,7 @@ public class Notice {
private static final String NOTICE_SHOW_XMRTO_ENABLED_SEND = "notice_xmrto_enabled_send";
private static final String NOTICE_SHOW_CRAZYPASS = "notice_crazypass_enabled_login";
private static final String NOTICE_SHOW_LEDGER = "notice_ledger_enabled_login";
private static final String NOTICE_SHOW_V9 = "notice_v9_login";
private static void init() {
synchronized (Notice.class) {
@@ -61,9 +62,9 @@ public class Notice {
1)
);
notices.add(
new Notice(NOTICE_SHOW_CRAZYPASS,
R.string.info_crazypass_enabled,
R.string.help_details,
new Notice(NOTICE_SHOW_V9,
R.string.info_v9,
R.string.help_v9,
2)
);
notices.add(

View File

@@ -95,6 +95,7 @@ public class RestoreHeight {
blockheight.put("2018-07-01", 1606715L);
blockheight.put("2018-08-01", 1629017L);
blockheight.put("2018-09-01", 1651347L);
blockheight.put("2018-10-01", 1673031L);
}
public long getHeight(String date) {

View File

@@ -244,4 +244,14 @@
<p>Once the countdown reaches zero, you need to get a new quote from XMR.TO by going back to the
previous step and then coming back to the \"Confirm\" screen.</p>
]]></string>
<string name="help_v9" translatable="false"><![CDATA[
<h1>October 2018 Network Upgrade</h1>
<p>On or around 18th October 2018, the Monero Network will be upgraded. Clients and Servers
(Nodes) need to be upgraded simultaneously as old & new versions are not compatible.</p>
<p>You are running a new V9 client. You need to run or find a V9 node to connect to.</p>
<p>Check
https://www.reddit.com/r/Monerujo/comments/9n70ys/does_anyone_have_a_list_of_updated_nodes/
for more info &amp; support.</p>
]]></string>
</resources>

View File

@@ -399,4 +399,6 @@
<string name="nfc_tag_read_what">I don\'t know what you want!</string>
<string name="nfc_tag_read_success">Reading Tag successful</string>
<string name="nfc_tag_tap">NFC Available!</string>
<string name="info_v9" translatable="false">V9 node required</string>
</resources>