Skip to content

Commit 2001af8

Browse files
authored
Merge pull request #183 from willroberts/release-1.97.5
Disables the Editor in staging and bumps to version 1.97.5
2 parents 11f7da6 + 7877536 commit 2001af8

File tree

6 files changed

+9
-7
lines changed

6 files changed

+9
-7
lines changed

config/staging.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"password": ""
88
},
99
"inviteCodesActive": false,
10-
"datGuiEditorEnabled": true,
10+
"datGuiEditorEnabled": false,
1111
"aiToolsEnabled": true,
1212
"allCardsAvailable": true,
1313
"watchSectionMinCurrentVersionGameCount": 1,

desktop/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "duelyst-desktop",
33
"productName": "Duelyst",
44
"license": "CC0-1.0",
5-
"version": "1.97.4",
5+
"version": "1.97.5",
66
"main": "desktop.js",
77
"dependencies": {
88
"electron-debug": "^2.0.0",

gulp/bundler.js

+1-3
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ import {
2424
opts, config, env, version, production, staging, development,
2525
} from './shared';
2626

27-
const datGUIEditorEnabled = development || staging || config.get('datGuiEditorEnabled');
28-
2927
const minify = composer(uglify, console);
3028

3129
// Browserify options
@@ -42,7 +40,7 @@ const bundlerOpts = {
4240
};
4341

4442
const entries = ['./app/index'];
45-
if (datGUIEditorEnabled) {
43+
if (config.get('datGuiEditorEnabled')) {
4644
entries.push('./app/tools/editor.coffee');
4745
}
4846

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "open-duelyst",
33
"license": "CC0-1.0",
4-
"version": "1.97.4",
4+
"version": "1.97.5",
55
"engines": {
66
"yarn": ">= 1.0.0"
77
},

test/unit/sdk/cards/monthlies/month11.js

+4
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ describe('monthlies', () => {
4949

5050
expect(maw1.hasActiveModifierClass(SDK.ModifierProvoke)).to.equal(true);
5151
});
52+
53+
/* Test disabled: Slow.
5254
it('expect elkowl to gain two random abilities', () => {
5355
for (let i = 0; i < 100; i++) {
5456
const player1Deck = [
@@ -89,6 +91,8 @@ describe('monthlies', () => {
8991
SDK.GameSession.reset();
9092
}
9193
});
94+
*/
95+
9296
it('expect grove lion to give your general forcefield', () => {
9397
const gameSession = SDK.GameSession.getInstance();
9498
const board = gameSession.getBoard();

version.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"version": "1.97.4"
2+
"version": "1.97.5"
33
}

0 commit comments

Comments
 (0)