Skip to content

Commit

Permalink
Prepare version 0.8.0.933
Browse files Browse the repository at this point in the history
  • Loading branch information
rm-code committed Apr 1, 2017
1 parent 3b9ce9a commit 969c501
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 4 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,32 @@
# Version 0.8.0.933 - 2017-04-02

## Additions
- Added height mechanics for world objects and characters
- World objects that are bigger than a character will block the LOS
- Shooting over a world object is only possible if the target behind the object can be seen
- Added texture pack support
- Users can add their own texture packs in the mod/texturepacks folder located in their save directory
- Texture packs support arbitrary tile sizes
- Added support for loading multiple maps
- Added a second map
- Added "Show Help" button to ingame menu

## Removals
- Removed hotkey for help screen (and the ingame overlay for it)
- Removed "Close" button from ingame menu
- It can be closed via the escape-key now

## Fixes
- Fixed button receiving events without actually having focus
- Fixed status effects being applied more than once

## Other Changes
- Attack and interaction modes are now toggleable
- Pressing their keys again will switch back to the movement mode




# Version 0.7.1.883 - 2017-03-20

## Fixes
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# On The Roadside

[![Version](https://img.shields.io/badge/Version-0.7.1.883-blue.svg)](https://github.com/rm-code/on-the-roadside/releases/latest)
[![Version](https://img.shields.io/badge/Version-0.8.0.933-blue.svg)](https://github.com/rm-code/on-the-roadside/releases/latest)
[![LOVE](https://img.shields.io/badge/L%C3%96VE-0.10.2-EA316E.svg)](http://love2d.org/)
[![Build Status](https://travis-ci.com/rm-code/On-The-Roadside.svg?token=q3rLXeyGTBN9VB2zsWMr&branch=develop)](https://travis-ci.com/rm-code/On-The-Roadside)

Expand Down
6 changes: 3 additions & 3 deletions version.lua
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
local version = {
major = 0,
minor = 7,
patch = 1,
build = 883,
minor = 8,
patch = 0,
build = 933,
}

return string.format( "%d.%d.%d.%d", version.major, version.minor, version.patch, version.build );

0 comments on commit 969c501

Please sign in to comment.