Browse Source

update readme and copy

romanmatiasko 9 years ago
parent
commit
9fb3fcbc7b
4 changed files with 8 additions and 27 deletions
  1. 4 18
      README.md
  2. 1 1
      src/css/_index.scss
  3. 0 5
      src/js/components/Index.js
  4. 3 3
      views/about.jade

+ 4 - 18
README.md

@@ -1,27 +1,13 @@
 Reti Chess
 Reti Chess
 ==========
 ==========
 
 
-Reti Chess is an open source chess app built in [Node.js](http://nodejs.org/) with use of [Express framework](http://expressjs.com/) and [Socket.IO](http://socket.io/). Reti Chess also uses [chess.js](https://github.com/jhlywa/chess.js) for move validation and check/mate/draw detection.
+A lightweight, real-time chess app built in [Node](http://nodejs.org/), [Express](http://expressjs.com/), [Socket.IO](http://socket.io/), [React](http://facebook.github.io/react/), [Flux](http://facebook.github.io/flux/) and [Immutable](http://facebook.github.io/immutable-js/). Reti Chess also uses [chess.js](https://github.com/jhlywa/chess.js) for move validation and check/mate/draw detection.
 
 
-You can check out demo on [www.retichess.com](http://wwww.retichess.com/)
-
-Why Reti?
----------
-
-The project is named after famous Czechoslovakian chess player Richard Réti. After him is also named a chess opening which begins with the the moves: 1. Nf3 d5, 2. d4.
-
-What features chess supports?
------------------------------
-
-This is a lightweight version of chess. You can only play real-time against the human, an AI is not available. Reti Chess supports simple chat and also timer. You can set timer up to 50 minutes with increment of max 50 seconds per side. If you reload the window or disconnect from the game, the game will be cancelled.
-
-
-People behind this project
---------------------------
-
-[Roman Matiasko](http://github.com/romanmatiasko/), [Stepan Bujnak](http://github.com/stepanbujnak/) and [Lukas Matiasko](http://github.com/lukasmatiasko/).
+You can play the game on [www.retichess.com](http://wwww.retichess.com/).
 
 
 License
 License
 -------
 -------
 
 
+(c) 2015 Roman Matiasko
+
 Available under [the MIT License (MIT)](http://opensource.org/licenses/MIT).
 Available under [the MIT License (MIT)](http://opensource.org/licenses/MIT).

+ 1 - 1
src/css/_index.scss

@@ -6,7 +6,7 @@
 #create-game {
 #create-game {
   width: 100%;
   width: 100%;
   height: 200px;
   height: 200px;
-  margin: 0 auto;
+  margin: 5em auto 0;
 
 
   fieldset {
   fieldset {
     border: 0;
     border: 0;

+ 0 - 5
src/js/components/Index.js

@@ -42,11 +42,6 @@ const Index = React.createClass({
              className="knight" />
              className="knight" />
         <h1>Reti Chess</h1>
         <h1>Reti Chess</h1>
 
 
-        <p style={{margin: '50px 0'}} className="center">
-          A lightweight real-time chess app build in Node, Express, 
-          Socket.IO, React, Flux and Immutable.
-        </p>
-
         <div id="create-game">
         <div id="create-game">
           <CreateGameForm
           <CreateGameForm
             link={this.state.link}
             link={this.state.link}

+ 3 - 3
views/about.jade

@@ -3,8 +3,8 @@ extends layout
 block content
 block content
   img(src='/img/knight.png', width='122', height='122', class='knight')
   img(src='/img/knight.png', width='122', height='122', class='knight')
   h1 About Reti Chess
   h1 About Reti Chess
-  p(style='margin: 50px 0;') Reti Chess is open source chess app built in 
-    a(href='http://nodejs.org/') Node.js
+  p(style='margin: 50px 0;') Reti Chess is an open source, real-time chess app built in 
+    a(href='http://nodejs.org/') Node
     | ,  
     | ,  
     a(href='http://expressjs.com/') Express
     a(href='http://expressjs.com/') Express
     | , 
     | , 
@@ -20,7 +20,7 @@ block content
     |  for move validation and check/mate/draw detection.
     |  for move validation and check/mate/draw detection.
 
 
   h2 Why Reti?
   h2 Why Reti?
-  p The project is named after famous Czechoslovakian chess player Richard Réti. 
+  p The app is named after famous Czechoslovakian chess player Richard Réti. 
     | After him is also named a chess opening which begins with the moves: 1. Nf3 d5, 2. d4.
     | After him is also named a chess opening which begins with the moves: 1. Nf3 d5, 2. d4.
 
 
   h2 What features are supported?
   h2 What features are supported?