Skip to content

Commit

Permalink
🔖 0.9.7-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
kiomarzsss committed May 28, 2024
1 parent 5979ff1 commit 0022b28
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"url": "https://github.com/bepass-org/oblivion-desktop/issues",
"email": "[email protected]"
},
"version": "0.9.6-beta",
"version": "0.9.7-beta",
"license": "Restrictive",
"main": "./src/main/main.ts",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion release/app/package.json
Original file line number Diff line number Diff line change
@@ -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 <[email protected]> (https://ircf.space/)",
Expand Down
2 changes: 2 additions & 0 deletions script/beforePackHook.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions script/dlWp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 0022b28

Please sign in to comment.