resolve conflicts
Dependencies
- [2]
FBBHEUQNresolve conflicts - [3]
I3DACDF3bugfix: Unicode - [4]
TBTRYEBPMerge lines.love - [5]
R5QXEHUIsomebody stop me - [6]
VXORMHMEdelete experimental REPL - [7]
KKQKPGCIresolve conflicts - [8]
TOXPJJYYresolve conflicts - [9]
G54H3YG2get rid of all bifold text - [10]
VHUNJHXBMerge lines.love - [11]
VHQCNMARseveral more modules - [12]
ED4Z6ORCcleaner API for file-system access - [13]
TLOAPLBJadd a license - [14]
RXMHAZ6Vresolve conflicts - [15]
AVTNUQYRbasic test-enabled framework - [16]
LXTTOB33extract a couple of files - [17]
2L5MEZV3experiment: new edit namespace - [18]
GZ5WULJVswitch source side to new screen-line-based render - [19]
K2X6G75Zstart writing some tests for drawings - [20]
D2GCFTTTclean up repl functionality - [21]
3QNOKBFMbeginnings of a test harness - [22]
KWIVKQQ7Merge lines.love - [23]
QXXISTGEresolve conflicts - [24]
3PSFWAILMerge lines.love - [25]
CRBLAWBOresolve conflicts - [26]
2TQUKHBCMerge lines.love - [27]
CE4LZV4Tdrop last couple of manual tests - [28]
BULPIBEGbeginnings of a module for the text editor - [29]
OI4FPFINsupport drawings in the source editor - [30]
4SR3Z4Y3document the version of LÖVE I've been using - [31]
73OCE2MCafter much struggle, a brute-force undo - [32]
ORKN6EOBMerge lines.love - [33]
ZLJYLPOTMerge lines.love - [34]
66X36NZNa little more prose describing manual_tests - [35]
SGMA5JLEsave the list of tests in repo - [36]
MBAJPTDJresolve conflicts - [37]
T4FRZSYLdelete an ancient, unused file - [38]
BJ5X5O4Alet's prevent the text cursor from ever getting on a drawing - [39]
6LJZN727handle chords - [40]
TVCPXAAUrename - [41]
OGUV4HSAremove some memory leaks from rendered fragments - [42]
KKMFQDR4editing source code from within the app - [43]
BLWAYPKVextract a module - [44]
RSZD5A7Gforgot to add json.lua - [45]
2CTN2IEFMerge lines.love - [46]
FS2ITYYHrecord a known issue - [47]
OTIBCAUJlove2d scaffold - [48]
KMSL74GAsupport selections in the source editor - [49]
JOPVPUSAediting source code from within the app - [50]
N2NUGNN4include a brief reference enabling many useful apps - [51]
LWPFEZBIMerge lines.love - [52]
6VJTQKW7start supporting LÖVE v12 - [53]
4YDBYBA4clean up memory leak experiments - [54]
XX7G2FFJintermingle freehand line drawings with text - [55]
VP5KC4XZMerge 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) - replacement in source_text.lua at line 93
local endpos = line_cache.screen_line_starting_pos[i+1]-1local endpos = line_cache.screen_line_starting_pos[i+1] - replacement in source_text.lua at line 95
return line.data:sub(offset, end_offset)return line.data:sub(offset, end_offset-1)