From c9ef3af6b932f5ffcd1d2554e95d5b6bf41ceb71 Mon Sep 17 00:00:00 2001 From: SimonNordon4 Date: Mon, 5 Aug 2024 15:39:05 +1000 Subject: [PATCH] hello-world commit --- hello-world.zip | Bin 0 -> 1596 bytes hello-world/__init__.py | 4 ++ hello-world/blender_manifest.toml | 73 ++++++++++++++++++++++++++++++ index.html | 34 ++++++++++++++ index.json | 26 +++++++++++ readme.md | 1 + 6 files changed, 138 insertions(+) create mode 100644 hello-world.zip create mode 100644 hello-world/__init__.py create mode 100644 hello-world/blender_manifest.toml create mode 100644 index.html create mode 100644 index.json create mode 100644 readme.md diff --git a/hello-world.zip b/hello-world.zip new file mode 100644 index 0000000000000000000000000000000000000000..7ed75fdf45d988a6752663417c1adebd047f41f7 GIT binary patch literal 1596 zcmWIWW@Zs#U|`^2m|epf$<3^8^_Yc$;XM}vgCbBgBQ+-{U$;EJC?_Q*DJL~ACABC% zH!&|WEw#8ruOvS=XKC2&ygOzBwdN1%6|U)fCV1{!;<`Db+br`k8}B6sy$cME8y*_my77C5UM{`cnds;Oz-O50S*Hoey5h`fHy z{8WzXmZS}TZP~9DT$r}&+`4bq%6XmaC-hF7_2Xx_nMi$KTVS4b>ZOD7Yq^;0FGaN2 zaWNX}PVM}0G&|y+2Jf4456=31u3uOEb~Ni3;MA+3B4~^?P?=Ss&TZ^4{svOrT9Z|n)+l#!fPM_JZt<5aMLHXKYpV=n8 z98WIhrZ{g&S+1$IX`ej*pYNMip9tZ7D^RQM>w7k^O!Ndts&wh}3eFV|A3t(mT%tAS zcbRkjcNYEqKaNQDy_ozhEK2p*{ORGHAB_vc4;7uOoaC01>LWE<*kSQP(+&04lP2v8 zF832?U;c8+ETiKdhgL2X%zhEG`ox^#^kr?OModbrHeF&ZhZ&DKaBpq2T_RqU#F&?p zZ}d%^^%S%CkI+g>{u|Mu%>6F8yve=BMiT{MiapN0-xRsx$Yi-|-Lt>j*G6zXpZMtE zOXbYj8{A(Vb5DE!#ieIqUFH964BD+X|725m?D09LWyKm?&a-?`|JWzonC9pz;iNKGdxqiUb>B~!l*xA; zzJ5OPX4Ew^kxQ@tbXvat=OnGZ8C71pbW~3IGfjD~lo?vxog7nmoNrV9l(TL(g|yx? zYnPq*FB6%0Df!=_E^)1{DE>CUq(o=eMI%`#q+w&-Z1`Zig&&zU!SwEvhZu{-bk z%etL0SSaej!!T#P6QWX$JE{#%E}Y6*{506`u0qf{#Vh=`B#4AzVM1%1Jh&E0=qgdySdFgcd2#GyZvht zf9&$v}Cf5qQV%{MAmYyaC3@X+k$y-cBR>o??1o-?O~>*%bn!h1~=bLX;)b-()I zt?=nm^%uE=>LNX}La$A~zpStKlEir~yThk$weTow2pZnb+}RR_Iyl)KIQ`7q4&!RaZ zs=jgSL>64SWE0bM_w(oANm{{)rx*jg8JR>FaF@wIOOXJ<5*pb!Y#uu>+rvT|mK&1=}0KTiss{jB1 literal 0 HcmV?d00001 diff --git a/hello-world/__init__.py b/hello-world/__init__.py new file mode 100644 index 0000000..4fba2b4 --- /dev/null +++ b/hello-world/__init__.py @@ -0,0 +1,4 @@ +def register(): + print("Hello World") +def unregister(): + print("Goodbye World") \ No newline at end of file diff --git a/hello-world/blender_manifest.toml b/hello-world/blender_manifest.toml new file mode 100644 index 0000000..fb63b75 --- /dev/null +++ b/hello-world/blender_manifest.toml @@ -0,0 +1,73 @@ +schema_version = "1.0.0" + +# Example of manifest file for a Blender extension +# Change the values according to your extension +id = "hello_world" +version = "1.0.0" +name = "Hello World" +tagline = "This is another extension" +maintainer = "Simon Nordon " +# Supported types: "add-on", "theme" +type = "add-on" + +# Optional link to documentation, support, source files, etc +# website = "https://extensions.blender.org/add-ons/my-example-package/" + +# Optional list defined by Blender and server, see: +# https://docs.blender.org/manual/en/dev/advanced/extensions/tags.html +tags = ["Animation", "Sequencer"] + +blender_version_min = "4.2.0" +# # Optional: Blender version that the extension does not support, earlier versions are supported. +# # This can be omitted and defined later on the extensions platform if an issue is found. +# blender_version_max = "5.1.0" + +# License conforming to https://spdx.org/licenses/ (use "SPDX: prefix) +# https://docs.blender.org/manual/en/dev/advanced/extensions/licenses.html +license = [ + "SPDX:GPL-2.0-or-later", +] +# Optional: required by some licenses. +# copyright = [ +# "2002-2024 Developer Name", +# "1998 Company Name", +# ] + +# Optional list of supported platforms. If omitted, the extension will be available in all operating systems. +# platforms = ["windows-x64", "macos-arm64", "linux-x64"] +# Other supported platforms: "windows-arm64", "macos-x64" + +# Optional: bundle 3rd party Python modules. +# https://docs.blender.org/manual/en/dev/advanced/extensions/python_wheels.html +# wheels = [ +# "./wheels/hexdump-3.3-py3-none-any.whl", +# "./wheels/jsmin-3.0.1-py3-none-any.whl", +# ] + +# # Optional: add-ons can list which resources they will require: +# # * files (for access of any filesystem operations) +# # * network (for internet access) +# # * clipboard (to read and/or write the system clipboard) +# # * camera (to capture photos and videos) +# # * microphone (to capture audio) +# # +# # If using network, remember to also check `bpy.app.online_access` +# # https://docs.blender.org/manual/en/dev/advanced/extensions/addons.html#internet-access +# # +# # For each permission it is important to also specify the reason why it is required. +# # Keep this a single short sentence without a period (.) at the end. +# # For longer explanations use the documentation or detail page. +# +# [permissions] +# network = "Need to sync motion-capture data to server" +# files = "Import/export FBX from/to disk" +# clipboard = "Copy and paste bone transforms" + +# Optional: build settings. +# https://docs.blender.org/manual/en/dev/advanced/extensions/command_line_arguments.html#command-line-args-extension-build +# [build] +# paths_exclude_pattern = [ +# "__pycache__/", +# "/.git/", +# "/*.zip", +# ] \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..c12fc77 --- /dev/null +++ b/index.html @@ -0,0 +1,34 @@ + + + + + Blender Extensions + + +

