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