Skip to content

Commit

Permalink
Fix EntityAnno
Browse files Browse the repository at this point in the history
(cherry picked from commit 9e304d4)
  • Loading branch information
stabu-dev authored and = committed Jan 7, 2025
1 parent 52ee995 commit 9916f17
Show file tree
Hide file tree
Showing 11 changed files with 321 additions and 301 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Omaloon Build CI

on:
push:
pull_request:
release:
types:
- created

permissions:
contents: write

jobs:
buildJar:
name: Build and Publish Jar
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Build mod artifact
run: |
chmod +x gradlew
./gradlew clean dex
- name: Upload built mod artifact as a GitHub Action artifact
uses: actions/upload-artifact@v4
if: github.event_name == 'push' || github.event_name == 'pull_request'
with:
name: Omaloon (zipped)
path: build/libs/Omaloon.jar
if-no-files-found: error
compression-level: 0
- name: Upload built mod artifact into release
uses: softprops/action-gh-release@v2
if: github.event_name == 'release' && github.event.action == 'created'
with:
files: build/libs/Omaloon.jar
24 changes: 0 additions & 24 deletions .github/workflows/commit.yml

This file was deleted.

24 changes: 0 additions & 24 deletions .github/workflows/pr.yml

This file was deleted.

5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -148,4 +148,7 @@ gradle-app.setting
Thumbs.db
android/libs/
/.run/*.run.xml
modsDirectories.txt
modsDirectories.txt

# Mindustry Client
/run/
22 changes: 13 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
[![Download](https://img.shields.io/github/v/release/xStaBUx/Omaloon-mod-public?color=6aa84f&include_prereleases&label=Latest%20version&logo=github&logoColor=white&style=for-the-badge)](https://github.com/xStaBUx/Omaloon-mod-public/releases)
[![Total Downloads](https://img.shields.io/github/downloads/xStaBUx/Omaloon-mod-public/total?color=7289da&label&logo=docusign&logoColor=white&style=for-the-badge)](https://github.com/xStaBUx/Omaloon-mod-public/releases)

An ambitious [Mindustry](https://github.com/Anuken/Mindustry) modification developed by stabu and uujuju. This mod aims to expand the game's standard campaign by adding a new star system.
> An ambitious [Mindustry](https://github.com/Anuken/Mindustry) mod
developed by [stabu](https://github.com/stabu-dev) and [uujuju](https://github.com/uujuju1).
Mod aimed at expanding a campaign by adding a new star system.

## Building from Source

Expand Down Expand Up @@ -45,13 +47,9 @@ The built mod will be in the `build/libs` directory.

To test the mod directly:
```bash
gradlew run
```

To install the mod to your Mindustry mods folder:
```bash
gradlew installJar
gradlew runClient
```
This Mindustry client uses the `run` directory to store its data.

## Contributing

Expand All @@ -62,12 +60,18 @@ gradlew installJar

### Feature Suggestions
- Join our [Discord server](https://discord.gg/bNMT82Hswb) to suggest new content
- Provide examples and specific arguments why your suggestion should be added to Omaloon
- The Issues section is reserved for bug reports only

### Balance Feedback
- Share your thoughts on content balancing in our Discord
### Game-play Feedback
- Share your thoughts on game-play and balancing in our Discord
- Provide specific examples and reasoning for balance changes

### Pull Requests
- Improve Omaloon's code/sprites/localization and propose these changes to us by creating a [Pull Request](https://github.com/stabu-dev/Omaloon/pulls).
- Make sure your code works properly and doesn't cause any issues.
- Provide specific reasoning why your Pull Request should be accepted.

## Credits

### Developers
Expand Down
223 changes: 0 additions & 223 deletions build.gradle

This file was deleted.

Loading

0 comments on commit 9916f17

Please sign in to comment.