├── LICENSE ├── README.md ├── bot.php ├── config.php ├── css └── chessboard.css ├── img └── chesspieces │ ├── bB.png │ ├── bK.png │ ├── bN.png │ ├── bP.png │ ├── bQ.png │ ├── bR.png │ ├── wB.png │ ├── wK.png │ ├── wN.png │ ├── wP.png │ ├── wQ.png │ └── wR.png ├── index.php ├── js ├── ajax.js ├── board.js ├── captured_pieces.js ├── chess.js ├── chessboard.js ├── jquery-1.10.1.min.js └── json3.min.js └── sound ├── move.mp3 └── move.wav /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiproton/Web-GUI-for-stockfish-chess/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiproton/Web-GUI-for-stockfish-chess/HEAD/README.md -------------------------------------------------------------------------------- /bot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiproton/Web-GUI-for-stockfish-chess/HEAD/bot.php -------------------------------------------------------------------------------- /config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiproton/Web-GUI-for-stockfish-chess/HEAD/config.php -------------------------------------------------------------------------------- /css/chessboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiproton/Web-GUI-for-stockfish-chess/HEAD/css/chessboard.css -------------------------------------------------------------------------------- /img/chesspieces/bB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiproton/Web-GUI-for-stockfish-chess/HEAD/img/chesspieces/bB.png -------------------------------------------------------------------------------- /img/chesspieces/bK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiproton/Web-GUI-for-stockfish-chess/HEAD/img/chesspieces/bK.png -------------------------------------------------------------------------------- /img/chesspieces/bN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiproton/Web-GUI-for-stockfish-chess/HEAD/img/chesspieces/bN.png -------------------------------------------------------------------------------- /img/chesspieces/bP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiproton/Web-GUI-for-stockfish-chess/HEAD/img/chesspieces/bP.png -------------------------------------------------------------------------------- /img/chesspieces/bQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiproton/Web-GUI-for-stockfish-chess/HEAD/img/chesspieces/bQ.png -------------------------------------------------------------------------------- /img/chesspieces/bR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiproton/Web-GUI-for-stockfish-chess/HEAD/img/chesspieces/bR.png -------------------------------------------------------------------------------- /img/chesspieces/wB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiproton/Web-GUI-for-stockfish-chess/HEAD/img/chesspieces/wB.png -------------------------------------------------------------------------------- /img/chesspieces/wK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiproton/Web-GUI-for-stockfish-chess/HEAD/img/chesspieces/wK.png -------------------------------------------------------------------------------- /img/chesspieces/wN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiproton/Web-GUI-for-stockfish-chess/HEAD/img/chesspieces/wN.png -------------------------------------------------------------------------------- /img/chesspieces/wP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiproton/Web-GUI-for-stockfish-chess/HEAD/img/chesspieces/wP.png -------------------------------------------------------------------------------- /img/chesspieces/wQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiproton/Web-GUI-for-stockfish-chess/HEAD/img/chesspieces/wQ.png -------------------------------------------------------------------------------- /img/chesspieces/wR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiproton/Web-GUI-for-stockfish-chess/HEAD/img/chesspieces/wR.png -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiproton/Web-GUI-for-stockfish-chess/HEAD/index.php -------------------------------------------------------------------------------- /js/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiproton/Web-GUI-for-stockfish-chess/HEAD/js/ajax.js -------------------------------------------------------------------------------- /js/board.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiproton/Web-GUI-for-stockfish-chess/HEAD/js/board.js -------------------------------------------------------------------------------- /js/captured_pieces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiproton/Web-GUI-for-stockfish-chess/HEAD/js/captured_pieces.js -------------------------------------------------------------------------------- /js/chess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiproton/Web-GUI-for-stockfish-chess/HEAD/js/chess.js -------------------------------------------------------------------------------- /js/chessboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiproton/Web-GUI-for-stockfish-chess/HEAD/js/chessboard.js -------------------------------------------------------------------------------- /js/jquery-1.10.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiproton/Web-GUI-for-stockfish-chess/HEAD/js/jquery-1.10.1.min.js -------------------------------------------------------------------------------- /js/json3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiproton/Web-GUI-for-stockfish-chess/HEAD/js/json3.min.js -------------------------------------------------------------------------------- /sound/move.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiproton/Web-GUI-for-stockfish-chess/HEAD/sound/move.mp3 -------------------------------------------------------------------------------- /sound/move.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antiproton/Web-GUI-for-stockfish-chess/HEAD/sound/move.wav --------------------------------------------------------------------------------