File tree 5 files changed +50
-6
lines changed
5 files changed +50
-6
lines changed Original file line number Diff line number Diff line change
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 number Diff line number Diff line change
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
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ https://github.com/user-attachments/assets/723f9e07-3190-46ec-9bb7-15dfc112f620
15
15
16
16
To disable the default clipboard manager popup from windows open Command prompt and run this command
17
17
``` 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
19
19
```
20
20
21
21
After that a restart may be reqired.
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ Qopy is a fixed clipboard manager designed as a simple alternative to the standa
36
36
❌ 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.
37
37
38
38
## 🚧 Roadmap
39
- - [ ] Setup guide
39
+ - [ ] [ Setup guide] ( https://github.com/0PandaDEV/Qopy/blob/main/GET_STARTED.md )
40
40
- [ ] Settings https://github.com/0PandaDEV/Qopy/issues/2
41
41
- [ ] Option for custom keybind https://github.com/0PandaDEV/Qopy/issues/3
42
42
- [ ] Metadata for copied items https://github.com/0PandaDEV/Qopy/issues/5
Original file line number Diff line number Diff line change @@ -15,15 +15,15 @@ pub async fn check_for_updates(app: AppHandle) {
15
15
let new_ver = & update. version ;
16
16
let mut msg = String :: new ( ) ;
17
17
msg. extend ( [
18
- & format ! ( "New Version: {new_ver} \n Current Version: {cur_ver }\n \n " ) ,
18
+ & format ! ( "{cur_ver} -> {new_ver }\n \n " ) ,
19
19
"Would you like to install it now?" ,
20
20
] ) ;
21
21
22
22
app. dialog ( )
23
23
. message ( msg)
24
24
. title ( "Update Available" )
25
- . ok_button_label ( "Yes " )
26
- . cancel_button_label ( "No " )
25
+ . ok_button_label ( "Install " )
26
+ . cancel_button_label ( "Cancel " )
27
27
. show ( move |response| {
28
28
if !response {
29
29
return ;
@@ -43,4 +43,4 @@ pub async fn check_for_updates(app: AppHandle) {
43
43
println ! ( "Failed to check for updates: {:?}" , e) ;
44
44
}
45
45
}
46
- }
46
+ }
You can’t perform that action at this time.
0 commit comments