Merge lines.love
[?]
Oct 28, 2023, 7:54 AM
TBTRYEBPU7OOMGLGMFM6KF7CXXKH5R6YGAOOPGRLCJGRO7NN44VACDependencies
- [2]
K74U4BAUMerge lines.love - [3]
B6DS4GZCMerge lines.love - [4]
T45HTERYchange section delimiters in log for OpenBSD - [5]
M5Y4H74Fuse my name for a dir - [6]
CEDTFKFDdelete some dead code - [7]
6LJZN727handle chords - [8]
AVTNUQYRbasic test-enabled framework - [9]
OTIBCAUJlove2d scaffold - [10]
ZLJYLPOTMerge lines.love - [11]
D2GCFTTTclean up repl functionality - [12]
VXORMHMEdelete experimental REPL - [13]
WB6SIB7HMerge lines.love - [14]
JOPVPUSAediting source code from within the app - [15]
ED4Z6ORCcleaner API for file-system access - [16]
VHQCNMARseveral more modules - [17]
VHUNJHXBMerge lines.love - [18]
RSZD5A7Gforgot to add json.lua - [19]
2CTN2IEFMerge lines.love - [20]
3PSFWAILMerge lines.love - [21]
N2NUGNN4include a brief reference enabling many useful apps - [22]
KKMFQDR4editing source code from within the app - [23]
TLOAPLBJadd a license - [24]
LXTTOB33extract a couple of files - [25]
MD3W5IRAnew fork: rip out drawing support - [26]
73OCE2MCafter much struggle, a brute-force undo - [27]
66X36NZNa little more prose describing manual_tests - [28]
ICFNWHOLcreate a place for graphical log handlers - [29]
BJ5X5O4Alet's prevent the text cursor from ever getting on a drawing - [30]
34BZ5ZKNMerge lines.love - [31]
2344TV56Merge lines.love - [32]
TVCPXAAUrename - [33]
R5QXEHUIsomebody stop me - [34]
K2X6G75Zstart writing some tests for drawings - [35]
BLWAYPKVextract a module - [36]
ZQDQLLCLbugfix - [37]
FS2ITYYHrecord a known issue - [38]
3QNOKBFMbeginnings of a test harness - [39]
SGMA5JLEsave the list of tests in repo - [40]
YF2ATH2QMerge lines.love - [41]
XX7G2FFJintermingle freehand line drawings with text - [42]
CE4LZV4Tdrop last couple of manual tests - [43]
6VJTQKW7start supporting LÖVE v12 - [44]
LWPFEZBIMerge lines.love - [45]
4YDBYBA4clean up memory leak experiments - [46]
2L5MEZV3experiment: new edit namespace - [47]
BULPIBEGbeginnings of a module for the text editor - [48]
KMSL74GAsupport selections in the source editor - [49]
3XNFQDDNMerge lines.love - [50]
4SR3Z4Y3document the version of LÖVE I've been using - [51]
VBU5YHLRMerge lines.love - [52]
7YGYHOEOMerge lines.love - [53]
VP5KC4XZMerge lines.love - [54]
ORKN6EOBMerge lines.love - [55]
OGUV4HSAremove some memory leaks from rendered fragments - [56]
RU4HIK43Merge lines.love - [57]
T4FRZSYLdelete an ancient, unused file - [58]
KG7YVGVRMerge lines.love - [59]
SW7BSBMJseveral bugfixes in saving/loading cursor position
Change contents
- file deletion: run.lua run.lua
return App.current_dir..pathendreturn pathend - file deletion: log_browser.lua log_browser.lua
elseif line.data:match('%] u2518') thenlocal section_name = line.data:match('] u2518%s*(.*)')if array.find(Section_stack, function(x) return x.name == section_name end) thenwhile table.remove(Section_stack).name ~= section_name do--endline.section_end = trueline.section_name = section_nameline.data = nilendline.section_stack = table.shallowcopy(Section_stack)else-- stringline.section_stack = table.shallowcopy(Section_stack)endelseline.section_stack = {}endendendfunction table.shallowcopy(x)return {unpack(x)}local section_name = line.data:match('u250c%s*(.*)')table.insert(Section_stack, {name=section_name})line.section_begin = trueline.section_name = section_nameline.data = nilelseif line.data:match('%[ u250c') thenline.section_stack = table.shallowcopy(Section_stack) -- as it is at the beginning - file deletion: log.lua log.lua
-- I'd like to use the unicode character \u{2518} here, but it doesn't work-- in OpenBSD.log(stack_frame_index, '] u2518 ' .. name)endfunction log_new(name, stack_frame_index)if stack_frame_index == nil thenstack_frame_index = 4endlog_end(name, stack_frame_index)log_start(name, stack_frame_index)end-- I'd like to use the unicode character \u{250c} here, but it doesn't work-- in OpenBSD.log(stack_frame_index, '[ u250c ' .. name)endfunction log_end(name, stack_frame_index)if stack_frame_index == nil thenstack_frame_index = 3end - replacement in run.lua at line 166
return love.filesystem.getWorkingDirectory()..'/'..path -- '/' should work even on Windowsreturn App.current_dir..path - replacement in log_browser.lua at line 45
elseif line.data:match('\u{250c}') thenelseif line.data:match('%[ u250c') then - replacement in log_browser.lua at line 47
local section_name = line.data:match('\u{250c}%s*(.*)')local section_name = line.data:match('u250c%s*(.*)') - replacement in log_browser.lua at line 52
elseif line.data:match('\u{2518}') thenlocal section_name = line.data:match('\u{2518}%s*(.*)')elseif line.data:match('%] u2518') thenlocal section_name = line.data:match('] u2518%s*(.*)') - replacement in log.lua at line 17
log(stack_frame_index, '\u{250c} ' .. name)-- I'd like to use the unicode character \u{250c} here, but it doesn't work-- in OpenBSD.log(stack_frame_index, '[ u250c ' .. name) - replacement in log.lua at line 25
log(stack_frame_index, '\u{2518} ' .. name)-- I'd like to use the unicode character \u{2518} here, but it doesn't work-- in OpenBSD.log(stack_frame_index, '] u2518 ' .. name)