Skip to content

Commit be558ed

Browse files
authored
Merge pull request ZeusLN#1023 from ZeusLN/master
[Releases] v0.6.5-rc2
2 parents 6434296 + 8050bd8 commit be558ed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+804
-196
lines changed

Navigation.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ import Channel from './views/Channels/Channel';
1919
import Payment from './views/Payment';
2020
import Invoice from './views/Invoice';
2121
import BTCPayConfigQRScanner from './views/BTCPayConfigQRScanner';
22+
import CLightningRestQRScanner from './views/CLightningRestQRScanner';
2223
import LNDConnectConfigQRScanner from './views/LNDConnectConfigQRScanner';
2324
import LNDHubQRScanner from './views/LNDHubQRScanner';
2425
import SparkQRScanner from './views/SparkQRScanner';
@@ -42,7 +43,10 @@ import CertInstallInstructions from './views/Settings/CertInstallInstructions';
4243
import SignVerifyMessage from './views/Settings/SignVerifyMessage';
4344
import About from './views/Settings/About';
4445
import Help from './views/Settings/Help';
46+
import Sponsors from './views/Settings/Sponsors';
4547
import Olympians from './views/Settings/Olympians';
48+
import Gods from './views/Settings/Gods';
49+
import Mortals from './views/Settings/Mortals';
4650

