Skip to content
This repository has been archived by the owner on Nov 11, 2021. It is now read-only.

Commit

Permalink
Version bump to 1.4
Browse files Browse the repository at this point in the history
* update homepage URL
  • Loading branch information
rfc2822 committed Dec 9, 2015
1 parent 600469e commit 383ea58
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app-android/app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 22
buildToolsVersion "22.0.1"
compileSdkVersion 23
buildToolsVersion "23.0.2"

defaultConfig {
applicationId "at.bitfire.gfxtablet"
Expand Down
4 changes: 2 additions & 2 deletions app-android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="at.bitfire.gfxtablet"
android:versionCode="4"
android:versionName="1.3" >
android:versionCode="5"
android:versionName="1.4" >

<uses-sdk />

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class CanvasActivity extends AppCompatActivity implements View.OnSystemUi
private static final int RESULT_LOAD_IMAGE = 1;
private static final String TAG = "GfxTablet.Canvas";

final Uri homepageUri = Uri.parse(("https://rfc2822.github.io/GfxTablet/"));
final Uri homepageUri = Uri.parse(("https://gfxtablet.bitfire.at"));

NetworkClient netClient;

Expand Down Expand Up @@ -90,7 +90,7 @@ public void showAbout(MenuItem item) {
}

public void showDonate(MenuItem item) {
startActivity(new Intent(Intent.ACTION_VIEW, homepageUri.buildUpon().fragment("donate").build()));
startActivity(new Intent(Intent.ACTION_VIEW, homepageUri.buildUpon().appendPath("donate").build()));
}

public void showSettings(MenuItem item) {
Expand Down

0 comments on commit 383ea58

Please sign in to comment.