Skip to content

Commit f0c4a44

Browse files
committed
Fix Windows Integration
1 parent 5551585 commit f0c4a44

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

bin/windows/ui.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import path from 'path';
55
import { fileURLToPath } from 'url';
66

77
const __dirname = path.dirname(fileURLToPath(import.meta.url));
8-
const uiDir = path.resolve(__dirname, "./windows/ui");
8+
const uiDir = path.resolve(__dirname, "./ui");
99
const confirmPs1 = path.resolve(uiDir, "./confirm.ps1");
1010
const welcomePs1 = path.resolve(uiDir, "./welcome.ps1");
1111
const compresPs1 = path.resolve(uiDir, "./compress.ps1");

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "strc",
3-
"version": "2.1.0",
3+
"version": "2.1.1-a",
44
"description": "JavaScript String Compressor - lossless string compression algorithm",
55
"main": "dist/jssc.cjs",
66
"repository": {

src/build.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ mkdir dist/windows
44
cp -r bin/windows/ui dist/windows/ui
55
cp bin/windows/default.justc dist/windows/default.justc
66
cp bin/windows/jssc.vbs dist/windows/jssc.vbs
7+
cp bin/windows/icon.ico dist/windows/icon.ico
78

89
node src/emoji.js
910
rm -f src/emoji.js

0 commit comments

Comments
 (0)