Blender Extension Listing:

+

Add-on

+
+ + + + + + + + + + + + + + + + + + + +
IDNameDescriptionWebsiteBlender VersionsPlatformsSize
hello_world-1.0.0Hello WorldThis is another extension~4.2.0 - ~all1.6KB
+ +

Built 2024-08-05, 05:37

+ + diff --git a/index.json b/index.json new file mode 100644 index 0000000..c7f1cef --- /dev/null +++ b/index.json @@ -0,0 +1,26 @@ +{ + "version": "v1", + "blocklist": [], + "data": [ + { + "schema_version": "1.0.0", + "id": "hello_world", + "name": "Hello World", + "tagline": "This is another extension", + "version": "1.0.0", + "type": "add-on", + "maintainer": "Simon Nordon ", + "license": [ + "SPDX:GPL-2.0-or-later" + ], + "blender_version_min": "4.2.0", + "tags": [ + "Animation", + "Sequencer" + ], + "archive_url": "./hello-world.zip", + "archive_size": 1596, + "archive_hash": "sha256:99f4c18b16b81d392894c9bc75a020e2e90e43dda15cd3809d8a03f588148ac4" + } + ] +} \ No newline at end of file diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..d2b48e3 --- /dev/null +++ b/readme.md @@ -0,0 +1 @@ +https://docs.blender.org/manual/en/latest/advanced/extensions/creating_repository/static_repository.html