resolve conflicts
Dependencies
- [2]
RXMHAZ6Vresolve conflicts - [3]
VS5HRXU6reindent - [4]
AHNBMC7Islightly improve deepcopy everywhere - [5]
R5QXEHUIsomebody stop me - [6]
K74U4BAUMerge lines.love - [7]
MBAJPTDJresolve conflicts - [8]
TOXPJJYYresolve conflicts - [9]
LWPFEZBIMerge lines.love - [10]
ZLJYLPOTMerge lines.love - [11]
JOPVPUSAediting source code from within the app - [12]
3QNOKBFMbeginnings of a test harness - [13]
TLOAPLBJadd a license - [14]
6VJTQKW7start supporting LÖVE v12 - [15]
QIR3VBYIresolve conflicts - [16]
KFEUQWHXresolve conflicts - [17]
6LJZN727handle chords - [18]
T4FRZSYLdelete an ancient, unused file - [19]
KKQKPGCIresolve conflicts - [20]
SGMA5JLEsave the list of tests in repo - [21]
SYWQBIO5resolve conflicts - [22]
3PSFWAILMerge lines.love - [23]
TVCPXAAUrename - [24]
D2GCFTTTclean up repl functionality - [25]
TBTRYEBPMerge lines.love - [26]
XX7G2FFJintermingle freehand line drawings with text - [27]
KKMFQDR4editing source code from within the app - [28]
ED4Z6ORCcleaner API for file-system access - [29]
AVTNUQYRbasic test-enabled framework - [30]
VHUNJHXBMerge lines.love - [31]
BULPIBEGbeginnings of a module for the text editor - [32]
BLWAYPKVextract a module - [33]
VHQCNMARseveral more modules - [34]
73OCE2MCafter much struggle, a brute-force undo - [35]
LXTTOB33extract a couple of files - [36]
OTIBCAUJlove2d scaffold - [37]
4YDBYBA4clean up memory leak experiments - [38]
K2X6G75Zstart writing some tests for drawings - [39]
2L5MEZV3experiment: new edit namespace - [40]
CE4LZV4Tdrop last couple of manual tests - [41]
BJ5X5O4Alet's prevent the text cursor from ever getting on a drawing - [42]
KMSL74GAsupport selections in the source editor - [43]
VP5KC4XZMerge lines.love - [44]
ICFNWHOLcreate a place for graphical log handlers - [45]
N2NUGNN4include a brief reference enabling many useful apps - [46]
RSZD5A7Gforgot to add json.lua - [47]
T45HTERYchange section delimiters in log for OpenBSD - [48]
VXORMHMEdelete experimental REPL - [49]
OGUV4HSAremove some memory leaks from rendered fragments - [50]
2CTN2IEFMerge lines.love - [51]
66X36NZNa little more prose describing manual_tests - [52]
QXXISTGEresolve conflicts - [53]
FS2ITYYHrecord a known issue - [54]
ORKN6EOBMerge lines.love - [55]
4SR3Z4Y3document the version of LÖVE I've been using
Change contents
- file deletion: source_undo.lua source_undo.lua
seen = seen or {}if seen[obj] then return seen[obj] endseen[obj] = resultresult[deepcopy(k, seen)] = deepcopy(v, seen)endreturn resultendfunction minmax(a, b)return math.min(a,b), math.max(a,b)endfor k,v in pairs(obj) dolocal result = setmetatable({}, getmetatable(obj)) - file deletion: log.lua log.lua
local info = debug.getinfo(stack_frame_index, 'Sl')local msgif type(obj) == 'string' thenmsg = objelsemsg = json.encode(obj)endlove.filesystem.append('log', info.short_src..':'..info.currentline..': '..msg..'\n')if stack_frame_index == nil thenstack_frame_index = 3end-- I'd like to use the unicode character \u{250c} here, but it doesn't work-- in OpenBSD.log(stack_frame_index, '[ u250c ' .. name)if stack_frame_index == nil thenstack_frame_index = 3end-- I'd like to use the unicode character \u{2518} here, but it doesn't work-- in OpenBSD.log(stack_frame_index, '] u2518 ' .. name)if stack_frame_index == nil thenstack_frame_index = 4endlog_end(name, stack_frame_index)log_start(name, stack_frame_index)endendfunction log_new(name, stack_frame_index)endfunction log_end(name, stack_frame_index)end-- for section delimiters we'll use specific Unicode box charactersfunction log_start(name, stack_frame_index) - replacement in source_undo.lua at line 87
if seen and seen[obj] then return seen[obj] endlocal s = seen or {}seen = seen or {}if seen[obj] then return seen[obj] end - replacement in source_undo.lua at line 90
s[obj] = resultseen[obj] = result - replacement in source_undo.lua at line 92
result[deepcopy(k, s)] = deepcopy(v, s)result[deepcopy(k, seen)] = deepcopy(v, seen) - replacement in log.lua at line 2
local info = debug.getinfo(stack_frame_index, 'Sl')local msgif type(obj) == 'string' thenmsg = objelsemsg = json.encode(obj)endlove.filesystem.append('log', info.short_src..':'..info.currentline..': '..msg..'\n')local info = debug.getinfo(stack_frame_index, 'Sl')local msgif type(obj) == 'string' thenmsg = objelsemsg = json.encode(obj)endlove.filesystem.append('log', info.short_src..':'..info.currentline..': '..msg..'\n') - replacement in log.lua at line 14
if stack_frame_index == nil thenstack_frame_index = 3end-- I'd like to use the unicode character \u{250c} here, but it doesn't work-- in OpenBSD.log(stack_frame_index, '[ u250c ' .. name)if stack_frame_index == nil thenstack_frame_index = 3end-- 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 22
if stack_frame_index == nil thenstack_frame_index = 3end-- I'd like to use the unicode character \u{2518} here, but it doesn't work-- in OpenBSD.log(stack_frame_index, '] u2518 ' .. name)if stack_frame_index == nil thenstack_frame_index = 3end-- I'd like to use the unicode character \u{2518} here, but it doesn't work-- in OpenBSD.log(stack_frame_index, '] u2518 ' .. name) - replacement in log.lua at line 31
if stack_frame_index == nil thenstack_frame_index = 4endlog_end(name, stack_frame_index)log_start(name, stack_frame_index)if stack_frame_index == nil thenstack_frame_index = 4endlog_end(name, stack_frame_index)log_start(name, stack_frame_index)