Merge text.love
[?]
Oct 17, 2023, 6:31 AM
NUJMQXN64UTFVNRFCJFNVJ7J4G5NVCQA4MFIFNBS626TRHCTESMQCDependencies
- [2]
5ML5VGOCMerge text.love - [3]
7YGYHOEOMerge lines.love - [4]
XX7G2FFJintermingle freehand line drawings with text - [5]
VXRYVZ74Merge text.love - [6]
RIAFJLMZMerge text.love - [7]
2CFLXLIEMerge text.love - [8]
2344TV56Merge lines.love - [9]
6LJZN727handle chords - [10]
VP5KC4XZMerge lines.love - [11]
UGXRAL54Merge text.love - [12]
REAIVN7WMerge lines.love - [13]
VBU5YHLRMerge lines.love - [14]
LXTTOB33extract a couple of files - [15]
JOPVPUSAediting source code from within the app - [16]
ED4Z6ORCcleaner API for file-system access - [17]
UAYCSFSKMerge text.love - [18]
QD4LOFQRMerge text.love - [19]
OTIBCAUJlove2d scaffold - [20]
FS2ITYYHrecord a known issue - [21]
BULPIBEGbeginnings of a module for the text editor - [22]
ZLJYLPOTMerge lines.love - [23]
73OCE2MCafter much struggle, a brute-force undo - [24]
MD3W5IRAnew fork: rip out drawing support - [25]
RU4HIK43Merge lines.love - [26]
36Z442IVback to commit 8123959e52f without code editing - [27]
K2X6G75Zstart writing some tests for drawings - [28]
CE4LZV4Tdrop last couple of manual tests - [29]
KWIVKQQ7Merge lines.love - [30]
FM5LDKGTMerge text.love - [31]
4SR3Z4Y3document the version of LÖVE I've been using - [32]
2CTN2IEFMerge lines.love - [33]
T4FRZSYLdelete an ancient, unused file - [34]
SGMA5JLEsave the list of tests in repo - [35]
ORKN6EOBMerge lines.love - [36]
LWPFEZBIMerge lines.love - [37]
WB6SIB7HMerge lines.love - [38]
D2GCFTTTclean up repl functionality - [39]
K74U4BAUMerge lines.love - [40]
Q6RXCILQMerge text.love - [41]
PJ5PQAQErecord support for multiple versions - [42]
IGBTDA6YMerge text.love - [43]
3QNOKBFMbeginnings of a test harness - [44]
4YDBYBA4clean up memory leak experiments - [45]
N2NUGNN4include a brief reference enabling many useful apps - [46]
YF2ATH2QMerge lines.love - [47]
3PSFWAILMerge lines.love - [48]
D2TYFYG2Merge text.love - [49]
BLWAYPKVextract a module - [50]
M5JXTW56Merge text.love - [51]
RO35V4H4Merge text.love - [52]
34BZ5ZKNMerge lines.love - [53]
RSZD5A7Gforgot to add json.lua - [54]
VXORMHMEdelete experimental REPL - [55]
B6DS4GZCMerge lines.love - [56]
KKMFQDR4editing source code from within the app - [57]
AVTNUQYRbasic test-enabled framework - [58]
TVCPXAAUrename - [59]
2JLMNZZIMerge text.love - [60]
VHQCNMARseveral more modules - [61]
66X36NZNa little more prose describing manual_tests - [62]
ATQO62TFMerge lines.love - [63]
OGUV4HSAremove some memory leaks from rendered fragments - [64]
MGJZHZC4Merge lines.love - [65]
TLOAPLBJadd a license - [66]
6VJTQKW7start supporting LÖVE v12 - [67]
2L5MEZV3experiment: new edit namespace - [68]
X43ZIKR3Merge text.love - [69]
R5QXEHUIsomebody stop me - [70]
KMSL74GAsupport selections in the source editor - [71]
BJ5X5O4Alet's prevent the text cursor from ever getting on a drawing - [72]
KWHC65JIMerge lines.love - [73]
VHUNJHXBMerge lines.love
Change contents
- file deletion: source_text.lua source_text.lua
button(State, 'link', {x=State.left+lo, y=y, w=hi-lo, h=State.line_height, bg={r=1,g=1,b=1},icon = icon.hyperlink_decoration,onpress1 = function()if file_exists(filename) thensource.switch_to_file(filename)endend,}) - file deletion: source_edit.lua source_edit.lua
button(State, 'draw', {x=buttonx, y=y+4, w=12,h=12, bg={r=1,g=1,b=0},icon = icon.insert_drawing,onpress1 = function()Drawing.before = snapshot(State, line_index-1, line_index)table.insert(State.lines, line_index, {mode='drawing', y=y, h=256/2, points={}, shapes={}, pending={}})table.insert(State.line_cache, line_index, {})if State.cursor1.line >= line_index thenState.cursor1.line = State.cursor1.line+1endschedule_save(State)record_undo_event(State, {before=Drawing.before, after=snapshot(State, line_index-1, line_index+1)})end,}) - file deletion: commands.lua commands.lua
button(Editor_state, 'menu', {x=x-5, y=y-2, w=width+5*2, h=Editor_state.line_height+2*2, bg=color,onpress1 = function()