Skip to content

Commit

Permalink
squish 132
Browse files Browse the repository at this point in the history
  • Loading branch information
prosif committed Dec 31, 2024
1 parent 83af46c commit c67d09e
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 5 deletions.
8 changes: 8 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
"squish-120": "npm:[email protected]",
"squish-130": "npm:[email protected]",
"squish-131": "npm:[email protected]",
"squish-132": "npm:[email protected]",
"ws": "7.5.10"
}
}
3 changes: 2 additions & 1 deletion src/common/squish-map.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,6 @@ module.exports = {
'1010': require.resolve('squish-1010'),
'120': require.resolve('squish-120'),
'130': require.resolve('squish-130'),
'131': require.resolve('squish-131')
'131': require.resolve('squish-131'),
'132': require.resolve('squish-132')
};
4 changes: 2 additions & 2 deletions src/dashboard/HomegamesDashboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const fs = require('fs');

const { getConfigValue, getAppDataPath, log } = require('homegames-common');

const { Asset, Game, ViewableGame, GameNode, Colors, ShapeUtils, Shapes, squish, unsquish, ViewUtils } = require('squish-131');
const { Asset, Game, ViewableGame, GameNode, Colors, ShapeUtils, Shapes, squish, unsquish, ViewUtils } = require('squish-132');

const squishMap = require('../common/squish-map');

Expand Down Expand Up @@ -336,7 +336,7 @@ class HomegamesDashboard extends ViewableGame {
return {
aspectRatio: {x: 16, y: 9},
author: 'Joseph Garcia',
squishVersion: '131'
squishVersion: '132'
};
}

Expand Down
2 changes: 1 addition & 1 deletion src/dashboard/game-modal.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const { fork } = require('child_process');
const http = require('http');
const https = require('https');
const path = require('path');
const { Game, ViewableGame, GameNode, Colors, ShapeUtils, Shapes, squish, unsquish, ViewUtils } = require('squish-131');
const { Game, ViewableGame, GameNode, Colors, ShapeUtils, Shapes, squish, unsquish, ViewUtils } = require('squish-132');

const fs = require('fs');

Expand Down
2 changes: 1 addition & 1 deletion src/dashboard/game-option.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const { fork } = require('child_process');
const http = require('http');
const https = require('https');
const path = require('path');
const { Asset, Game, ViewableGame, GameNode, Colors, ShapeUtils, Shapes, squish, unsquish, ViewUtils } = require('squish-131');
const { Asset, Game, ViewableGame, GameNode, Colors, ShapeUtils, Shapes, squish, unsquish, ViewUtils } = require('squish-132');

const fs = require('fs');
const gameModal = require('./game-modal');
Expand Down

0 comments on commit c67d09e

Please sign in to comment.