Skip to content

Commit be26e53

Browse files
committed
Publish version 2.0.1
1 parent 5621cd6 commit be26e53

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1+
## Version 2.0.1 ( 2017-02-19 )
2+
- Changed init function to perform a switch action
3+
- Fix draw and update callbacks not being registered when not providing a callback table
4+
15
## Version 2.0.0 ( 2017-02-18 )
2-
- LÖVE callbacks can now be registered to the ScreenManager functions
6+
- ScreenManager functions can now be registered to LÖVE callbacks
37
- Screen pushing, popping and switching is delayed until the end of the current frame's draw function
48
- Changes can still be applied directly if needed by calling `ScreenManager.performChanges`
59
- Use a single "null" function for the callback-stubs

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#ScreenManager
22

3-
[![Version](https://img.shields.io/badge/Version-2.0.0-blue.svg)](https://github.com/rm-code/screenmanager/releases/latest)
3+
[![Version](https://img.shields.io/badge/Version-2.0.1-blue.svg)](https://github.com/rm-code/screenmanager/releases/latest)
44
[![LOVE](https://img.shields.io/badge/L%C3%96VE-0.10.2-EA316E.svg)](http://love2d.org/)
55
[![License](http://img.shields.io/badge/Licence-zlib-brightgreen.svg)](LICENSE.md)
66

ScreenManager.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
--===============================================================================--
2222

2323
local ScreenManager = {
24-
_VERSION = '2.0.0',
24+
_VERSION = '2.0.1',
2525
_DESCRIPTION = 'Screen/State Management for the LÖVE framework',
2626
_URL = 'https://github.com/rm-code/screenmanager/',
2727
}

0 commit comments

Comments
 (0)