Compare commits
9 Commits
| Author | SHA1 | Date |
|---|---|---|
|
|
21623b24f0 | |
|
|
d2fe0f47c3 | |
|
|
f5bd481975 | |
|
|
efe995e247 | |
|
|
b553eb434a | |
|
|
4f72d75642 | |
|
|
a829e7224c | |
|
|
23202e7a7b | |
|
|
06c605344f |
|
|
@ -559,6 +559,10 @@ div.hbox {
|
||||||
color: blue;
|
color: blue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.jBox-wrapper.jBox-hasTitle > .jBox-container {
|
||||||
|
padding: 4px; /* same as border-radius */
|
||||||
|
}
|
||||||
|
|
||||||
.jBox-title h2 {
|
.jBox-title h2 {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
@ -605,10 +609,9 @@ div.hbox {
|
||||||
}
|
}
|
||||||
|
|
||||||
.game-tiles {
|
.game-tiles {
|
||||||
width: 90vw;
|
width: calc(100vw - 6rem);
|
||||||
max-width: 90vw;
|
max-width: calc(100vw - 6rem);
|
||||||
max-height: 85vh;
|
max-height: calc(100vh - 12rem);
|
||||||
overflow-y: auto;
|
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: repeat(auto-fill, minmax(15em, auto));
|
grid-template-columns: repeat(auto-fill, minmax(15em, auto));
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
@ -661,6 +664,7 @@ div.hbox {
|
||||||
font-size: 3em;
|
font-size: 3em;
|
||||||
text-shadow: 2px 2px 4px #000000c0;
|
text-shadow: 2px 2px 4px #000000c0;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.new-game-text::before {
|
.new-game-text::before {
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
|
|
|
||||||
1
index.js
1
index.js
|
|
@ -1,5 +1,6 @@
|
||||||
import './css/chess.css';
|
import './css/chess.css';
|
||||||
import './css/theme/pacosako.css';
|
import './css/theme/pacosako.css';
|
||||||
|
import './css/theme/traditional.css';
|
||||||
|
|
||||||
import '@fortawesome/fontawesome-free/css/fontawesome.css';
|
import '@fortawesome/fontawesome-free/css/fontawesome.css';
|
||||||
import '@fortawesome/fontawesome-free/css/solid.css';
|
import '@fortawesome/fontawesome-free/css/solid.css';
|
||||||
|
|
|
||||||
|
|
@ -370,9 +370,9 @@ function startMetaPoll(afterTime) {
|
||||||
const thisRequest = meta.currentRequest = $.ajax({
|
const thisRequest = meta.currentRequest = $.ajax({
|
||||||
dataType: 'json',
|
dataType: 'json',
|
||||||
contentType: 'application/json',
|
contentType: 'application/json',
|
||||||
url: `${API_BASE}/games${!afterTime ? '' : `/poll/${afterTime}`}`,
|
url: `${API_BASE}/games${(afterTime === undefined) ? '' : `/poll/${afterTime}`}`,
|
||||||
cache: false,
|
cache: false,
|
||||||
timeout: afterTime ? LONG_TIMEOUT : SHORT_TIMEOUT,
|
timeout: (afterTime === undefined) ? SHORT_TIMEOUT : LONG_TIMEOUT,
|
||||||
}).done((data, textStatus, jqXHR) => {
|
}).done((data, textStatus, jqXHR) => {
|
||||||
if (meta.currentRequest === thisRequest) {
|
if (meta.currentRequest === thisRequest) {
|
||||||
meta.currentRequest = null;
|
meta.currentRequest = null;
|
||||||
|
|
|
||||||
|
|
@ -1238,6 +1238,7 @@ $(function (){
|
||||||
|
|
||||||
var selectBoxIntervalID = undefined;
|
var selectBoxIntervalID = undefined;
|
||||||
var selectBox = new jBox('Modal', {
|
var selectBox = new jBox('Modal', {
|
||||||
|
title: '<h2>Recent Games</h2>',
|
||||||
content: gameSelectContent,
|
content: gameSelectContent,
|
||||||
blockScroll: false,
|
blockScroll: false,
|
||||||
blockScrollAdjust: false,
|
blockScrollAdjust: false,
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
38
package.json
38
package.json
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "paco-sako",
|
"name": "paco-sako",
|
||||||
"version": "0.8.3",
|
"version": "0.8.7",
|
||||||
"description": "Online version of the Paco Ŝako chess variation",
|
"description": "Online version of the Paco Ŝako chess variation",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"game",
|
"game",
|
||||||
|
|
@ -32,32 +32,34 @@
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@fortawesome/fontawesome-free": "^5.13.0",
|
"@fortawesome/fontawesome-free": "^5.13.0",
|
||||||
"buffer": "^4.9.2",
|
"buffer": "^6.0.3",
|
||||||
"clean-webpack-plugin": "^3.0.0",
|
"clean-webpack-plugin": "^4.0.0",
|
||||||
"copy-webpack-plugin": "^5.1.1",
|
"copy-webpack-plugin": "^6.4.1",
|
||||||
"css-element-queries": "^1.2.3",
|
"css-element-queries": "^1.2.3",
|
||||||
"deep-equal": "git+https://jessemcdonald.info/gogs/nybble/node-deep-equal",
|
"deep-equal": "git+https://jessemcdonald.info/gogs/nybble/node-deep-equal",
|
||||||
"extract-loader": "^5.0.1",
|
"extract-loader": "^5.0.1",
|
||||||
"html-webpack-plugin": "^4.3.0",
|
"html-webpack-plugin": "^4.5.2",
|
||||||
"jbox": "^1.2.0",
|
"jbox": "^1.2.0",
|
||||||
"jquery-ui-touch-punch": "^0.2.3",
|
"jquery-ui-touch-punch": "^0.2.3",
|
||||||
"lodash": "^4.17.15",
|
"lodash": "^4.17.15",
|
||||||
"mini-css-extract-plugin": "^0.9.0",
|
"mini-css-extract-plugin": "^1.6.2",
|
||||||
"optimize-css-assets-webpack-plugin": "^5.0.3",
|
"optimize-css-assets-webpack-plugin": "^6.0.1",
|
||||||
"pako": "^1.0.11",
|
"pako": "^2.0.4",
|
||||||
"sprintf-js": "^1.0.3",
|
"sprintf-js": "^1.0.3",
|
||||||
"svgo": "^1.3.2",
|
"svgo": "^2.7.0",
|
||||||
"svgo-loader": "^2.2.1",
|
"svgo-loader": "^3.0.0",
|
||||||
"webpack": "^4.43.0",
|
"webpack": "^4.46.0",
|
||||||
"webpack-cli": "^3.3.11",
|
"webpack-cli": "^4.8.0",
|
||||||
"webpack-jquery-ui": "^2.0.1",
|
"webpack-jquery-ui": "^2.0.1",
|
||||||
"workbox-precaching": "^5.1.3",
|
"workbox-precaching": "^6.3.0",
|
||||||
"workbox-routing": "^5.1.3",
|
"workbox-routing": "^6.3.0",
|
||||||
"workbox-strategies": "^5.1.3",
|
"workbox-strategies": "^6.3.0",
|
||||||
"workbox-webpack-plugin": "^5.1.3",
|
"workbox-webpack-plugin": "^6.3.0",
|
||||||
"workbox-window": "^5.1.3"
|
"workbox-window": "^6.3.0"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"paco-sako-server": "git+https://jessemcdonald.info/gogs/nybble/paco_sako_server"
|
||||||
},
|
},
|
||||||
"dependencies": {},
|
|
||||||
"optionalDependencies": {
|
"optionalDependencies": {
|
||||||
"paco-sako-server": "git+https://jessemcdonald.info/gogs/nybble/paco_sako_server"
|
"paco-sako-server": "git+https://jessemcdonald.info/gogs/nybble/paco_sako_server"
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -52,7 +52,14 @@ module.exports = {
|
||||||
loader: "svgo-loader",
|
loader: "svgo-loader",
|
||||||
options: {
|
options: {
|
||||||
plugins: [
|
plugins: [
|
||||||
{ cleanupIDs: false }
|
{
|
||||||
|
name: "preset-default",
|
||||||
|
params: {
|
||||||
|
overrides: {
|
||||||
|
cleanupIDs: false,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -88,9 +95,11 @@ module.exports = {
|
||||||
"window.jQuery": "jquery'",
|
"window.jQuery": "jquery'",
|
||||||
"window.$": "jquery"
|
"window.$": "jquery"
|
||||||
}),
|
}),
|
||||||
new CopyPlugin([
|
new CopyPlugin({
|
||||||
{ from: '.htaccess' },
|
patterns: [
|
||||||
]),
|
{ from: '.htaccess' },
|
||||||
|
],
|
||||||
|
}),
|
||||||
new InjectManifest({
|
new InjectManifest({
|
||||||
swSrc: './sw.js',
|
swSrc: './sw.js',
|
||||||
dontCacheBustURLsMatching: /\.[0-9a-f]{16,}\.\w{2,4}$/,
|
dontCacheBustURLsMatching: /\.[0-9a-f]{16,}\.\w{2,4}$/,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue