Skip to content

Commit c60b38d

Browse files
KaiCreatesclaude
andcommitted
chore: bump version to 1.0.1
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 4155cb9 commit c60b38d

4 files changed

Lines changed: 17 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,20 @@ Versions follow [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
---
99

10+
## [1.0.1] — 2026-03-07
11+
12+
### Fixed
13+
14+
**Windows:**
15+
- Installer appeared frozen during WebView2 download — NSIS hook now detects whether WebView2 is present. If missing, shows a dialog before the download begins: "The installer is NOT frozen — please wait." If already installed (most Windows 10/11), skips silently.
16+
- App silently failed to open when WebView2 was missing or damaged — replaced the silent panic with a native Windows MessageBoxW error dialog with exact fix steps and a download link.
17+
18+
**Linux (Wayland/Hyprland):**
19+
- App showed no UI on Wayland compositors (Hyprland, etc.) — .desktop entry now launches with `GDK_BACKEND=x11 WEBKIT_DISABLE_DMABUF_RENDERER=1` to force XWayland.
20+
- Tray icon caused a startup panic — icons regenerated as 8-bit RGBA (were 16-bit, causing `ImageBufferSize` mismatch in the tray icon loader).
21+
22+
---
23+
1024
## [1.0.0] — 2025-03-07
1125

1226
### Added
@@ -40,10 +54,6 @@ Versions follow [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
4054

4155
## [Unreleased]
4256

43-
### Fixed
44-
- Windows installer no longer appears frozen during WebView2 download: an NSIS hook now detects whether WebView2 is present and, if not, shows a dialog before the download begins explaining that the installer is running normally. Systems where WebView2 is already installed (most Windows 10/11) skip this step silently.
45-
- Windows app no longer silently fails to open when WebView2 is missing or damaged: replaced the silent panic with a native Windows MessageBoxW error dialog that displays the exact fix steps and a direct WebView2 download link. (commit d6d70dd)
46-
4757
### Planned — v1.1
4858
- Clipboard sync across machines
4959
- Linux Wayland support (libei)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "inputsync",
33
"private": true,
4-
"version": "1.0.0",
4+
"version": "1.0.1",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "inputsync"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
description = "InputSync - Software KVM Switch"
55
authors = ["InputSync"]
66
edition = "2021"

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"identifier": "com.inputsync.app",
33
"productName": "InputSync",
4-
"version": "1.0.0",
4+
"version": "1.0.1",
55
"build": {
66
"frontendDist": "../dist",
77
"devUrl": "http://localhost:1420",

0 commit comments

Comments
 (0)