Skip to content

Commit

Permalink
1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
robertrypula committed Nov 17, 2018
1 parent e6967ba commit a9db0f9
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,10 +137,13 @@ that simplifies basic input and output of the text based games.
- extend the readme?
- ...

### 1.1.1 - ?? November 2018
### 1.1.1 - 18 November 2018
- adds dedicated 'GameLoopIteration' type that solves the problem in the *.d.ts file used by older typescript compilers
- version upgrade of terminal-game-io (2.1.2 -> 3.1.0) - thanks to the new version of terminal-game-io all externals could be removed ('process' and 'readline')
- [TODO] updates in readme
- npm keywords update
- big update in examples (external stackblitz examples, internal API client example)
- big update in readme (code examples, animated gifs)
- simple-tetris is finally easy to import in any other project

### 1.1.0 - 13 September 2018
- rename 'assets' directory to 'templates'
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "simple-tetris",
"version": "1.1.1-rc",
"version": "1.1.1",
"description": "This package provides API that allows you to easily create clones of the Tetris game. It handles game core - your role is to write the UI. Library was inspired by Redux and was written from scratch in TypeScript.",
"keywords": [
"ascii game",
Expand Down Expand Up @@ -38,7 +38,7 @@
"npm-check": "npm-check --skip-unused",
"npm-check:u": "npm-check --skip-unused -u"
},
"main": "dist/simple-tetris-v1.1.1-rc.js",
"main": "dist/simple-tetris-v1.1.1.js",
"types": "dist/main.d.ts",
"files": [
"dist/"
Expand Down
2 changes: 1 addition & 1 deletion src/lib/version.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright (c) 2018 Robert Rypuła - https://github.com/robertrypula

export const version = '1.1.1-rc';
export const version = '1.1.1';
export const author = 'Robert Rypuła';
export const githubUrl = 'https://github.com/robertrypula';
2 changes: 1 addition & 1 deletion src/templates/ascii-runner-node.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright (c) 2018 Robert Rypuła - https://github.com/robertrypula

const SimpleTetris = require('./simple-tetris-v1.1.1-rc.js');
const SimpleTetris = require('./simple-tetris-v1.1.1.js');
const asciiRunner = new SimpleTetris.AsciiRunner();

// in your application replace it to: require('simple-tetris');

0 comments on commit a9db0f9

Please sign in to comment.