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