Merge lines.love
[?]
Sep 4, 2023, 10:22 PM
3SB6YT3AH4MMC2X7663KPTYKF7CFB4VT75ZSU3ZSI7RRUXBAMOYACDependencies
- [2]
B6DS4GZCMerge lines.love - [3]
EHADZNMBshow any error after switching to source editor - [4]
4YDBYBA4clean up memory leak experiments - [5]
LWPFEZBIMerge lines.love - [6]
4SR3Z4Y3document the version of LÖVE I've been using - [7]
TVCPXAAUrename - [8]
3QNOKBFMbeginnings of a test harness - [9]
FS2ITYYHrecord a known issue - [10]
TLOAPLBJadd a license - [11]
KKMFQDR4editing source code from within the app - [12]
VHUNJHXBMerge lines.love - [13]
73OCE2MCafter much struggle, a brute-force undo - [14]
BULPIBEGbeginnings of a module for the text editor - [15]
D2GCFTTTclean up repl functionality - [16]
OGUV4HSAremove some memory leaks from rendered fragments - [17]
66X36NZNa little more prose describing manual_tests - [18]
ORKN6EOBMerge lines.love - [19]
JZR3QMTNMerge lines.love - [20]
OTIBCAUJlove2d scaffold - [21]
JOPVPUSAediting source code from within the app - [22]
2CTN2IEFMerge lines.love - [23]
VHQCNMARseveral more modules - [24]
VXORMHMEdelete experimental REPL - [25]
KMSL74GAsupport selections in the source editor - [26]
CE4LZV4Tdrop last couple of manual tests - [27]
BYKXF3YYbugfix: draw menu after everything else - [28]
VBU5YHLRMerge lines.love - [29]
G54H3YG2get rid of all bifold text - [30]
N2NUGNN4include a brief reference enabling many useful apps - [31]
SGMA5JLEsave the list of tests in repo - [32]
BJ5X5O4Alet's prevent the text cursor from ever getting on a drawing - [33]
BLWAYPKVextract a module - [34]
ONHKBLLCMerge lines.love - [35]
RU4HIK43Merge lines.love - [36]
KWHC65JIMerge lines.love - [37]
K2X6G75Zstart writing some tests for drawings - [38]
LXTTOB33extract a couple of files - [39]
R5QXEHUIsomebody stop me - [40]
RSZD5A7Gforgot to add json.lua - [41]
6LJZN727handle chords - [42]
AVTNUQYRbasic test-enabled framework - [43]
2L5MEZV3experiment: new edit namespace - [44]
VP5KC4XZMerge lines.love - [45]
OB5XOXVCdeemphasize the source editor - [46]
2344TV56Merge lines.love - [47]
K74U4BAUMerge lines.love - [48]
ZLJYLPOTMerge lines.love - [49]
XX7G2FFJintermingle freehand line drawings with text - [50]
3PSFWAILMerge lines.love - [51]
HWTLXESCMerge lines.love - [52]
T4FRZSYLdelete an ancient, unused file - [53]
MD3W5IRAnew fork: rip out drawing support - [54]
ED4Z6ORCcleaner API for file-system access - [55]
WB6SIB7HMerge lines.love
Change contents
- file deletion: source.lua source.lua
if Error_message thenlocal height = math.min(20*Editor_state.line_height, App.screen.height*0.2)App.color{r=0.8,g=0,b=0}love.graphics.rectangle('fill', 150, App.screen.height - height-10, App.screen.width, height+10)App.color{r=0,g=0,b=0}love.graphics.print(Error_message, 150+10, App.screen.height - height)endendfunction source.update(dt)Cursor_time = Cursor_time + dtif App.mouse_x() < Editor_state.right thenedit.update(Editor_state, dt)elseif Show_log_browser_side thenlog_browser.update(Log_browser_state, dt)endendfunction source.quit()edit.quit(Editor_state)log_browser.quit(Log_browser_state) - edit in source.lua at line 255
if Error_message thenlocal height = math.min(20*Editor_state.line_height, App.screen.height*0.2)App.color{r=0.8,g=0,b=0}love.graphics.rectangle('fill', 150, App.screen.height - height-10, App.screen.width, height+10)App.color{r=0,g=0,b=0}love.graphics.print(Error_message, 150+10, App.screen.height - height)end