Compare commits
21 Commits
blender-4.
...
7.1.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3863e4edcc | ||
|
|
e77ed7cc8d | ||
|
|
87eff06f71 | ||
|
|
1a8bd66503 | ||
|
|
143e7af36b | ||
|
|
6b46cb257d | ||
|
|
1c98790cfe | ||
|
|
3fbef00edc | ||
|
|
4279338574 | ||
|
|
3b37dbceb9 | ||
|
|
47c3ed795f | ||
|
|
ee30938be8 | ||
|
|
f049055273 | ||
|
|
fac13ac86b | ||
|
|
e11b863744 | ||
|
|
97231079a7 | ||
|
|
6205c1900c | ||
|
|
810fe2f14f | ||
|
|
1384e9daf6 | ||
|
|
615983aa78 | ||
|
|
f0c2c9c6c2 |
57
.github/workflows/main.yml
vendored
57
.github/workflows/main.yml
vendored
@@ -1,4 +1,4 @@
|
|||||||
name: Verify Addon
|
name: Build Extension
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
@@ -7,25 +7,42 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
branches: [ "main" ]
|
branches: [ "main" ]
|
||||||
|
|
||||||
env:
|
|
||||||
BLENDER_VERSION: blender-4.2.0-beta+v42.d19d23e91f65-linux.x86_64-release
|
|
||||||
BLENDER_FILENAME: ${{ env.BLENDER_VERSION }}.tar.xz
|
|
||||||
BLENDER_URL: https://cdn.builder.blender.org/download/daily/${{ env.BLENDER_FILENAME }}
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
configurator:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
BLENDER_VERSION: blender-4.2.0-beta+v42.d19d23e91f65-linux.x86_64-release
|
||||||
steps:
|
steps:
|
||||||
- name: Install Blender Dependencies
|
- uses: actions/checkout@v3
|
||||||
run: |
|
- name: Set derived environment variables
|
||||||
apt install libxxf86vm-dev -y
|
run: |
|
||||||
apt install libxfixes3 -y
|
echo "BLENDER_FILENAME=${{ env.BLENDER_VERSION }}.tar.xz" >> $GITHUB_ENV
|
||||||
apt install libxi-dev -y
|
echo "BLENDER_URL=https://cdn.builder.blender.org/download/daily/${{ env.BLENDER_VERSION }}.tar.xz" >> $GITHUB_ENV
|
||||||
apt install libxkbcommon-x11-0 -y
|
- name: Install Blender Dependencies
|
||||||
apt install libgl1-mesa-glx -y
|
run: |
|
||||||
- name: Download Blender
|
sudo apt-get install libxxf86vm-dev -y
|
||||||
run: |
|
sudo apt-get install libxfixes3 -y
|
||||||
wget ${{ env.BLENDER_URL }}
|
sudo apt-get install libxi-dev -y
|
||||||
tar -xvzf ${{ env.BLENDER_FILENAME }}
|
sudo apt-get install libxkbcommon-x11-0 -y
|
||||||
rm -rf ${{ env.BLENDER_FILENAME }}
|
sudo apt-get install libgl1-mesa-glx -y
|
||||||
- uses: actions/checkout@v3
|
- name: Download & Extract Blender
|
||||||
|
run: |
|
||||||
|
wget -q $BLENDER_URL
|
||||||
|
tar -xf $BLENDER_FILENAME
|
||||||
|
rm -rf $BLENDER_FILENAME
|
||||||
|
- name: Add Blender executable to path
|
||||||
|
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
21
LICENSE
@@ -1,21 +0,0 @@
|
|||||||
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,5 +1,6 @@
|
|||||||
[](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 Mesh & Animation (.psk/.psa)"
|
name = "Unreal PSK/PSA (.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,3 +22,6 @@ 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