mirror of
https://github.com/0PandaDEV/Qopy.git
synced 2025-04-21 13:14:04 +02:00
Merge branch 'main' of https://github.com/0PandaDEV/Clipboard-Manager
This commit is contained in:
commit
ac5db4c632
5 changed files with 50 additions and 6 deletions
33
.github/ISSUE_TEMPLATE/🐞-bug-report.md
vendored
Normal file
33
.github/ISSUE_TEMPLATE/🐞-bug-report.md
vendored
Normal file
|
@ -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.
|
11
.github/ISSUE_TEMPLATE/💡-feature-request.md
vendored
Normal file
11
.github/ISSUE_TEMPLATE/💡-feature-request.md
vendored
Normal file
|
@ -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
|
|
@ -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
|
To disable the default clipboard manager popup from windows open Command prompt and run this command
|
||||||
```cmd
|
```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.
|
After that a restart may be reqired.
|
||||||
|
|
|
@ -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.
|
❌ 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
|
## 🚧 Roadmap
|
||||||
- [ ] Setup guide
|
- [ ] [Setup guide](https://github.com/0PandaDEV/Qopy/blob/main/GET_STARTED.md)
|
||||||
- [ ] Settings https://github.com/0PandaDEV/Qopy/issues/2
|
- [ ] Settings https://github.com/0PandaDEV/Qopy/issues/2
|
||||||
- [ ] Option for custom keybind https://github.com/0PandaDEV/Qopy/issues/3
|
- [ ] Option for custom keybind https://github.com/0PandaDEV/Qopy/issues/3
|
||||||
- [ ] Metadata for copied items https://github.com/0PandaDEV/Qopy/issues/5
|
- [ ] Metadata for copied items https://github.com/0PandaDEV/Qopy/issues/5
|
||||||
|
|
|
@ -15,15 +15,15 @@ pub async fn check_for_updates(app: AppHandle) {
|
||||||
let new_ver = &update.version;
|
let new_ver = &update.version;
|
||||||
let mut msg = String::new();
|
let mut msg = String::new();
|
||||||
msg.extend([
|
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?",
|
"Would you like to install it now?",
|
||||||
]);
|
]);
|
||||||
|
|
||||||
app.dialog()
|
app.dialog()
|
||||||
.message(msg)
|
.message(msg)
|
||||||
.title("Update Available")
|
.title("Update Available")
|
||||||
.ok_button_label("Yes")
|
.ok_button_label("Install")
|
||||||
.cancel_button_label("No")
|
.cancel_button_label("Cancel")
|
||||||
.show(move |response| {
|
.show(move |response| {
|
||||||
if !response {
|
if !response {
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue