Skip to content
This repository was archived by the owner on Nov 3, 2025. It is now read-only.

Commit 826a049

Browse files
committed
Initial Version
1 parent 67d6eca commit 826a049

40 files changed

+2698
-1
lines changed

.gitattributes

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#
2+
# https://help.github.com/articles/dealing-with-line-endings/
3+
#
4+
# Linux start script should use lf
5+
/gradlew text eol=lf
6+
7+
# These are Windows script files and should use crlf
8+
*.bat text eol=crlf
9+

.github/workflows/build.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Automatically build the project and run any configured tests for every push
2+
# and submitted pull request. This can help catch issues that only occur on
3+
# certain platforms or Java versions, and provides a first line of defence
4+
# against bad commits.
5+
6+
name: build
7+
on: [pull_request, push]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-24.04
12+
steps:
13+
- name: checkout repository
14+
uses: actions/checkout@v4
15+
- name: validate gradle wrapper
16+
uses: gradle/actions/wrapper-validation@v4
17+
- name: setup jdk
18+
uses: actions/setup-java@v4
19+
with:
20+
java-version: '21'
21+
distribution: 'microsoft'
22+
- name: make gradle wrapper executable
23+
run: chmod +x ./gradlew
24+
- name: build
25+
run: ./gradlew build
26+
- name: capture build artifacts
27+
uses: actions/upload-artifact@v4
28+
with:
29+
name: Artifacts
30+
path: build/libs/

.gitignore

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# gradle
2+
3+
.gradle/
4+
build/
5+
out/
6+
classes/
7+
jars/
8+
9+
# eclipse
10+
11+
*.launch
12+
13+
# idea
14+
15+
.idea/
16+
*.iml
17+
*.ipr
18+
*.iws
19+
*.salive
20+
21+
# vscode
22+
23+
.settings/
24+
.vscode/
25+
bin/
26+
.classpath
27+
.project
28+
29+
# macos
30+
31+
*.DS_Store
32+
33+
# fabric
34+
35+
run/
36+
37+
# java
38+
39+
hs_err_*.log
40+
replay_*.log
41+
*.hprof
42+
*.jfr

HEADER

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/**
2+
* Animatium Extras
3+
* The bits-n-pieces of Animatium that didn't make it/aren't related.
4+
* <p>
5+
* Copyright (C) 2024-2025 lowercasebtw
6+
* Copyright (C) 2024-2025 mixces
7+
* Copyright (C) 2024-2025 Contributors to the project retain their copyright
8+
* <p>
9+
* This program is free software: you can redistribute it and/or modify
10+
* it under the terms of the GNU General Public License as published by
11+
* the Free Software Foundation, either version 3 of the License, or
12+
* (at your option) any later version.
13+
* <p>
14+
* This program is distributed in the hope that it will be useful,
15+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
16+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17+
* GNU General Public License for more details.
18+
* <p>
19+
* You should have received a copy of the GNU General Public License
20+
* along with this program. If not, see <http://www.gnu.org/licenses/>.
21+
*/
22+

0 commit comments

Comments
 (0)