Skip to content

Commit

Permalink
Merge pull request #183 from willroberts/release-1.97.5
Browse files Browse the repository at this point in the history
Disables the Editor in staging and bumps to version 1.97.5
  • Loading branch information
willroberts authored Oct 22, 2022
2 parents 11f7da6 + 7877536 commit 2001af8
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion config/staging.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"password": ""
},
"inviteCodesActive": false,
"datGuiEditorEnabled": true,
"datGuiEditorEnabled": false,
"aiToolsEnabled": true,
"allCardsAvailable": true,
"watchSectionMinCurrentVersionGameCount": 1,
Expand Down
2 changes: 1 addition & 1 deletion desktop/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "duelyst-desktop",
"productName": "Duelyst",
"license": "CC0-1.0",
"version": "1.97.4",
"version": "1.97.5",
"main": "desktop.js",
"dependencies": {
"electron-debug": "^2.0.0",
Expand Down
4 changes: 1 addition & 3 deletions gulp/bundler.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ import {
opts, config, env, version, production, staging, development,
} from './shared';

const datGUIEditorEnabled = development || staging || config.get('datGuiEditorEnabled');

const minify = composer(uglify, console);

// Browserify options
Expand All @@ -42,7 +40,7 @@ const bundlerOpts = {
};

const entries = ['./app/index'];
if (datGUIEditorEnabled) {
if (config.get('datGuiEditorEnabled')) {
entries.push('./app/tools/editor.coffee');
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "open-duelyst",
"license": "CC0-1.0",
"version": "1.97.4",
"version": "1.97.5",
"engines": {
"yarn": ">= 1.0.0"
},
Expand Down
4 changes: 4 additions & 0 deletions test/unit/sdk/cards/monthlies/month11.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ describe('monthlies', () => {

expect(maw1.hasActiveModifierClass(SDK.ModifierProvoke)).to.equal(true);
});

/* Test disabled: Slow.
it('expect elkowl to gain two random abilities', () => {
for (let i = 0; i < 100; i++) {
const player1Deck = [
Expand Down Expand Up @@ -89,6 +91,8 @@ describe('monthlies', () => {
SDK.GameSession.reset();
}
});
*/

it('expect grove lion to give your general forcefield', () => {
const gameSession = SDK.GameSession.getInstance();
const board = gameSession.getBoard();
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "1.97.4"
"version": "1.97.5"
}

0 comments on commit 2001af8

Please sign in to comment.