update CHANGELOG with new version

This commit is contained in:
Anton Lavrenov
2023-01-20 10:53:49 -05:00
parent 721792358a
commit 0a90828633
5 changed files with 39 additions and 9 deletions

View File

@@ -647,6 +647,32 @@ describe('Text', function () {
assert.equal(layer.getContext().getTrace(true), trace);
});
it('text justify should not justify just one line', function () {
var stage = addStage();
var layer = new Konva.Layer();
var text = new Konva.Text({
x: 10,
y: 10,
rotation: 0,
width: 500,
height: 58,
text: 'YOU ARE INVITED!',
fontSize: 30,
align: 'justify',
draggable: true,
});
layer.add(text);
stage.add(layer);
var trace =
'clearRect(0,0,578,200);save();transform(1,0,0,1,10,10);font=normal normal 30px Arial;textBaseline=middle;textAlign=left;translate(0,0);save();fillStyle=black;fillText(Y,0,15);fillStyle=black;fillText(O,20.01,15);fillStyle=black;fillText(U,43.345,15);fillStyle=black;fillText( ,65.01,15);fillStyle=black;fillText(A,73.345,15);fillStyle=black;fillText(R,93.354,15);fillStyle=black;fillText(E,115.02,15);fillStyle=black;fillText( ,135.029,15);fillStyle=black;fillText(I,143.364,15);fillStyle=black;fillText(N,151.699,15);fillStyle=black;fillText(V,173.364,15);fillStyle=black;fillText(I,193.374,15);fillStyle=black;fillText(T,201.709,15);fillStyle=black;fillText(E,220.034,15);fillStyle=black;fillText(D,240.044,15);fillStyle=black;fillText(!,261.709,15);restore();restore();';
assert.equal(layer.getContext().getTrace(), trace);
});
it('text multi line with justify align and several paragraphs', function () {
var stage = addStage();
var layer = new Konva.Layer();