From 36470eb283ec8eed7f9c8c791e2ae8009b2f9284 Mon Sep 17 00:00:00 2001 From: PandaDEV <70103896+0PandaDEV@users.noreply.github.com> Date: Tue, 30 Jul 2024 15:08:45 +0200 Subject: [PATCH 1/5] updated message for auto updater --- src-tauri/src/updater.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src-tauri/src/updater.rs b/src-tauri/src/updater.rs index df83bdc..6c474c2 100644 --- a/src-tauri/src/updater.rs +++ b/src-tauri/src/updater.rs @@ -15,15 +15,15 @@ pub async fn check_for_updates(app: AppHandle) { let new_ver = &update.version; let mut msg = String::new(); msg.extend([ - &format!("New Version: {new_ver}\nCurrent Version: {cur_ver}\n\n"), + &format!("{cur_ver} -> {new_ver}\n\n"), "Would you like to install it now?", ]); app.dialog() .message(msg) .title("Update Available") - .ok_button_label("Yes") - .cancel_button_label("No") + .ok_button_label("Install") + .cancel_button_label("Cancel") .show(move |response| { if !response { return; @@ -43,4 +43,4 @@ pub async fn check_for_updates(app: AppHandle) { println!("Failed to check for updates: {:?}", e); } } -} \ No newline at end of file +} From f05427038bb4444294a46aaa2988503f74fc1e46 Mon Sep 17 00:00:00 2001 From: PandaDEV <70103896+0PandaDEV@users.noreply.github.com> Date: Wed, 31 Jul 2024 09:03:50 +0200 Subject: [PATCH 2/5] Update issue templates --- .github/ISSUE_TEMPLATE/bug_report.md | 33 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 11 ++++++++ 2 files changed, 44 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..45d6fb3 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,33 @@ +--- +name: Bug report +about: Create a report to help us improve +title: '' +labels: Bug +assignees: 0PandaDEV + +--- + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behavior: +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. See error + +**Expected behavior** +A clear and concise description of what you expected to happen. + +**Screenshots** +If applicable, add screenshots to help explain your problem. + +**Operating system** +Windows, macOS or Linux + +**Version of Vleer** +0.1.0 + +**Additional context** +Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..33c41e0 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,11 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: Feature +assignees: 0PandaDEV + +--- + +**Describe your requested feature** +Give as many details as possible From 2ab06ab5567b3cc24fcb7cfe00d6fa9e4f7c3721 Mon Sep 17 00:00:00 2001 From: PandaDEV <70103896+0PandaDEV@users.noreply.github.com> Date: Wed, 31 Jul 2024 09:05:34 +0200 Subject: [PATCH 3/5] Update issue templates --- .github/ISSUE_TEMPLATE/{bug_report.md => 🐞-bug-report.md} | 6 +++--- .../{feature_request.md => 💡-feature-request.md} | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) rename .github/ISSUE_TEMPLATE/{bug_report.md => 🐞-bug-report.md} (89%) rename .github/ISSUE_TEMPLATE/{feature_request.md => 💡-feature-request.md} (82%) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/🐞-bug-report.md similarity index 89% rename from .github/ISSUE_TEMPLATE/bug_report.md rename to .github/ISSUE_TEMPLATE/🐞-bug-report.md index 45d6fb3..c8797de 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/🐞-bug-report.md @@ -1,5 +1,5 @@ --- -name: Bug report +name: "\U0001F41E Bug report" about: Create a report to help us improve title: '' labels: Bug @@ -24,9 +24,9 @@ A clear and concise description of what you expected to happen. If applicable, add screenshots to help explain your problem. **Operating system** -Windows, macOS or Linux +Windows or Linux -**Version of Vleer** +**Version of Qopy** 0.1.0 **Additional context** diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/💡-feature-request.md similarity index 82% rename from .github/ISSUE_TEMPLATE/feature_request.md rename to .github/ISSUE_TEMPLATE/💡-feature-request.md index 33c41e0..ab75678 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/💡-feature-request.md @@ -1,5 +1,5 @@ --- -name: Feature request +name: "\U0001F4A1 Feature request" about: Suggest an idea for this project title: '' labels: Feature From b88353405939dcdc42a50f570b40d35f56056ea8 Mon Sep 17 00:00:00 2001 From: PandaDEV <70103896+0PandaDEV@users.noreply.github.com> Date: Fri, 2 Aug 2024 09:30:03 +0200 Subject: [PATCH 4/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 623099e..3137e32 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ Qopy is a fixed clipboard manager designed as a simple alternative to the standa ❌ macOS will probably be not supported if you want something similar on macOS take a look at [Raycast](https://www.raycast.com/) and their clipboard history extension. ## 🚧 Roadmap -- [ ] Setup guide +- [ ] [Setup guide](https://github.com/0PandaDEV/Qopy/blob/main/GET_STARTED.md) - [ ] Settings https://github.com/0PandaDEV/Qopy/issues/2 - [ ] Option for custom keybind https://github.com/0PandaDEV/Qopy/issues/3 - [ ] Metadata for copied items https://github.com/0PandaDEV/Qopy/issues/5 From 56106effa6f133e99e1e680ad1c642327663ae85 Mon Sep 17 00:00:00 2001 From: PandaDEV <70103896+0PandaDEV@users.noreply.github.com> Date: Sat, 3 Aug 2024 16:40:09 +0200 Subject: [PATCH 5/5] Update GET_STARTED.md --- GET_STARTED.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GET_STARTED.md b/GET_STARTED.md index 2e0bae1..c7447ac 100644 --- a/GET_STARTED.md +++ b/GET_STARTED.md @@ -15,7 +15,7 @@ https://github.com/user-attachments/assets/723f9e07-3190-46ec-9bb7-15dfc112f620 To disable the default clipboard manager popup from windows open Command prompt and run this command ```cmd -reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced /v DisabledHotkeys /t REG_SZ /d V +reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\System" /v AllowClipboardHistory /t REG_DWORD /d 0 /f ``` After that a restart may be reqired.