From 0022b28ba331078f7f42a089866ab5ecf68a88c5 Mon Sep 17 00:00:00 2001 From: kiomarzsss Date: Tue, 28 May 2024 14:14:28 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=200.9.7-beta?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 +- release/app/package.json | 2 +- script/beforePackHook.js | 2 ++ script/dlWp.ts | 1 + 4 files changed, 5 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index b48fcd0a..71527ce1 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,7 @@ "url": "https://github.com/bepass-org/oblivion-desktop/issues", "email": "ircfspace@gmail.com" }, - "version": "0.9.6-beta", + "version": "0.9.7-beta", "license": "Restrictive", "main": "./src/main/main.ts", "scripts": { diff --git a/release/app/package.json b/release/app/package.json index d71b76dc..1882bd4d 100644 --- a/release/app/package.json +++ b/release/app/package.json @@ -1,7 +1,7 @@ { "name": "oblivion-desktop", "description": "unofficial desktop version of oblivion", - "version": "0.9.6-beta", + "version": "0.9.7-beta", "homepage": "https://github.com/bepass-org/oblivion-desktop#readme", "license": "Restrictive", "author": "ircfspace+kiomarzsss (https://ircf.space/)", diff --git a/script/beforePackHook.js b/script/beforePackHook.js index 1af07407..20fe75ba 100644 --- a/script/beforePackHook.js +++ b/script/beforePackHook.js @@ -2,8 +2,10 @@ const util = require('util'); const exec = util.promisify(require('child_process').exec); exports.default = async function (context) { + console.log('🚀 ~ file: beforePackHook.js:12 ~ context.arch:', context.arch); const archDict = { 1: 'x64', + 2: 'ia32', 3: 'arm64' }; // TODO don't force download when packaging on the local platform diff --git a/script/dlWp.ts b/script/dlWp.ts index 9545595e..ea19512f 100644 --- a/script/dlWp.ts +++ b/script/dlWp.ts @@ -62,6 +62,7 @@ async function downloadFile(uri: string, destPath: string) { // download, unzip and move(rename) const dlUnzipMove = async (url: string) => { + console.log('🚀 ~ file: dlWp.ts:65 ~ url:', url); const binPath = './assets/bin'; const isBinDirExist = await doesDirectoryExist(binPath);