diff --git a/.github/ISSUE_TEMPLATE/🐞-bug-report.md b/.github/ISSUE_TEMPLATE/🐞-bug-report.md new file mode 100644 index 0000000..c8797de --- /dev/null +++ b/.github/ISSUE_TEMPLATE/🐞-bug-report.md @@ -0,0 +1,33 @@ +--- +name: "\U0001F41E 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 or Linux + +**Version of Qopy** +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..ab75678 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/💡-feature-request.md @@ -0,0 +1,11 @@ +--- +name: "\U0001F4A1 Feature request" +about: Suggest an idea for this project +title: '' +labels: Feature +assignees: 0PandaDEV + +--- + +**Describe your requested feature** +Give as many details as possible 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. 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 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 +}