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]
MD3W5IRAnew fork: rip out drawing support - [5]
T4FRZSYLdelete an ancient, unused file - [6]
VHQCNMARseveral more modules - [7]
ZTZOO2OQMerge lines.love - [8]
N2NUGNN4include a brief reference enabling many useful apps - [9]
QD4LOFQRMerge text.love - [10]
O3WZWLYCMerge text.love - [11]
BULPIBEGbeginnings of a module for the text editor - [12]
OGUV4HSAremove some memory leaks from rendered fragments - [13]
UAYCSFSKMerge text.love - [14]
ORKN6EOBMerge lines.love - [15]
CBTPWFGMMerge text.love - [16]
ZLJYLPOTMerge lines.love - [17]
YDUIKWSFMerge text.love - [18]
VXORMHMEdelete experimental REPL - [19]
D2GCFTTTclean up repl functionality - [20]
2JBAEQHUMerge lines.love - [21]
JYZKEDDGMerge lines.love - [22]
Q6RXCILQMerge text.love - [23]
VHUNJHXBMerge lines.love - [24]
73OCE2MCafter much struggle, a brute-force undo - [25]
2L5MEZV3experiment: new edit namespace - [26]
36Z442IVback to commit 8123959e52f without code editing - [27]
2CTN2IEFMerge lines.love - [28]
BJ5X5O4Alet's prevent the text cursor from ever getting on a drawing - [29]
KKMFQDR4editing source code from within the app - [30]
KMSL74GAsupport selections in the source editor - [31]
R5QXEHUIsomebody stop me - [32]
AVTNUQYRbasic test-enabled framework - [33]
OTIBCAUJlove2d scaffold - [34]
TLOAPLBJadd a license - [35]
EX43CDDIMerge text.love - [36]
JZR3QMTNMerge lines.love - [37]
RSZD5A7Gforgot to add json.lua - [38]
4YDBYBA4clean up memory leak experiments - [39]
FS2ITYYHrecord a known issue - [40]
BLWAYPKVextract a module - [41]
LXTTOB33extract a couple of files - [42]
K2X6G75Zstart writing some tests for drawings - [43]
ECBDENZ4Merge text.love - [44]
K74U4BAUMerge lines.love - [45]
6LJZN727handle chords - [46]
JOPVPUSAediting source code from within the app - [47]
3QNOKBFMbeginnings of a test harness - [48]
66X36NZNa little more prose describing manual_tests - [49]
VP5KC4XZMerge lines.love - [50]
3PSFWAILMerge lines.love - [51]
KWIVKQQ7Merge lines.love - [52]
2CFLXLIEMerge text.love - [53]
TVCPXAAUrename - [54]
XX7G2FFJintermingle freehand line drawings with text - [55]
A4BSGS2CMerge lines.love - [56]
CE4LZV4Tdrop last couple of manual tests - [*]
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()