Skip to content

Commit 60e41af

Browse files
committed
NEO更新。補正レベルを弱めに設定しなおした。tegaki.js更新、ハンドツールを実装(中身はtouchスクロール)
1 parent 5bbb7c0 commit 60e41af

8 files changed

Lines changed: 192 additions & 55 deletions

File tree

petitnote/app/neo/neo.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ document.addEventListener("DOMContentLoaded", function () {
1010

1111
var Neo = function () {};
1212

13-
Neo.version = "1.6.41";
13+
Neo.version = "1.6.42";
1414
Neo.painter = null;
1515
Neo.fullScreen = false;
1616
Neo.uploaded = false;
@@ -2662,7 +2662,8 @@ Neo.Painter.prototype._stabilizer = function (e) {
26622662
const level = Neo.stabiliz_level;
26632663
//手ぶれ補正のレベルを6段階に分けたテーブル
26642664
//0で補正なし、5で最強
2665-
const stabilityTable = [0.0, 0.8, 0.85, 0.9, 0.94, 0.97];
2665+
// [0:無効, 1:0.6, 2:0.8, 3:0.85, 4:0.9, 5:0.96]
2666+
const stabilityTable = [0.0, 0.6, 0.8, 0.85, 0.9, 0.96];
26662667
const stability = stabilityTable[Math.max(0, Math.min(level, 5))];
26672668
const factor = 1.0 - stability;
26682669

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
Font license info
2+
3+
4+
## Font Awesome
5+
6+
Copyright (C) 2016 by Dave Gandy
7+
8+
Author: Dave Gandy
9+
License: SIL ()
10+
Homepage: http://fortawesome.github.com/Font-Awesome/
11+
12+
13+
## Entypo
14+
15+
Copyright (C) 2012 by Daniel Bruce
16+
17+
Author: Daniel Bruce
18+
License: SIL (http://scripts.sil.org/OFL)
19+
Homepage: http://www.entypo.com
20+
21+
Lines changed: 49 additions & 0 deletions
Loading
4.32 KB
Binary file not shown.
4.4 KB
Binary file not shown.

0 commit comments

Comments
 (0)