@bobfrankston/msger 0.1.60 → 0.1.61

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -174,7 +174,10 @@ fn main() {
174
174
 
175
175
  // Calculate position with optional screen offset (Windows only)
176
176
  let final_position = if let Some(ref pos) = options.pos {
177
+ #[cfg(target_os = "windows")]
177
178
  let mut x = pos.x;
179
+ #[cfg(not(target_os = "windows"))]
180
+ let x = pos.x;
178
181
  let y = pos.y;
179
182
 
180
183
  // On Windows, calculate screen offset if screen number provided
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bobfrankston/msger",
3
- "version": "0.1.60",
3
+ "version": "0.1.61",
4
4
  "description": "Fast, lightweight, cross-platform message box - Rust-powered alternative to msgview",
5
5
  "type": "module",
6
6
  "main": "./index.js",