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