@node-red/editor-client 3.1.8 → 4.0.0-beta.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.
Files changed (149) hide show
  1. package/locales/de/editor.json +2 -0
  2. package/locales/en-US/editor.json +10 -1
  3. package/locales/fr/editor.json +8 -1
  4. package/locales/ja/editor.json +10 -3
  5. package/package.json +1 -1
  6. package/public/red/about +52 -0
  7. package/public/red/red.js +1433 -263
  8. package/public/red/red.min.js +3 -3
  9. package/public/red/style.min.css +2 -2
  10. package/public/red/tours/3.1/welcome.js +231 -0
  11. package/public/red/tours/images/nr4-auto-complete.png +0 -0
  12. package/public/red/tours/images/nr4-config-select.png +0 -0
  13. package/public/red/tours/images/nr4-multiplayer.png +0 -0
  14. package/public/red/tours/images/nr4-plugins.png +0 -0
  15. package/public/red/tours/images/nr4-sf-config.png +0 -0
  16. package/public/red/tours/images/nr4-timestamp-formatting.png +0 -0
  17. package/public/red/tours/welcome.js +105 -161
  18. package/public/types/node/assert/strict.d.ts +1 -1
  19. package/public/types/node/assert.d.ts +8 -9
  20. package/public/types/node/async_hooks.d.ts +9 -5
  21. package/public/types/node/buffer.d.ts +43 -18
  22. package/public/types/node/child_process.d.ts +8 -5
  23. package/public/types/node/cluster.d.ts +15 -19
  24. package/public/types/node/console.d.ts +2 -2
  25. package/public/types/node/crypto.d.ts +165 -70
  26. package/public/types/node/dgram.d.ts +4 -4
  27. package/public/types/node/diagnostics_channel.d.ts +8 -7
  28. package/public/types/node/dns/promises.d.ts +11 -9
  29. package/public/types/node/dns.d.ts +18 -13
  30. package/public/types/node/dom-events.d.ts +129 -0
  31. package/public/types/node/domain.d.ts +2 -2
  32. package/public/types/node/events.d.ts +49 -12
  33. package/public/types/node/fs/promises.d.ts +68 -24
  34. package/public/types/node/fs.d.ts +132 -59
  35. package/public/types/node/globals.d.ts +31 -17
  36. package/public/types/node/http.d.ts +138 -27
  37. package/public/types/node/http2.d.ts +38 -5
  38. package/public/types/node/https.d.ts +12 -3
  39. package/public/types/node/module.d.ts +1 -2
  40. package/public/types/node/net.d.ts +69 -28
  41. package/public/types/node/os.d.ts +16 -5
  42. package/public/types/node/path.d.ts +5 -5
  43. package/public/types/node/perf_hooks.d.ts +48 -9
  44. package/public/types/node/process.d.ts +18 -17
  45. package/public/types/node/querystring.d.ts +2 -2
  46. package/public/types/node/readline/promises.d.ts +146 -0
  47. package/public/types/node/readline.d.ts +141 -31
  48. package/public/types/node/stream/consumers.d.ts +2 -2
  49. package/public/types/node/stream/promises.d.ts +1 -1
  50. package/public/types/node/stream/web.d.ts +4 -66
  51. package/public/types/node/stream.d.ts +96 -118
  52. package/public/types/node/string_decoder.d.ts +2 -2
  53. package/public/types/node/test.d.ts +200 -16
  54. package/public/types/node/timers/promises.d.ts +1 -26
  55. package/public/types/node/timers.d.ts +2 -2
  56. package/public/types/node/tls.d.ts +21 -12
  57. package/public/types/node/trace_events.d.ts +12 -2
  58. package/public/types/node/ts4.8/assert/strict.d.ts +11 -0
  59. package/public/types/node/ts4.8/assert.d.ts +964 -0
  60. package/public/types/node/ts4.8/async_hooks.d.ts +504 -0
  61. package/public/types/node/ts4.8/buffer.d.ts +2262 -0
  62. package/public/types/node/ts4.8/child_process.d.ts +1372 -0
  63. package/public/types/node/ts4.8/cluster.d.ts +413 -0
  64. package/public/types/node/ts4.8/console.d.ts +415 -0
  65. package/public/types/node/ts4.8/crypto.d.ts +3967 -0
  66. package/public/types/node/ts4.8/dgram.d.ts +548 -0
  67. package/public/types/node/ts4.8/diagnostics_channel.d.ts +156 -0
  68. package/public/types/node/ts4.8/dns/promises.d.ts +373 -0
  69. package/public/types/node/ts4.8/dns.d.ts +662 -0
  70. package/public/types/node/ts4.8/dom-events.d.ts +129 -0
  71. package/public/types/node/ts4.8/domain.d.ts +173 -0
  72. package/public/types/node/ts4.8/events.d.ts +681 -0
  73. package/public/types/node/ts4.8/fs/promises.d.ts +1141 -0
  74. package/public/types/node/ts4.8/fs.d.ts +3875 -0
  75. package/public/types/node/ts4.8/globals.d.ts +297 -0
  76. package/public/types/node/ts4.8/http.d.ts +1617 -0
  77. package/public/types/node/ts4.8/http2.d.ts +2137 -0
  78. package/public/types/node/ts4.8/https.d.ts +544 -0
  79. package/public/types/node/ts4.8/module.d.ts +117 -0
  80. package/public/types/node/ts4.8/net.d.ts +872 -0
  81. package/public/types/node/ts4.8/os.d.ts +469 -0
  82. package/public/types/node/ts4.8/path.d.ts +194 -0
  83. package/public/types/node/ts4.8/perf_hooks.d.ts +628 -0
  84. package/public/types/node/ts4.8/process.d.ts +1485 -0
  85. package/public/types/node/ts4.8/querystring.d.ts +134 -0
  86. package/public/types/node/ts4.8/readline/promises.d.ts +146 -0
  87. package/public/types/node/ts4.8/readline.d.ts +656 -0
  88. package/public/types/node/ts4.8/stream/consumers.d.ts +15 -0
  89. package/public/types/node/ts4.8/stream/promises.d.ts +45 -0
  90. package/public/types/node/ts4.8/stream/web.d.ts +333 -0
  91. package/public/types/node/ts4.8/stream.d.ts +1343 -0
  92. package/public/types/node/ts4.8/string_decoder.d.ts +70 -0
  93. package/public/types/node/ts4.8/test.d.ts +377 -0
  94. package/public/types/node/ts4.8/timers/promises.d.ts +71 -0
  95. package/public/types/node/ts4.8/timers.d.ts +97 -0
  96. package/public/types/node/ts4.8/tls.d.ts +1031 -0
  97. package/public/types/node/ts4.8/trace_events.d.ts +174 -0
  98. package/public/types/node/ts4.8/tty.d.ts +209 -0
  99. package/public/types/node/ts4.8/url.d.ts +900 -0
  100. package/public/types/node/ts4.8/util.d.ts +1853 -0
  101. package/public/types/node/ts4.8/v8.d.ts +399 -0
  102. package/public/types/node/ts4.8/vm.d.ts +512 -0
  103. package/public/types/node/ts4.8/wasi.d.ts +161 -0
  104. package/public/types/node/ts4.8/worker_threads.d.ts +692 -0
  105. package/public/types/node/ts4.8/zlib.d.ts +520 -0
  106. package/public/types/node/tty.d.ts +5 -3
  107. package/public/types/node/url.d.ts +81 -39
  108. package/public/types/node/util.d.ts +269 -13
  109. package/public/types/node/v8.d.ts +22 -4
  110. package/public/types/node/vm.d.ts +7 -5
  111. package/public/types/node/wasi.d.ts +2 -2
  112. package/public/types/node/worker_threads.d.ts +51 -11
  113. package/public/types/node/zlib.d.ts +2 -2
  114. package/public/types/node-red/func.d.ts +26 -17
  115. package/public/vendor/ace/worker-jsonata.js +1 -1
  116. package/public/vendor/monaco/dist/{fa2cc0ab9f0bec2b3365.ttf → 0c718f5b7d2bce997c5f.ttf} +0 -0
  117. package/public/vendor/monaco/dist/css.worker.js +1 -1
  118. package/public/vendor/monaco/dist/css.worker.js.LICENSE.txt +1 -1
  119. package/public/vendor/monaco/dist/editor.js +1 -29
  120. package/public/vendor/monaco/dist/editor.js.LICENSE.txt +2 -2
  121. package/public/vendor/monaco/dist/editor.worker.js +1 -1
  122. package/public/vendor/monaco/dist/html.worker.js +1 -1
  123. package/public/vendor/monaco/dist/html.worker.js.LICENSE.txt +1 -1
  124. package/public/vendor/monaco/dist/json.worker.js +1 -1
  125. package/public/vendor/monaco/dist/json.worker.js.LICENSE.txt +1 -1
  126. package/public/vendor/monaco/dist/locale/cs.js +324 -106
  127. package/public/vendor/monaco/dist/locale/de.js +336 -118
  128. package/public/vendor/monaco/dist/locale/es.js +329 -111
  129. package/public/vendor/monaco/dist/locale/fr.js +334 -116
  130. package/public/vendor/monaco/dist/locale/it.js +327 -109
  131. package/public/vendor/monaco/dist/locale/ja.js +329 -111
  132. package/public/vendor/monaco/dist/locale/ko.js +330 -112
  133. package/public/vendor/monaco/dist/locale/pl.js +329 -111
  134. package/public/vendor/monaco/dist/locale/pt-br.js +329 -111
  135. package/public/vendor/monaco/dist/locale/qps-ploc.js +330 -112
  136. package/public/vendor/monaco/dist/locale/ru.js +331 -113
  137. package/public/vendor/monaco/dist/locale/tr.js +329 -111
  138. package/public/vendor/monaco/dist/locale/zh-hans.js +331 -113
  139. package/public/vendor/monaco/dist/locale/zh-hant.js +331 -113
  140. package/public/vendor/monaco/dist/ts.worker.js +2 -2
  141. package/public/vendor/vendor.js +1 -1
  142. package/public/vendor/monaco/dist/7064e66c3890a12c47b4.ttf +0 -0
  143. /package/public/red/tours/{images → 3.1/images}/context-menu.png +0 -0
  144. /package/public/red/tours/{images → 3.1/images}/global-env-vars.png +0 -0
  145. /package/public/red/tours/{images → 3.1/images}/hiding-flows.png +0 -0
  146. /package/public/red/tours/{images → 3.1/images}/locking-flows.png +0 -0
  147. /package/public/red/tours/{images → 3.1/images}/mermaid.png +0 -0
  148. /package/public/red/tours/{images → 3.1/images}/node-help.png +0 -0
  149. /package/public/red/tours/{images → 3.1/images}/tab-changes.png +0 -0
