Skip to content

Commit

Permalink
Merge pull request #312 from clams-tech/release/2.6.0
Browse files Browse the repository at this point in the history
Release 2.6.0
  • Loading branch information
johngribbin authored Feb 6, 2025
2 parents c1d5d9c + b06d894 commit 3bd1460
Show file tree
Hide file tree
Showing 9 changed files with 73 additions and 4 deletions.
30 changes: 30 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,36 @@ Remote control your Core Lightning node(s) via the lightning network from any we
- [Contributing](#contributing)
- [Running Locally](#running-locally)

## Funding

You can contribute directly to the project using the following methods:

#### BOLT12 Offer:

![lno1zrxq8pjw7qjlm68mtp7e3yvxee4y5xrgjhhyf2fxhlphpckrvevh50u0qt2rt2xr6uuj7cfce48c5cr8sa2dqp2nkumkuztlq840mpjj95anvqsrh809gs052xe9reyna6v2djjv4p7k0leqy9uhthm8tpvvppphlmfsqvcdy9947hanvmq9mssn970apemvm7hjhg54qfdahgq2t5rwzca27ksjcz7lwn8xyl9qet4lmd4zjq8ucy4gq0cjem6q47gcl8a4f9lcr0qajukk809lnu7az9wupm0vz6ljh3ajgqqspdlvl6crzaxz9ueuu5h9as269y](./static/assets/BOLT12.png)

```
lno1zrxq8pjw7qjlm68mtp7e3yvxee4y5xrgjhhyf2fxhlphpckrvevh50u0qt2rt2xr6uuj7cfce48c5cr8sa2dqp2nkumkuztlq840mpjj95anvqsrh809gs052xe9reyna6v2djjv4p7k0leqy9uhthm8tpvvppphlmfsqvcdy9947hanvmq9mssn970apemvm7hjhg54qfdahgq2t5rwzca27ksjcz7lwn8xyl9qet4lmd4zjq8ucy4gq0cjem6q47gcl8a4f9lcr0qajukk809lnu7az9wupm0vz6ljh3ajgqqspdlvl6crzaxz9ueuu5h9as269y
```

#### Lightning Address (`remote@clams.tech`):

![remote@clams.tech](./static/assets/remote@clams.tech.png)

```
remote@clams.tech
```

#### Onchain:

![32KAVNNDqjvw9SgProPnffVgdg4YEhgVKy](./static/assets/onchain.png)

```
32KAVNNDqjvw9SgProPnffVgdg4YEhgVKy
```

Thank you for supporting the project! Every sat makes a difference, and we're grateful for your help.

## Contributing

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.
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "remote",
"version": "2.5.4",
"version": "2.6.0",
"scripts": {
"dev": "vite dev",
"dev-https": "vite dev --mode https",
Expand Down Expand Up @@ -79,6 +79,7 @@
"rxjs": "^7.5.7",
"svelte-tiny-virtual-list": "^2.0.5",
"sveltekit-i18n": "^2.4.2",
"tip-modal": "git+https://github.com/clams-tech/tip-modal.git",
"vconsole": "^3.15.1"
}
}
4 changes: 3 additions & 1 deletion src/lib/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,9 @@
"no_active_offers_found": "No active offers found",
"create_one": "create one",
"prism_name_placeholder": "Tips for the band",
"member_destination_placeholder": "BOLT12 offer or node pubkey"
"member_destination_placeholder": "BOLT12 offer or node pubkey",
"support": "Support",
"support_thank_you": "Thank you for your support!"
},
"messages": {
"closing_channel": "Closing a channel will publish an onchain transaction and settle the current channel balances.",
Expand Down
4 changes: 3 additions & 1 deletion src/lib/i18n/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,9 @@
"no_active_offers_found": "No se encontraron ofertas activas",
"create_one": "crear una",
"prism_name_placeholder": "Consejos para la banda",
"member_destination_placeholder": "Oferta BOLT12 o clave pública del nodo"
"member_destination_placeholder": "Oferta BOLT12 o clave pública del nodo",
"support": "Soporte",
"support_thank_you": "¡Gracias por tu apoyo!"
},
"messages": {
"closing_channel": "Cerrar un canal publicará una transacción en la cadena y liquidará los saldos actuales del canal.",
Expand Down
25 changes: 24 additions & 1 deletion src/routes/settings/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
import close from '$lib/icons/close.js'
import trashOutline from '$lib/icons/trash-outline.js'
import { deleteAll } from '$lib/db/index.js'
import { TipModal } from 'tip-modal'
import {
FiatDenomination,
Expand Down Expand Up @@ -108,6 +109,19 @@
const toggleTile = (tile: string) => {
$settings$.tiles[tile as Tile] = !$settings$.tiles[tile as Tile]
}
// TipModal props
const paymentTag = 'remote'
let showModal = false
function openModal() {
showModal = true
}
function closeModal() {
showModal = false
}
</script>

<svelte:head>
Expand Down Expand Up @@ -238,7 +252,7 @@
</div>
</div>

<div class="w-full flex items-center mt-4">
<div class="w-full flex items-center mt-4 justify-between">
<div class="flex items-center gap-x-4">
<a href={DISCORD_LINK} rel="noopener noreferrer" target="_blank"
><div class="w-6">{@html discord}</div></a
Expand All @@ -253,6 +267,15 @@
>{$translate('app.labels.docs')}</a
>
</div>
<TipModal
modalTitle={$translate('app.labels.support_thank_you')}
buttonTheme="light"
buttonText={$translate('app.labels.support')}
{paymentTag}
{showModal}
{openModal}
{closeModal}
/>
</div>
</Section>

Expand Down
Binary file added static/assets/BOLT12.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/assets/onchain.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/assets/remote@clams.tech.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1585,6 +1585,11 @@ esm-env@^1.0.0:
resolved "https://registry.yarnpkg.com/esm-env/-/esm-env-1.1.4.tgz#340c78b03ee2298d31c5b9fab9793468ede828b0"
integrity sha512-oO82nKPHKkzIj/hbtuDYy/JHqBHFlMIW36SDiPCVsj87ntDLcWN+sJ1erdVryd4NxODacFTsdrIE3b7IamqbOg==

esm-env@^1.2.2:
version "1.2.2"
resolved "https://registry.yarnpkg.com/esm-env/-/esm-env-1.2.2.tgz#263c9455c55861f41618df31b20cb571fc20b75e"
integrity sha512-Epxrv+Nr/CaL4ZcFGPJIYLWFom+YeV1DqMLHJoEd9SYRxNbaFruBwfEX/kkHUJf55j2+TUbmDcmuilbP1TmXHA==

espree@^9.6.0, espree@^9.6.1:
version "9.6.1"
resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f"
Expand Down Expand Up @@ -3027,6 +3032,12 @@ tinyspy@^2.1.1:
resolved "https://registry.yarnpkg.com/tinyspy/-/tinyspy-2.2.1.tgz#117b2342f1f38a0dbdcc73a50a454883adf861d1"
integrity sha512-KYad6Vy5VDWV4GH3fjpseMQ/XU2BhIYP7Vzd0LG44qRWm/Yt2WCOTicFdvmgo6gWaqooMQCawTtILVQJupKu7A==

"tip-modal@git+https://github.com/clams-tech/tip-modal.git":
version "0.0.1"
resolved "git+https://github.com/clams-tech/tip-modal.git#cc299a12506aa4bfb22763d16ef102f59d00fb38"
dependencies:
esm-env "^1.2.2"

to-regex-range@^5.0.1:
version "5.0.1"
resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
Expand Down

0 comments on commit 3bd1460

Please sign in to comment.