gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-wallet-android] branch master updated: bump version / switch hist


From: gnunet
Subject: [taler-wallet-android] branch master updated: bump version / switch history order
Date: Wed, 25 Dec 2019 21:08:21 +0100

This is an automated email from the git hooks/post-receive script.

dold pushed a commit to branch master
in repository wallet-android.

The following commit(s) were added to refs/heads/master by this push:
     new b1ae959  bump version / switch history order
b1ae959 is described below

commit b1ae959666e2bdbdc6020e373c95e887fda13eb7
Author: Florian Dold <address@hidden>
AuthorDate: Wed Dec 25 21:08:18 2019 +0100

    bump version / switch history order
---
 .gitignore                                          | 1 +
 app/build.gradle                                    | 4 ++--
 app/src/main/java/net/taler/wallet/WalletHistory.kt | 2 +-
 app/src/main/res/layout/fragment_settings.xml       | 2 +-
 4 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/.gitignore b/.gitignore
index 2a6391d..d63e61c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -12,3 +12,4 @@ build
 /captures
 .externalNativeBuild
 /akono/akono.aar
+/app/release/
diff --git a/app/build.gradle b/app/build.gradle
index 8f8e4a7..5085681 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -10,8 +10,8 @@ android {
         applicationId "net.taler.wallet"
         minSdkVersion 21
         targetSdkVersion 29
-        versionCode 5
-        versionName "0.6.0pre6"
+        versionCode 6
+        versionName "0.6.0pre8"
         testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
     }
     buildTypes {
diff --git a/app/src/main/java/net/taler/wallet/WalletHistory.kt 
b/app/src/main/java/net/taler/wallet/WalletHistory.kt
index 20e6688..b9db0c1 100644
--- a/app/src/main/java/net/taler/wallet/WalletHistory.kt
+++ b/app/src/main/java/net/taler/wallet/WalletHistory.kt
@@ -42,7 +42,7 @@ class WalletHistoryAdapter(private var myDataset: 
HistoryResult) : RecyclerView.
     }
 
     override fun onBindViewHolder(holder: MyViewHolder, position: Int) {
-        val h = myDataset.history[position]
+        val h = myDataset.history[myDataset.history.size - position - 1]
         val text = holder.rowView.findViewById<TextView>(R.id.history_text)
         val subText = 
holder.rowView.findViewById<TextView>(R.id.history_subtext)
         text.text = h.type
diff --git a/app/src/main/res/layout/fragment_settings.xml 
b/app/src/main/res/layout/fragment_settings.xml
index 0dcc721..6965ac0 100644
--- a/app/src/main/res/layout/fragment_settings.xml
+++ b/app/src/main/res/layout/fragment_settings.xml
@@ -39,7 +39,7 @@
                     android:layout_width="wrap_content"
                     android:layout_height="wrap_content"
                     android:layout_weight="1"
-                    android:text="0.6.0pre5 (Fri 20 Dec 2019" />
+                    android:text="0.6.0pre8 (Wed 25 Dec 2019" />
 
         </LinearLayout>
 

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]