Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Remote version to v2.5.3 #9

Merged
merged 1 commit into from
Jan 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion clams-remote
Submodule clams-remote updated 69 files
+15 −3 README.md
+2 −3 package.json
+0 −157 src/lib/@types/plugins.ts
+0 −1 src/lib/@types/settings.ts
+1 −0 src/lib/components/Button.svelte
+4 −2 src/lib/components/Decrypt.svelte
+4 −0 src/lib/components/ItemsList.svelte
+1 −1 src/lib/components/Notifications.svelte
+1 −1 src/lib/components/TextInput.svelte
+1 −8 src/lib/components/Toggle.svelte
+0 −19 src/lib/components/Tooltip.svelte
+1 −4 src/lib/constants.ts
+2 −7 src/lib/db/index.ts
+0 −9 src/lib/filters.ts
+3 −51 src/lib/i18n/en.json
+3 −51 src/lib/i18n/es.json
+307 −0 src/lib/icons/ClamsLogo.svelte
+47 −0 src/lib/icons/clamsIcon.ts
+10 −0 src/lib/icons/clamsIconPlain.ts
+0 −4 src/lib/icons/prism.ts
+0 −9 src/lib/icons/remote-bolt.ts
+0 −9 src/lib/icons/remote.ts
+0 −13 src/lib/icons/terminal.ts
+22 −62 src/lib/input-parser.ts
+54 −28 src/lib/invoices.ts
+0 −3 src/lib/regex.ts
+1 −1 src/lib/wallets/configurations/coreln/AdvancedConnection.svelte
+5 −5 src/lib/wallets/configurations/coreln/Index.svelte
+0 −46 src/lib/wallets/coreln/clboss.ts
+32 −38 src/lib/wallets/coreln/index.ts
+0 −36 src/lib/wallets/coreln/plugins.ts
+0 −140 src/lib/wallets/coreln/prism.ts
+0 −54 src/lib/wallets/index.ts
+0 −49 src/lib/wallets/interfaces.ts
+4 −4 src/routes/+layout.svelte
+1 −1 src/routes/+layout.ts
+1 −1 src/routes/channels/open/+page.svelte
+2 −4 src/routes/channels/open/+page.ts
+2 −23 src/routes/input/+page.svelte
+3 −5 src/routes/input/+page.ts
+1 −18 src/routes/offers/OfferRow.svelte
+1 −32 src/routes/offers/[id]/+page.svelte
+10 −10 src/routes/offers/offer/create/+page.svelte
+0 −137 src/routes/plugins/+page.svelte
+0 −341 src/routes/plugins/clboss/+page.svelte
+0 −10 src/routes/plugins/clboss/+page.ts
+0 −39 src/routes/plugins/prism/+page.svelte
+0 −10 src/routes/plugins/prism/+page.ts
+0 −84 src/routes/plugins/prism/PrismRow.svelte
+0 −345 src/routes/plugins/prism/[id]/+page.svelte
+0 −8 src/routes/plugins/prism/[id]/+page.ts
+0 −273 src/routes/plugins/prism/create/+page.svelte
+0 −10 src/routes/plugins/prism/create/+page.ts
+18 −19 src/routes/wallets/[id]/+page.svelte
+2 −2 src/routes/welcome/+page.svelte
+ static/icons/android-chrome-192x192.png
+ static/icons/android-chrome-512x512.png
+ static/icons/apple-touch-icon.png
+ static/icons/favicon-16x16.png
+ static/icons/favicon-32x32.png
+ static/icons/favicon.ico
+ static/icons/icon.png
+ static/icons/mstile-150x150.png
+68 −4 static/icons/safari-pinned-tab.svg
+ static/images/shell1.png
+ static/images/shell2.png
+1 −1 static/manifest.webmanifest
+29 −0 svelte.config.js
+1,044 −1,365 yarn.lock
4 changes: 2 additions & 2 deletions manifest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ id:
# A human readable service title
title: "Remote"
# Service version - accepts up to four digits, where the last confirms to revisions necessary for StartOS - see documentation: https://github.com/Start9Labs/emver-rs. This value will change with each release of the service.
version: 2.5.1
version: 2.5.3
# Release notes for the update - can be a string, paragraph or URL
release-notes: "This release features the new CLN Plugins dashboard with accompanying interfaces for the CLBOSS and BOLT12-prism plugins. We've overhauled the app's branding and addressed various bug fixes, including BOLT12 validation issues. Additionally, Remote now supports payments to BIP353 usernames. Learn more here: https://github.com/clams-tech/Remote/releases"
release-notes: "https://github.com/clams-tech/Remote/releases/tag/remote-2.5.3"
# The type of license for the project. Include the LICENSE in the root of the project directory. A license is required for a Start9 package.
license: gpl
# The Start9 wrapper repository URL for the package. This repo contains the manifest file (this), any scripts necessary for configuration, backups, actions, or health checks (more below). This key must exist. But could be embedded into the source repository.
Expand Down
2 changes: 1 addition & 1 deletion scripts/procedures/migrations.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { compat, types as T } from "../deps.ts";

export const migration: T.ExpectedExports.migration =
compat.migrations.fromMapping({}, "2.5.1");
compat.migrations.fromMapping({}, "2.5.3");
Loading