resolve conflicts
Dependencies
- [2]
VLTU33KWresolve conflicts - [3]
3MJ2PYMWresolve conflicts - [4]
TBTRYEBPMerge lines.love - [5]
C3GUE45IMerge text.love - [6]
M5JXTW56Merge text.love - [7]
YF2ATH2QMerge lines.love - [8]
PJ5PQAQErecord support for multiple versions - [9]
3QNOKBFMbeginnings of a test harness - [10]
34BZ5ZKNMerge lines.love - [11]
KKMFQDR4editing source code from within the app - [12]
5SM6DRHKport inscript's bugfix to source editor - [13]
73OCE2MCafter much struggle, a brute-force undo - [14]
TLOAPLBJadd a license - [15]
ZLJYLPOTMerge lines.love - [16]
T4FRZSYLdelete an ancient, unused file - [17]
VXORMHMEdelete experimental REPL - [18]
ED4Z6ORCcleaner API for file-system access - [19]
REAIVN7WMerge lines.love - [20]
D2TYFYG2Merge text.love - [21]
2TQUKHBCMerge lines.love - [22]
LWPFEZBIMerge lines.love - [23]
OGUV4HSAremove some memory leaks from rendered fragments - [24]
JOPVPUSAediting source code from within the app - [25]
VP5KC4XZMerge lines.love - [26]
RU4HIK43Merge lines.love - [27]
OTIBCAUJlove2d scaffold - [28]
FS2ITYYHrecord a known issue - [29]
R5QXEHUIsomebody stop me - [30]
VHQCNMARseveral more modules - [31]
AVTNUQYRbasic test-enabled framework - [32]
CE4LZV4Tdrop last couple of manual tests - [33]
D2GCFTTTclean up repl functionality - [34]
66X36NZNa little more prose describing manual_tests - [35]
Q6RXCILQMerge text.love - [36]
N2NUGNN4include a brief reference enabling many useful apps - [37]
VTCPDL3Aresolve conflicts - [38]
2L5MEZV3experiment: new edit namespace - [39]
XX7G2FFJintermingle freehand line drawings with text - [40]
KKQKPGCIresolve conflicts - [41]
BLWAYPKVextract a module - [42]
36Z442IVback to commit 8123959e52f without code editing - [43]
ONHKBLLCMerge lines.love - [44]
BJ5X5O4Alet's prevent the text cursor from ever getting on a drawing - [45]
4YDBYBA4clean up memory leak experiments - [46]
K2X6G75Zstart writing some tests for drawings - [47]
KMSL74GAsupport selections in the source editor - [48]
3PSFWAILMerge lines.love - [49]
BULPIBEGbeginnings of a module for the text editor - [50]
3G723RV5Merge text.love - [51]
YY472LBUresolve conflicts - [52]
FM5LDKGTMerge text.love - [53]
6LJZN727handle chords - [54]
4SR3Z4Y3document the version of LÖVE I've been using - [55]
X43ZIKR3Merge text.love - [56]
LXTTOB33extract a couple of files - [57]
VHUNJHXBMerge lines.love - [58]
ORKN6EOBMerge lines.love - [59]
QD4LOFQRMerge text.love - [60]
VXRYVZ74Merge text.love - [61]
TVCPXAAUrename - [62]
2CTN2IEFMerge lines.love - [63]
2CFLXLIEMerge text.love - [64]
6VJTQKW7start supporting LÖVE v12 - [65]
CAG7PP5YMerge text.love - [66]
SGMA5JLEsave the list of tests in repo - [67]
Z3TDYADAmouse button state in source editor - [68]
RSZD5A7Gforgot to add json.lua
Change contents
- file deletion: source_select.lua source_select.lua
if State.mouse_down thenmaxl,maxp = Text.mouse_pos(State)elsemaxl,maxp = State.cursor1.line,State.cursor1.posendif Text.lt1({line=maxl, pos=maxp},{line=minl, pos=minp}) thenminl,maxl = maxl,minlminp,maxp = maxp,minpend-- check if intervals are disjointif line_index < minl then return nil,nil endif line_index > maxl then return nil,nil endif line_index == minl and bpos <= minp then return nil,nil endif line_index == maxl and apos >= maxp then return nil,nil end-- compare bounds more carefully (start inclusive, end exclusive)local a_ge = Text.le1({line=minl, pos=minp}, {line=line_index, pos=apos})local b_lt = Text.lt1({line=line_index, pos=bpos}, {line=maxl, pos=maxp}) - file deletion: source_edit.lua source_edit.lua
State.mouse_down = mouse_buttonState.mouse_down = nilif State.lines.current_drawing then--? print_and_log(('edit.mouse_press: cursor at %d,%d'):format(State.cursor1.line, State.cursor1.pos))