Skip to content

Commit 3bd1460

Browse files
authored
Merge pull request #312 from clams-tech/release/2.6.0
Release 2.6.0
2 parents c1d5d9c + b06d894 commit 3bd1460

File tree

9 files changed

+73
-4
lines changed

9 files changed

+73
-4
lines changed

README.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,36 @@ Remote control your Core Lightning node(s) via the lightning network from any we
1111
- [Contributing](#contributing)
1212
- [Running Locally](#running-locally)
1313

14+
## Funding
15+
16+
You can contribute directly to the project using the following methods:
17+
18+
#### BOLT12 Offer:
19+
20+
![lno1zrxq8pjw7qjlm68mtp7e3yvxee4y5xrgjhhyf2fxhlphpckrvevh50u0qt2rt2xr6uuj7cfce48c5cr8sa2dqp2nkumkuztlq840mpjj95anvqsrh809gs052xe9reyna6v2djjv4p7k0leqy9uhthm8tpvvppphlmfsqvcdy9947hanvmq9mssn970apemvm7hjhg54qfdahgq2t5rwzca27ksjcz7lwn8xyl9qet4lmd4zjq8ucy4gq0cjem6q47gcl8a4f9lcr0qajukk809lnu7az9wupm0vz6ljh3ajgqqspdlvl6crzaxz9ueuu5h9as269y](./static/assets/BOLT12.png)
21+
22+
```
23+
lno1zrxq8pjw7qjlm68mtp7e3yvxee4y5xrgjhhyf2fxhlphpckrvevh50u0qt2rt2xr6uuj7cfce48c5cr8sa2dqp2nkumkuztlq840mpjj95anvqsrh809gs052xe9reyna6v2djjv4p7k0leqy9uhthm8tpvvppphlmfsqvcdy9947hanvmq9mssn970apemvm7hjhg54qfdahgq2t5rwzca27ksjcz7lwn8xyl9qet4lmd4zjq8ucy4gq0cjem6q47gcl8a4f9lcr0qajukk809lnu7az9wupm0vz6ljh3ajgqqspdlvl6crzaxz9ueuu5h9as269y
24+
```
25+
26+
#### Lightning Address (`[email protected]`):
27+
28+
29+
30+
```
31+
32+
```
33+
34+
#### Onchain:
35+
36+
![32KAVNNDqjvw9SgProPnffVgdg4YEhgVKy](./static/assets/onchain.png)
37+
38+
```
39+
32KAVNNDqjvw9SgProPnffVgdg4YEhgVKy
40+
```
41+
42+
Thank you for supporting the project! Every sat makes a difference, and we're grateful for your help.
43+
1444
## Contributing
1545

1646
This project is open source and contributions are welcome and encouraged! If you find any bugs, creating an issue for it is super helpful. If you would like to contribute some code and or implement a feature, try jumping in to our [Discord](https://discord.gg/eWfHuJZVaB) to discuss or create an [issue](https://github.com/clams-tech/remote/issues) on the repo.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "remote",
3-
"version": "2.5.4",
3+
"version": "2.6.0",
44
"scripts": {
55
"dev": "vite dev",
66
"dev-https": "vite dev --mode https",
@@ -79,6 +79,7 @@
7979
"rxjs": "^7.5.7",
8080
"svelte-tiny-virtual-list": "^2.0.5",
8181
"sveltekit-i18n": "^2.4.2",
82+
"tip-modal": "git+https://github.com/clams-tech/tip-modal.git",
8283
"vconsole": "^3.15.1"
8384
}
8485
}

src/lib/i18n/en.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,9 @@
559559
"no_active_offers_found": "No active offers found",
560560
"create_one": "create one",
561561
"prism_name_placeholder": "Tips for the band",
562-
"member_destination_placeholder": "BOLT12 offer or node pubkey"
562+
"member_destination_placeholder": "BOLT12 offer or node pubkey",
563+
"support": "Support",
564+
"support_thank_you": "Thank you for your support!"
563565
},
564566
"messages": {
565567
"closing_channel": "Closing a channel will publish an onchain transaction and settle the current channel balances.",

src/lib/i18n/es.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,9 @@
558558
"no_active_offers_found": "No se encontraron ofertas activas",
559559
"create_one": "crear una",
560560
"prism_name_placeholder": "Consejos para la banda",
561-
"member_destination_placeholder": "Oferta BOLT12 o clave pública del nodo"
561+
"member_destination_placeholder": "Oferta BOLT12 o clave pública del nodo",
562+
"support": "Soporte",
563+
"support_thank_you": "¡Gracias por tu apoyo!"
562564
},
563565
"messages": {
564566
"closing_channel": "Cerrar un canal publicará una transacción en la cadena y liquidará los saldos actuales del canal.",

src/routes/settings/+page.svelte

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
import close from '$lib/icons/close.js'
2020
import trashOutline from '$lib/icons/trash-outline.js'
2121
import { deleteAll } from '$lib/db/index.js'
22+
import { TipModal } from 'tip-modal'
2223
2324
import {
2425
FiatDenomination,
@@ -108,6 +109,19 @@
108109
const toggleTile = (tile: string) => {
109110
$settings$.tiles[tile as Tile] = !$settings$.tiles[tile as Tile]
110111
}
112+
113+
// TipModal props
114+
const paymentTag = 'remote'
115+
116+
let showModal = false
117+
118+
function openModal() {
119+
showModal = true
120+
}
121+
122+
function closeModal() {
123+
showModal = false
124+
}
111125
</script>
112126

113127
<svelte:head>
@@ -238,7 +252,7 @@
238252
</div>
239253
</div>
240254

241-
<div class="w-full flex items-center mt-4">
255+
<div class="w-full flex items-center mt-4 justify-between">
242256
<div class="flex items-center gap-x-4">
243257
<a href={DISCORD_LINK} rel="noopener noreferrer" target="_blank"
244258
><div class="w-6">{@html discord}</div></a
@@ -253,6 +267,15 @@
253267
>{$translate('app.labels.docs')}</a
254268
>
255269
</div>
270+
<TipModal
271+
modalTitle={$translate('app.labels.support_thank_you')}
272+
buttonTheme="light"
273+
buttonText={$translate('app.labels.support')}
274+
{paymentTag}
275+
{showModal}
276+
{openModal}
277+
{closeModal}
278+
/>
256279
</div>
257280
</Section>
258281

static/assets/BOLT12.png

13.8 KB
Loading

static/assets/onchain.png

9.92 KB
Loading

static/assets/[email protected]

7.31 KB
Loading

yarn.lock

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1585,6 +1585,11 @@ esm-env@^1.0.0:
15851585
resolved "https://registry.yarnpkg.com/esm-env/-/esm-env-1.1.4.tgz#340c78b03ee2298d31c5b9fab9793468ede828b0"
15861586
integrity sha512-oO82nKPHKkzIj/hbtuDYy/JHqBHFlMIW36SDiPCVsj87ntDLcWN+sJ1erdVryd4NxODacFTsdrIE3b7IamqbOg==
15871587

1588+
esm-env@^1.2.2:
1589+
version "1.2.2"
1590+
resolved "https://registry.yarnpkg.com/esm-env/-/esm-env-1.2.2.tgz#263c9455c55861f41618df31b20cb571fc20b75e"
1591+
integrity sha512-Epxrv+Nr/CaL4ZcFGPJIYLWFom+YeV1DqMLHJoEd9SYRxNbaFruBwfEX/kkHUJf55j2+TUbmDcmuilbP1TmXHA==
1592+
15881593
espree@^9.6.0, espree@^9.6.1:
15891594
version "9.6.1"
15901595
resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f"
@@ -3027,6 +3032,12 @@ tinyspy@^2.1.1:
30273032
resolved "https://registry.yarnpkg.com/tinyspy/-/tinyspy-2.2.1.tgz#117b2342f1f38a0dbdcc73a50a454883adf861d1"
30283033
integrity sha512-KYad6Vy5VDWV4GH3fjpseMQ/XU2BhIYP7Vzd0LG44qRWm/Yt2WCOTicFdvmgo6gWaqooMQCawTtILVQJupKu7A==
30293034

3035+
"tip-modal@git+https://github.com/clams-tech/tip-modal.git":
3036+
version "0.0.1"
3037+
resolved "git+https://github.com/clams-tech/tip-modal.git#cc299a12506aa4bfb22763d16ef102f59d00fb38"
3038+
dependencies:
3039+
esm-env "^1.2.2"
3040+
30303041
to-regex-range@^5.0.1:
30313042
version "5.0.1"
30323043
resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"

0 commit comments

Comments
 (0)