Compare commits
4
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9cc6a96433 | ||
|
|
e5ff928c3c | ||
|
|
f31ffba06c | ||
|
|
1163e44265 |
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
FROM boltz/boltz-client:latest AS boltz
|
FROM boltz/boltz-client:2.8.3 AS boltz
|
||||||
|
|
||||||
FROM lnbits/lnbits:latest
|
FROM lnbits/lnbits:latest
|
||||||
|
|
||||||
|
|||||||
@@ -76,19 +76,25 @@
|
|||||||
icon="add"
|
icon="add"
|
||||||
></q-btn>
|
></q-btn>
|
||||||
</q-input>
|
</q-input>
|
||||||
<div>
|
|
||||||
<q-chip
|
|
||||||
v-for="identifier in formData.lnbits_nostr_notifications_identifiers"
|
|
||||||
:key="identifier"
|
|
||||||
removable
|
|
||||||
@remove="removeNostrNotificationIdentifier(identifier)"
|
|
||||||
color="primary"
|
|
||||||
text-color="white"
|
|
||||||
><span class="ellipsis" v-text="identifier"></span
|
|
||||||
></q-chip>
|
|
||||||
</div>
|
|
||||||
</q-item-section>
|
</q-item-section>
|
||||||
</q-item>
|
</q-item>
|
||||||
|
<div>
|
||||||
|
<q-chip
|
||||||
|
v-for="identifier in formData.lnbits_nostr_notifications_identifiers"
|
||||||
|
:key="identifier"
|
||||||
|
removable
|
||||||
|
@remove="removeNostrNotificationIdentifier(identifier)"
|
||||||
|
color="primary"
|
||||||
|
text-color="white"
|
||||||
|
class="ellipsis"
|
||||||
|
:label="identifier"
|
||||||
|
><q-tooltip
|
||||||
|
v-if="identifier"
|
||||||
|
anchor="top middle"
|
||||||
|
self="bottom middle"
|
||||||
|
><span v-text="identifier"></span></q-tooltip
|
||||||
|
></q-chip>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col-sm-12 col-md-6">
|
<div class="col-sm-12 col-md-6">
|
||||||
|
|||||||
@@ -113,8 +113,9 @@ async def api_fiat_as_sats(data: ConversionData):
|
|||||||
return output
|
return output
|
||||||
|
|
||||||
|
|
||||||
|
@api_router.get("/api/v1/qrcode", response_class=StreamingResponse)
|
||||||
@api_router.get("/api/v1/qrcode/{data}", response_class=StreamingResponse)
|
@api_router.get("/api/v1/qrcode/{data}", response_class=StreamingResponse)
|
||||||
async def img(data):
|
async def img(data: str):
|
||||||
qr = pyqrcode.create(data)
|
qr = pyqrcode.create(data)
|
||||||
stream = BytesIO()
|
stream = BytesIO()
|
||||||
qr.svg(stream, scale=3)
|
qr.svg(stream, scale=3)
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "lnbits"
|
name = "lnbits"
|
||||||
version = "1.3.0-rc8"
|
version = "1.3.0"
|
||||||
requires-python = ">=3.10,<3.13"
|
requires-python = ">=3.10,<3.13"
|
||||||
description = "LNbits, free and open-source Lightning wallet and accounts system."
|
description = "LNbits, free and open-source Lightning wallet and accounts system."
|
||||||
authors = [{ name = "Alan Bits", email = "alan@lnbits.com" }]
|
authors = [{ name = "Alan Bits", email = "alan@lnbits.com" }]
|
||||||
|
|||||||
Reference in New Issue
Block a user