Skip to content

Commit

Permalink
Merge pull request #108 from eugene-serb/dev
Browse files Browse the repository at this point in the history
Release 1.0.26
  • Loading branch information
eugene-serb authored Feb 17, 2024
2 parents 048d4af + e1209fe commit 43beff4
Show file tree
Hide file tree
Showing 8 changed files with 446 additions and 359 deletions.
2 changes: 2 additions & 0 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use strict';

module.exports = {
printWidth: 100,
tabWidth: 2,
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Based on game engines from these games and using them for implementation and tes
## Commands:

- npm run start — run with watcher
- npm run serve — run dev server
- npm run dev — run dev server
- npm run build — build in production mode,
- npm run build:dev — build in development mode,
- npm run lint — run lint check,
Expand Down
508 changes: 276 additions & 232 deletions package-lock.json

Large diffs are not rendered by default.

28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "aurora-game-engine",
"version": "1.0.25",
"description": "Aurora game engine for creating 1D and 2D games in JavaScript",
"version": "1.0.26",
"description": "Aurora Game Engine is an open source game engine in the format of a component library for creating one-dimensional and two-dimensional games in Javascript.",
"keywords": [
"game-engine",
"aurora-game-engine",
Expand All @@ -25,33 +25,33 @@
"main": "index.js",
"scripts": {
"start": "webpack --mode development --watch",
"serve": "webpack-dev-server --mode development --open",
"dev": "webpack-dev-server --mode development --open",
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"format": "npx prettier --check src",
"format:fix": "npx prettier --write --ignore-unknown src",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "npx prettier --check .",
"format:fix": "npx prettier --write --ignore-unknown .",
"test": "jest tests"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/eslint-parser": "^7.23.3",
"@babel/preset-env": "^7.23.7",
"@babel/core": "^7.23.9",
"@babel/eslint-parser": "^7.23.10",
"@babel/preset-env": "^7.23.9",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"css-loader": "^6.10.0",
"eslint": "^8.56.0",
"eslint-cli": "^1.1.1",
"eslint-config-prettier": "^9.1.0",
"eslint-webpack-plugin": "^4.0.1",
"html-webpack-plugin": "^5.6.0",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"style-loader": "^3.3.3",
"webpack": "^5.89.0",
"prettier": "^3.2.5",
"style-loader": "^3.3.4",
"webpack": "^5.90.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
Expand Down
63 changes: 32 additions & 31 deletions src/pages/index/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<meta name="robots" content="all" />

<meta name="author" content="Eugene Serb" />
<meta name="copyright" content="Eugene Serb, 2023" />
<meta name="copyright" content="Eugene Serb, 2024" />
<meta name="publisher-email" content="eugene.serb@gmail.com" />
<meta name="publisher-url" content="https://eugene-serb.github.io/" />
<meta
Expand All @@ -21,7 +21,7 @@
/>
<meta
name="description"
content="Aurora game engine for creating 1D and 2D games in JavaScript"
content="Aurora Game Engine is an open source game engine in the format of a component library for creating one-dimensional and two-dimensional games in Javascript."
/>

<meta property="og:locale" content="en_US" />
Expand All @@ -30,7 +30,7 @@
<meta property="og:site_name" content="Eugene Serb — Website" />
<meta
property="og:description"
content="Aurora game engine for creating 1D and 2D games in JavaScript"
content="Aurora Game Engine is an open source game engine in the format of a component library for creating one-dimensional and two-dimensional games in Javascript."
/>
<meta property="og:url" content="https://eugene-serb.github.io/aurora-game-engine/" />
<meta property="og:image" content="./img/og.png" />
Expand All @@ -41,7 +41,7 @@
<meta name="twitter:title" content="Aurora Game Engine" />
<meta
name="twitter:description"
content="Aurora game engine for creating 1D and 2D games in JavaScript"
content="Aurora Game Engine is an open source game engine in the format of a component library for creating one-dimensional and two-dimensional games in Javascript."
/>
<meta name="twitter:image" content="./img/og.png" />

Expand All @@ -50,13 +50,15 @@
<meta name="msvalidate.01" content="6E1771734F083E5366205F06314C3577" />
<meta name="wmail-verification" content="46d069b79f9c774ce0bbf55f46aef201" />

<link rel="canonical" href="https://eugene-serb.github.io/aurora-game-engine/" />
<link rel="shortcut icon" type="image/x-icon" href="./img/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="./img/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="./img/favicon-32x32.png" />
<link rel="icon" type="image/x-icon" href="./img/favicon.ico" />
<link rel="icon" type="image/png" sizes="16x16" href="./img/favicon-16x16.png" />
<link rel="icon" type="image/png" sizes="32x32" href="./img/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="192x192" href="./img/android-chrome-192x192.png" />
<link rel="icon" type="image/png" sizes="512x512" href="./img/android-chrome-512x512.png" />
<link rel="apple-touch-icon" sizes="180x180" href="./img/apple-touch-icon.png" />
<link rel="manifest" href="./site.webmanifest" />
<link rel="stylesheet" type="text/css" href="./css/index.css" />
<link rel="canonical" href="https://eugene-serb.github.io/aurora-game-engine/" />

<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-4NB4LGNNLB"></script>
Expand Down Expand Up @@ -103,7 +105,7 @@
</header>

<main class="page container">
<h1 class="visually-hidden">Eugene Serb Aurora Game Engine</h1>
<h1 class="visually-hidden">Eugene Serb Aurora Game Engine</h1>
<div class="game">
<div id="map" class="game__map-wrapper"></div>
<div class="game__right-column">
Expand All @@ -117,52 +119,52 @@ <h2 class="game__title">Aurora Game Engine</h2>
<div class="game__controls">
<span>Rotate</span>
<div>
<span> </span>
<span> </span>
<kbd>W</kbd>
<span>and </span>
<span>or </span>
<kbd></kbd>
<span>and </span>
<span>or </span>
<kbd style="background-color: green; border-radius: 2ch; color: white">A</kbd>
</div>
<span>Down</span>
<div>
<span> </span>
<span> </span>
<kbd>S</kbd>
<span>and </span>
<span>or </span>
<kbd></kbd>
<span>and </span>
<span>or </span>
<kbd style="background-color: grey; border-radius: 2ch; color: white"></kbd>
</div>
<span>Left</span>
<div>
<span> </span>
<span> </span>
<kbd>A</kbd>
<span>and </span>
<span>or </span>
<kbd></kbd>
<span>and </span>
<span>or </span>
<kbd style="background-color: grey; border-radius: 2ch; color: white"></kbd>
</div>
<span>Rigth</span>
<div>
<span> </span>
<span> </span>
<kbd>D</kbd>
<span>and </span>
<span>or </span>
<kbd></kbd>
<span>and </span>
<span>or </span>
<kbd style="background-color: grey; border-radius: 2ch; color: white"></kbd>
</div>
<span>Restart</span>
<div>
<span> </span>
<span> </span>
<kbd>R</kbd>
<span>and </span>
<span>or </span>
<kbd style="background-color: grey; border-radius: 2ch; color: white">START</kbd>
</div>
<span>Pause</span>
<div>
<span> </span>
<span> </span>
<kbd>P</kbd>
<span>and </span>
<span>or </span>
<kbd style="background-color: grey; border-radius: 2ch; color: white">BACK</kbd>
</div>
</div>
Expand Down Expand Up @@ -191,16 +193,15 @@ <h3>Your records:</h3>
<div class="footer-wrapper container">
<div class="annotation">
<span class="annotation__text">
© 2023
<a href="https://eugene-serb.github.io/" target="_blank" translate="no">Eugene Serb</a>.
Content licensed under
© 2024
<a href="/" target="_blank" translate="no">Eugene Serb</a>. Content licensed under
</span>
<a href="./LICENSE.txt" target="_blank">GNU General Public License v3.0</a>
<br />
<span class="annotation__text">This site is open source. </span>
<a href="https://github.com/eugene-serb/aurora-game-engine" target="_blank"
>Improve this page.</a
>
<a href="https://github.com/eugene-serb/aurora-game-engine" target="_blank">
Improve this page.
</a>
</div>
</div>
</footer>
Expand Down
Loading

0 comments on commit 43beff4

Please sign in to comment.