Skip to content

Commit

Permalink
Merge branch 'hotfix/0.9.2.1079'
Browse files Browse the repository at this point in the history
  • Loading branch information
rm-code committed Oct 28, 2017
2 parents bbf7ef6 + c8acac2 commit 786debc
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# Version 0.9.2.1079 - 2017-10-28

## Fixes
- Fix crash caused by faulty parser pattern




# Version 0.9.1.1073 - 2017-10-28

## 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.9.1.1073-blue.svg)](https://github.com/rm-code/on-the-roadside/releases/latest)
[![Version](https://img.shields.io/badge/Version-0.9.2.1079-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
2 changes: 1 addition & 1 deletion lib/TGFParser.lua
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ local function loadFile( path )
-- TODO love.filesystem.lines is currently bugged on Mac OS 10.13
-- therefore we have to use a quick workaround
local str = love.filesystem.read(path)
for line in str:gmatch("^[\r\n]+") do
for line in str:gmatch("[^\r\n]+") do
if line == '#' then
target = edges;
else
Expand Down
4 changes: 2 additions & 2 deletions version.lua
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
local version = {
major = 0,
minor = 9,
patch = 1,
build = 1073,
patch = 2,
build = 1079,
}

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

0 comments on commit 786debc

Please sign in to comment.