Skip to content

Commit

Permalink
new favicon, open graph
Browse files Browse the repository at this point in the history
  • Loading branch information
attogram committed May 11, 2019
1 parent 576771f commit 3259c09
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 0 additions & 2 deletions TODO.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# Future Developments

* new `favicon.ico`

* timer that starts on page load and stops when a solution is found

* `[New Game]` button
Expand Down
Binary file modified public/favicon.ico
Binary file not shown.
7 changes: 7 additions & 0 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />

<!-- Open Graph properties - http://ogp.me/ -->
<meta property="og:title" content="Eight Queens chess game" />
<meta property="og:type" content="website" />
<meta property="og:image" content="%PUBLIC_URL%/favicon.ico" />
<meta property="og:url" content="%PUBLIC_URL%" />

<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
Expand Down
2 changes: 1 addition & 1 deletion src/EightQueens.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import Title from './Title.js';
import queenUnderAttackSvg from './queenUnderAttack.svg';

const gameName = 'Eight Queens';
const gameVersion = '0.1.0';
const gameVersion = '0.1.1';
const gameHome = 'https://github.com/attogram/EightQueens';

class EightQueens extends Component {
Expand Down

0 comments on commit 3259c09

Please sign in to comment.