From 16e3c94708f2dc8f42085649c100ca8842b27003 Mon Sep 17 00:00:00 2001 From: Rob Loach Date: Sat, 13 Oct 2018 17:34:35 -0400 Subject: [PATCH] 0.29.0 --- CHANGELOG.md | 2 +- docs/Doxyfile | 2 +- examples/snake/Snake.chai | 2 +- src/ChaiLove.h | 4 ++-- src/love/script.h | 4 +++- 5 files changed, 8 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index af5eb02..6c1f4f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to [ChaiLove](https://github.com/RobLoach/ChaiLove) will be The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -## 0.29.0 - Unreleased +## 0.29.0 - 2018-10-13 ### Fixes - Fixed `/libretro/saves` mounting diff --git a/docs/Doxyfile b/docs/Doxyfile index 5cd0f12..1878557 100644 --- a/docs/Doxyfile +++ b/docs/Doxyfile @@ -23,7 +23,7 @@ PROJECT_NAME = "ChaiLove API" # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = "0.28.0" +PROJECT_NUMBER = "0.29.0" # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/examples/snake/Snake.chai b/examples/snake/Snake.chai index 1fbdd8d..781e1a5 100644 --- a/examples/snake/Snake.chai +++ b/examples/snake/Snake.chai @@ -47,7 +47,7 @@ global T def conf(t) { t.window.width = WIDTH * gridScale t.window.height = HEIGHT * gridScale - t.version = "0.28.0" + t.version = "0.29.0" } /** diff --git a/src/ChaiLove.h b/src/ChaiLove.h index 02d21c4..a90fbf4 100644 --- a/src/ChaiLove.h +++ b/src/ChaiLove.h @@ -47,9 +47,9 @@ #define SRC_CHAILOVE_H_ #define CHAILOVE_VERSION_MAJOR 0 -#define CHAILOVE_VERSION_MINOR 28 +#define CHAILOVE_VERSION_MINOR 29 #define CHAILOVE_VERSION_PATCH 0 -#define CHAILOVE_VERSION_STRING "0.28.0" +#define CHAILOVE_VERSION_STRING "0.29.0" #include "SDL.h" #include "libretro.h" diff --git a/src/love/script.h b/src/love/script.h index ecaf6cf..916f4dc 100644 --- a/src/love/script.h +++ b/src/love/script.h @@ -45,6 +45,8 @@ class script { * * @param t The config object to modify. * + * This callback can live in the `conf.chai` file. + * * ### Example * * @code @@ -53,7 +55,7 @@ class script { * t.console = false * * // The ChaiLove version this game was made for. - * t.version = "0.27.0" + * t.version = "0.29.0" * * // The width and height of the game. * t.window.width = 1024