@@ -0,0 +1,231 @@
1
+ export default {
2
+ version: "3.1.0",
3
+ steps: [
4
+ {
5
+ titleIcon: "fa fa-map-o",
6
+ title: {
7
+ "en-US": "Welcome to Node-RED 3.1!",
8
+ "ja": "Node-RED 3.1へようこそ!",
9
+ "fr": "Bienvenue dans Node-RED 3.1!"
10
+ },
11
+ description: {
12
+ "en-US": "<p>Let's take a moment to discover the new features in this release.</p>",
13
+ "ja": "<p>本リリースの新機能を見つけてみましょう。</p>",
14
+ "fr": "<p>Prenons un moment pour découvrir les nouvelles fonctionnalités de cette version.</p>"
15
+ }
16
+ },
17
+ {
18
+ title: {
19
+ "en-US": "New ways to work with groups",
20
+ "ja": "グループの新たな操作方法",
21
+ "fr": "De nouvelles façons de travailler avec les groupes"
22
+ },
23
+ description: {
24
+ "en-US": `<p>We have changed how you interact with groups in the editor.</p>
25
+ <ul>
26
+ <li>They don't get in the way when clicking on a node</li>
27
+ <li>They can be reordered using the Moving Forwards and Move Backwards actions</li>
28
+ <li>Multiple nodes can be dragged into a group in one go</li>
29
+ <li>Holding <code>Alt</code> when dragging a node will *remove* it from its group</li>
30
+ </ul>`,
31
+ "ja": `<p>エディタ上のグループの操作が変更されました。</p>
32
+ <ul>
33
+ <li>グループ内のノードをクリックする時に、グループが邪魔をすることが無くなりました。</li>
34
+ <li>「前面へ移動」と「背面へ移動」の動作を用いて、複数のグループの表示順序を変えることができます。</li>
35
+ <li>グループ内へ一度に複数のノードをドラッグできるようになりました。</li>
36
+ <li><code>Alt</code> を押したまま、グループ内のノードをドラッグすると、そのグループから *除く* ことができます。</li>
37
+ </ul>`,
38
+ "fr": `<p>Nous avons modifié la façon dont vous interagissez avec les groupes dans l'éditeur.</p>
39
+ <ul>
40
+ <li>Ils ne gênent plus lorsque vous cliquez sur un noeud</li>
41
+ <li>Ils peuvent être réorganisés à l'aide des actions Avancer et Reculer</li>
42
+ <li>Plusieurs noeuds peuvent être glissés dans un groupe en une seule fois</li>
43
+ <li>Maintenir <code>Alt</code> lors du déplacement d'un noeud le *supprimera* de son groupe</li>
44
+ </ul>`
45
+ }
46
+ },
47
+ {
48
+ title: {
49
+ "en-US": "Change notification on tabs",
50
+ "ja": "タブ上の変更通知",
51
+ "fr": "Notification de changement sur les onglets"
52
+ },
53
+ image: '3.1/images/tab-changes.png',
54
+ description: {
55
+ "en-US": `<p>When a tab contains undeployed changes it now shows the
56
+ same style of change icon used by nodes.</p>
57
+ <p>This will make it much easier to track down changes when you're
58
+ working across multiple flows.</p>`,
59
+ "ja": `<p>タブ内にデプロイされていない変更が存在する時は、ノードと同じスタイルで変更の印が表示されるようになりました。</p>
60
+ <p>これによって複数のフローを編集している時に、変更を見つけるのが簡単になりました。</p>`,
61
+ "fr": `<p>Lorsqu'un onglet contient des modifications non déployées, il affiche désormais le
62
+ même style d'icône de changement utilisé par les noeuds.</p>
63
+ <p>Cela facilitera grandement le suivi des modifications lorsque vous
64
+ travaillez sur plusieurs flux.</p>`
65
+ }
66
+ },
67
+ {
68
+ title: {
69
+ "en-US": "A bigger canvas to work with",
70
+ "ja": "より広くなった作業キャンバス",
71
+ "fr": "Un canevas plus grand pour travailler"
72
+ },
73
+ description: {
74
+ "en-US": `<p>The default canvas size has been increased so you can fit more
75
+ into one flow.</p>
76
+ <p>We still recommend using tools such as subflows and Link Nodes to help
77
+ keep things organised, but now you have more room to work in.</p>`,
78
+ "ja": `<p>標準のキャンバスが広くなったため、1つのフローに沢山のものを含めることができるようになりました。</p>
79
+ <p>引き続き、サブフローやリンクノードなどの方法を用いて整理することをお勧めしますが、作業できる場所が増えました。</p>`,
80
+ "fr": `<p>La taille par défaut du canevas a été augmentée pour que vous puissiez en mettre plus
81
+ sur un seul flux.</p>
82
+ <p>Nous recommandons toujours d'utiliser des outils tels que les sous-flux et les noeuds de lien pour vous aider
83
+ à garder les choses organisées, mais vous avez maintenant plus d'espace pour travailler.</p>`
84
+ }
85
+ },
86
+ {
87
+ title: {
88
+ "en-US": "Finding help",
89
+ "ja": "ヘルプを見つける",
90
+ "fr": "Trouver de l'aide"
91
+ },
92
+ image: '3.1/images/node-help.png',
93
+ description: {
94
+ "en-US": `<p>All node edit dialogs now include a link to that node's help
95
+ in the footer.</p>
96
+ <p>Clicking it will open up the Help sidebar showing the help for that node.</p>`,
97
+ "ja": `<p>全てのノードの編集ダイアログの下に、ノードのヘルプへのリンクが追加されました。</p>
98
+ <p>これをクリックすると、ノードのヘルプサイドバーが表示されます。</p>`,
99
+ "fr": `<p>Toutes les boîtes de dialogue d'édition de noeud incluent désormais un lien vers l'aide de ce noeud
100
+ dans le pied de page.</p>
101
+ <p>Cliquer dessus ouvrira la barre latérale d'aide affichant l'aide pour ce noeud.</p>`
102
+ }
103
+ },
104
+ {
105
+ title: {
106
+ "en-US": "Improved Context Menu",
107
+ "ja": "コンテキストメニューの改善",
108
+ "fr": "Menu contextuel amélioré"
109
+ },
110
+ image: '3.1/images/context-menu.png',
111
+ description: {
112
+ "en-US": `<p>The editor's context menu has been expanded to make lots more of
113
+ the built-in actions available.</p>
114
+ <p>Adding nodes, working with groups and plenty
115
+ of other useful tools are now just a click away.</p>
116
+ <p>The flow tab bar also has its own context menu to make working
117
+ with your flows much easier.</p>`,
118
+ "ja": `<p>より多くの組み込み動作を利用できるように、エディタのコンテキストメニューが拡張されました。</p>
119
+ <p>ノードの追加、グループの操作、その他の便利なツールをクリックするだけで実行できるようになりました。</p>
120
+ <p>フローのタブバーには、フローの操作をより簡単にする独自のコンテキストメニューもあります。</p>`,
121
+ "fr": `<p>Le menu contextuel de l'éditeur a été étendu pour faire beaucoup plus d'actions intégrées disponibles.</p>
122
+ <p>Ajouter des noeuds, travailler avec des groupes et beaucoup d'autres outils utiles sont désormais à portée de clic.</p>
123
+ <p>La barre d'onglets de flux possède également son propre menu contextuel pour faciliter l'utilisation de vos flux.</p>`
124
+ }
125
+ },
126
+ {
127
+ title: {
128
+ "en-US": "Hiding Flows",
129
+ "ja": "フローを非表示",
130
+ "fr": "Masquage de flux"
131
+ },
132
+ image: '3.1/images/hiding-flows.png',
133
+ description: {
134
+ "en-US": `<p>Hiding flows is now done through the flow context menu.</p>
135
+ <p>The 'hide' button in previous releases has been removed from the tabs
136
+ as they were being clicked accidentally too often.</p>`,
137
+ "ja": `<p>フローを非表示にする機能は、フローのコンテキストメニューから実行するようになりました。</p>
138
+ <p>これまでのリリースでタブに存在していた「非表示」ボタンは、よく誤ってクリックされていたため、削除されました。</p>`,
139
+ "fr": `<p>Le masquage des flux s'effectue désormais via le menu contextuel du flux.</p>
140
+ <p>Le bouton "Masquer" des versions précédentes a été supprimé des onglets
141
+ car il était cliqué accidentellement trop souvent.</p>`
142
+ },
143
+ },
144
+ {
145
+ title: {
146
+ "en-US": "Locking Flows",
147
+ "ja": "フローを固定",
148
+ "fr": "Verrouillage de flux"
149
+ },
150
+ image: '3.1/images/locking-flows.png',
151
+ description: {
152
+ "en-US": `<p>Flows can now be locked to prevent accidental changes being made.</p>
153
+ <p>When locked you cannot modify the nodes in any way.</p>
154
+ <p>The flow context menu provides the options to lock and unlock flows,
155
+ as well as in the Info sidebar explorer.</p>`,
156
+ "ja": `<p>誤ってフローに変更が加えられてしまうのを防ぐために、フローを固定できるようになりました。</p>
157
+ <p>固定されている時は、ノードを修正することはできません。</p>
158
+ <p>フローのコンテキストメニューと、情報サイドバーのエクスプローラには、フローの固定や解除をするためのオプションが用意されています。</p>`,
159
+ "fr": `<p>Les flux peuvent désormais être verrouillés pour éviter toute modification accidentelle.</p>
160
+ <p>Lorsqu'il est verrouillé, vous ne pouvez en aucun cas modifier les noeuds.</p>
161
+ <p>Le menu contextuel du flux fournit les options pour verrouiller et déverrouiller les flux,
162
+ ainsi que dans l'explorateur de la barre latérale d'informations.</p>`
163
+ },
164
+ },
165
+ {
166
+ title: {
167
+ "en-US": "Adding Images to node/flow descriptions",
168
+ "ja": "ノードやフローの説明へ画像を追加",
169
+ "fr": "Ajout d'images aux descriptions de noeud/flux"
170
+ },
171
+ // image: 'images/debug-path-tooltip.png',
172
+ description: {
173
+ "en-US": `<p>You can now add images to a node's or flows's description.</p>
174
+ <p>Simply drag the image into the text editor and it will get added inline.</p>
175
+ <p>When the description is shown in the Info sidebar, the image will be displayed.</p>`,
176
+ "ja": `<p>ノードまたはフローの説明に、画像を追加できるようになりました。</p>
177
+ <p>画像をテキストエディタにドラッグするだけで、行内に埋め込まれます。</p>
178
+ <p>情報サイドバーの説明を開くと、その画像が表示されます。</p>`,
179
+ "fr": `<p>Vous pouvez désormais ajouter des images à la description d'un noeud ou d'un flux.</p>
180
+ <p>Faites simplement glisser l'image dans l'éditeur de texte et elle sera ajoutée en ligne.</p>
181
+ <p>Lorsque la description s'affiche dans la barre latérale d'informations, l'image s'affiche.</p>`
182
+ },
183
+ },
184
+ {
185
+ title: {
186
+ "en-US": "Adding Mermaid Diagrams",
187
+ "ja": "Mermaid図を追加",
188
+ "fr": "Ajout de diagrammes Mermaid"
189
+ },
190
+ image: '3.1/images/mermaid.png',
191
+ description: {
192
+ "en-US": `<p>You can also add <a href="https://github.com/mermaid-js/mermaid">Mermaid</a> diagrams directly into your node or flow descriptions.</p>
193
+ <p>This gives you much richer options for documenting your flows.</p>`,
194
+ "ja": `<p>ノードやフローの説明に、<a href="https://github.com/mermaid-js/mermaid">Mermaid</a>図を直接追加することもできます。</p>
195
+ <p>これによって、フローを説明する文書作成の選択肢がより多くなります。</p>`,
196
+ "fr": `<p>Vous pouvez également ajouter des diagrammes <a href="https://github.com/mermaid-js/mermaid">Mermaid</a> directement dans vos descriptions de noeud ou de flux.</p>
197
+ <p>Cela vous offre des options beaucoup plus riches pour documenter vos flux.</p>`
198
+ },
199
+ },
200
+ {
201
+ title: {
202
+ "en-US": "Managing Global Environment Variables",
203
+ "ja": "グローバル環境変数の管理",
204
+ "fr": "Gestion des variables d'environnement globales"
205
+ },
206
+ image: '3.1/images/global-env-vars.png',
207
+ description: {
208
+ "en-US": `<p>You can set environment variables that apply to all nodes and flows in the new
209
+ 'Global Environment Variables' section of User Settings.</p>`,
210
+ "ja": `<p>ユーザ設定に新しく追加された「グローバル環境変数」のセクションで、全てのノードとフローに適用される環境変数を登録できます。</p>`,
211
+ "fr": `<p>Vous pouvez définir des variables d'environnement qui s'appliquent à tous les noeuds et flux dans la nouvelle
212
+ section "Global Environment Variables" des paramètres utilisateur.</p>`
213
+ },
214
+ },
215
+ {
216
+ title: {
217
+ "en-US": "Node Updates",
218
+ "ja": "ノードの更新",
219
+ "fr": "Mises à jour des noeuds"
220
+ },
221
+ // image: "images/",
222
+ description: {
223
+ "en-US": `<p>The core nodes have received lots of minor fixes, documentation updates and
224
+ small enhancements. Check the full changelog in the Help sidebar for a full list.</p>`,
225
+ "ja": `<p>コアノードにマイナーな修正、ドキュメント更新、小規模な拡張が数多く追加されています。全ての一覧は、ヘルプサイドバーの全ての更新履歴を確認してください。</p>`,
226
+ "fr": `<p>Les noeuds principaux ont reçu de nombreux correctifs mineurs, mises à jour de la documentation et
227
+ petites améliorations. Consulter le journal des modifications complet dans la barre latérale d'aide.</p>`
228
+ }
229
+ }
230
+ ]
231
+ }
@@ -1,12 +1,12 @@
1
1
  export default {
2
- version: "3.1.0",
2
+ version: "4.0.0-beta.2",
3
3
  steps: [
4
4
  {
5
5
  titleIcon: "fa fa-map-o",
6
6
  title: {
7
- "en-US": "Welcome to Node-RED 3.1!",
8
- "ja": "Node-RED 3.1へようこそ!",
9
- "fr": "Bienvenue dans Node-RED 3.1!"
7
+ "en-US": "Welcome to Node-RED 4.0 Beta 2!",
8
+ "ja": "Node-RED 4.0 Beta 2へようこそ!",
9
+ "fr": "Bienvenue dans Node-RED 4.0 Beta 2!"
10
10
  },
11
11
  description: {
12
12
  "en-US": "<p>Let's take a moment to discover the new features in this release.</p>",
@@ -16,201 +16,127 @@ export default {
16
16
  },
17
17
  {
18
18
  title: {
19
- "en-US": "New ways to work with groups",
20
- "ja": "グループの新たな操作方法",
21
- "fr": "De nouvelles façons de travailler avec les groupes"
19
+ "en-US": "Multiplayer Mode"
22
20
  },
21
+ image: 'images/nr4-multiplayer.png',
23
22
  description: {
24
- "en-US": `<p>We have changed how you interact with groups in the editor.</p>
25
- <ul>
26
- <li>They don't get in the way when clicking on a node</li>
27
- <li>They can be reordered using the Moving Forwards and Move Backwards actions</li>
28
- <li>Multiple nodes can be dragged into a group in one go</li>
29
- <li>Holding <code>Alt</code> when dragging a node will *remove* it from its group</li>
30
- </ul>`,
31
- "ja": `<p>エディタ上のグループの操作が変更されました。</p>
32
- <ul>
33
- <li>グループ内のノードをクリックする時に、グループが邪魔をすることが無くなりました。</li>
34
- <li>「前面へ移動」と「背面へ移動」の動作を用いて、複数のグループの表示順序を変えることができます。</li>
35
- <li>グループ内へ一度に複数のノードをドラッグできるようになりました。</li>
36
- <li><code>Alt</code> を押したまま、グループ内のノードをドラッグすると、そのグループから *除く* ことができます。</li>
37
- </ul>`,
38
- "fr": `<p>Nous avons modifié la façon dont vous interagissez avec les groupes dans l'éditeur.</p>
39
- <ul>
40
- <li>Ils ne gênent plus lorsque vous cliquez sur un noeud</li>
41
- <li>Ils peuvent être réorganisés à l'aide des actions Avancer et Reculer</li>
42
- <li>Plusieurs noeuds peuvent être glissés dans un groupe en une seule fois</li>
43
- <li>Maintenir <code>Alt</code> lors du déplacement d'un noeud le *supprimera* de son groupe</li>
44
- </ul>`
23
+ "en-US": `<p>This release includes the first small steps towards making Node-RED easier
24
+ to work with when you have multiple people editing flows at the same time.</p>
25
+ <p>When this feature is enabled, you will now see who else has the editor open and some
26
+ basic information on where they are in the editor.</p>
27
+ <p>Check the release post for details on how to enable this feature in your settings file.</p>`
45
28
  }
46
29
  },
47
30
  {
48
31
  title: {
49
- "en-US": "Change notification on tabs",
50
- "ja": "タブ上の変更通知",
51
- "fr": "Notification de changement sur les onglets"
32
+ "en-US": "Better Configuration Node UX"
52
33
  },
53
- image: 'images/tab-changes.png',
34
+ image: 'images/nr4-config-select.png',
54
35
  description: {
55
- "en-US": `<p>When a tab contains undeployed changes it now shows the
56
- same style of change icon used by nodes.</p>
57
- <p>This will make it much easier to track down changes when you're
58
- working across multiple flows.</p>`,
59
- "ja": `<p>タブ内にデプロイされていない変更が存在する時は、ノードと同じスタイルで変更の印が表示されるようになりました。</p>
60
- <p>これによって複数のフローを編集している時に、変更を見つけるのが簡単になりました。</p>`,
61
- "fr": `<p>Lorsqu'un onglet contient des modifications non déployées, il affiche désormais le
62
- même style d'icône de changement utilisé par les noeuds.</p>
63
- <p>Cela facilitera grandement le suivi des modifications lorsque vous
64
- travaillez sur plusieurs flux.</p>`
36
+ "en-US": `<p>The Configuration node selection UI has had a small update to have a dedicated 'add' button
37
+ next to the select box.</p>
38
+ <p>It's a small change, but should make it easier to work with your config nodes.</p>`
65
39
  }
66
40
  },
67
41
  {
68
42
  title: {
69
- "en-US": "A bigger canvas to work with",
70
- "ja": "より広くなった作業キャンバス",
71
- "fr": "Un canevas plus grand pour travailler"
43
+ "en-US": "Remembering palette state"
72
44
  },
73
45
  description: {
74
- "en-US": `<p>The default canvas size has been increased so you can fit more
75
- into one flow.</p>
76
- <p>We still recommend using tools such as subflows and Link Nodes to help
77
- keep things organised, but now you have more room to work in.</p>`,
78
- "ja": `<p>標準のキャンバスが広くなったため、1つのフローに沢山のものを含めることができるようになりました。</p>
79
- <p>引き続き、サブフローやリンクノードなどの方法を用いて整理することをお勧めしますが、作業できる場所が増えました。</p>`,
80
- "fr": `<p>La taille par défaut du canevas a été augmentée pour que vous puissiez en mettre plus
81
- sur un seul flux.</p>
82
- <p>Nous recommandons toujours d'utiliser des outils tels que les sous-flux et les noeuds de lien pour vous aider
83
- à garder les choses organisées, mais vous avez maintenant plus d'espace pour travailler.</p>`
46
+ "en-US": `<p>The palette now remembers what categories you have hidden between reloads - as well as any
47
+ filter you have applied.</p>`
84
48
  }
85
49
  },
86
50
  {
87
51
  title: {
88
- "en-US": "Finding help",
89
- "ja": "ヘルプを見つける",
90
- "fr": "Trouver de l'aide"
52
+ "en-US": "Plugins shown in the Palette Manager"
91
53
  },
92
- image: 'images/node-help.png',
54
+ image: 'images/nr4-plugins.png',
93
55
  description: {
94
- "en-US": `<p>All node edit dialogs now include a link to that node's help
95
- in the footer.</p>
96
- <p>Clicking it will open up the Help sidebar showing the help for that node.</p>`,
97
- "ja": `<p>全てのノードの編集ダイアログの下に、ノードのヘルプへのリンクが追加されました。</p>
98
- <p>これをクリックすると、ノードのヘルプサイドバーが表示されます。</p>`,
99
- "fr": `<p>Toutes les boîtes de dialogue d'édition de noeud incluent désormais un lien vers l'aide de ce noeud
100
- dans le pied de page.</p>
101
- <p>Cliquer dessus ouvrira la barre latérale d'aide affichant l'aide pour ce noeud.</p>`
56
+ "en-US": `<p>The palette manager now shows any plugin modules you have installed, such as
57
+ <code>node-red-debugger</code>. Previously they would only be shown if they plugin include
58
+ nodes for the palette.</p>`
102
59
  }
103
60
  },
104
61
  {
105
62
  title: {
106
- "en-US": "Improved Context Menu",
107
- "ja": "コンテキストメニューの改善",
108
- "fr": "Menu contextuel amélioré"
63
+ "en-US": "That's if for Beta 2!"
109
64
  },
110
- image: 'images/context-menu.png',
111
65
  description: {
112
- "en-US": `<p>The editor's context menu has been expanded to make lots more of
113
- the built-in actions available.</p>
114
- <p>Adding nodes, working with groups and plenty
115
- of other useful tools are now just a click away.</p>
116
- <p>The flow tab bar also has its own context menu to make working
117
- with your flows much easier.</p>`,
118
- "ja": `<p>より多くの組み込み動作を利用できるように、エディタのコンテキストメニューが拡張されました。</p>
119
- <p>ノードの追加、グループの操作、その他の便利なツールをクリックするだけで実行できるようになりました。</p>
120
- <p>フローのタブバーには、フローの操作をより簡単にする独自のコンテキストメニューもあります。</p>`,
121
- "fr": `<p>Le menu contextuel de l'éditeur a été étendu pour faire beaucoup plus d'actions intégrées disponibles.</p>
122
- <p>Ajouter des noeuds, travailler avec des groupes et beaucoup d'autres outils utiles sont désormais à portée de clic.</p>
123
- <p>La barre d'onglets de flux possède également son propre menu contextuel pour faciliter l'utilisation de vos flux.</p>`
66
+ "en-US": `<p>Keep clicking through to see what was added in Beta 1</p>`
124
67
  }
125
68
  },
126
69
  {
127
70
  title: {
128
- "en-US": "Hiding Flows",
129
- "ja": "フローを非表示",
130
- "fr": "Masquage de flux"
131
- },
132
- image: 'images/hiding-flows.png',
133
- description: {
134
- "en-US": `<p>Hiding flows is now done through the flow context menu.</p>
135
- <p>The 'hide' button in previous releases has been removed from the tabs
136
- as they were being clicked accidentally too often.</p>`,
137
- "ja": `<p>フローを非表示にする機能は、フローのコンテキストメニューから実行するようになりました。</p>
138
- <p>これまでのリリースでタブに存在していた「非表示」ボタンは、よく誤ってクリックされていたため、削除されました。</p>`,
139
- "fr": `<p>Le masquage des flux s'effectue désormais via le menu contextuel du flux.</p>
140
- <p>Le bouton "Masquer" des versions précédentes a été supprimé des onglets
141
- car il était cliqué accidentellement trop souvent.</p>`
142
- },
143
- },
144
- {
145
- title: {
146
- "en-US": "Locking Flows",
147
- "ja": "フローを固定",
148
- "fr": "Verrouillage de flux"
149
- },
150
- image: 'images/locking-flows.png',
151
- description: {
152
- "en-US": `<p>Flows can now be locked to prevent accidental changes being made.</p>
153
- <p>When locked you cannot modify the nodes in any way.</p>
154
- <p>The flow context menu provides the options to lock and unlock flows,
155
- as well as in the Info sidebar explorer.</p>`,
156
- "ja": `<p>誤ってフローに変更が加えられてしまうのを防ぐために、フローを固定できるようになりました。</p>
157
- <p>固定されている時は、ノードを修正することはできません。</p>
158
- <p>フローのコンテキストメニューと、情報サイドバーのエクスプローラには、フローの固定や解除をするためのオプションが用意されています。</p>`,
159
- "fr": `<p>Les flux peuvent désormais être verrouillés pour éviter toute modification accidentelle.</p>
160
- <p>Lorsqu'il est verrouillé, vous ne pouvez en aucun cas modifier les noeuds.</p>
161
- <p>Le menu contextuel du flux fournit les options pour verrouiller et déverrouiller les flux,
162
- ainsi que dans l'explorateur de la barre latérale d'informations.</p>`
163
- },
164
- },
165
- {
166
- title: {
167
- "en-US": "Adding Images to node/flow descriptions",
168
- "ja": "ノードやフローの説明へ画像を追加",
169
- "fr": "Ajout d'images aux descriptions de noeud/flux"
71
+ "en-US": "Timestamp formatting options",
72
+ "ja": "タイムスタンプの形式の項目",
73
+ "fr": "Options de formatage de l'horodatage"
170
74
  },
171
- // image: 'images/debug-path-tooltip.png',
75
+ image: 'images/nr4-timestamp-formatting.png',
172
76
  description: {
173
- "en-US": `<p>You can now add images to a node's or flows's description.</p>
174
- <p>Simply drag the image into the text editor and it will get added inline.</p>
175
- <p>When the description is shown in the Info sidebar, the image will be displayed.</p>`,
176
- "ja": `<p>ノードまたはフローの説明に、画像を追加できるようになりました。</p>
177
- <p>画像をテキストエディタにドラッグするだけで、行内に埋め込まれます。</p>
178
- <p>情報サイドバーの説明を開くと、その画像が表示されます。</p>`,
179
- "fr": `<p>Vous pouvez désormais ajouter des images à la description d'un noeud ou d'un flux.</p>
180
- <p>Faites simplement glisser l'image dans l'éditeur de texte et elle sera ajoutée en ligne.</p>
181
- <p>Lorsque la description s'affiche dans la barre latérale d'informations, l'image s'affiche.</p>`
182
- },
77
+ "en-US": `<p>Nodes that let you set a timestamp now have options on what format that timestamp should be in.</p>
78
+ <p>We're keeping it simple to begin with by providing three options:<p>
79
+ <ul>
80
+ <li>Milliseconds since epoch - this is existing behaviour of the timestamp option</li>
81
+ <li>ISO 8601 - a common format used by many systems</li>
82
+ <li>JavaScript Date Object</li>
83
+ </ul>`,
84
+ "ja": `<p>タイムスタンプを設定するノードに、タイムスタンプの形式を指定できる項目が追加されました。</p>
85
+ <p>次の3つの項目を追加したことで、簡単に選択できるようになりました:<p>
86
+ <ul>
87
+ <li>エポックからのミリ秒 - 従来動作と同じになるタイムスタンプの項目</li>
88
+ <li>ISO 8601 - 多くのシステムで使用されている共通の形式</li>
89
+ <li>JavaScript日付オブジェクト</li>
90
+ </ul>`,
91
+ "fr": `<p>Les noeuds qui vous permettent de définir un horodatage disposent désormais d'options sur le format dans lequel cet horodatage peut être défini.</p>
92
+ <p>Nous gardons les choses simples en proposant trois options :<p>
93
+ <ul>
94
+ <li>Millisecondes depuis l'époque : il s'agit du comportement existant de l'option d'horodatage</li>
95
+ <li>ISO 8601 : un format commun utilisé par de nombreux systèmes</li>
96
+ <li>Objet Date JavaScript</li>
97
+ </ul>`
98
+ }
183
99
  },
184
100
  {
185
101
  title: {
186
- "en-US": "Adding Mermaid Diagrams",
187
- "ja": "Mermaid図を追加",
188
- "fr": "Ajout de diagrammes Mermaid"
102
+ "en-US": "Auto-complete of flow/global and env types",
103
+ "ja": "フロー/グローバル、環境変数の型の自動補完",
104
+ "fr": "Saisie automatique des types de flux/global et env"
189
105
  },
190
- image: 'images/mermaid.png',
106
+ image: 'images/nr4-auto-complete.png',
191
107
  description: {
192
- "en-US": `<p>You can also add <a href="https://github.com/mermaid-js/mermaid">Mermaid</a> diagrams directly into your node or flow descriptions.</p>
193
- <p>This gives you much richer options for documenting your flows.</p>`,
194
- "ja": `<p>ノードやフローの説明に、<a href="https://github.com/mermaid-js/mermaid">Mermaid</a>図を直接追加することもできます。</p>
195
- <p>これによって、フローを説明する文書作成の選択肢がより多くなります。</p>`,
196
- "fr": `<p>Vous pouvez également ajouter des diagrammes <a href="https://github.com/mermaid-js/mermaid">Mermaid</a> directement dans vos descriptions de noeud ou de flux.</p>
197
- <p>Cela vous offre des options beaucoup plus riches pour documenter vos flux.</p>`
198
- },
108
+ "en-US": `<p>The <code>flow</code>/<code>global</code> context inputs and the <code>env</code> input
109
+ now all include auto-complete suggestions based on the live state of your flows.</p>
110
+ `,
111
+ "ja": `<p><code>flow</code>/<code>global</code>コンテキストや<code>env</code>の入力を、現在のフローの状態をもとに自動補完で提案するようになりました。</p>
112
+ `,
113
+ "fr": `<p>Les entrées contextuelles <code>flow</code>/<code>global</code> et l'entrée <code>env</code>
114
+ incluent désormais des suggestions de saisie semi-automatique basées sur l'état actuel de vos flux.</p>
115
+ `,
116
+ }
199
117
  },
200
118
  {
201
119
  title: {
202
- "en-US": "Managing Global Environment Variables",
203
- "ja": "グローバル環境変数の管理",
204
- "fr": "Gestion des variables d'environnement globales"
120
+ "en-US": "Config node customisation in Subflows",
121
+ "ja": "サブフローでの設定ノードのカスタマイズ",
122
+ "fr": "Personnalisation du noeud de configuration dans les sous-flux"
205
123
  },
206
- image: 'images/global-env-vars.png',
124
+ image: 'images/nr4-sf-config.png',
207
125
  description: {
208
- "en-US": `<p>You can set environment variables that apply to all nodes and flows in the new
209
- 'Global Environment Variables' section of User Settings.</p>`,
210
- "ja": `<p>ユーザ設定に新しく追加された「大域環境変数」のセクションで、全てのノードとフローに適用される環境変数を登録できます。</p>`,
211
- "fr": `<p>Vous pouvez définir des variables d'environnement qui s'appliquent à tous les noeuds et flux dans la nouvelle
212
- section "Global Environment Variables" des paramètres utilisateur.</p>`
213
- },
126
+ "en-US": `<p>Subflows can now be customised to allow each instance to use a different
127
+ config node of a selected type.</p>
128
+ <p>For example, each instance of a subflow that connects to an MQTT Broker and does some post-processing
129
+ of the messages received can be pointed at a different broker.</p>
130
+ `,
131
+ "ja": `<p>サブフローをカスタマイズして、選択した型の異なる設定ノードを各インスタンスが使用できるようになりました。</p>
132
+ <p>例えば、MQTTブローカへ接続し、メッセージ受信と後処理を行うサブフローの各インスタンスに異なるブローカを指定することも可能です。</p>
133
+ `,
134
+ "fr": `<p>Les sous-flux peuvent désormais être personnalisés pour permettre à chaque instance d'utiliser un
135
+ noeud de configuration d'un type sélectionné.</p>
136
+ <p>Par exemple, chaque instance d'un sous-flux qui se connecte à un courtier MQTT et effectue un post-traitement
137
+ des messages reçus peut être pointée vers un autre courtier.</p>
138
+ `
139
+ }
214
140
  },
215
141
  {
216
142
  title: {
@@ -221,10 +147,28 @@ export default {
221
147
  // image: "images/",
222
148
  description: {
223
149
  "en-US": `<p>The core nodes have received lots of minor fixes, documentation updates and
224
- small enhancements. Check the full changelog in the Help sidebar for a full list.</p>`,
225
- "ja": `<p>コアノードにマイナーな修正、ドキュメント更新、小規模な拡張が数多く追加されています。全ての一覧は、ヘルプサイドバーの全ての更新履歴を確認してください。</p>`,
226
- "fr": `<p>Les noeuds principaux ont reçu de nombreux correctifs mineurs, mises à jour de la documentation et
227
- petites améliorations. Consulter le journal des modifications complet dans la barre latérale d'aide.</p>`
150
+ small enhancements. Check the full changelog in the Help sidebar for a full list.</p>
151
+ <ul>
152
+ <li>A fully RFC4180 compliant CSV mode</li>
153
+ <li>Customisable headers on the WebSocket node</li>
154
+ <li>Split node now can operate on any message property</li>
155
+ <li>and lots more...</li>
156
+ </ul>`,
157
+ "ja": `<p>コアノードには沢山の軽微な修正、ドキュメント更新、小さな機能拡張が入っています。全リストはヘルプサイドバーにある変更履歴を参照してください。</p>
158
+ <ul>
159
+ <li>RFC4180に完全に準拠したCSVモード</li>
160
+ <li>WebSocketノードのカスタマイズ可能なヘッダ</li>
161
+ <li>Splitノードは、メッセージプロパティで操作できるようになりました</li>
162
+ <li>他にも沢山あります...</li>
163
+ </ul>`,
164
+ "fr": `<p>Les noeuds principaux ont reçu de nombreux correctifs mineurs ainsi que des améliorations. La documentation a été mise à jour.
165
+ Consultez le journal des modifications dans la barre latérale d'aide pour une liste complète. Ci-dessous, les changements les plus importants :</p>
166
+ <ul>
167
+ <li>Un mode CSV entièrement conforme à la norme RFC4180</li>
168
+ <li>En-têtes personnalisables pour le noeud WebSocket</li>
169
+ <li>Le noeud Split peut désormais fonctionner sur n'importe quelle propriété de message</li>
170
+ <li>Et bien plus encore...</li>
171
+ </ul>`
228
172
  }
229
173
  }
230
174
  ]
@@ -1,5 +1,5 @@
1
1
 
2
- /* NOTE: Do not edit directly! This file is generated using `npm run update-types` in https://github.com/Steve-Mcl/monaco-editor-esm-i18n */
2
+ /* NOTE: Do not edit directly! This file is generated using `npm run update-types` in https://github.com/node-red/nr-monaco-build */
3
3
 
4
4
  declare module 'assert/strict' {
5
5
  import { strict } from 'node:assert';