resolve conflicts
Dependencies
- [2]
KQ22RW43resolve conflicts - [3]
RUB7L6GYresolve conflicts - [4]
7LXXQBNEresolve conflicts - [5]
VXORMHMEdelete experimental REPL - [6]
65WSX5RJresolve conflicts - [7]
66X36NZNa little more prose describing manual_tests - [8]
OTIBCAUJlove2d scaffold - [9]
JOPVPUSAediting source code from within the app - [10]
VXRYVZ74Merge text.love - [11]
VHUNJHXBMerge lines.love - [12]
N2NUGNN4include a brief reference enabling many useful apps - [13]
AVTNUQYRbasic test-enabled framework - [14]
KFEUQWHXresolve conflicts - [15]
TBTRYEBPMerge lines.love - [16]
K2X6G75Zstart writing some tests for drawings - [17]
4YDBYBA4clean up memory leak experiments - [18]
R6MNUXDJpijul bug - [19]
KJLZCK2Rresolve conflicts - [20]
CZ6X73VYmerge bugfix - [21]
KKMFQDR4editing source code from within the app - [22]
VHQCNMARseveral more modules - [23]
QXXISTGEresolve conflicts - [24]
SYWQBIO5resolve conflicts - [25]
LXTTOB33extract a couple of files - [26]
VP5KC4XZMerge lines.love - [27]
CAG7PP5YMerge text.love - [28]
2CFLXLIEMerge text.love - [29]
QIR3VBYIresolve conflicts - [30]
P6NKDBXEresolve conflicts - [31]
UAYCSFSKMerge text.love - [32]
TVCPXAAUrename - [33]
4SR3Z4Y3document the version of LÖVE I've been using - [34]
CE4LZV4Tdrop last couple of manual tests - [35]
RSZD5A7Gforgot to add json.lua - [36]
R5QXEHUIsomebody stop me - [37]
XX7G2FFJintermingle freehand line drawings with text - [38]
BJ5X5O4Alet's prevent the text cursor from ever getting on a drawing - [39]
T4FRZSYLdelete an ancient, unused file - [40]
D2GCFTTTclean up repl functionality - [41]
2L5MEZV3experiment: new edit namespace - [42]
TLOAPLBJadd a license - [43]
SLMSBVJWresolve conflicts - [44]
73OCE2MCafter much struggle, a brute-force undo - [45]
MBAJPTDJresolve conflicts - [46]
PJ5PQAQErecord support for multiple versions - [47]
BULPIBEGbeginnings of a module for the text editor - [48]
FS2ITYYHrecord a known issue - [49]
BLWAYPKVextract a module - [50]
2CTN2IEFMerge lines.love - [51]
LWPFEZBIMerge lines.love - [52]
KMSL74GAsupport selections in the source editor - [53]
36Z442IVback to commit 8123959e52f without code editing - [54]
SGMA5JLEsave the list of tests in repo - [55]
K74U4BAUMerge lines.love - [56]
OGUV4HSAremove some memory leaks from rendered fragments - [57]
6LJZN727handle chords - [58]
VLTU33KWresolve conflicts - [59]
3QNOKBFMbeginnings of a test harness - [60]
6VJTQKW7start supporting LÖVE v12 - [61]
3PSFWAILMerge lines.love - [62]
ORKN6EOBMerge lines.love - [63]
KKQKPGCIresolve conflicts - [64]
4Y2QDDAZresolve conflicts - [65]
ED4Z6ORCcleaner API for file-system access - [66]
TOXPJJYYresolve conflicts - [67]
ZLJYLPOTMerge lines.love
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)