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