From 7f373ce51ccf8ed2bc70e41927b5bbe3fde704c3 Mon Sep 17 00:00:00 2001 From: AkiaCode <71239005+AkiaCode@users.noreply.github.com> Date: Mon, 21 Aug 2023 20:15:55 +0900 Subject: [PATCH 1/4] Update README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index fd199acc..639b267d 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import the package from https://deno.land/x/harmony/mod.ts (with latest version) or can add a version too, and raw GitHub URL (latest unpublished version) https://raw.githubusercontent.com/harmonyland/harmony/main/mod.ts too. -We also have a (fancy) custom registry for importing Harmony! It's at [code.harmony.rocks](https://code.harmony.rocks), example import URL: `https://code.harmony.rocks/v2.6.1`. +We also have a (fancy) custom registry for importing Harmony! It's at [code.harmony.rocks](https://code.harmony.rocks), example import URL: `https://code.harmony.rocks/v2.9.0`. ## Usage (Node.js) @@ -29,14 +29,14 @@ You can install and use the NPM package published under `@harmonyland/harmony`. ## Documentation -Documentation is available [main branch](https://doc.deno.land/https/raw.githubusercontent.com/harmonyland/harmony/main/mod.ts) or [latest stable version (v2.6.1)](https://doc.deno.land/https/deno.land/x/harmony@v2.6.1/mod.ts). You can also check out the [guide](https://harmony.mod.land). +Documentation is available [main branch](https://doc.deno.land/https/raw.githubusercontent.com/harmonyland/harmony/main/mod.ts) or [latest stable version (v2.6.1)](https://doc.deno.land/https/deno.land/x/harmony@v2.9.0/mod.ts). You can also check out the [guide](https://harmony.mod.land). ## Example For a quick example, run this: ```bash -deno run --allow-net https://deno.land/x/harmony@v2.6.1/examples/ping.ts +deno run --allow-net https://deno.land/x/harmony@v2.9.0/examples/ping.ts ``` And input your bot's token. @@ -48,7 +48,7 @@ import { Client, Message, GatewayIntents -} from 'https://deno.land/x/harmony@v2.6.1/mod.ts' +} from 'https://deno.land/x/harmony@v2.9.0/mod.ts' const client = new Client({ intents: [ @@ -83,7 +83,7 @@ import { Command, CommandContext, GatewayIntents -} from 'https://deno.land/x/harmony@v2.6.1/mod.ts' +} from 'https://deno.land/x/harmony@v2.9.0/mod.ts' const client = new CommandClient({ prefix: '!', @@ -124,7 +124,7 @@ import { command, CommandContext, GatewayIntents -} from 'https://deno.land/x/harmony@v2.6.1/mod.ts' +} from 'https://deno.land/x/harmony@v2.9.0/mod.ts' class MyClient extends CommandClient { constructor() { From 7b876d923bec1fb74602603613635aa4a315649c Mon Sep 17 00:00:00 2001 From: AkiaCode <71239005+AkiaCode@users.noreply.github.com> Date: Tue, 22 Aug 2023 20:55:03 +0900 Subject: [PATCH 2/4] Update README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 639b267d..8302f67b 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import the package from https://deno.land/x/harmony/mod.ts (with latest version) or can add a version too, and raw GitHub URL (latest unpublished version) https://raw.githubusercontent.com/harmonyland/harmony/main/mod.ts too. -We also have a (fancy) custom registry for importing Harmony! It's at [code.harmony.rocks](https://code.harmony.rocks), example import URL: `https://code.harmony.rocks/v2.9.0`. +We also have a (fancy) custom registry for importing Harmony! It's at [code.harmony.rocks](https://code.harmony.rocks), example import URL: `https://code.harmony.rocks`. ## Usage (Node.js) @@ -29,14 +29,14 @@ You can install and use the NPM package published under `@harmonyland/harmony`. ## Documentation -Documentation is available [main branch](https://doc.deno.land/https/raw.githubusercontent.com/harmonyland/harmony/main/mod.ts) or [latest stable version (v2.6.1)](https://doc.deno.land/https/deno.land/x/harmony@v2.9.0/mod.ts). You can also check out the [guide](https://harmony.mod.land). +Documentation is available [main branch](https://doc.deno.land/https/raw.githubusercontent.com/harmonyland/harmony/main/mod.ts) or [latest stable version](https://doc.deno.land/https/deno.land/x/harmony/mod.ts). You can also check out the [guide](https://harmony.mod.land). ## Example For a quick example, run this: ```bash -deno run --allow-net https://deno.land/x/harmony@v2.9.0/examples/ping.ts +deno run --allow-net https://deno.land/x/harmony/examples/ping.ts ``` And input your bot's token. @@ -48,7 +48,7 @@ import { Client, Message, GatewayIntents -} from 'https://deno.land/x/harmony@v2.9.0/mod.ts' +} from 'https://deno.land/x/harmony/mod.ts' const client = new Client({ intents: [ @@ -83,7 +83,7 @@ import { Command, CommandContext, GatewayIntents -} from 'https://deno.land/x/harmony@v2.9.0/mod.ts' +} from 'https://deno.land/x/harmony/mod.ts' const client = new CommandClient({ prefix: '!', @@ -124,7 +124,7 @@ import { command, CommandContext, GatewayIntents -} from 'https://deno.land/x/harmony@v2.9.0/mod.ts' +} from 'https://deno.land/x/harmony/mod.ts' class MyClient extends CommandClient { constructor() { From e0c0b87629c9cb4fc34845eaf6ead0163506b7ec Mon Sep 17 00:00:00 2001 From: AkiaCode <71239005+AkiaCode@users.noreply.github.com> Date: Wed, 23 Aug 2023 11:25:34 +0900 Subject: [PATCH 3/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8302f67b..1c2efef0 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ You can import the package from https://deno.land/x/harmony/mod.ts (with latest version) or can add a version too, and raw GitHub URL (latest unpublished version) https://raw.githubusercontent.com/harmonyland/harmony/main/mod.ts too. -We also have a (fancy) custom registry for importing Harmony! It's at [code.harmony.rocks](https://code.harmony.rocks), example import URL: `https://code.harmony.rocks`. +We also have a (fancy) custom registry for importing Harmony! ## Usage (Node.js) From 9ac74894c41a0138ee881634fc25a69882a088e3 Mon Sep 17 00:00:00 2001 From: AkiaCode <71239005+AkiaCode@users.noreply.github.com> Date: Wed, 23 Aug 2023 18:01:45 +0900 Subject: [PATCH 4/4] Update README.md --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 1c2efef0..b6455197 100644 --- a/README.md +++ b/README.md @@ -21,8 +21,6 @@ You can import the package from https://deno.land/x/harmony/mod.ts (with latest version) or can add a version too, and raw GitHub URL (latest unpublished version) https://raw.githubusercontent.com/harmonyland/harmony/main/mod.ts too. -We also have a (fancy) custom registry for importing Harmony! - ## Usage (Node.js) You can install and use the NPM package published under `@harmonyland/harmony`.