Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Libretro
libretro-chailove
Commits
50641b54
Unverified
Commit
50641b54
authored
Mar 10, 2019
by
RobLoach
Browse files
0.32.0
parent
5cb7da09
Changes
4
Hide whitespace changes
Inline
Side-by-side
CHANGELOG.md
View file @
50641b54
...
@@ -4,6 +4,18 @@ All notable changes to [ChaiLove](https://github.com/RobLoach/ChaiLove) will be
...
@@ -4,6 +4,18 @@ 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/
)
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
)
.
and this project adheres to
[
Semantic Versioning
](
http://semver.org/spec/v2.0.0.html
)
.
## 0.32.0 - 2019-03-10
### Features
-
[
BunnyMark
](
examples/bunnymark
)
to test performance
### Chores
-
ChaiLove now requires content to run
-
Updated ChaiScript_Extras for more string methods
-
Updated PhysFS
-
Updated libretro-common
-
Updated random to fix a gcc 7.3+ error
-
Updated stb
## 0.31.0 - 2018-12-24
## 0.31.0 - 2018-12-24
### Chores
### Chores
-
Update to use the libretro audio callback
-
Update to use the libretro audio callback
...
...
docs/Doxyfile
View file @
50641b54
...
@@ -23,7 +23,7 @@ PROJECT_NAME = "ChaiLove API"
...
@@ -23,7 +23,7 @@ PROJECT_NAME = "ChaiLove API"
# This could be handy for archiving the generated documentation or
# This could be handy for archiving the generated documentation or
# if some version control system is used.
# if some version control system is used.
PROJECT_NUMBER = "0.3
1
.0"
PROJECT_NUMBER = "0.3
2
.0"
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
# base path where the generated documentation will be put.
...
...
src/ChaiLove.h
View file @
50641b54
...
@@ -45,9 +45,9 @@
...
@@ -45,9 +45,9 @@
#define SRC_CHAILOVE_H_
#define SRC_CHAILOVE_H_
#define CHAILOVE_VERSION_MAJOR 0
#define CHAILOVE_VERSION_MAJOR 0
#define CHAILOVE_VERSION_MINOR 3
1
#define CHAILOVE_VERSION_MINOR 3
2
#define CHAILOVE_VERSION_PATCH 0
#define CHAILOVE_VERSION_PATCH 0
#define CHAILOVE_VERSION_STRING "0.3
1
.0"
#define CHAILOVE_VERSION_STRING "0.3
2
.0"
#include "SDL.h"
#include "SDL.h"
#include "libretro.h"
#include "libretro.h"
...
...
src/love/script.cpp
View file @
50641b54
...
@@ -121,6 +121,7 @@ script::script(const std::string& file) {
...
@@ -121,6 +121,7 @@ script::script(const std::string& file) {
chai
.
add
(
bootstrap
::
standard_library
::
map_type
<
std
::
map
<
std
::
string
,
int
>>
(
"StringIntMap"
));
chai
.
add
(
bootstrap
::
standard_library
::
map_type
<
std
::
map
<
std
::
string
,
int
>>
(
"StringIntMap"
));
chai
.
add
(
bootstrap
::
standard_library
::
map_type
<
std
::
map
<
std
::
string
,
float
>>
(
"StringFloatMap"
));
chai
.
add
(
bootstrap
::
standard_library
::
map_type
<
std
::
map
<
std
::
string
,
float
>>
(
"StringFloatMap"
));
// ChaiScript_Extras: String Methods
auto
stringmethods
=
chaiscript
::
extras
::
string_methods
::
bootstrap
();
auto
stringmethods
=
chaiscript
::
extras
::
string_methods
::
bootstrap
();
chai
.
add
(
stringmethods
);
chai
.
add
(
stringmethods
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment