diff --git a/manifest.yaml b/manifest.yaml index 25216fb..b119d35 100644 --- a/manifest.yaml +++ b/manifest.yaml @@ -1,10 +1,10 @@ id: robosats title: "RoboSats" -version: 0.4.1 +version: 0.4.1.1 release-notes: | - * Updated to v0.4.0-alpha [Release Notes](https://github.com/Reckless-Satoshi/robosats/releases/tag/v0.4.0-alpha) + * Updated to v0.4.1-alpha [Release Notes](https://github.com/Reckless-Satoshi/robosats/releases/tag/v0.4.1-alpha) license: mit -wrapper-repo: "https://github.com/Start9Labs/robosats-wrapper" +wrapper-repo: "https://github.com/kn0wmad/robosats-wrapper" upstream-repo: "https://github.com/Reckless-Satoshi/robosats" support-site: "https://github.com/Reckless-Satoshi/robosats/issues" marketing-site: "https://learn.robosats.com/" @@ -44,8 +44,8 @@ config: type: script set: type: script -properties: - type: script +# properties: +# type: script # This denotes any data, asset, or pointer volumes that should be connected when the "docker run" command is invoked volumes: # This is the image where files from the project asset directory will go diff --git a/scripts/deps.ts b/scripts/deps.ts index ee0dcd8..43bec43 100644 --- a/scripts/deps.ts +++ b/scripts/deps.ts @@ -1 +1 @@ -export * from "https://deno.land/x/embassyd_sdk@v0.3.3.0.8/mod.ts"; +export * from "https://deno.land/x/embassyd_sdk@v0.3.3.0.9/mod.ts"; diff --git a/scripts/embassy.ts b/scripts/embassy.ts index 52739f8..d41b743 100644 --- a/scripts/embassy.ts +++ b/scripts/embassy.ts @@ -1,6 +1,5 @@ export { setConfig } from "./procedures/setConfig.ts"; export { getConfig } from "./procedures/getConfig.ts"; -export { properties } from "./procedures/properties.ts"; +// export { properties } from "./procedures/properties.ts"; export { migration } from "./procedures/migrations.ts"; export { health } from "./procedures/healthChecks.ts"; -// export { main } from "./procedures/main.ts"; diff --git a/scripts/procedures/main.ts b/scripts/procedures/main.ts deleted file mode 100644 index 33e809f..0000000 --- a/scripts/procedures/main.ts +++ /dev/null @@ -1,11 +0,0 @@ -// import { types as T, util } from "../deps.ts"; - -// export const main: T.ExpectedExports.main = async (effects) => { -// await effects.runDaemon( -// { -// command: "docker_entrypoint.sh", -// args: [], -// }, -// ).wait(); -// return util.ok; -// }; \ No newline at end of file diff --git a/scripts/procedures/migrations.ts b/scripts/procedures/migrations.ts index f0d1160..68baa91 100644 --- a/scripts/procedures/migrations.ts +++ b/scripts/procedures/migrations.ts @@ -1,4 +1,4 @@ import { compat, types as T } from "../deps.ts"; export const migration: T.ExpectedExports.migration = compat.migrations - .fromMapping({}, "0.4.1" ); + .fromMapping({}, "0.4.1.1" ); diff --git a/scripts/procedures/properties.ts b/scripts/procedures/properties.ts deleted file mode 100644 index dff99aa..0000000 --- a/scripts/procedures/properties.ts +++ /dev/null @@ -1,3 +0,0 @@ -import { compat, types as T } from "../deps.ts"; - -export const properties: T.ExpectedExports.properties = compat.properties;