Skip to content

Commit cf06d9d

Browse files
committed
Prepare version 0.16.1.1627
1 parent 8e2feba commit cf06d9d

3 files changed

Lines changed: 20 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
# Version 0.16.1.1627 - 2018-09-02 (LÖVE 11.1)
2+
3+
## Additions
4+
- Added support for latin-1 charset.
5+
6+
## Fixes
7+
- Fixed camera focusing on the wrong character when switching from the current to the previous character.
8+
- Fixed faulty loading of world objects.
9+
- Fixed faulty loading of characters.
10+
11+
## Other Changes
12+
- Changed how fonts are loaded by the game to support different charsets.
13+
14+
15+
16+
117
# Version 0.16.0.1615 - 2018-08-30 (LÖVE 11.1)
218

319
## Additions

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# On The Roadside
22

3-
[![Version](https://img.shields.io/badge/Version-0.16.0.1615-blue.svg)](https://github.com/rm-code/on-the-roadside/releases/latest)
4-
[![LOVE](https://img.shields.io/badge/L%C3%96VE-11.0-EA316E.svg)](http://love2d.org/)
3+
[![Version](https://img.shields.io/badge/Version-0.16.1.1627-blue.svg)](https://github.com/rm-code/on-the-roadside/releases/latest)
4+
[![LOVE](https://img.shields.io/badge/L%C3%96VE-11.1-EA316E.svg)](http://love2d.org/)
55
[![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)
66

77
_On the Roadside_ is a turn-based strategy game in which you take control of a squad of mercenaries fighting for survival in a world shaped by unknown forces. It currently is in the very _early stages_ of development.

version.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
local version = {
22
major = 0,
33
minor = 16,
4-
patch = 0,
5-
build = 1615,
4+
patch = 1,
5+
build = 1627,
66
}
77

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

0 commit comments

Comments
 (0)