Skip to content

Commit

Permalink
Docs updated for 0.7 and bugfixes (#55)
Browse files Browse the repository at this point in the history
* docs and version

* wallet failed message moved to UI thread

* display balance in pure white
  • Loading branch information
m2049r authored Sep 10, 2017
1 parent 924c3fa commit 4918f44
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,10 @@ You may lose all your Moneroj if you use this App. Be cautious when spending on
- more sensible error dialogs
- check licenses of included libraries; License Dialog

### Issues
- Pending incoming transactions disappear after reload (and appear after being mined)
### Issues / Pitfalls
- 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
No need to build. Binaries are included:
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "com.m2049r.xmrwallet"
minSdkVersion 21
targetSdkVersion 25
versionCode 11
versionName "0.6"
versionCode 12
versionName "0.7"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
externalNativeBuild {
cmake {
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/java/com/m2049r/xmrwallet/LoginActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -710,8 +710,6 @@ protected Boolean doInBackground(Void... params) {
if (success) {
return true;
} 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());
return false;
}
Expand All @@ -723,6 +721,8 @@ protected void onPostExecute(Boolean result) {
if (result) {
startDetails(newWalletFile, walletPassword, GenerateReviewFragment.VIEW_TYPE_ACCEPT);
} else {
Toast.makeText(LoginActivity.this,
getString(R.string.generate_wallet_create_failed), Toast.LENGTH_LONG).show();
walletGenerateError();
}
LoginActivity.this.asyncWaitTask = null;
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/wallet_fragment.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
android:layout_height="wrap_content"
android:gravity="center"
android:text="00000000.000000000000 XMR"
android:textColor="@color/tx_green"
android:textColor="@color/white"
android:textSize="24sp" />

<TextView
Expand Down
2 changes: 2 additions & 0 deletions app/src/main/res/values/colors.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,6 @@
<color name="colorAccent">#009ADA</color>

<color name="anotherColor">#F8CC5A</color>

<color name="white">#ffffff</color>
</resources>
8 changes: 2 additions & 6 deletions doc/FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## What features does it have?

- Uses monero v0.11.0.0
- Support for Android >= 5.0 with ARM processor
- Testnet and Mainnet
- Generate new wallets
Expand All @@ -17,7 +18,7 @@
- Only 5 decimal places shown in transactions (full amount in details - click on transaction)
- 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 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)
- Rename wallets
- Archive (=Backup and delete)
Expand All @@ -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```
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?
No, but it looks fantastic. Just check it out.

Expand Down

0 comments on commit 4918f44

Please sign in to comment.