resolve conflicts
Dependencies
- [2]
CZ6X73VYmerge bugfix - [3]
SYWQBIO5resolve conflicts - [4]
QXXISTGEresolve conflicts - [5]
OGUV4HSAremove some memory leaks from rendered fragments - [6]
TBTRYEBPMerge lines.love - [7]
FBBHEUQNresolve conflicts - [8]
XX7G2FFJintermingle freehand line drawings with text - [9]
VLTU33KWresolve conflicts - [10]
D2GCFTTTclean up repl functionality - [11]
T4FRZSYLdelete an ancient, unused file - [12]
KKQKPGCIresolve conflicts - [13]
VP5KC4XZMerge lines.love - [14]
JOPVPUSAediting source code from within the app - [15]
TOXPJJYYresolve conflicts - [16]
R5QXEHUIsomebody stop me - [17]
KKMFQDR4editing source code from within the app - [18]
LXTTOB33extract a couple of files - [19]
2CFLXLIEMerge text.love - [20]
6VJTQKW7start supporting LÖVE v12 - [21]
K2X6G75Zstart writing some tests for drawings - [22]
R6MNUXDJpijul bug - [23]
N2NUGNN4include a brief reference enabling many useful apps - [24]
VXORMHMEdelete experimental REPL - [25]
BJ5X5O4Alet's prevent the text cursor from ever getting on a drawing - [26]
KQ22RW43resolve conflicts - [27]
4SR3Z4Y3document the version of LÖVE I've been using - [28]
CE4LZV4Tdrop last couple of manual tests - [29]
36Z442IVback to commit 8123959e52f without code editing - [30]
BLWAYPKVextract a module - [31]
AVTNUQYRbasic test-enabled framework - [32]
SGMA5JLEsave the list of tests in repo - [33]
3QNOKBFMbeginnings of a test harness - [34]
KMSL74GAsupport selections in the source editor - [35]
RSZD5A7Gforgot to add json.lua - [36]
2CTN2IEFMerge lines.love - [37]
KWIVKQQ7Merge lines.love - [38]
ZLJYLPOTMerge lines.love - [39]
FS2ITYYHrecord a known issue - [40]
VXRYVZ74Merge text.love - [41]
RXMHAZ6Vresolve conflicts - [42]
TVCPXAAUrename - [43]
4Y2QDDAZresolve conflicts - [44]
TLOAPLBJadd a license - [45]
LWPFEZBIMerge lines.love - [46]
3G723RV5Merge text.love - [47]
CAG7PP5YMerge text.love - [48]
VHUNJHXBMerge lines.love - [49]
ED4Z6ORCcleaner API for file-system access - [50]
6LJZN727handle chords - [51]
73OCE2MCafter much struggle, a brute-force undo - [52]
ORKN6EOBMerge lines.love - [53]
MBAJPTDJresolve conflicts - [54]
CRBLAWBOresolve conflicts - [55]
7LXXQBNEresolve conflicts - [56]
VHQCNMARseveral more modules - [57]
2L5MEZV3experiment: new edit namespace - [58]
OTIBCAUJlove2d scaffold - [59]
BULPIBEGbeginnings of a module for the text editor - [60]
4YDBYBA4clean up memory leak experiments - [61]
KJLZCK2Rresolve conflicts - [62]
2TQUKHBCMerge lines.love - [63]
PJ5PQAQErecord support for multiple versions - [64]
3PSFWAILMerge lines.love - [65]
66X36NZNa little more prose describing manual_tests
Change contents
- file deletion: source_text.lua source_text.lua
local endpos = line_cache.screen_line_starting_pos[i+1]return line.data:sub(offset, end_offset-1)endfunction Text.draw_cursor(State, x, y)-- blink every 0.5sif math.floor(Cursor_time*2)%2 == 0 thenApp.color(Cursor_color)love.graphics.rectangle('fill', x,y, 3,State.line_height)endState.cursor_x = xState.cursor_y = y+State.line_heightendfunction Text.populate_screen_line_starting_pos(State, line_index)local line = State.lines[line_index]local end_offset = Text.offset(line.data, endpos)