Skip to content

Commit f547cf0

Browse files
authored
Merge branch 'develop' into cursor/fix-clone-already-exists-99fc
2 parents 6dd0a3d + fc580ef commit f547cf0

8 files changed

Lines changed: 67 additions & 55 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,14 @@ jobs:
4949

5050
steps:
5151
- name: Checkout Repository
52-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
52+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
5353
with:
5454
fetch-depth: 0
5555
submodules: recursive
5656
token: ${{ secrets.SUBMODULES_TOKEN || github.token }}
5757

5858
- name: Cache NuGet packages
59-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
59+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
6060
with:
6161
path: ~/.nuget/packages
6262
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj', '**/Directory.Build.props', 'build/Build.csproj') }}
@@ -256,7 +256,7 @@ jobs:
256256

257257
steps:
258258
- name: Checkout Repository
259-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
259+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
260260
with:
261261
fetch-depth: 0
262262
ref: ${{ github.sha }}

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
docs:
2626
runs-on: ubuntu-latest
2727
steps:
28-
- uses: actions/checkout@v6
28+
- uses: actions/checkout@v7
2929

3030
- name: Prepare Python 3.14
3131
uses: actions/setup-python@v6

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636

3737
steps:
3838
- name: Checkout Repository
39-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
39+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
4040
with:
4141
fetch-depth: 0
4242

@@ -68,7 +68,7 @@ jobs:
6868
exit 1
6969
7070
- name: Download unsigned bin artifact
71-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
71+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
7272
with:
7373
name: unsigned-bin-${{ github.sha }}
7474
run-id: ${{ steps.wait_ci.outputs.run_id }}
@@ -84,7 +84,7 @@ jobs:
8484
path: .
8585

8686
- name: Cache NuGet packages
87-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
87+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
8888
with:
8989
path: ~/.nuget/packages
9090
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj', '**/Directory.Build.props', 'build/Build.csproj') }}
@@ -161,7 +161,7 @@ jobs:
161161

162162
steps:
163163
- name: Checkout Repository
164-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
164+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
165165
with:
166166
fetch-depth: 0
167167
ref: ${{ github.event_name == 'workflow_dispatch' && inputs.tag_ref || github.ref }}

.github/workflows/winget.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: windows-2025
1717
steps:
1818
- name: Checkout Repository
19-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
19+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
2020
with:
2121
fetch-depth: 0
2222

.github/workflows/wip.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
run: echo "run_id=${{ github.run_id }}" >> "$GITHUB_OUTPUT"
3939

4040
- name: Checkout Repository
41-
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
41+
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
4242
with:
4343
fetch-depth: 0
4444
ref: ${{ inputs.head_sha }}
@@ -60,7 +60,7 @@ jobs:
6060
path: .
6161

6262
- name: Cache NuGet packages
63-
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
63+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
6464
with:
6565
path: ~/.nuget/packages
6666
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj', '**/Directory.Build.props', 'build/Build.csproj') }}

Pipfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ verify_ssl = true
55

66
[dev-packages]
77
mypy = "*"
8-
pylint = "==4.0.5"
8+
pylint = "==4.0.6"
99

1010
[packages]
1111
docopt = "*"

Pipfile.lock

Lines changed: 42 additions & 43 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

extensions/extensions.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -317,6 +317,19 @@
317317
"website": "https://biminent.com",
318318
"image": "",
319319
"dependencies": []
320+
},
321+
{
322+
"builtin": "False",
323+
"type": "extension",
324+
"rocket_mode_compatible": "True",
325+
"name": "Blendit",
326+
"description": "One-click Revit to Blender rendering. Sends the active 3D view to Blender and renders it through a curated pipeline: photoreal, clay and shadow-study modes plus NPR line/pen/sketch/cel/hatch, an interactive review session, SVG/PDF vector export, and procedural volumetric clouds. Blender runs as a separate process; the pipeline ships inside the extension. Free, MIT-licensed.",
327+
"author": "lewismconte",
328+
"author_profile": "https://github.com/lewismconte",
329+
"url": "https://github.com/lewismconte/blendit.git",
330+
"website": "https://github.com/lewismconte/blendit",
331+
"image": "https://raw.githubusercontent.com/lewismconte/blendit/main/media/blendit_hero.png",
332+
"dependencies": []
320333
}
321334
]
322335
}

0 commit comments

Comments
 (0)