about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2023-12-03 12:12:56 -0800
committerKartik K. Agaram <vc@akkartik.com>2023-12-03 12:12:56 -0800
commitf37b45196aff116bd1df68e82aebd94e99ab7725 (patch)
tree9cb768fb6ef1114e9fb0826213756c3e6269fe0d
parent99930149044300dc8f92c8a07e33ea1669e9d37d (diff)
downloadtext.love-f37b45196aff116bd1df68e82aebd94e99ab7725.tar.gz
speculatively recommend new LÖVE v11.5 in all forks
-rw-r--r--main.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.lua b/main.lua
index e68d7cb..034953e 100644
--- a/main.lua
+++ b/main.lua
@@ -77,7 +77,7 @@ function App.version_check()
   Error_message = nil
   Error_count = 0
   -- we'll reuse error mode on load for an initial version check
-  local supported_versions = {'11.4', '12.0'}  -- put the recommended version first
+  local supported_versions = {'11.5', '11.4', '12.0'}  -- put the recommended version first
   local minor_version
   Major_version, minor_version = love.getVersion()
   Version = Major_version..'.'..minor_version