Skip to content

Commit 4a2db49

Browse files
Merge branch 'master' into DYN-9958-WebView2_CacheFolder-Location
2 parents 7c8ec1e + 22ad096 commit 4a2db49

File tree

216 files changed

+48584
-345760
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

216 files changed

+48584
-345760
lines changed

.github/workflows/auto_cherrypick.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
shell: bash
7575
- uses: actions/checkout@v6
7676
- name: Start Cherrypick
77-
uses: korthout/backport-action@v3
77+
uses: korthout/backport-action@v4
7878
with:
7979
branch_name: cherrypick-${pull_number}
8080
copy_milestone: true

.github/workflows/build_dynamo_all.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: Check File Version
4141
run: ${{ github.workspace }}\Dynamo\.github\scripts\check_file_version.ps1 ${{ github.workspace }}\Dynamo\bin\AnyCPU\Release
4242
- name: Upload Build Artifact
43-
uses: actions/upload-artifact@v5
43+
uses: actions/upload-artifact@v6
4444
with:
4545
name: DynamoSandbox
4646
path: ${{ github.workspace }}\Dynamo\bin\AnyCPU\Release
@@ -55,7 +55,7 @@ jobs:
5555
mkdir -p ${{ github.workspace }}/pr
5656
echo ${{ github.event.number }} > ${{ github.workspace }}/pr/pr_number.txt
5757
- name: Upload PR Data
58-
uses: actions/upload-artifact@v5
58+
uses: actions/upload-artifact@v6
5959
with:
6060
name: pr_data
6161
path: ${{ github.workspace }}/pr

.github/workflows/dynamo_bin_diff.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
Write-Error "DynamoCLI.exe was not found!"
4040
}
4141
- name: Cache Current Build
42-
uses: actions/cache/save@v4
42+
uses: actions/cache/save@v5
4343
with:
4444
path: |
4545
${{ github.workspace }}\Dynamo\bin\AnyCPU\Release
@@ -77,7 +77,7 @@ jobs:
7777
Write-Error "DynamoCLI.exe was not found!"
7878
}
7979
- name: Cache Master Build
80-
uses: actions/cache/save@v4
80+
uses: actions/cache/save@v5
8181
with:
8282
path: ${{ github.workspace }}\master\bin\AnyCPU\Release
8383
key: ${{ github.run_id }}-${{ github.run_attempt }}-master
@@ -87,15 +87,15 @@ jobs:
8787
runs-on: windows-latest
8888
steps:
8989
- name: Restore Current Build
90-
uses: actions/cache/restore@v4
90+
uses: actions/cache/restore@v5
9191
with:
9292
fail-on-cache-miss: true
9393
path: |
9494
${{ github.workspace }}\Dynamo\bin\AnyCPU\Release
9595
${{ github.workspace }}\Dynamo\.github\scripts
9696
key: ${{ github.run_id }}-${{ github.run_attempt }}-current
9797
- name: Restore Master Build
98-
uses: actions/cache/restore@v4
98+
uses: actions/cache/restore@v5
9999
with:
100100
fail-on-cache-miss: true
101101
path: ${{ github.workspace }}\master\bin\AnyCPU\Release
@@ -108,7 +108,7 @@ jobs:
108108
.\bin_diff.ps1 ${{ github.workspace }}\master\bin\AnyCPU\Release, ${{ github.workspace }}\Dynamo\bin\AnyCPU\Release -src ${{ github.job }}
109109
Get-Content -Path result.txt | ? { $_ -ne "" } | Out-File -Path result.txt
110110
- name: Upload Binary Diff Result
111-
uses: actions/upload-artifact@v5
111+
uses: actions/upload-artifact@v6
112112
with:
113113
name: bin_diff_result
114114
path: ${{ github.workspace }}\Dynamo\.github\scripts\result.txt
@@ -121,7 +121,7 @@ jobs:
121121
mkdir -p ${{ github.workspace }}/pr
122122
echo ${{ github.event.number }} > ${{ github.workspace }}/pr/pr_number.txt
123123
- name: Upload PR Data
124-
uses: actions/upload-artifact@v5
124+
uses: actions/upload-artifact@v6
125125
with:
126126
name: pr_data
127127
path: ${{ github.workspace }}/pr

doc/distrib/NodeHelpFiles/cs-CZ/PythonNodeModels.PythonNode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Podrobnosti
2-
Uzel Python Script vrátí výsledek vstupů uzlu procházejících vloženým skriptem jazyka IronPython. V níže uvedeném příkladu se krychle vytvořená uzlem Cuboid.ByCorners umístí do pole a přesune se pomocí skriptu jazyka Python, který ve smyčce prochází jak hodnoty X, tak hodnoty Y. Dvojitým kliknutím na uzel spustíte aplikaci editoru pro skript.
2+
Python Script will return the result of the node's inputs passed through an embedded python script. In the example below, a cube created from Cuboid.ByCorners is arrayed and translated by a Python script that loops through both X and Y. Double clicking the node will bring up an editor for the script.
33
___
44
## Vzorový soubor
55

