Merge lines.love
[?]
Mar 25, 2023, 6:30 PM
4U4VQWNYWI53T7JQ2WSA4HZU3AWUIVXWMFCHOGUKT3ZN5C3GF6AQCDependencies
- [2]
VOU73AK6Merge lines.love - [3]
OMLASW7Kexperiment at avoiding some merge conflicts - [4]
LXTTOB33extract a couple of files - [5]
EMG7SDLWbugfix: cold start - [6]
GUOQRUL7Merge lines.love - [7]
A4BSGS2CMerge lines.love - [8]
HCFDBUXHfix stale comment - [9]
BULPIBEGbeginnings of a module for the text editor - [10]
RSZD5A7Gforgot to add json.lua - [11]
XX7G2FFJintermingle freehand line drawings with text - [12]
3PSFWAILMerge lines.love - [13]
TVCPXAAUrename - [14]
6LJZN727handle chords - [15]
BLWAYPKVextract a module - [16]
4YDBYBA4clean up memory leak experiments - [17]
GFXWHTE6mouse wheel support - [18]
3QNOKBFMbeginnings of a test harness - [19]
66X36NZNa little more prose describing manual_tests - [20]
X3CQLBTRset window title within each app - [21]
VHUNJHXBMerge lines.love - [22]
Q7XPSKIIMerge lines.love - [23]
ORKN6EOBMerge lines.love - [24]
OGUV4HSAremove some memory leaks from rendered fragments - [25]
CE4LZV4Tdrop last couple of manual tests - [26]
T4FRZSYLdelete an ancient, unused file - [27]
VXORMHMEdelete experimental REPL - [28]
BJ5X5O4Alet's prevent the text cursor from ever getting on a drawing - [29]
2CTN2IEFMerge lines.love - [30]
YMNOUE2Mugh, missed deleting an arg - [31]
MD3W5IRAnew fork: rip out drawing support - [32]
ZTZOO2OQMerge lines.love - [33]
OTIBCAUJlove2d scaffold - [34]
73OCE2MCafter much struggle, a brute-force undo - [35]
2TQUKHBCMerge lines.love - [36]
QS3YLNKZMerge lines.love - [37]
D76MS2G2Merge lines.love - [38]
K2X6G75Zstart writing some tests for drawings - [39]
JOPVPUSAediting source code from within the app - [40]
VP5KC4XZMerge lines.love - [41]
U3MJNFUYMerge lines.love - [42]
7VGDIPLCmore robust state validation - [43]
2CK5QI7Wmake love event names consistent - [44]
ATQO62TFMerge lines.love - [45]
KMSL74GAsupport selections in the source editor - [46]
4SR3Z4Y3document the version of LÖVE I've been using - [47]
ETXNVRPTMerge lines.love - [48]
KKMFQDR4editing source code from within the app - [49]
D2GCFTTTclean up repl functionality - [50]
FS2ITYYHrecord a known issue - [51]
AKZWDWIAMerge lines.love - [52]
2L5MEZV3experiment: new edit namespace - [53]
L2FWWEQLsource: remember cursor position of multiple files - [54]
G54H3YG2get rid of all bifold text - [55]
VHQCNMARseveral more modules - [56]
AVTNUQYRbasic test-enabled framework - [57]
CQYKYJJUremember window positions across restart/ctrl+e - [58]
TLOAPLBJadd a license - [59]
R5QXEHUIsomebody stop me - [60]
DCO5BQWVMerge lines.love - [61]
K74U4BAUMerge lines.love
Change contents
- file deletion: source.lua source.lua
end-- keep a few blank lines around: https://merveilles.town/@akkartik/110084833821965708love.window.setTitle('lines.love - source')end-- keep a few blank lines around: https://merveilles.town/@akkartik/110084833821965708love.window.setTitle('lines.love - source') - file deletion: run.lua run.lua
endfunction run.draw()edit.draw(Editor_state)endfunction run.update(dt)Cursor_time = Cursor_time + dtedit.update(Editor_state, dt)endfunction run.quit()edit.quit(Editor_state)endfunction run.settings()-- keep a few blank lines around: https://merveilles.town/@akkartik/110084833821965708love.window.setTitle('lines.love - '..Editor_state.filename)if #arg > 1 thenprint('ignoring commandline args after '..arg[1])endif rawget(_G, 'jit') thenjit.off()jit.flush()endendfunction run.load_settings()love.graphics.setFont(love.graphics.newFont(Settings.font_height))-- keep a few blank lines around: https://merveilles.town/@akkartik/110084833821965708love.window.setTitle('lines.love - '..Editor_state.filename) - edit in source.lua at line 75
-- keep a few blank lines around: https://merveilles.town/@akkartik/110084833821965708 - edit in source.lua at line 80
- edit in source.lua at line 228
-- keep a few blank lines around: https://merveilles.town/@akkartik/110084833821965708 - edit in source.lua at line 233
- edit in run.lua at line 36
-- keep a few blank lines around: https://merveilles.town/@akkartik/110084833821965708 - edit in run.lua at line 42
- edit in run.lua at line 126
-- keep a few blank lines around: https://merveilles.town/@akkartik/110084833821965708 - edit in run.lua at line 131
- resurrect zombie in main.lua at line 242
if Current_app == 'run' then - resurrect zombie in main.lua at line 244
elseif Current_app == 'source' then