Skip to content

Commit 42f9657

Browse files
authored
Merge pull request #41 from AssetFetch/build-updates
Build updates
2 parents d874d88 + f660e03 commit 42f9657

File tree

4 files changed

+10
-11
lines changed

4 files changed

+10
-11
lines changed

build.ps1

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
& "$ENV:ProgramFiles\Blender Foundation\Blender 4.2\blender.exe" --command extension build --source-dir $PSScriptRoot/src --verbose
2-
& "$ENV:ProgramFiles\Blender Foundation\Blender 4.2\blender.exe" --command extension server-generate --repo-dir $PSScriptRoot
1+
$BLENDER_VERSION = "4.5"
2+
& "$ENV:ProgramFiles\Blender Foundation\Blender $BLENDER_VERSION\blender.exe" --command extension build --source-dir $PSScriptRoot/src --verbose
3+
& "$ENV:ProgramFiles\Blender Foundation\Blender $BLENDER_VERSION\blender.exe" --command extension server-generate --repo-dir $PSScriptRoot

src/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import os, sys
66
import bpy
77

8-
print("Loading AssetFetch for Blender v0.3.0")
8+
print("Loading AssetFetch for Blender 0.4.0")
99

1010
ADDON_NAME = __package__
1111

src/blender_manifest.toml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,18 @@
11
schema_version = "1.0.0"
22

33
id = "assetfetch"
4-
version = "0.3.0"
4+
version = "0.4.0"
55
name = "AssetFetch For Blender"
66
tagline = "AssetFetch client for Blender"
77
maintainer = "ambientCG <hello@ambientCG.com>"
88
type = "add-on"
9-
website = "https://assetfetch.org/"
9+
website = "https://github.com/AssetFetch/blender"
1010
tags = ["Pipeline"]
1111
blender_version_min = "4.0.0"
1212
license = [
1313
"SPDX:GPL-3.0-or-later",
1414
]
1515

16-
paths_exclude_pattern = [
17-
"__pycache__/",
18-
"/.git/",
19-
"/*.zip",
20-
]
16+
[permissions]
17+
network = "Needed to access remote AF repositories"
18+
files = "Needed to perform downloads"

src/ui/provider_panel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def draw(self, context):
1717

1818
# Info Box
1919
#info_box = layout.box()
20-
#info_box.label(text="AssetFetch for Blender v0.3.0", icon="SETTINGS")
20+
#info_box.label(text="AssetFetch for Blender v0.4.0", icon="SETTINGS")
2121
#info_box.label(text=f"Icon directory: {af.ui_image_directory}")
2222
#info_box.label(text="Unstable & lacking numerous features, use with caution & patience!")
2323

0 commit comments

Comments
 (0)