Merge text.love
[?]
Oct 17, 2023, 6:31 AM
NUJMQXN64UTFVNRFCJFNVJ7J4G5NVCQA4MFIFNBS626TRHCTESMQCDependencies
- [2]
5ML5VGOCMerge text.love - [3]
7YGYHOEOMerge lines.love - [4]
OTIBCAUJlove2d scaffold - [5]
2L5MEZV3experiment: new edit namespace - [6]
REAIVN7WMerge lines.love - [7]
RO35V4H4Merge text.love - [8]
BLWAYPKVextract a module - [9]
66X36NZNa little more prose describing manual_tests - [10]
MGJZHZC4Merge lines.love - [11]
JOPVPUSAediting source code from within the app - [12]
B6DS4GZCMerge lines.love - [13]
34BZ5ZKNMerge lines.love - [14]
R5QXEHUIsomebody stop me - [15]
3QNOKBFMbeginnings of a test harness - [16]
KKMFQDR4editing source code from within the app - [17]
VHUNJHXBMerge lines.love - [18]
AVTNUQYRbasic test-enabled framework - [19]
BULPIBEGbeginnings of a module for the text editor - [20]
MD3W5IRAnew fork: rip out drawing support - [21]
3PSFWAILMerge lines.love - [22]
UGXRAL54Merge text.love - [23]
ED4Z6ORCcleaner API for file-system access - [24]
VXRYVZ74Merge text.love - [25]
QD4LOFQRMerge text.love - [26]
FS2ITYYHrecord a known issue - [27]
K74U4BAUMerge lines.love - [28]
PJ5PQAQErecord support for multiple versions - [29]
D2GCFTTTclean up repl functionality - [30]
T4FRZSYLdelete an ancient, unused file - [31]
4YDBYBA4clean up memory leak experiments - [32]
LXTTOB33extract a couple of files - [33]
X43ZIKR3Merge text.love - [34]
36Z442IVback to commit 8123959e52f without code editing - [35]
6LJZN727handle chords - [36]
ORKN6EOBMerge lines.love - [37]
KWIVKQQ7Merge lines.love - [38]
M5JXTW56Merge text.love - [39]
YF2ATH2QMerge lines.love - [40]
LWPFEZBIMerge lines.love - [41]
SGMA5JLEsave the list of tests in repo - [42]
RIAFJLMZMerge text.love - [43]
D2TYFYG2Merge text.love - [44]
CE4LZV4Tdrop last couple of manual tests - [45]
TVCPXAAUrename - [46]
UAYCSFSKMerge text.love - [47]
KWHC65JIMerge lines.love - [48]
2CTN2IEFMerge lines.love - [49]
VBU5YHLRMerge lines.love - [50]
K2X6G75Zstart writing some tests for drawings - [51]
OGUV4HSAremove some memory leaks from rendered fragments - [52]
VHQCNMARseveral more modules - [53]
KMSL74GAsupport selections in the source editor - [54]
4SR3Z4Y3document the version of LÖVE I've been using - [55]
XX7G2FFJintermingle freehand line drawings with text - [56]
ZLJYLPOTMerge lines.love - [57]
FM5LDKGTMerge text.love - [58]
VP5KC4XZMerge lines.love - [59]
2JLMNZZIMerge text.love - [60]
N2NUGNN4include a brief reference enabling many useful apps - [61]
2CFLXLIEMerge text.love - [62]
BJ5X5O4Alet's prevent the text cursor from ever getting on a drawing - [63]
RSZD5A7Gforgot to add json.lua - [64]
ATQO62TFMerge lines.love - [65]
RU4HIK43Merge lines.love - [66]
Q6RXCILQMerge text.love - [67]
73OCE2MCafter much struggle, a brute-force undo - [68]
IGBTDA6YMerge text.love - [69]
6VJTQKW7start supporting LÖVE v12 - [70]
VXORMHMEdelete experimental REPL - [71]
2344TV56Merge lines.love - [72]
WB6SIB7HMerge lines.love - [73]
TLOAPLBJadd a license
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()