Compare commits
1 Commits
7.1.0
...
blender-4.
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
275f246458 |
36
.github/workflows/main.yml
vendored
36
.github/workflows/main.yml
vendored
@@ -1,4 +1,4 @@
|
|||||||
name: Build Extension
|
name: Verify Addon
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
@@ -13,36 +13,20 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
BLENDER_VERSION: blender-4.2.0-beta+v42.d19d23e91f65-linux.x86_64-release
|
BLENDER_VERSION: blender-4.2.0-beta+v42.d19d23e91f65-linux.x86_64-release
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
|
||||||
- name: Set derived environment variables
|
- name: Set derived environment variables
|
||||||
run: |
|
run: |
|
||||||
echo "BLENDER_FILENAME=${{ env.BLENDER_VERSION }}.tar.xz" >> $GITHUB_ENV
|
echo "BLENDER_FILENAME=${{ env.BLENDER_VERSION }}.tar.xz" >> $GITHUB_ENV
|
||||||
echo "BLENDER_URL=https://cdn.builder.blender.org/download/daily/${{ env.BLENDER_VERSION }}.tar.xz" >> $GITHUB_ENV
|
echo "BLENDER_URL=https://cdn.builder.blender.org/download/daily/${{ env.BLENDER_VERSION }}.tar.xz" >> $GITHUB_ENV
|
||||||
- name: Install Blender Dependencies
|
- name: Install Blender Dependencies
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get install libxxf86vm-dev -y
|
apt install libxxf86vm-dev -y
|
||||||
sudo apt-get install libxfixes3 -y
|
apt install libxfixes3 -y
|
||||||
sudo apt-get install libxi-dev -y
|
apt install libxi-dev -y
|
||||||
sudo apt-get install libxkbcommon-x11-0 -y
|
apt install libxkbcommon-x11-0 -y
|
||||||
sudo apt-get install libgl1-mesa-glx -y
|
apt install libgl1-mesa-glx -y
|
||||||
- name: Download & Extract Blender
|
- name: Download Blender
|
||||||
run: |
|
run: |
|
||||||
wget -q $BLENDER_URL
|
wget $BLENDER_URL
|
||||||
tar -xf $BLENDER_FILENAME
|
tar -xvzf $BLENDER_FILENAME
|
||||||
rm -rf $BLENDER_FILENAME
|
rm -rf $BLENDER_FILENAME
|
||||||
- name: Add Blender executable to path
|
- uses: actions/checkout@v3
|
||||||
run: |
|
|
||||||
echo "${{ github.workspace }}/${{ env.BLENDER_VERSION }}/" >> $GITHUB_PATH
|
|
||||||
- name: Build extension
|
|
||||||
run: |
|
|
||||||
pushd ./io_scene_psk_psa
|
|
||||||
blender --command extension build
|
|
||||||
mkdir artifact
|
|
||||||
unzip -q io_scene_psk_psa.zip -d ./artifact
|
|
||||||
popd
|
|
||||||
- name: Archive addon
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: io_scene_psk_psa-${{ github.ref_name }}-${{ github.sha }}
|
|
||||||
path: |
|
|
||||||
./io_scene_psk_psa/artifact/*
|
|
||||||
|
|||||||
21
LICENSE
Normal file
21
LICENSE
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2019 Darklight Games
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
||||||
@@ -1,6 +1,5 @@
|
|||||||
[](https://www.blender.org/download/ "Download Blender")
|
[](https://www.blender.org/download/ "Download Blender")
|
||||||
[](https://github.com/DarklightGames/io_scene_psk_psa/releases/)
|
[](https://github.com/DarklightGames/io_scene_psk_psa/releases/)
|
||||||
[](https://github.com/DarklightGames/io_scene_psk_psa/actions/workflows/main.yml)
|
|
||||||
|
|
||||||
[](https://ko-fi.com/L4L3853VR)
|
[](https://ko-fi.com/L4L3853VR)
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
schema_version = "1.0.0"
|
schema_version = "1.0.0"
|
||||||
id = "io_scene_psk_psa"
|
id = "io_scene_psk_psa"
|
||||||
version = "7.1.0"
|
version = "7.1.0"
|
||||||
name = "Unreal PSK/PSA (.psk/.psa)"
|
name = "Unreal Mesh & Animation (.psk/.psa)"
|
||||||
tagline = "Import and export PSK and PSA files used in Unreal Engine"
|
tagline = "Import and export PSK and PSA files used in Unreal Engine"
|
||||||
maintainer = "Colin Basnett <cmbasnett@gmail.com>"
|
maintainer = "Colin Basnett <cmbasnett@gmail.com>"
|
||||||
type = "add-on"
|
type = "add-on"
|
||||||
@@ -22,6 +22,3 @@ paths_exclude_pattern = [
|
|||||||
"/.github/",
|
"/.github/",
|
||||||
".gitignore",
|
".gitignore",
|
||||||
]
|
]
|
||||||
|
|
||||||
[permissions]
|
|
||||||
files = "Import/export PSK and PSA files from/to disk"
|
|
||||||
|
|||||||
Reference in New Issue
Block a user