ctrl-+ and ctrl-- to adjust font size
[?]
May 17, 2022, 6:01 AM
V5TP27FPD6GPATHPABRW2FKP7BIKY53KL47UVEU5DF4WXEZF7CKACDependencies
- [2]
HDCVGN6Gsave each line's y coordinate, whether it's a drawing or not - [3]
2INHXC3Kposition cursor by clicking on text - [4]
UTF73CBLreorg - [5]
RJGZD4INbinary search to most natural up/down with proportional fonts - [6]
IFGAJAF7add a level of indirection to vertices of shapes - [7]
HJ3PM2VT. - [8]
OTIBCAUJlove2d scaffold - [9]
KHFU5NFDbugfix: up/down across drawings - [10]
JCSLDGAHbeginnings of support for multiple shapes - [11]
ZUOL7X6Vmove - [12]
QU7NHFOVshow cursor - [13]
4NDYV4WDfix 2 bugs in line selection - [14]
3CS5KKCIup/down cursor movement - [15]
7RN3AETYbugfix: text sometimes getting colored like drawing borders - [16]
VVXVV2D2change data model; text can now have metadata - [17]
ZD63LJ2Tbugfix: keep the click to create a new drawing from creating a new shape in the drawing - [18]
XX7G2FFJintermingle freehand line drawings with text - [*]
JVRL5TWLstore device-independent coordinates inside drawings - [*]
YKRF5V3Zstarting to load/save - [*]
JS6JSYOTonline contextual help
Change contents
- edit in main.lua at line 55
zoom = 1.5 - replacement in main.lua at line 93
y = y+25y = y+15*zoom - replacement in main.lua at line 162[5.38]→[5.1249:1294](∅→∅),[5.73]→[5.1249:1294](∅→∅),[5.546]→[5.1249:1294](∅→∅),[5.1249]→[5.1249:1294](∅→∅)
love.graphics.draw(text, 25,y, 0, 1.5)love.graphics.draw(text, 25,y, 0, zoom) - replacement in main.lua at line 205
if x >= 16 and y >= line.y and y < y+25 thenif x >= 16 and y >= line.y and y < y+15*zoom then - edit in main.lua at line 600
elseif chord == 'C-=' thenzoom = zoom+0.5elseif chord == 'C--' thenzoom = zoom-0.5 - replacement in main.lua at line 747
return 25+text_before_cursor:getWidth()*1.5return 25+text_before_cursor:getWidth()*zoom - edit in main.lua at line 1098[22.1988][22.1988]
love.graphics.print("* Press 'ctrl+=' or 'ctrl+-' to zoom in or out", 16+30,y)y = y+15