Skip to content

Commit f0814fb

Browse files
committed
Add new gifs
1 parent 58b4c88 commit f0814fb

File tree

5 files changed

+57
-30
lines changed

5 files changed

+57
-30
lines changed

Changelog.md

Lines changed: 29 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,39 @@
11
# Changelog
22

3-
### 2.1.0 - 2024-6-14
3+
## 2.1.0 - 2024-6-14
44

5-
#### Added
5+
### Added
66

77
- New and improved icons.
88
- New preview panel for creating pages ([#20](https://github.com/Odotocodot/Flow.Launcher.Plugin.OneNote/issues/20))
99
- New setting for icon theme: FL Default (matches Flow Launcher's theme), light, dark and color.
10+
- Opening an hierarchy item from the plugin now always brings OneNote to the front.
11+
- New Hotkey (<kbd>CTRL+Enter<kbd>) to create new items without opening them in OneNote.
1012

11-
#### Changed
13+
### Changed
1214

1315
- Refactored icon generation.
1416
- Refactored settings view.
1517
- Changed Linq2OneNote library reference from submodule to NuGet package.
18+
- Updated tooltips for notebooks, section groups, sections and pages.
19+
20+
### Fixes
21+
22+
- Fixed incorrect autocomplete text for creating new items.
23+
24+
## 2.0.1 - 2023-10-09
1625

17-
### 2.0.1 - 2023-10-0
26+
### Added
1827

19-
#### Added
28+
- OneNote is now opened asynchronously to prevent blocking UI ([#15](https://github.com/Odotocodot/Flow.Launcher.Plugin.OneNote/issues/15))
2029

21-
- OneNote is now opened asynchronously to prevent blocking UI ([[#15](https://github.com/Odotocodot/Flow.Launcher.Plugin.OneNote/issues/15)])
30+
## 2.0.0 - 2023-10-05
2231

23-
### 2.0.0 - 2023-10-05
32+
### **Breaking Changes**
2433

25-
#### **Breaking Changes**
26-
2734
- Now requires Flow Launcher version 1.16 or later.
2835

29-
#### Added
36+
### Added
3037

3138
- **[Created custom OneNote parser/library](https://github.com/Odotocodot/Linq2OneNote)**, adding the ability for several new features.
3239
- Support for section groups when using the notebook explorer.
@@ -49,42 +56,42 @@
4956
- Updated to .NET 7 (update Flow Launcher if an error persists).
5057
- Refactored the majority of code and project structure.
5158

52-
#### Removed
59+
### Removed
5360

5461
- [Scipbe.Common.Office.OneNote](https://github.com/scipbe/ScipBe-Common-Office) package reference.
5562

56-
### 1.1.1 - 2023-03-05
63+
## 1.1.1 - 2023-03-05
5764

58-
#### Fixes
65+
### Fixes
5966

6067
- Fixed crash on search ([#7](https://github.com/Odotocodot/Flow.Launcher.Plugin.OneNote/issues/7))
6168

62-
### 1.1.0 - 2023-03-04
69+
## 1.1.0 - 2023-03-04
6370

64-
#### Added
71+
### Added
6572

6673
- Added the ability to create notebooks, sections and pages.
6774

68-
#### Changes
75+
### Changes
6976

7077
- Improved the readme
7178

72-
#### Fixes
79+
### Fixes
7380

7481
- Fixed typos
7582

76-
### 1.0.2 - 2023-02-28
83+
## 1.0.2 - 2023-02-28
7784

78-
#### Fixes
85+
### Fixes
7986

8087
- Fixed crash due to encrypted sections ([#3](https://github.com/Odotocodot/Flow.Launcher.Plugin.OneNote/issues/3), [#4](https://github.com/Odotocodot/Flow.Launcher.Plugin.OneNote/issues/4))
8188

82-
### 1.0.1 - 2023-01-15
89+
## 1.0.1 - 2023-01-15
8390

84-
#### Fixes
91+
### Fixes
8592

8693
- Fixed crash on invalid search ([#1](https://github.com/Odotocodot/Flow.Launcher.Plugin.OneNote/issues/1))
8794

88-
### 1.0.0 - 2022-12-16
95+
## 1.0.0 - 2022-12-16
8996

9097
Initial Release

Readme.md

Lines changed: 28 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ A [OneNote](https://www.microsoft.com/en-gb/microsoft-365/onenote/digital-note-t
1616
- [Installation](#installation)
1717
- [Features](#features)
1818
- [At a Glance](#at-a-glance)
19+
- [New with Version 2.1.0](#new-with-version-210)
1920
- [Default Search](#default-search)
2021
- [Notebook Explorer](#notebook-explorer)
2122
- [Create New Items](#create-new-items)
@@ -59,13 +60,18 @@ pm install OneNote
5960
> [!NOTE]
6061
> Hierarchy items are notebooks, section groups, sections and pages.
6162
63+
### New with Version 2.1.0
64+
65+
- :star: [New page preview panel](#create-pages) :star: for quickly creating pages with text!
66+
- Added icons for different themes. The themes available are color, light, dark and one that matches Flow Launcher's current theme. Change it in the settings!
67+
6268
### Default Search
6369

6470
```
6571
on {your search query}
6672
```
6773

68-
This is allows you to search OneNote pages using the OneNote API which searches both the content in a page as well as the page title.
74+
This allows you to search OneNote pages using the OneNote API which searches both the content in a page and the page title.
6975

7076
- Press <kbd>⏎ Enter</kbd> or left-click on a search result to open in OneNote.
7177

@@ -93,12 +99,27 @@ Traverse your OneNote notebooks explorer style.
9399
#### Create New Items
94100

95101
Whilst using the notebook explorer, if your search query does not match any names of the items in the results, the plugin will give you an option to create a new item.
102+
TODO CTRL MODIFIIER KEY
96103

97104
![create new item gif](doc/create_new_items.gif)
98105

99106
> [!NOTE]
100107
> Supports all OneNote hierarchy items i.e. notebooks, section groups, sections and pages.
101-
>
108+
109+
##### Create Pages
110+
111+
Allows for quick page creation with content! No longer do you need to open OneNote to add text to a page.
112+
TODO Finish this section
113+
HotKeys
114+
CTRL+S
115+
TAB or Control TAB
116+
Shift TAB or COntrol SHift TAB
117+
Ctrl+O
118+
119+
![create new quick note gif](doc/create_quick_note.gif)
120+
121+
![create pages gif](doc/create_page.gif)
122+
102123
### Recent Pages
103124

104125
```
@@ -125,7 +146,7 @@ Scoped search is the same as [default search](#default-search) but restricted to
125146
![scoped search gif](doc/scoped_search.gif)
126147

127148
<details>
128-
<summary><h4>Example Queries<h4></summary>
149+
<summary><h4>Example Queries</h4></summary>
129150

130151
```
131152
on nb:\A Notebook\A Section Group\>hello there
@@ -150,7 +171,7 @@ Searches for hierarchy items based on their title alone. Unlike [scoped search](
150171
![title search gif](doc/title_search_notebook.gif)
151172

152173
<details>
153-
<summary><h4>Example Queries<h4></summary>
174+
<summary><h4>Example Queries</h4></summary>
154175

155176
```
156177
on nb:\A Notebook\A Section Group\*hello there
@@ -166,7 +187,7 @@ The plugin has a number of settings such as the ability to hide the recycle bin
166187

167188
<details>
168189
<summary>Screenshot of settings</summary>
169-
<img src= "doc/settings.png" width="823" height="598" alt="settings">
190+
<img src= "doc/settings.png" width="100%" alt="settings">
170191
</details>
171192

172193
### Keywords
@@ -175,7 +196,7 @@ All the keywords used can be changed according to user preference.
175196

176197
<details>
177198
<summary>Screenshot of keywords</summary>
178-
<img src= "doc/keywords.png" width="823" height="276" alt="keywords">
199+
<img src= "doc/keywords.png" width="100%" alt="keywords">
179200
</details>
180201

181202
## Changelog
@@ -185,5 +206,4 @@ See [here](Changelog.md) for the full list of changes.
185206
## Acknowledgements
186207

187208
- Made with [Linq2OneNote](https://github.com/Odotocodot/Linq2OneNote) a library for exposing the OneNote API also made by me :smiley:
188-
- Inspired by the OneNote plugin for [PowerToys](https://github.com/microsoft/PowerToys/tree/main/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.OneNote)
189-
- Icons from [Icons8](https://icons8.com)
209+
- Inspired by the OneNote plugin for [PowerToys](https://github.com/microsoft/PowerToys/tree/main/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.OneNote)

doc/create_page.gif

5.15 MB
Loading

doc/create_quick_note.gif

2.63 MB
Loading

doc/settings.png

13.6 KB
Loading

0 commit comments

Comments
 (0)