1
0

🤖 Repository layout updated to latest version

This commit was automatically generated by [a script](https://gitfub.space/Jmaa/repo-manager)
This commit is contained in:
Takunomi Automaticus, The 2nd 2025-04-17 15:51:38 +02:00
parent 1f1e8973c0
commit d08a003f31
6 changed files with 69 additions and 10 deletions

View File

@ -1,8 +0,0 @@
name: Lua Library
on: [push]
jobs:
Lua-Testing:
uses: jmaa/workflows/.gitea/workflows/lua-testing.yaml@v6.19
Static-Analysis:
uses: jmaa/workflows/.gitea/workflows/lua-static-analysis.yaml@v6.19

View File

@ -0,0 +1,25 @@
name: LÖVE/Lua Library
on:
push:
paths-ignore: ['README.md', '.gitignore', 'LICENSE', 'CONVENTIONS.md']
jobs:
Lua-Testing:
runs-on: ubuntu-latest
steps:
- name: Install Lua
run: |
apt-get update
apt-get install -y luajit
- name: Check out repository code
uses: actions/checkout@v3
- name: Run testing library
run: luajit test/init.lua
Static-Analysis:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v3
- name: Luacheck linter
uses: https://github.com/lunarmodules/luacheck@v1.1.1

15
.gitignore vendored Normal file
View File

@ -0,0 +1,15 @@
# Löve: Exclude build items
/bin/
/lib/
.love-cache/
# Compiled Lua sources
luac.out
# Misc (Image, MacOS, Backups) files
*.psd
*~
.DS_Store
# Tools
*.tiled-session

3
LICENSE Normal file
View File

@ -0,0 +1,3 @@
Copyright (c) 2019-2025 Jon Michael Aanes
All rights reserved.

View File

@ -1,3 +1,23 @@
# Palette Swap
<!-- WARNING! -->
<!-- THIS IS AN AUTOGENERATED FILE! -->
<!-- MANUAL CHANGES CAN AND WILL BE OVERWRITTEN! -->
Utility library for creating palette swaps of LÖVE-based images.
# Utility library for creating palette swaps of LÖVE-based images
## Dependencies
This project requires [PUC Lua 5.1](https://www.tecgraf.puc-rio.br/lua/mirror/versions.html#5.1) or [LuaJIT](https://luajit.org/luajit.html). Newer versions of PUC Lua are not supported.
This project does not have any library requirements 😎
## Contributing
Feel free to submit pull requests. Please follow the [Code Conventions](CONVENTIONS.md) when doing so.
## License
```
Copyright (c) 2019-2025 Jon Michael Aanes
All rights reserved.
```

View File

@ -1 +1,5 @@
-- WARNING!
-- THIS IS AN AUTOGENERATED FILE!
-- MANUAL CHANGES CAN AND WILL BE OVERWRITTEN!
return require (((...) ~= 'init' and (...) .. '.' or '') .. 'palette-swap')