nadesiko3 3.6.39 → 3.6.41
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/README.md +8 -6
- package/batch/command.txt +330 -320
- 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_system.mjs +51 -1
- package/core/src/plugin_system.mts +54 -4
- package/core/test/calc_test.mjs +28 -0
- package/core/test/plugin_system_test.mjs +6 -0
- package/package.json +2 -2
- package/release/_hash.txt +28 -28
- package/release/_script-tags.txt +33 -33
- package/release/command.json +1 -1
- package/release/command.json.js +1 -1
- package/release/command_cnako3.json +1 -1
- package/release/command_list.json +1 -1
- package/release/edit_main.js +1 -1
- package/release/edit_main.js.map +2 -2
- package/release/editor.js +1 -1
- package/release/version.js +1 -1
- package/release/version_main.js +1 -1
- package/release/version_main.js.map +1 -1
- package/release/wnako3.js +15 -15
- package/release/wnako3.js.map +3 -3
- package/release/wnako3webworker.js +3 -3
- package/release/wnako3webworker.js.map +3 -3
- package/src/nako_version.mjs +2 -2
- package/src/nako_version.mts +2 -2
- package/src/plugin_browser_crypto.mjs +44 -14
- package/src/plugin_browser_crypto.mts +45 -15
- package/src/plugin_node.mjs +64 -0
- package/src/plugin_node.mts +64 -0
package/README.md
CHANGED
|
@@ -137,8 +137,9 @@ Google Colabでなでしこのビルドテストできます。
|
|
|
137
137
|
|
|
138
138
|
## なでしこの開発履歴
|
|
139
139
|
|
|
140
|
-
|
|
141
|
-
|
|
140
|
+
日本語プログラミング言語「なでしこ」の開発は2004年にはじまりました。その後、何度も作り直しを行って、現在の「なでしこ3」ができています。
|
|
141
|
+
「なでしこ3」の開発は、2017年からコツコツと継続され、現在まで定期的にバージョンアップが続いています。
|
|
142
|
+
2004年に掲げた「誰でも簡単プログラマー」の目標を実現するために開発を続けます。
|
|
142
143
|
|
|
143
144
|
- (2024-07-22) v.3.6.11でcoreに分割した開発用リポジトリを再び本家に統合
|
|
144
145
|
- (2024-07-04) v3.6.8で、バンドルツールを`webpack`から`esbuild`に変更(#1690)
|
|
@@ -147,11 +148,12 @@ Google Colabでなでしこのビルドテストできます。
|
|
|
147
148
|
- (2022-04-20) v3.3.2を公開(モジュール構造をCommonJSからESModuleへ変更/非同期関数asyncFnの実装)
|
|
148
149
|
- (2021-04-09) v3.2.1を公開
|
|
149
150
|
- (2020-04-24) v3.1.2を公開
|
|
150
|
-
- (2017-12-29) v3.0.19を公開(
|
|
151
|
+
- (2017-12-29) v3.0.19を公開(無名関数「には」の実装)。これ以降、[release](https://github.com/kujirahand/nadesiko3/releases)に履歴を記録
|
|
151
152
|
- (2017-06-25) 内部構造を大幅に修正(PEGパーサーから独自のパーサーに変更)
|
|
152
|
-
- (2017-02-13)「なでしこ3」のプロジェクトが開始
|
|
153
|
-
- (
|
|
154
|
-
- (
|
|
153
|
+
- (2017-02-13) 「なでしこ3」のプロジェクトが開始
|
|
154
|
+
- (2005-02-17) 「なでしこ」の正式版が公開
|
|
155
|
+
- (2004-08-01) 「ひまわり2」としてゼロから「なでしこ」の開発が開始
|
|
156
|
+
- (2001-08-03) 「なでしこ」の前身「ひまわり」の開発を開始
|
|
155
157
|
|
|
156
158
|
## なでしこ3の開発に参加
|
|
157
159
|
|