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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nadesiko3core",
3
- "version": "3.6.0",
3
+ "version": "3.6.2",
4
4
  "description": "Japanese Programming Language Nadesiko v3 core",
5
5
  "main": "index.mjs",
6
6
  "type": "module",
@@ -1,8 +1,8 @@
1
1
  // 実際のバージョン定義 (自動生成されるので以下を編集しない)
2
2
  const coreVersion = {
3
- version: '3.6.0',
3
+ version: '3.6.2',
4
4
  major: 3,
5
5
  minor: 6,
6
- patch: 0
6
+ patch: 2
7
7
  };
8
8
  export default coreVersion;
@@ -11,9 +11,9 @@ export interface NakoCoreVersion {
11
11
  }
12
12
  // 実際のバージョン定義 (自動生成されるので以下を編集しない)
13
13
  const coreVersion: NakoCoreVersion = {
14
- version: '3.6.0',
14
+ version: '3.6.2',
15
15
  major: 3,
16
16
  minor: 6,
17
- patch: 0
17
+ patch: 2
18
18
  }
19
19
  export default coreVersion
@@ -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.__setSysVar('プラグイン名') !== 'メイン') {
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.__setSysVar('プラグイン名') !== 'メイン') { return } // 現状メインのみデバッグする
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) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nadesiko3",
3
- "version": "3.6.1",
3
+ "version": "3.6.2",
4
4
  "description": "Japanese Programming Language",
5
5
  "type": "module",
6
6
  "main": "src/index.mjs",