record support for multiple versions
[?]
Apr 20, 2023, 2:45 AM
PJ5PQAQEEWQDDEPKP3RURCFDX7SSUIH4GZJCDZ6E6UU6G55KB7KACDependencies
- [2]
4SR3Z4Y3document the version of LÖVE I've been using - [3]
LXFHXL2NMerge text.love - [4]
2CTN2IEFMerge lines.love - [5]
ECBDENZ4Merge text.love - [6]
AVTNUQYRbasic test-enabled framework - [7]
4YDBYBA4clean up memory leak experiments - [8]
BULPIBEGbeginnings of a module for the text editor - [9]
BLWAYPKVextract a module - [10]
K2X6G75Zstart writing some tests for drawings - [11]
66X36NZNa little more prose describing manual_tests - [12]
OGUV4HSAremove some memory leaks from rendered fragments - [13]
2L5MEZV3experiment: new edit namespace - [14]
ORKN6EOBMerge lines.love - [15]
JOPVPUSAediting source code from within the app - [16]
XX7G2FFJintermingle freehand line drawings with text - [17]
N2NUGNN4include a brief reference enabling many useful apps - [18]
2JBAEQHUMerge lines.love - [19]
3QNOKBFMbeginnings of a test harness - [20]
2CFLXLIEMerge text.love - [21]
VHUNJHXBMerge lines.love - [22]
K74U4BAUMerge lines.love - [23]
UAYCSFSKMerge text.love - [24]
TLOAPLBJadd a license - [25]
73OCE2MCafter much struggle, a brute-force undo - [26]
TVCPXAAUrename - [27]
R5QXEHUIsomebody stop me - [28]
T4FRZSYLdelete an ancient, unused file - [29]
O3WZWLYCMerge text.love - [30]
QD4LOFQRMerge text.love - [31]
FS2ITYYHrecord a known issue - [32]
A4BSGS2CMerge lines.love - [33]
OTIBCAUJlove2d scaffold - [34]
JZR3QMTNMerge lines.love - [35]
YDUIKWSFMerge text.love - [36]
KKMFQDR4editing source code from within the app - [37]
36Z442IVback to commit 8123959e52f without code editing - [38]
VXORMHMEdelete experimental REPL - [39]
VP5KC4XZMerge lines.love - [40]
RSZD5A7Gforgot to add json.lua - [41]
KWIVKQQ7Merge lines.love - [42]
EX43CDDIMerge text.love - [43]
BJ5X5O4Alet's prevent the text cursor from ever getting on a drawing - [44]
CE4LZV4Tdrop last couple of manual tests - [45]
VHQCNMARseveral more modules - [46]
3PSFWAILMerge lines.love - [47]
LXTTOB33extract a couple of files - [48]
Q6RXCILQMerge text.love - [49]
JYZKEDDGMerge lines.love - [50]
CBTPWFGMMerge text.love - [51]
MD3W5IRAnew fork: rip out drawing support - [52]
KMSL74GAsupport selections in the source editor - [53]
6LJZN727handle chords - [54]
ZTZOO2OQMerge lines.love - [55]
ZLJYLPOTMerge lines.love - [56]
D2GCFTTTclean up repl functionality - [*]
SDRXK4X5move - [*]
APX2PY6Gstop tracking wallclock time - [*]
IM6GSGVZfix some arg names - [*]
XGHCLIKBMerge lines.love - [*]
JCXL74WVbring back everything from commit a68647ae22
Change contents
- file deletion: conf.lua
function love.conf(t)t.version = '11.4'end - edit in main.lua at line 16
function App.version_check()Mode = 'version_check'Supported_versions = {'11.4', '11.3', '11.2', '11.1', '11.0'} -- keep these sorted in descending orderlocal major, minor = love.getVersion()Version = major..'.'..minorif array.find(Supported_versions, Version) thenMode = 'run'endend - edit in main.lua at line 167
if Mode == 'version_check' thenlove.graphics.setColor(1,1,0)love.graphics.rectangle('fill', 30,30, 400,400)love.graphics.setColor(0,0,0)love.graphics.printf(("This app doesn't support version %s; please use version %s. Press any key to try it with this version anyway."):format(Version, Supported_versions[1]), 40,40, 400)returnend - edit in main.lua at line 178
if Mode == 'version_check' then return end - edit in main.lua at line 189
if Mode == 'version_check' then return end - edit in main.lua at line 207
if Mode == 'version_check' then return end - edit in main.lua at line 213
if Mode == 'version_check' then return end - edit in main.lua at line 219
if Mode == 'version_check' then return end - edit in main.lua at line 225
if Mode == 'version_check' then return end - edit in main.lua at line 232
if Mode == 'version_check' then return end - edit in main.lua at line 242
if Mode == 'version_check' then return end - edit in main.lua at line 252
if Mode == 'version_check' thenMode = 'run'returnend - edit in app.lua at line 14[4.54][62.4069]
App.version_check()