Compare commits

...

21 Commits

Author SHA1 Message Date
Colin Basnett
3863e4edcc Removed MIT license file 2024-06-10 20:56:48 -07:00
Colin Basnett
e77ed7cc8d Merge branch 'master' of https://github.com/DarklightGames/io_scene_psk_psa 2024-06-10 14:04:04 -07:00
Colin Basnett
87eff06f71 Changed name of the addon to Unreal PSK/PSA (.psk/.psa) (short and sweet)
Also added missing `files` permission
2024-06-10 14:03:55 -07:00
Colin Basnett
1a8bd66503 Update README.md 2024-06-10 13:52:38 -07:00
Colin Basnett
143e7af36b Update main.yml 2024-06-10 13:47:23 -07:00
Colin Basnett
6b46cb257d Update main.yml 2024-06-10 12:13:11 -07:00
Colin Basnett
1c98790cfe Update main.yml 2024-06-10 12:02:36 -07:00
Colin Basnett
3fbef00edc Update main.yml 2024-06-09 17:52:31 -07:00
Colin Basnett
4279338574 Update main.yml 2024-06-09 17:47:24 -07:00
Colin Basnett
3b37dbceb9 Update main.yml 2024-06-09 17:43:05 -07:00
Colin Basnett
47c3ed795f Update main.yml 2024-06-09 17:36:26 -07:00
Colin Basnett
ee30938be8 Update main.yml 2024-06-09 17:28:23 -07:00
Colin Basnett
f049055273 Update main.yml 2024-06-09 17:20:51 -07:00
Colin Basnett
fac13ac86b Update main.yml 2024-06-09 14:58:20 -07:00
Colin Basnett
e11b863744 Update main.yml 2024-06-09 14:52:08 -07:00
Colin Basnett
97231079a7 Update main.yml 2024-06-09 14:39:54 -07:00
Colin Basnett
6205c1900c Update main.yml 2024-06-09 14:31:45 -07:00
Colin Basnett
810fe2f14f Update main.yml 2024-06-09 12:08:07 -07:00
Colin Basnett
1384e9daf6 Update main.yml 2024-06-09 12:06:59 -07:00
Colin Basnett
615983aa78 Update main.yml 2024-06-09 11:10:23 -07:00
Colin Basnett
f0c2c9c6c2 Update main.yml 2024-06-09 11:07:48 -07:00
4 changed files with 42 additions and 42 deletions

View File

@@ -1,4 +1,4 @@
name: Verify Addon
name: Build Extension
on:
workflow_dispatch:
@@ -7,25 +7,42 @@ on:
pull_request:
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:
configurator:
build:
runs-on: ubuntu-latest
env:
BLENDER_VERSION: blender-4.2.0-beta+v42.d19d23e91f65-linux.x86_64-release
steps:
- name: Install Blender Dependencies
run: |
apt install libxxf86vm-dev -y
apt install libxfixes3 -y
apt install libxi-dev -y
apt install libxkbcommon-x11-0 -y
apt install libgl1-mesa-glx -y
- name: Download Blender
run: |
wget ${{ env.BLENDER_URL }}
tar -xvzf ${{ env.BLENDER_FILENAME }}
rm -rf ${{ env.BLENDER_FILENAME }}
- uses: actions/checkout@v3
- uses: actions/checkout@v3
- name: Set derived environment variables
run: |
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
- name: Install Blender Dependencies
run: |
sudo apt-get install libxxf86vm-dev -y
sudo apt-get install libxfixes3 -y
sudo apt-get install libxi-dev -y
sudo apt-get install libxkbcommon-x11-0 -y
sudo apt-get install libgl1-mesa-glx -y
- 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
View File

@@ -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.

View File

@@ -1,5 +1,6 @@
[![Blender](https://img.shields.io/badge/Blender->=2.9-blue?logo=blender&logoColor=white)](https://www.blender.org/download/ "Download Blender")
[![GitHub release](https://img.shields.io/github/release/DarklightGames/io_scene_psk_psa?include_prereleases=&sort=semver&color=blue)](https://github.com/DarklightGames/io_scene_psk_psa/releases/)
[![Build Extension](https://github.com/DarklightGames/io_scene_psk_psa/actions/workflows/main.yml/badge.svg)](https://github.com/DarklightGames/io_scene_psk_psa/actions/workflows/main.yml)
[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/L4L3853VR)

View File

@@ -1,7 +1,7 @@
schema_version = "1.0.0"
id = "io_scene_psk_psa"
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"
maintainer = "Colin Basnett <cmbasnett@gmail.com>"
type = "add-on"
@@ -22,3 +22,6 @@ paths_exclude_pattern = [
"/.github/",
".gitignore",
]
[permissions]
files = "Import/export PSK and PSA files from/to disk"