Skip to content

Commit ac5db4c

Browse files
committed
2 parents 4a1711f + 56106ef commit ac5db4c

File tree

5 files changed

+50
-6
lines changed

5 files changed

+50
-6
lines changed
+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
---
2+
name: "\U0001F41E Bug report"
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: Bug
6+
assignees: 0PandaDEV
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**Operating system**
27+
Windows or Linux
28+
29+
**Version of Qopy**
30+
0.1.0
31+
32+
**Additional context**
33+
Add any other context about the problem here.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
name: "\U0001F4A1 Feature request"
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: Feature
6+
assignees: 0PandaDEV
7+
8+
---
9+
10+
**Describe your requested feature**
11+
Give as many details as possible

GET_STARTED.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ https://github.com/user-attachments/assets/723f9e07-3190-46ec-9bb7-15dfc112f620
1515

1616
To disable the default clipboard manager popup from windows open Command prompt and run this command
1717
```cmd
18-
reg add HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced /v DisabledHotkeys /t REG_SZ /d V
18+
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\System" /v AllowClipboardHistory /t REG_DWORD /d 0 /f
1919
```
2020

2121
After that a restart may be reqired.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Qopy is a fixed clipboard manager designed as a simple alternative to the standa
3636
❌ 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.
3737

3838
## 🚧 Roadmap
39-
- [ ] Setup guide
39+
- [ ] [Setup guide](https://github.com/0PandaDEV/Qopy/blob/main/GET_STARTED.md)
4040
- [ ] Settings https://github.com/0PandaDEV/Qopy/issues/2
4141
- [ ] Option for custom keybind https://github.com/0PandaDEV/Qopy/issues/3
4242
- [ ] Metadata for copied items https://github.com/0PandaDEV/Qopy/issues/5

src-tauri/src/updater.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ pub async fn check_for_updates(app: AppHandle) {
1515
let new_ver = &update.version;
1616
let mut msg = String::new();
1717
msg.extend([
18-
&format!("New Version: {new_ver}\nCurrent Version: {cur_ver}\n\n"),
18+
&format!("{cur_ver} -> {new_ver}\n\n"),
1919
"Would you like to install it now?",
2020
]);
2121

2222
app.dialog()
2323
.message(msg)
2424
.title("Update Available")
25-
.ok_button_label("Yes")
26-
.cancel_button_label("No")
25+
.ok_button_label("Install")
26+
.cancel_button_label("Cancel")
2727
.show(move |response| {
2828
if !response {
2929
return;
@@ -43,4 +43,4 @@ pub async fn check_for_updates(app: AppHandle) {
4343
println!("Failed to check for updates: {:?}", e);
4444
}
4545
}
46-
}
46+
}

0 commit comments

Comments
 (0)