Skip to content

Commit

Permalink
Merge pull request #236 from VerusCoin/dev
Browse files Browse the repository at this point in the history
v1.2.1
  • Loading branch information
Asherda authored Feb 18, 2024
2 parents a6c8bd8 + cf4a01a commit 466c538
Show file tree
Hide file tree
Showing 8 changed files with 94 additions and 136 deletions.
6 changes: 3 additions & 3 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ stages:
variables:
DOCKER_DRIVER: overlay2
DEFAULT_VERUSCOIN_BRANCH: release
VERUS_VERSION: 1.2.0-2
VERUSCOIN_VERSION: 1.2.0-2
VERUS_VERSION: 1.2.1
VERUSCOIN_VERSION: 1.2.1
KOMODO_VERSION: 0.8.1
KOMODO_DOWNLOAD_URL: https://github.com/KomodoPlatform/komodo/releases/download
PIRATE_VERSION: 5.7.5
Expand Down Expand Up @@ -228,7 +228,7 @@ build:windows:
########################################################################################################################
build:mac:
stage: build
tags: ["Big Sur"]
tags: ["Ventura"]
variables:
KOMODO_CLI_PACKAGE: komodo_${KOMODO_VERSION}_macos.zip
PIRATE_CLI_PACKAGE: pirate-cli-MacOS-v${PIRATE_VERSION}.zip
Expand Down
6 changes: 3 additions & 3 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ if (!hasLock) {

guiapp.use((req, res, next) => {
if (!appConfig.general.main.dev && !(process.argv.indexOf("devmode") > -1)) {
res.header("Access-Control-Allow-Origin", "http://127.0.0.1:3000");
res.header("Access-Control-Allow-Origin", "http://localhost:3000");
} else {
res.header("Access-Control-Allow-Origin", "*");
}
Expand Down Expand Up @@ -155,7 +155,7 @@ if (!hasLock) {
cors: {
origin:
appConfig.general.main.dev || process.argv.indexOf("devmode") > -1
? "http://127.0.0.1:3000"
? "http://localhost:3000"
: null,
methods: ["GET", "POST"],
},
Expand Down Expand Up @@ -455,7 +455,7 @@ if (!hasLock) {

mainWindow.loadURL(
appConfig.general.main.dev || process.argv.indexOf("devmode") > -1
? "http://127.0.0.1:3000"
? "http://localhost:3000"
: `file://${__dirname}/gui/Verus-Desktop-GUI/react/build/index.html`
);

Expand Down
16 changes: 10 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "verus-desktop",
"productName": "Verus-Desktop",
"version": "1.2.0-2",
"version": "1.2.1",
"description": "Verus Desktop Wallet App",
"main": "main.js",
"scripts": {
Expand Down Expand Up @@ -38,7 +38,7 @@
"license": "MIT",
"devDependencies": {
"cross-env": "5.2.1",
"electron": "20.3.9",
"electron": "22.3.25",
"electron-builder": "23.6.0",
"electron-devtools-installer": "3.2.0",
"tslint": "6.1.3",
Expand All @@ -51,7 +51,7 @@
"agama-wallet-lib": "git+https://github.com/VerusCoin/agama-wallet-lib.git#dev",
"arch": "2.1.0",
"async": "2.6.4",
"axios": "0.25.0",
"axios": "1.6.5",
"base64url": "https://github.com/michaeltout/base64url.git",
"bigi": "1.4.2",
"bitgo-utxo-lib": "git+https://github.com/VerusCoin/bitgo-utxo-lib.git",
Expand All @@ -60,7 +60,7 @@
"buffer-reverse": "1.0.1",
"coinselect": "github:bitcoinjs/coinselect",
"create-hash": "git+https://github.com/pbca26/createHash#electron-v4",
"crypto-js": "4.0.0",
"crypto-js": "4.2.0",
"csv-writer": "1.6.0",
"ethers": "5.1.0",
"ethers-michaeltout": "github:michaeltout/ethersjs-package",
Expand Down Expand Up @@ -182,11 +182,15 @@
"ansi-regex": "5.0.1",
"qs": "6.2.4",
"debug": "2.6.9",
"follow-redirects": "1.14.8",
"follow-redirects": "1.15.4",
"fresh": "0.5.2",
"mime": "1.4.1",
"minimatch": "5.1.0",
"json-schema": "0.4.0",
"got": "11.8.5"
"got": "11.8.5",
"axios": "1.6.5",
"json5": "2.2.2",
"semver": "6.3.1",
"tough-cookie": "4.1.3"
}
}
2 changes: 1 addition & 1 deletion routes/api/plugin/start.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ module.exports = (api) => {
});

if (api.appConfig.general.main.dev || process.argv.indexOf('devmode') > -1) {
pluginWindow.loadURL(`http://127.0.0.1:${plugin.devPort}`);
pluginWindow.loadURL(`http://localhost:${plugin.devPort}`);
} else {
pluginWindow.loadFile(plugin.index);
}
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.2.0-2",
"version": "1.2.1",
"minVersion": "1.2.0-2",
"versionUrl": "https://raw.githubusercontent.com/VerusCoin/Verus-Desktop/master/version.json",
"repository": "https://github.com/VerusCoin/Verus-Desktop/"
Expand Down
2 changes: 1 addition & 1 deletion version_build
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.0-2
1.2.1
Loading

0 comments on commit 466c538

Please sign in to comment.