Skip to content

Commit b297fd0

Browse files
committed
Fix nullable reference type warning and update release notes for v1.0.2
1 parent 2640874 commit b297fd0

File tree

2 files changed

+43
-1
lines changed

2 files changed

+43
-1
lines changed

QuickNotes/Community.PowerToys.Run.Plugin.QuickNotes/Main.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ private List<Result> GetInstructionsAndNotes(string? currentSearch)
368368
}
369369

370370
// Helper to create a standard result for a note
371-
private Result CreateNoteResult(NoteEntry note, string subTitle, string displayText = null)
371+
private Result CreateNoteResult(NoteEntry note, string subTitle, string? displayText = null)
372372
{
373373
string title = $"{(note.IsPinned ? "[P] " : "")}[{note.OriginalIndex + 1}] {displayText ?? note.Text}";
374374
return new Result

release_notes_v1.0.2.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# 📝 QuickNotes v1.0.2
2+
3+
![QuickNotes Logo](https://raw.githubusercontent.com/ruslanlap/CommunityPowerToysRunPlugin-QuickNotes/master/QuickNotes/Community.PowerToys.Run.Plugin.QuickNotes/Images/quicknotes.dark.png)
4+
5+
## ✨ What's New
6+
7+
- 🚀 Performance improvements
8+
- 🐛 Bug fixes
9+
- ✨ New features
10+
11+
## 📥 Installation
12+
13+
1. Download the ZIP file for your platform (x64 or ARM64)
14+
2. Extract to `%LOCALAPPDATA%\Microsoft\PowerToys\PowerToys Run\Plugins\`
15+
3. Restart PowerToys
16+
4. Start using with `Alt+Space` then type `qq`
17+
18+
## 🔍 Quick Commands
19+
20+
| Command | Description | Example |
21+
|---------|-------------|---------|
22+
| `qq <text>` | Create a new note | `qq Buy milk and eggs` |
23+
| `qq help` | Show help information | `qq help` |
24+
| `qq search <term>` | Search notes (matched words highlighted) | `qq search milk` |
25+
| `qq searchtag <tag>` | Search notes by tag | `qq searchtag work` |
26+
| `qq view <number>` | View note details | `qq view 1` |
27+
| `qq edit <number>` | Edit a specific note | `qq edit 2` |
28+
| `qq del <number>` | Delete a specific note | `qq del 3` |
29+
| `qq delall` | Delete all notes | `qq delall` |
30+
| `qq undo` | Restore last deleted note | `qq undo` |
31+
| `qq pin <number>` | Pin a note to the top | `qq pin 4` |
32+
| `qq unpin <number>` | Unpin a note | `qq unpin 4` |
33+
| `qq sort date` | Sort notes by date | `qq sort date` |
34+
| `qq sort alpha` | Sort notes alphabetically | `qq sort alpha` |
35+
| `qq backup` or `qq export` | Backup notes (opens folder and file) | `qq backup` |
36+
37+
38+
## 🙏 Thank You
39+
40+
Thank you for using QuickNotes! If you encounter any issues or have suggestions, please [open an issue](https://github.com/ruslanlap/CommunityPowerToysRunPlugin-QuickNotes/issues).
41+
42+
Made with ❤️ by [ruslanlap](https://github.com/ruslanlap)

0 commit comments

Comments
 (0)