Skip to content

Commit

Permalink
v0.3.3 Updated checkpoints; Added PeerDBDiscovery+IrcDiscovery; Other…
Browse files Browse the repository at this point in the history
… IFC fixes.
  • Loading branch information
HashEngineering committed May 17, 2014
1 parent 4f8f966 commit bff1b93
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 970 deletions.
Binary file removed checkpoints
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public final class BitcoinIntegration
private static final String INTENT_EXTRA_PAYMENT = "payment";
private static final String INTENT_EXTRA_TRANSACTION_HASH = "transaction_hash";

private static final String MIMETYPE_PAYMENTREQUEST = "application/bitcoin-paymentrequest"; // BIP 71
private static final String MIMETYPE_PAYMENTREQUEST = "application/infinitecoin-paymentrequest"; // BIP 71

/**
* Request any amount of Bitcoins (probably a donation) from user, without feedback from the app.
Expand Down Expand Up @@ -272,7 +272,7 @@ private static void redirectToDownload(final Context context)
Toast.makeText(context, "No Infinitecoin application found.\nPlease install Infinitecoin Wallet.", Toast.LENGTH_LONG).show();

final Intent marketIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=de.schildbach.wallet.infinitecoin"));
final Intent binaryIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://code.google.com/p/bitcoin-wallet/downloads/list"));
final Intent binaryIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://github.com/HashEngineering/infinitecoin-wallet/releases/"));

final PackageManager pm = context.getPackageManager();
if (pm.resolveActivity(marketIntent, 0) != null)
Expand Down
2 changes: 1 addition & 1 deletion sample-integration-android/res/layout/sample_activity.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="20dp"
android:text="This demonstrates the integration of a "Donate Bitcoins" button in your app." />
android:text="This demonstrates the integration of a "Donate Infinitecoins" button in your app." />

<FrameLayout
android:layout_width="fill_parent"
Expand Down
4 changes: 2 additions & 2 deletions wallet/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

package="de.schildbach.wallet.infinitecoin"
android:installLocation="internalOnly"
android:versionCode="10032"
android:versionName="0.3.1" >
android:versionCode="10034"
android:versionName="0.3.3" >



Expand Down
9 changes: 8 additions & 1 deletion wallet/CHANGES
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@

-----------------Infinitecoin Wallet
Infinitecoin Wallet
-----------------
v0.3.3
* Updated checkpoints.

v0.3.2
* Added IrcDiscovery and PeerDBDiscovery to get more peers

v0.3.1
* remove support.v4-r13 (may be causing some bugs with on pausing activities) - from litecoin wallet

Expand Down
Binary file modified wallet/assets/checkpoints
Binary file not shown.
Loading

0 comments on commit bff1b93

Please sign in to comment.