@bobfrankston/msger 0.1.14 → 0.1.16
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.
- package/index.js +12 -1
- package/index.js.map +1 -1
- package/index.ts +13 -1
- package/msger-native/bin/msgernative +0 -0
- package/msger-native/build-wsl.ts +24 -0
- package/msger-native/build.ts +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { spawn } from 'child_process';
|
|
2
2
|
import { platform } from 'os';
|
|
3
3
|
import path from 'path';
|
|
4
|
+
import fs from 'fs';
|
|
4
5
|
/**
|
|
5
6
|
* Show a message box dialog using native Rust implementation
|
|
6
7
|
* @param options Message box configuration
|
|
@@ -8,9 +9,19 @@ import path from 'path';
|
|
|
8
9
|
*/
|
|
9
10
|
export async function showMessageBox(options) {
|
|
10
11
|
return new Promise((resolve, reject) => {
|
|
12
|
+
const isWindows = platform() === 'win32';
|
|
11
13
|
// Determine the binary name based on platform
|
|
12
|
-
const binaryName =
|
|
14
|
+
const binaryName = isWindows ? 'msgernative.exe' : 'msgernative';
|
|
13
15
|
const binaryPath = path.join(import.meta.dirname, 'msger-native', 'bin', binaryName);
|
|
16
|
+
// Ensure the binary has execute permissions on Unix systems
|
|
17
|
+
if (!isWindows && fs.existsSync(binaryPath)) {
|
|
18
|
+
try {
|
|
19
|
+
fs.chmodSync(binaryPath, 0o755);
|
|
20
|
+
}
|
|
21
|
+
catch (error) {
|
|
22
|
+
// Ignore permission errors if we can't set it
|
|
23
|
+
}
|
|
24
|
+
}
|
|
14
25
|
// Spawn the Rust binary
|
|
15
26
|
const child = spawn(binaryPath, [], {
|
|
16
27
|
stdio: ['pipe', 'pipe', 'pipe']
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,eAAe,CAAC;AACtC,OAAO,EAAE,QAAQ,EAAE,MAAM,IAAI,CAAC;AAC9B,OAAO,IAAI,MAAM,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"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"}
|
package/index.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { spawn } from 'child_process';
|
|
2
2
|
import { platform } from 'os';
|
|
3
3
|
import path from 'path';
|
|
4
|
+
import fs from 'fs';
|
|
4
5
|
|
|
5
6
|
export interface MessageBoxOptions {
|
|
6
7
|
title?: string;
|
|
@@ -31,10 +32,21 @@ export interface MessageBoxResult {
|
|
|
31
32
|
*/
|
|
32
33
|
export async function showMessageBox(options: MessageBoxOptions): Promise<MessageBoxResult> {
|
|
33
34
|
return new Promise((resolve, reject) => {
|
|
35
|
+
const isWindows = platform() === 'win32';
|
|
36
|
+
|
|
34
37
|
// Determine the binary name based on platform
|
|
35
|
-
const binaryName =
|
|
38
|
+
const binaryName = isWindows ? 'msgernative.exe' : 'msgernative';
|
|
36
39
|
const binaryPath = path.join(import.meta.dirname, 'msger-native', 'bin', binaryName);
|
|
37
40
|
|
|
41
|
+
// Ensure the binary has execute permissions on Unix systems
|
|
42
|
+
if (!isWindows && fs.existsSync(binaryPath)) {
|
|
43
|
+
try {
|
|
44
|
+
fs.chmodSync(binaryPath, 0o755);
|
|
45
|
+
} catch (error) {
|
|
46
|
+
// Ignore permission errors if we can't set it
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
|
|
38
50
|
// Spawn the Rust binary
|
|
39
51
|
const child = spawn(binaryPath, [], {
|
|
40
52
|
stdio: ['pipe', 'pipe', 'pipe']
|
|
Binary file
|
|
@@ -45,6 +45,30 @@ try {
|
|
|
45
45
|
}
|
|
46
46
|
}
|
|
47
47
|
|
|
48
|
+
// Check if pkg-config and GTK dependencies are installed
|
|
49
|
+
console.log('🔍 Checking for build dependencies in WSL...');
|
|
50
|
+
try {
|
|
51
|
+
execSync('wsl -e bash -c "command -v pkg-config"', { stdio: 'pipe' });
|
|
52
|
+
console.log('✅ Build dependencies found');
|
|
53
|
+
} catch {
|
|
54
|
+
console.log('⚠️ Build dependencies not found, installing...');
|
|
55
|
+
console.log(' Installing: pkg-config, libgtk-3-dev, libwebkit2gtk-4.1-dev, libsoup-3.0-dev');
|
|
56
|
+
try {
|
|
57
|
+
execSync(
|
|
58
|
+
'wsl -e bash -c "sudo apt-get update && sudo apt-get install -y pkg-config libgtk-3-dev libwebkit2gtk-4.1-dev libsoup-3.0-dev"',
|
|
59
|
+
{ stdio: 'inherit' }
|
|
60
|
+
);
|
|
61
|
+
console.log('✅ Build dependencies installed successfully');
|
|
62
|
+
} catch (error: any) {
|
|
63
|
+
console.error('❌ Failed to install build dependencies:', error.message);
|
|
64
|
+
console.error('Please install manually in WSL:');
|
|
65
|
+
console.error(' wsl');
|
|
66
|
+
console.error(' sudo apt-get update');
|
|
67
|
+
console.error(' sudo apt-get install -y pkg-config libgtk-3-dev libwebkit2gtk-4.1-dev libsoup-3.0-dev');
|
|
68
|
+
process.exit(1);
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
48
72
|
try {
|
|
49
73
|
execSync(`wsl -e bash -c "source ~/.cargo/env 2>/dev/null || true && cd '${wslPath}' && npm run build"`, {
|
|
50
74
|
stdio: 'inherit'
|
package/msger-native/build.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
import { execSync } from 'child_process';
|
|
4
4
|
import { platform, arch } from 'os';
|
|
5
|
-
import { existsSync, mkdirSync, copyFileSync, readFileSync, statSync } from 'fs';
|
|
5
|
+
import { existsSync, mkdirSync, copyFileSync, readFileSync, statSync, chmodSync } from 'fs';
|
|
6
6
|
|
|
7
7
|
function isWSL() {
|
|
8
8
|
try {
|