You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Then double-click the .streamDeckPlugin file to install and verify it works
239
+
```
240
+
241
+
#### 6. Create Git Tag
242
+
243
+
```powershell
244
+
# Create annotated tag on main branch
245
+
git tag -a vX.Y.Z -m "vX.Y.Z - Brief description of release"
246
+
247
+
# Push tag to remote
192
248
git push origin vX.Y.Z
249
+
```
250
+
251
+
#### 7. Create GitHub Release
193
252
194
-
# 2. Create release with plugin package
253
+
**IMPORTANT**: Use GitHub keywords to automatically close related issues. Include `Closes #X`, `Fixes #X`, or `Resolves #X` in the release notes for each issue addressed.
Copy file name to clipboardExpand all lines: README.md
+21-2Lines changed: 21 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,13 @@ iCal Plugin for [elgato Stream Deck](https://www.elgato.com/en/gaming/stream-dec
6
6
7
7
This plugin is available on the Stream Deck store, you can also download [the last release](https://github.com/pedrofuentes/stream-deck-ical/releases) or build it yourself using the code on this repo.
8
8
9
+
## ✨ New in v2.1
10
+
11
+
- ✅ **Configurable Title Display**: Choose how long meeting titles show (5, 10, 15, or 30 seconds)
12
+
- ✅ **Meeting Start Flash**: Optional visual alert when meetings begin
13
+
- ✅ **Improved Startup**: Faster button initialization with better status messages
14
+
- ✅ **Better UX**: Shows "Please Setup" for unconfigured plugins
Copy file name to clipboardExpand all lines: package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "stream-deck-ical",
3
-
"version": "2.0.0",
3
+
"version": "2.1.0",
4
4
"description": "An elgato Stream Deck plugin that displays information from your calendar using an iCal URL. Visual cues and a countdown will help you end meetings on time and be ready for the next one.",
0 commit comments