This commit is contained in:
bjorn 2022-10-15 21:49:25 -07:00
parent 20cb0d1c0a
commit 904fb282c2
3 changed files with 4 additions and 4 deletions

View File

@ -13,7 +13,7 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>APPL</string> <string>APPL</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>v0.15.0</string> <string>v0.16.0</string>
<key>NSHighResolutionCapable</key> <key>NSHighResolutionCapable</key>
<true/> <true/>
</dict> </dict>

View File

@ -3,7 +3,7 @@ lovr = require 'lovr'
-- Note: Cannot be overloaded -- Note: Cannot be overloaded
function lovr.boot() function lovr.boot()
local conf = { local conf = {
version = '0.15.0', version = '0.16.0',
identity = 'default', identity = 'default',
saveprecedence = true, saveprecedence = true,
modules = { modules = {

View File

@ -5,9 +5,9 @@
#pragma once #pragma once
#define LOVR_VERSION_MAJOR 0 #define LOVR_VERSION_MAJOR 0
#define LOVR_VERSION_MINOR 15 #define LOVR_VERSION_MINOR 16
#define LOVR_VERSION_PATCH 0 #define LOVR_VERSION_PATCH 0
#define LOVR_VERSION_ALIAS "Government Goop" #define LOVR_VERSION_ALIAS "Toad Rage"
#ifdef _MSC_VER #ifdef _MSC_VER
#define LOVR_THREAD_LOCAL __declspec(thread) #define LOVR_THREAD_LOCAL __declspec(thread)