Releases: miniben-90/x-win
Releases · miniben-90/x-win
rust-v5.2.0
What's Changed
- Use variables directly with
format!
- Add Librewolf browser to the list for url recovery
Full Changelog: rust-v5.1.0...rust-v5.2.0
v3.1.0
What's Changed
- Add librewolf to the browsers list to recover url of active tab
Full Changelog: napi-v3.0.0...napi-v3.1.0
v3.0.0
What's Changed
- Better management of errors
- Two new functions to help with Linux system to know if gnome extension is installed or enabled:
is_enabled_extension
andis_installed_extension
Breaking Change
Breaking change for subscribeActiveWindow
for callback parameter who now have 2 parameters error: Error
and result: WindowInfo
.
import { subscribeActiveWindow } from '@miniben90/x-win';
const a = subscribeActiveWindow((error, activeWindow) => {
console.log('test a', activeWindow);
});
Full Changelog: napi-v2.2.1...napi-v3.0.0
rust-v5.1.0
What's Changed
- Better management of errors
- Two new functions to help for Linux system to know if gnome extension is installed or / and enabled
x_win::is_enabled_extension
andx_win::is_installed_extension
Full Changelog: rust-v5.0.1...rust-v5.1.0
napi-v3.0.0
What's Changed
- Better management of errors
- Two new functions to help with Linux system to know if gnome extension is installed or enabled:
is_enabled_extension
andis_installed_extension
Breaking Change
Breaking change for subscribeActiveWindow
for callback parameter who now have 2 parameters error: Error
and result: WindowInfo
.
import { subscribeActiveWindow } from '@miniben90/x-win';
const a = subscribeActiveWindow((error, activeWindow) => {
console.log('test a', activeWindow);
});
Full Changelog: napi-v2.2.1...napi-v3.0.0
v2.2.1: Fix issue #53 Crash with X11 with alt+tab switch screen
# Fix issue * Problem with Ubuntu when using X11 Desktop and switching window throw `alt`+`tab` who generate an empty screen value and generate an error when trying to recover PID of it * Add message to prevent of empty Error message when it append * Add a pointer for node part when calling `subscribe_active_window` to avoid flooding with empty `WindowInfo` with window tab screen
rust-v5.0.1
What's Changed
Fix issue
- Problem with Ubuntu when using X11 Desktop and switching window throw
alt
+tab
who generate an empty screen value and generate an error when trying to recover PID of it - Add message to prevent of empty Error message when it append
Full Changelog: rust-v5.0.0...rust-v5.0.1
napi-v2.2.1
What's Changed
Fix issue
- Problem with Ubuntu when using X11 Desktop and switching window throw
alt
+tab
who generate an empty screen value and generate an error when trying to recover PID of it (issue #53) - Add message to prevent of empty Error message when it append
- Add a pointer for node part when calling
subscribe_active_window
to avoid flooding with emptyWindowInfo
with window tab screen
Full Changelog: napi-v2.2.0...napi-v2.2.1
v2.2.0
chore(darwin): Fix warning with deprecated functions
rust-v5.0.0
Breaking Change
- Upgrade
zbus
dependency from1.9.2
to5.5.0
- Removing
XWinError
- Replace all functions to return
Result<T>
instead ofT
What's Changed
- Update deps and use Result by @miniben-90 in #51
Full Changelog: rust-v4.0.0...rust-v5.0.0