4751
// Routing
4852
import Routing from './views/Routing/Routing';
@@ -123,9 +127,18 @@ const AppScenes = {
123127
Help: {
124128
screen: Help
125129
},
130+
Sponsors: {
131+
screen: Sponsors
132+
},
126133
Olympians: {
127134
screen: Olympians
128135
},
136+
Gods: {
137+
screen: Gods
138+
},
139+
Mortals: {
140+
screen: Mortals
141+
},
129142
CertInstallInstructions: {
130143
screen: CertInstallInstructions
131144
},
@@ -207,6 +220,9 @@ const AppScenes = {
207220
LNDConnectConfigQRScanner: {
208221
screen: LNDConnectConfigQRScanner
209222
},
223+
CLightningRestQRScanner: {
224+
screen: CLightningRestQRScanner
225+
},
210226
LNDHubQRScanner: {
211227
screen: LNDHubQRScanner
212228
},

android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ android {
131131
applicationId "app.zeusln.zeus"
132132
minSdkVersion rootProject.ext.minSdkVersion
133133
targetSdkVersion rootProject.ext.targetSdkVersion
134-
versionCode 41
134+
versionCode 42
135135
versionName "0.6.5"
136136
multiDexEnabled true
137137
missingDimensionStrategy 'react-native-camera', 'general'

components/CollapsedQR.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,7 @@ export default class CollapsedQR extends React.Component<
108108
icon={{
109109
name: 'qrcode',
110110
type: 'font-awesome',
111-
size: 25,
112-
color: '#fff'
111+
size: 25
113112
}}
114113
containerStyle={{
115114
margin: 10

ios/zeus.xcodeproj/project.pbxproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1612,7 +1612,7 @@
16121612
CODE_SIGN_ENTITLEMENTS = zeus/zeus.entitlements;
16131613
CODE_SIGN_IDENTITY = "Apple Development";
16141614
CODE_SIGN_STYLE = Automatic;
1615-
CURRENT_PROJECT_VERSION = 5;
1615+
CURRENT_PROJECT_VERSION = 7;
16161616
DEAD_CODE_STRIPPING = NO;
16171617
DEVELOPMENT_TEAM = 7222UU8F2H;
16181618
ENABLE_BITCODE = NO;
@@ -1651,8 +1651,8 @@
16511651
CODE_SIGN_ENTITLEMENTS = zeus/zeusRelease.entitlements;
16521652
CODE_SIGN_IDENTITY = "Apple Development";
16531653
CODE_SIGN_STYLE = Automatic;
1654-
CURRENT_PROJECT_VERSION = 5;
1655-
DEVELOPMENT_TEAM = "";
1654+
CURRENT_PROJECT_VERSION = 7;
1655+
DEVELOPMENT_TEAM = 7222UU8F2H;
16561656
ENABLE_BITCODE = NO;
16571657
HEADER_SEARCH_PATHS = (
16581658
"$(inherited)",

locales/ar.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -453,6 +453,9 @@
453453
"views.Routing.RoutingEvent.destinationChannel": "Destination Channel",
454454
"views.Olympians.title": "Olympians",
455455
"views.Olympians.becomeASponsor": "Become a community sponsor",
456+
"views.Sponsors.title": "Sponsors",
457+
"views.Gods.title": "Gods",
458+
"views.Mortals.title": "Mortals",
456459
"components.UTXOPicker.modal.title": "Select UTXOs to use",
457460
"components.UTXOPicker.modal.description": "Select the UTXOs to be used in this operation. You may want to only use specific UTXOs to preserve your privacy.",
458461
"components.UTXOPicker.modal.set": "Set UTXOs",

locales/cs.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -453,6 +453,9 @@
453453
"views.Routing.RoutingEvent.destinationChannel": "Cílový kanál",
454454
"views.Olympians.title": "Olympijci",
455455
"views.Olympians.becomeASponsor": "Staňte se sponzorem komunity",
456+
"views.Sponsors.title": "Sponsors",
457+
"views.Gods.title": "Gods",
458+
"views.Mortals.title": "Mortals",
456459
"components.UTXOPicker.modal.title": "Vyberte UTXO, které chcete použít",
457460
"components.UTXOPicker.modal.description": "Vyberte UTXO, které se mají použít v této operaci. Možná budete chtít používat pouze konkrétní UTXO k ochraně vašeho soukromí.",
458461
"components.UTXOPicker.modal.set": "Nastavit UTXO",

locales/de.json

Lines changed: 17 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@
115115
"views.Settings.AddEditNode.scanLndconnect": "Lndconnect Config scannen",
116116
"views.Settings.AddEditNode.scanBtcpay": "BTCPay Config scannen",
117117
"views.Settings.AddEditNode.scanLndhub": "LNDHub QR-Code scannen",
118-
"views.Settings.AddEditNode.scanSpark": "Scan Spark QR",
118+
"views.Settings.AddEditNode.scanSpark": "Scanne einen Spark QR",
119119
"views.Settings.AddEditNode.deleteNode": "Node config entfernen",
120120
"views.Settings.AddEditNode.copyNode": "Kopiere Node-Konfiguration",
121121
"views.Settings.AddEditNode.nodeInterface": "Node-Schittstelle",
@@ -133,8 +133,8 @@
133133
"views.Settings.Security.deletePIN": "Lösche PIN",
134134
"views.Settings.Security.deleteDuressPIN": "Lösche Bedrohungs-PIN",
135135
"views.Settings.Security.scramblePIN": "PIN-Nummern verschlüsseln",
136-
"views.SparkQRScanner.text": "Scan a Spark QR code",
137-
"views.SparkQRScanner.error": "Error fetching Spark config",
136+
"views.SparkQRScanner.text": "Scanne einen Spark QR Code",
137+
"views.SparkQRScanner.error": "Fehler beim abrufen der Spark Konfiguration",
138138
"views.ImportAccount.title": "Konto importieren",
139139
"views.ImportAccount.name": "Kontobezeichnung",
140140
"views.ImportAccount.extendedPubKey": "Extended Public Key (Xpub)",
@@ -143,7 +143,7 @@
143143
"views.Wallet.Channels.open": "Kanal öffnen",
144144
"views.Wallet.Channels.inactive": "INAKTIV",
145145
"views.Wallet.Channels.private": "Privat",
146-
"views.OpenChannel.announceChannel": "Announce channel",
146+
"views.OpenChannel.announceChannel": "Kanal angekündigt",
147147
"views.Wallet.Channels.local": "Lokal",
148148
"views.Wallet.Channels.remote": "Entfernt",
149149
"views.Wallet.Channels.noChannels": "Keine Channels",
@@ -324,14 +324,14 @@
324324
"views.Receive.ampInvoice": "AMP Rechnung",
325325
"views.Receive.routeHints": "Routenhinweise hinzufügen",
326326
"views.Receive.youReceived": "Empfangen",
327-
"views.Receive.addressType": "Choose address type",
328-
"views.Receive.p2wkhKey": "SegWit (P2WKH)",
329-
"views.Receive.p2wkhDescription": "A more modern address type that saves on fees for incoming and outgoing payments.",
330-
"views.Receive.np2wkhKey": "Nested SegWit (NP2WKH)",
331-
"views.Receive.np2wkhDescription": "Use only when a service labels your SegWit or Taproot address as invalid.",
332-
"views.Receive.np2wkhDescriptionAlt": "Use only when a service labels your SegWit address as invalid.",
327+
"views.Receive.addressType": "Wähle den Adress-Typen",
328+
"views.Receive.p2wkhKey": "SegWit (P2WHKH)",
329+
"views.Receive.p2wkhDescription": "Ein modernerer Adress-Typ der Gebühren bei Ein- und Auszahlungen spart.",
330+
"views.Receive.np2wkhKey": "Verschachteltes SegWit (NP2WKH)",
331+
"views.Receive.np2wkhDescription": "Nur verwenden, wenn ein Dienst Ihre SegWit- oder Taproot-Adresse als ungültig kennzeichnet.",
332+
"views.Receive.np2wkhDescriptionAlt": "Nur verwenden, wenn ein Dienst Ihre SegWit-Adresse als ungültig kennzeichnet.",
333333
"views.Receive.p2trKey": "Taproot (P2TR)",
334-
"views.Receive.p2trDescription": "The latest, most powerful, bitcoin address type. Not widely supported.",
334+
"views.Receive.p2trDescription": "Der neueste und leistungsstärkste Bitcoin-Adresstyp. Nicht überall unterstützt.",
335335
"views.Send.title": "senden ",
336336
"views.Send.lnPayment": "Lightning Bezahlanfrage",
337337
"views.Send.btcAddress": "Bitcoin-Adresse",
@@ -453,6 +453,9 @@
453453
"views.Routing.RoutingEvent.destinationChannel": "Zielkanal",
454454
"views.Olympians.title": "Olympioniken",
455455
"views.Olympians.becomeASponsor": "Werde Community-Sponsor",
456+
"views.Sponsors.title": "Sponsors",
457+
"views.Gods.title": "Gods",
458+
"views.Mortals.title": "Mortals",
456459
"components.UTXOPicker.modal.title": "Zu benutzende UTXOs auswählen",
457460
"components.UTXOPicker.modal.description": "UTXOs auswählen, die bei dieser Operation verwendet werden sollen. Sie sollten nur ausgewählte UTXOs verwenden, um ihre Privatsphäre zu schützen.",
458461
"components.UTXOPicker.modal.set": "UTXOs festlegen",
@@ -462,10 +465,10 @@
462465
"backends.LND.wsReq.warning": "Möglicherweise muss die Zertifikatsprüfung aktiviert werden, um diese Art von Anrufen zu tätigen",
463466
"utils.handleAnything.lightningAddressError": "Fehler beim Abrufen der Lightning-Adressdaten ",
464467
"utils.handleAnything.notValid": "Der bereitgestellte Wert war eine ungültige Bitcoin-Adresse oder Lightning-Rechnung",
465-
"utils.handleAnything.lnurlAuthNotSupported": "LnurlAuth not supported by your node implementation",
466-
"utils.handleAnything.unsupportedLnurlType": "Unsupported lnurl type",
468+
"utils.handleAnything.lnurlAuthNotSupported": "LnurlAuth wird von der Implementierung Ihres Knotens nicht unterstützt",
469+
"utils.handleAnything.unsupportedLnurlType": "Nicht unterstützter lnurl Typ",
467470
"stores.InvoicesStore.errorCreatingInvoice": "Fehler beim Erstellen der Rechnung",
468-
"stores.InvoicesStore.errorGeneratingAddress": "Error generating new address",
471+
"stores.InvoicesStore.errorGeneratingAddress": "Fehler beim generieren der neuen Adresse",
469472
"stores.SettingsStore.btcPayImplementationSupport": "Leider unterstützen wir derzeit nur BTCPay-Instanzen mit lnd oder c-lightning",
470473
"stores.SettingsStore.btcPayFetchConfigError": "Fehler beim Abrufen der BTCPay-Konfiguration",
471474
"stores.SettingsStore.olympianFetchError": "Fehler beim Laden der Olympioniken",

locales/el.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -453,6 +453,9 @@
453453
"views.Routing.RoutingEvent.destinationChannel": "Destination Channel",
454454
"views.Olympians.title": "Olympians",
455455
"views.Olympians.becomeASponsor": "Become a community sponsor",
456+
"views.Sponsors.title": "Sponsors",
457+
"views.Gods.title": "Gods",
458+
"views.Mortals.title": "Mortals",
456459
"components.UTXOPicker.modal.title": "Επέλεξε UTXOs που θα χρησιμοποιηθούν",
457460
"components.UTXOPicker.modal.description": "Select the UTXOs to be used in this operation. You may want to only use specific UTXOs to preserve your privacy.",
458461
"components.UTXOPicker.modal.set": "Set UTXOs",

locales/en.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@
6767
"models.Invoice.never": "Never",
6868
"models.Payment.forwarded": "Forwarded",
6969
"models.Payment.fee": "Fee",
70+
"views.CLightningRestQRScanner.error": "Error fetching c-lightning-REST config",
7071
"views.LnurlPay.LnurlPay.amount": "Amount to pay (in Satoshis)",
7172
"views.LnurlPay.LnurlPay.comment": "Comment",
7273
"views.LnurlPay.LnurlPay.invalidParams": "Invalid lnurl params!",
@@ -113,6 +114,7 @@
113114
"views.Settings.AddEditNode.setNodeActive": "Set Node Config as Active",
114115
"views.Settings.AddEditNode.nodeActive": "Node Active",
115116
"views.Settings.AddEditNode.scanLndconnect": "Scan lndconnect config",
117+
"views.Settings.AddEditNode.scanCLightningRest": "Scan c-lightning-REST QR",
116118
"views.Settings.AddEditNode.scanBtcpay": "Scan BTCPay config",
117119
"views.Settings.AddEditNode.scanLndhub": "Scan LNDHub QR",
118120
"views.Settings.AddEditNode.scanSpark": "Scan Spark QR",
@@ -453,6 +455,9 @@
453455
"views.Routing.RoutingEvent.destinationChannel": "Destination Channel",
454456
"views.Olympians.title": "Olympians",
455457
"views.Olympians.becomeASponsor": "Become a community sponsor",
458+
"views.Sponsors.title": "Sponsors",
459+
"views.Gods.title": "Gods",
460+
"views.Mortals.title": "Mortals",
456461
"components.UTXOPicker.modal.title": "Select UTXOs to use",
457462
"components.UTXOPicker.modal.description": "Select the UTXOs to be used in this operation. You may want to only use specific UTXOs to preserve your privacy.",
458463
"components.UTXOPicker.modal.set": "Set UTXOs",

locales/es.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -453,6 +453,9 @@
453453
"views.Routing.RoutingEvent.destinationChannel": "Canal de Destino",
454454
"views.Olympians.title": "Olympians",
455455
"views.Olympians.becomeASponsor": "Become a community sponsor",
456+
"views.Sponsors.title": "Sponsors",
457+
"views.Gods.title": "Gods",
458+
"views.Mortals.title": "Mortals",
456459
"components.UTXOPicker.modal.title": "Seleccionar UTXOs para usar",
457460
"components.UTXOPicker.modal.description": "Seleccione las UTXOs que se utilizarán en esta operación. Es posible que desee utilizar solo un UTXO específico para preservar su privacidad.",
458461
"components.UTXOPicker.modal.set": "Conjunto de UTXOs",

0 commit comments

Comments
 (0)