[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[taler-taler-ios] branch master updated (8b2cfb1 -> b6ba537)
From: |
gnunet |
Subject: |
[taler-taler-ios] branch master updated (8b2cfb1 -> b6ba537) |
Date: |
Thu, 21 Sep 2023 09:05:00 +0200 |
This is an automated email from the git hooks/post-receive script.
marc-stibane pushed a change to branch master
in repository taler-ios.
from 8b2cfb1 !!! Temporarily add back old cases to ExchangeTosStatus to be
able to run with older wallet-core version !!!
new 4ff8647 Project Structure
new b6ba537 Use App group for sharing data between our apps
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
GNU_Taler.entitlements | 4 ++++
TalerWallet.xcodeproj/project.pbxproj | 4 ++--
TalerWallet1/Views/{ => Sheets}/Payment/PayTemplateView.swift | 0
TalerWallet1/Views/{ => Sheets}/Payment/PaymentView.swift | 2 +-
.../{ => Sheets}/WithdrawBankIntegrated/WithdrawAcceptDone.swift | 0
.../{ => Sheets}/WithdrawBankIntegrated/WithdrawAcceptView.swift | 0
.../{ => Sheets}/WithdrawBankIntegrated/WithdrawProgressView.swift | 0
.../Views/{ => Sheets}/WithdrawBankIntegrated/WithdrawTOSView.swift | 0
.../Views/{ => Sheets}/WithdrawBankIntegrated/WithdrawURIView.swift | 2 +-
Taler_Wallet.entitlements | 4 ++++
10 files changed, 12 insertions(+), 4 deletions(-)
rename TalerWallet1/Views/{ => Sheets}/Payment/PayTemplateView.swift (100%)
rename TalerWallet1/Views/{ => Sheets}/Payment/PaymentView.swift (99%)
rename TalerWallet1/Views/{ =>
Sheets}/WithdrawBankIntegrated/WithdrawAcceptDone.swift (100%)
rename TalerWallet1/Views/{ =>
Sheets}/WithdrawBankIntegrated/WithdrawAcceptView.swift (100%)
rename TalerWallet1/Views/{ =>
Sheets}/WithdrawBankIntegrated/WithdrawProgressView.swift (100%)
rename TalerWallet1/Views/{ =>
Sheets}/WithdrawBankIntegrated/WithdrawTOSView.swift (100%)
rename TalerWallet1/Views/{ =>
Sheets}/WithdrawBankIntegrated/WithdrawURIView.swift (98%)
diff --git a/GNU_Taler.entitlements b/GNU_Taler.entitlements
index dfdca9d..d9f232c 100644
--- a/GNU_Taler.entitlements
+++ b/GNU_Taler.entitlements
@@ -8,5 +8,9 @@
<array>
<string>TAG</string>
</array>
+ <key>com.apple.security.application-groups</key>
+ <array>
+ <string>group.com.taler-systems.appgroup</string>
+ </array>
</dict>
</plist>
diff --git a/TalerWallet.xcodeproj/project.pbxproj
b/TalerWallet.xcodeproj/project.pbxproj
index 4d6133d..b552588 100644
--- a/TalerWallet.xcodeproj/project.pbxproj
+++ b/TalerWallet.xcodeproj/project.pbxproj
@@ -624,8 +624,6 @@
4EB095242989CBFE0043A8A1 /* Settings */,
4ECB627E2A0BA4DA004ABBB7 /* Peer2peer */,
4EEC157129F7188B00D46A03 /* Sheets */,
- 4EB0953B2989CBFE0043A8A1 /*
WithdrawBankIntegrated */,
- 4EB0952A2989CBFE0043A8A1 /* Payment */,
4EB095462989CBFE0043A8A1 /* HelperViews */,
);
path = Views;
@@ -761,6 +759,8 @@
4EEC157929F9427F00D46A03 /* QRSheet.swift */,
4E753A072A0B6A5F002D9328 /* ShareSheet.swift */,
4EB095332989CBFE0043A8A1 /* URLSheet.swift */,
+ 4EB0953B2989CBFE0043A8A1 /*
WithdrawBankIntegrated */,
+ 4EB0952A2989CBFE0043A8A1 /* Payment */,
4E3B4BBF2A41E64000CC88B8 /* P2P_Sheets */,
);
path = Sheets;
diff --git a/TalerWallet1/Views/Payment/PayTemplateView.swift
b/TalerWallet1/Views/Sheets/Payment/PayTemplateView.swift
similarity index 100%
rename from TalerWallet1/Views/Payment/PayTemplateView.swift
rename to TalerWallet1/Views/Sheets/Payment/PayTemplateView.swift
diff --git a/TalerWallet1/Views/Payment/PaymentView.swift
b/TalerWallet1/Views/Sheets/Payment/PaymentView.swift
similarity index 99%
rename from TalerWallet1/Views/Payment/PaymentView.swift
rename to TalerWallet1/Views/Sheets/Payment/PaymentView.swift
index b50d970..6bc9a08 100644
--- a/TalerWallet1/Views/Payment/PaymentView.swift
+++ b/TalerWallet1/Views/Sheets/Payment/PaymentView.swift
@@ -7,7 +7,7 @@ import taler_swift
import SymLog
// Will be called either by the user scanning a QR code or tapping the
provided link,
-// both from the shop's website. We show the payment details
+// both from the shop's website. We show the payment details in a sheet.
struct PaymentView: View {
private let symLog = SymLogV(0)
let stack: CallStack
diff --git a/TalerWallet1/Views/WithdrawBankIntegrated/WithdrawAcceptDone.swift
b/TalerWallet1/Views/Sheets/WithdrawBankIntegrated/WithdrawAcceptDone.swift
similarity index 100%
rename from TalerWallet1/Views/WithdrawBankIntegrated/WithdrawAcceptDone.swift
rename to
TalerWallet1/Views/Sheets/WithdrawBankIntegrated/WithdrawAcceptDone.swift
diff --git a/TalerWallet1/Views/WithdrawBankIntegrated/WithdrawAcceptView.swift
b/TalerWallet1/Views/Sheets/WithdrawBankIntegrated/WithdrawAcceptView.swift
similarity index 100%
rename from TalerWallet1/Views/WithdrawBankIntegrated/WithdrawAcceptView.swift
rename to
TalerWallet1/Views/Sheets/WithdrawBankIntegrated/WithdrawAcceptView.swift
diff --git
a/TalerWallet1/Views/WithdrawBankIntegrated/WithdrawProgressView.swift
b/TalerWallet1/Views/Sheets/WithdrawBankIntegrated/WithdrawProgressView.swift
similarity index 100%
rename from TalerWallet1/Views/WithdrawBankIntegrated/WithdrawProgressView.swift
rename to
TalerWallet1/Views/Sheets/WithdrawBankIntegrated/WithdrawProgressView.swift
diff --git a/TalerWallet1/Views/WithdrawBankIntegrated/WithdrawTOSView.swift
b/TalerWallet1/Views/Sheets/WithdrawBankIntegrated/WithdrawTOSView.swift
similarity index 100%
rename from TalerWallet1/Views/WithdrawBankIntegrated/WithdrawTOSView.swift
rename to TalerWallet1/Views/Sheets/WithdrawBankIntegrated/WithdrawTOSView.swift
diff --git a/TalerWallet1/Views/WithdrawBankIntegrated/WithdrawURIView.swift
b/TalerWallet1/Views/Sheets/WithdrawBankIntegrated/WithdrawURIView.swift
similarity index 98%
rename from TalerWallet1/Views/WithdrawBankIntegrated/WithdrawURIView.swift
rename to TalerWallet1/Views/Sheets/WithdrawBankIntegrated/WithdrawURIView.swift
index 8e7580e..af90307 100644
--- a/TalerWallet1/Views/WithdrawBankIntegrated/WithdrawURIView.swift
+++ b/TalerWallet1/Views/Sheets/WithdrawBankIntegrated/WithdrawURIView.swift
@@ -7,7 +7,7 @@ import taler_swift
import SymLog
// Called either when scanning a QR code or tapping the provided link, both
from the bank's website.
-// We show the user the withdrawal details - but first the ToS must be
accepted.
+// We show the user the withdrawal details in a sheet - but first the ToS must
be accepted.
// After the user confirmed the withdrawal, we show a button to return to the
bank website to confirm there, too
struct WithdrawURIView: View {
private let symLog = SymLogV(0)
diff --git a/Taler_Wallet.entitlements b/Taler_Wallet.entitlements
index dfdca9d..d9f232c 100644
--- a/Taler_Wallet.entitlements
+++ b/Taler_Wallet.entitlements
@@ -8,5 +8,9 @@
<array>
<string>TAG</string>
</array>
+ <key>com.apple.security.application-groups</key>
+ <array>
+ <string>group.com.taler-systems.appgroup</string>
+ </array>
</dict>
</plist>
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
- [taler-taler-ios] branch master updated (8b2cfb1 -> b6ba537),
gnunet <=