Merge lines.love
[?]
Mar 25, 2023, 6:30 PM
4U4VQWNYWI53T7JQ2WSA4HZU3AWUIVXWMFCHOGUKT3ZN5C3GF6AQCDependencies
- [2]
VOU73AK6Merge lines.love - [3]
OMLASW7Kexperiment at avoiding some merge conflicts - [4]
3QNOKBFMbeginnings of a test harness - [5]
Q7XPSKIIMerge lines.love - [6]
4YDBYBA4clean up memory leak experiments - [7]
66X36NZNa little more prose describing manual_tests - [8]
JOPVPUSAediting source code from within the app - [9]
A4BSGS2CMerge lines.love - [10]
ZTZOO2OQMerge lines.love - [11]
73OCE2MCafter much struggle, a brute-force undo - [12]
DCO5BQWVMerge lines.love - [13]
AKZWDWIAMerge lines.love - [14]
XX7G2FFJintermingle freehand line drawings with text - [15]
2CTN2IEFMerge lines.love - [16]
KKMFQDR4editing source code from within the app - [17]
FS2ITYYHrecord a known issue - [18]
D76MS2G2Merge lines.love - [19]
2TQUKHBCMerge lines.love - [20]
GFXWHTE6mouse wheel support - [21]
R5QXEHUIsomebody stop me - [22]
CE4LZV4Tdrop last couple of manual tests - [23]
BLWAYPKVextract a module - [24]
7VGDIPLCmore robust state validation - [25]
VHQCNMARseveral more modules - [26]
VHUNJHXBMerge lines.love - [27]
6LJZN727handle chords - [28]
BULPIBEGbeginnings of a module for the text editor - [29]
TVCPXAAUrename - [30]
G54H3YG2get rid of all bifold text - [31]
X3CQLBTRset window title within each app - [32]
ATQO62TFMerge lines.love - [33]
OGUV4HSAremove some memory leaks from rendered fragments - [34]
KMSL74GAsupport selections in the source editor - [35]
ORKN6EOBMerge lines.love - [36]
MD3W5IRAnew fork: rip out drawing support - [37]
RSZD5A7Gforgot to add json.lua - [38]
ETXNVRPTMerge lines.love - [39]
K74U4BAUMerge lines.love - [40]
K2X6G75Zstart writing some tests for drawings - [41]
VXORMHMEdelete experimental REPL - [42]
T4FRZSYLdelete an ancient, unused file - [43]
2L5MEZV3experiment: new edit namespace - [44]
3PSFWAILMerge lines.love - [45]
D2GCFTTTclean up repl functionality - [46]
YMNOUE2Mugh, missed deleting an arg - [47]
VP5KC4XZMerge lines.love - [48]
2CK5QI7Wmake love event names consistent - [49]
AVTNUQYRbasic test-enabled framework - [50]
TLOAPLBJadd a license - [51]
GUOQRUL7Merge lines.love - [52]
BJ5X5O4Alet's prevent the text cursor from ever getting on a drawing - [53]
LXTTOB33extract a couple of files - [54]
OTIBCAUJlove2d scaffold - [55]
CQYKYJJUremember window positions across restart/ctrl+e - [56]
L2FWWEQLsource: remember cursor position of multiple files - [57]
4SR3Z4Y3document the version of LÖVE I've been using - [58]
U3MJNFUYMerge lines.love - [59]
QS3YLNKZMerge lines.love - [60]
HCFDBUXHfix stale comment - [61]
EMG7SDLWbugfix: cold start
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