From 789c1a830ec847e6a63665863493ac5512c813a1 Mon Sep 17 00:00:00 2001 From: idanlib Date: Sun, 3 Aug 2025 01:17:53 +0300 Subject: [PATCH] code review 2b - reorg, version 1.1 + update readme --- README.md | 10 ++++++++++ main.ts | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index aa8b1f2..827c9f6 100644 --- a/README.md +++ b/README.md @@ -23,6 +23,16 @@ Here are some examples of how you might set up FastForwardLink: ![demo](./plugin_demo.gif) +## Version Updates + +### Version 1.1 + +Some improvements include: + +- You can now temporarily by pass forwarding with a designated command! +- Source code refactored and better organized for future conributors. +- Better robust event and error handling and messaging. + ## Features - **Multiple Links, One Target**: Set multiple links to redirect to a single target note for quick navigation between related topics or abbreviations. Organize synonyms or alternate spellings for easier access. diff --git a/main.ts b/main.ts index 9fbfae7..d5dd691 100644 --- a/main.ts +++ b/main.ts @@ -50,8 +50,8 @@ export default class RedirectPlugin extends Plugin { }); this.addCommand({ - id: "bypass-redirect", - name: "Bypass redirect to target note", + id: "bypass-forwarding", + name: "Bypass forwarding to target note", callback: () => { this.isBypassRedirect = true; new Notice("Bypassing redirects.");