resolve conflicts
Dependencies
- [2]
FYJXSWXVresolve conflicts - [3]
B5F4DYADupdate source editor - [4]
66X36NZNa little more prose describing manual_tests - [5]
KMSL74GAsupport selections in the source editor - [6]
LXTTOB33extract a couple of files - [7]
APX2PY6Gstop tracking wallclock time - [8]
ORKN6EOBMerge lines.love - [9]
QMRQL2FOresolve conflicts - [10]
F4RUTONDsplit up editor tests between LÖVE 11 and LÖVE 12 - [11]
3QNOKBFMbeginnings of a test harness - [12]
ZLJYLPOTMerge lines.love - [13]
R5QXEHUIsomebody stop me - [14]
OI4FPFINsupport drawings in the source editor - [15]
OTIBCAUJlove2d scaffold - [16]
2L5MEZV3experiment: new edit namespace - [17]
2EELKVO2resolve conflicts - [18]
VHQCNMARseveral more modules - [19]
VP5KC4XZMerge lines.love - [20]
AVTNUQYRbasic test-enabled framework - [21]
K2X6G75Zstart writing some tests for drawings - [22]
OGUV4HSAremove some memory leaks from rendered fragments - [23]
ED4Z6ORCcleaner API for file-system access - [24]
BJ5X5O4Alet's prevent the text cursor from ever getting on a drawing - [25]
N2NUGNN4include a brief reference enabling many useful apps - [26]
SGMA5JLEsave the list of tests in repo - [27]
TLOAPLBJadd a license - [28]
5SM6DRHKport inscript's bugfix to source editor - [29]
4YDBYBA4clean up memory leak experiments - [30]
6VJTQKW7start supporting LÖVE v12 - [31]
VXORMHMEdelete experimental REPL - [32]
73OCE2MCafter much struggle, a brute-force undo - [33]
RUB7L6GYresolve conflicts - [34]
BULPIBEGbeginnings of a module for the text editor - [35]
VZPH3XJKupdate source editor - [36]
FS2ITYYHrecord a known issue - [37]
5XA7TKWYpull font into editor - [38]
T42Y5MLOexplicitly specify app name - [39]
JOPVPUSAediting source code from within the app - [40]
T4FRZSYLdelete an ancient, unused file - [41]
RSZD5A7Gforgot to add json.lua - [42]
3PSFWAILMerge lines.love - [43]
6LJZN727handle chords - [44]
2CTN2IEFMerge lines.love - [45]
VHUNJHXBMerge lines.love - [46]
4SR3Z4Y3document the version of LÖVE I've been using - [47]
TVCPXAAUrename - [48]
KKMFQDR4editing source code from within the app - [49]
LWPFEZBIMerge lines.love - [50]
MBAJPTDJresolve conflicts - [51]
ONHKBLLCMerge lines.love - [52]
KKQKPGCIresolve conflicts - [53]
CE4LZV4Tdrop last couple of manual tests - [54]
BLWAYPKVextract a module - [55]
XX7G2FFJintermingle freehand line drawings with text - [56]
D2GCFTTTclean up repl functionality
Change contents
- file deletion: source_edit.lua source_edit.lua
Hand_icon = love.mouse.getSystemCursor('hand')Arrow_icon = love.mouse.getSystemCursor('arrow')button_handlers = {},local x, y = love.mouse.getPosition()if mouse_hover_on_any_button(State, x,y) thenlove.mouse.setCursor(Hand_icon)elselove.mouse.setCursor(Arrow_icon)endDrawing.update(State, dt)}return result - edit in source_edit.lua at line 24
Hand_icon = love.mouse.getSystemCursor('hand')Arrow_icon = love.mouse.getSystemCursor('arrow') - edit in source_edit.lua at line 108
button_handlers = {}, - edit in source_edit.lua at line 218
local x, y = love.mouse.getPosition()if mouse_hover_on_any_button(State, x,y) thenlove.mouse.setCursor(Hand_icon)elselove.mouse.setCursor(Arrow_icon)end