nadesiko3 3.6.1 → 3.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/core/package.json +1 -1
- package/core/src/nako_core_version.mjs +2 -2
- package/core/src/nako_core_version.mts +2 -2
- package/core/src/plugin_api.mts +1 -0
- package/core/src/plugin_system.mjs +1 -1
- package/core/src/plugin_system.mts +1 -1
- package/package.json +1 -1
- package/release/editor.js +1 -1
- package/release/editor.js.LICENSE.txt +69 -7
- package/release/editor.js.map +1 -1
- package/release/plugin_caniuse.js +2 -1
- package/release/plugin_caniuse.js.map +1 -1
- package/release/plugin_datetime.js +2 -1
- package/release/plugin_datetime.js.map +1 -1
- package/release/plugin_kansuji.js +2 -1
- package/release/plugin_kansuji.js.map +1 -1
- package/release/plugin_markup.js +2 -1
- package/release/plugin_markup.js.map +1 -1
- package/release/plugin_turtle.js +2 -1
- package/release/plugin_turtle.js.map +1 -1
- package/release/plugin_webworker.js +2 -1
- package/release/plugin_webworker.js.map +1 -1
- package/release/plugin_weykturtle3d.js +2 -1
- package/release/plugin_weykturtle3d.js.map +1 -1
- package/release/stats.json +1 -1
- package/release/version.js +1 -1
- package/release/version.js.LICENSE.txt +59 -23
- package/release/version.js.map +1 -1
- package/release/wnako3.js +1 -1
- package/release/wnako3.js.map +1 -1
- package/release/wnako3webworker.js +1 -1
- package/release/wnako3webworker.js.map +1 -1
- package/src/plugin_browser_chart.mjs +1 -1
- package/src/plugin_browser_chart.mts +1 -1
package/core/package.json
CHANGED
package/core/src/plugin_api.mts
CHANGED
|
@@ -23,6 +23,7 @@ export interface NakoSystem {
|
|
|
23
23
|
__exec (func: string, params: any[]): any;
|
|
24
24
|
__setSore(v: any): void;
|
|
25
25
|
__getSore(): any;
|
|
26
|
+
__loadScript(url: string): Promise<void>; // JSのスクリプトを読み込む (ex) グラフ描画(plguin_browser_chart.mts)
|
|
26
27
|
logger: any; // Logger
|
|
27
28
|
// 便利なメソッド
|
|
28
29
|
__zero (s: string, keta: number): string; // 桁を指定してゼロ埋めする
|
|
@@ -2889,7 +2889,7 @@ export default {
|
|
|
2889
2889
|
sys.__setSysVar('__DEBUG強制待機', 0);
|
|
2890
2890
|
// ブレイクポイント or __DEBUG強制待機 が指定されたか?
|
|
2891
2891
|
if (breakpoints.indexOf(curLine) >= 0 || forceLine) {
|
|
2892
|
-
if (sys.
|
|
2892
|
+
if (sys.__getSysVar('プラグイン名') !== 'メイン') {
|
|
2893
2893
|
return;
|
|
2894
2894
|
} // 現状メインのみデバッグする
|
|
2895
2895
|
console.log(`@__DEBUG_BP_WAIT(${curLine})`);
|
|
@@ -2728,7 +2728,7 @@ export default {
|
|
|
2728
2728
|
sys.__setSysVar('__DEBUG強制待機', 0)
|
|
2729
2729
|
// ブレイクポイント or __DEBUG強制待機 が指定されたか?
|
|
2730
2730
|
if (breakpoints.indexOf(curLine) >= 0 || forceLine) {
|
|
2731
|
-
if (sys.
|
|
2731
|
+
if (sys.__getSysVar('プラグイン名') !== 'メイン') { return } // 現状メインのみデバッグする
|
|
2732
2732
|
console.log(`@__DEBUG_BP_WAIT(${curLine})`)
|
|
2733
2733
|
const timerId = setInterval(() => {
|
|
2734
2734
|
if (sys.__getSysVar('__DEBUG待機フラグ') === 1) {
|