doc/distrib/NodeHelpFiles/de-DE/PythonNodeModels.PythonNode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Im Detail
2-
Python Script gibt das Ergebnis der Eingaben des Blocks zurück, die durch ein eingebettetes IronPython-Skript übergeben wurden. Im folgenden Beispiel wird ein aus Cuboid.ByCorners erstellter Würfel durch ein Python-Skript, das sowohl X als auch Y durchläuft, angeordnet und verschoben. Durch Doppelklicken auf den Block wird ein Editor für das Skript aufgerufen.
2+
Python Script will return the result of the node's inputs passed through an embedded python script. In the example below, a cube created from Cuboid.ByCorners is arrayed and translated by a Python script that loops through both X and Y. Double clicking the node will bring up an editor for the script.
33
___
44
## Beispieldatei
55

doc/distrib/NodeHelpFiles/en-GB/PythonNodeModels.PythonNode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## In Depth
2-
Python Script will return the result of the node's inputs passed through an embedded IronPython script. In the example below, a cube created from Cuboid.ByCorners is arrayed and translated by a Python script that loops through both X and Y. Double clicking the node will bring up an editor for the script.
2+
Python Script will return the result of the node's inputs passed through an embedded python script. In the example below, a cube created from Cuboid.ByCorners is arrayed and translated by a Python script that loops through both X and Y. Double clicking the node will bring up an editor for the script.
33
___
44
## Example File
55

doc/distrib/NodeHelpFiles/en-US/PythonNodeModels.PythonNode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## In Depth
2-
Python Script will return the result of the node's inputs passed through an embedded IronPython script. In the example below, a cube created from Cuboid.ByCorners is arrayed and translated by a Python script that loops through both X and Y. Double clicking the node will bring up an editor for the script.
2+
Python Script will return the result of the node's inputs passed through an embedded python script. In the example below, a cube created from Cuboid.ByCorners is arrayed and translated by a Python script that loops through both X and Y. Double clicking the node will bring up an editor for the script.
33
___
44
## Example File
55

doc/distrib/NodeHelpFiles/es-ES/PythonNodeModels.PythonNode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## En detalle:
2-
Python Script devolverá el resultado de las entradas del nodo transferidas a través de una secuencia de comandos de IronPython incrustada. En el siguiente ejemplo, un cubo creado a partir de Cuboid.ByCorners se crea en una matriz y se traslada mediante una secuencia de comandos de Python con un bucle a través de X e Y. Al hacer doble clic en el nodo, se mostrará un editor para la secuencia de comandos.
2+
Python Script will return the result of the node's inputs passed through an embedded python script. In the example below, a cube created from Cuboid.ByCorners is arrayed and translated by a Python script that loops through both X and Y. Double clicking the node will bring up an editor for the script.
33
___
44
## Archivo de ejemplo
55

doc/distrib/NodeHelpFiles/fr-FR/PythonNodeModels.PythonNode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## Description approfondie
2-
Python Script renvoie le résultat des entrées du nœud transmises via un script IronPython intégré. Dans l'exemple ci-dessous, un cube créé à partir de Cuboid.ByCorners est mis en réseau et traduit par un script Python qui effectue une boucle à travers X et Y. Un double clic sur le nœud affiche un éditeur du script.
2+
Python Script will return the result of the node's inputs passed through an embedded python script. In the example below, a cube created from Cuboid.ByCorners is arrayed and translated by a Python script that loops through both X and Y. Double clicking the node will bring up an editor for the script.
33
___
44
## Exemple de fichier
55

doc/distrib/NodeHelpFiles/it-IT/PythonNodeModels.PythonNode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
## In profondità
2-
PythonNode restituirà il risultato degli input del nodo passati attraverso uno script IronPython incorporato. Nell'esempio seguente, viene creata la matrice di un cubo generato da Cuboid.ByCorners che è poi traslato da uno script Python in loop sia su X che Y. Facendo doppio clic sul nodo verrà visualizzato un editor per lo script.
2+
Python Script will return the result of the node's inputs passed through an embedded python script. In the example below, a cube created from Cuboid.ByCorners is arrayed and translated by a Python script that loops through both X and Y. Double clicking the node will bring up an editor for the script.
33
___
44
## File di esempio
55

0 commit comments

Comments
 (0)