Docs updated for 0.7 and bugfixes (#55)

* docs and version

* wallet failed message moved to UI thread

* display balance in pure white
This commit is contained in:
m2049r 2017-09-10 20:04:21 +02:00 committed by GitHub
parent 924c3fa260
commit 4918f44048
6 changed files with 13 additions and 13 deletions

View File

@ -25,8 +25,10 @@ You may lose all your Moneroj if you use this App. Be cautious when spending on
- more sensible error dialogs - more sensible error dialogs
- check licenses of included libraries; License Dialog - check licenses of included libraries; License Dialog
### Issues ### Issues / Pitfalls
- Pending incoming transactions disappear after reload (and appear after being mined) - Created wallets on a private testnet are unusable because the restore height is set to that
of the "real" testnet. After creating a new wallet, make a **new** one by recovering from the seed.
The official monero client shows the same behaviour.
### HOW TO BUILD ### HOW TO BUILD
No need to build. Binaries are included: No need to build. Binaries are included:

View File

@ -8,8 +8,8 @@ android {
applicationId "com.m2049r.xmrwallet" applicationId "com.m2049r.xmrwallet"
minSdkVersion 21 minSdkVersion 21
targetSdkVersion 25 targetSdkVersion 25
versionCode 11 versionCode 12
versionName "0.6" versionName "0.7"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
externalNativeBuild { externalNativeBuild {
cmake { cmake {

View File

@ -710,8 +710,6 @@ public class LoginActivity extends AppCompatActivity
if (success) { if (success) {
return true; return true;
} else { } else {
Toast.makeText(LoginActivity.this,
getString(R.string.generate_wallet_create_failed), Toast.LENGTH_LONG).show();
Log.e(TAG, "Could not create new wallet in " + newWalletFile.getAbsolutePath()); Log.e(TAG, "Could not create new wallet in " + newWalletFile.getAbsolutePath());
return false; return false;
} }
@ -723,6 +721,8 @@ public class LoginActivity extends AppCompatActivity
if (result) { if (result) {
startDetails(newWalletFile, walletPassword, GenerateReviewFragment.VIEW_TYPE_ACCEPT); startDetails(newWalletFile, walletPassword, GenerateReviewFragment.VIEW_TYPE_ACCEPT);
} else { } else {
Toast.makeText(LoginActivity.this,
getString(R.string.generate_wallet_create_failed), Toast.LENGTH_LONG).show();
walletGenerateError(); walletGenerateError();
} }
LoginActivity.this.asyncWaitTask = null; LoginActivity.this.asyncWaitTask = null;

View File

@ -63,7 +63,7 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:gravity="center" android:gravity="center"
android:text="00000000.000000000000 XMR" android:text="00000000.000000000000 XMR"
android:textColor="@color/tx_green" android:textColor="@color/white"
android:textSize="24sp" /> android:textSize="24sp" />
<TextView <TextView

View File

@ -18,4 +18,6 @@
<color name="colorAccent">#009ADA</color> <color name="colorAccent">#009ADA</color>
<color name="anotherColor">#F8CC5A</color> <color name="anotherColor">#F8CC5A</color>
<color name="white">#ffffff</color>
</resources> </resources>

View File

@ -2,6 +2,7 @@
## What features does it have? ## What features does it have?
- Uses monero v0.11.0.0
- Support for Android >= 5.0 with ARM processor - Support for Android >= 5.0 with ARM processor
- Testnet and Mainnet - Testnet and Mainnet
- Generate new wallets - Generate new wallets
@ -17,7 +18,7 @@
- Only 5 decimal places shown in transactions (full amount in details - click on transaction) - Only 5 decimal places shown in transactions (full amount in details - click on transaction)
- All significant figures shown in balance - All significant figures shown in balance
- QR Code scanning - make sure to *ALWAYS* verify the scanned code is what it is advertised to be! - QR Code scanning - make sure to *ALWAYS* verify the scanned code is what it is advertised to be!
- QR Code for receiving - QR Code for receiving with conversion of XMR to USD/EUR and back through kraken API
- Backup wallets to ```.backups``` folder in main wallet folder (old backups are overwritten) - Backup wallets to ```.backups``` folder in main wallet folder (old backups are overwritten)
- Rename wallets - Rename wallets
- Archive (=Backup and delete) - Archive (=Backup and delete)
@ -37,11 +38,6 @@ All wallet files (```testnet``` and ```mainnet```) are stored in the main ```Mon
So be careful erasing stuff. One of the future releases will split the wallets and move ```testnet``` So be careful erasing stuff. One of the future releases will split the wallets and move ```testnet```
wallets out of there. wallets out of there.
## I sent a transaction but it's not in my received transactions list!
Don't worry. Received transactions which are not mined yet disappear after the wallet is saved -
I blame this on the monero code. Wait for the block to be mined.
## Do you have any screenshots of what it looks like and how it works? ## Do you have any screenshots of what it looks like and how it works?
No, but it looks fantastic. Just check it out. No, but it looks fantastic. Just check it out.