Skip to content

Commit

Permalink
mostly final touches
Browse files Browse the repository at this point in the history
  • Loading branch information
stabu-dev committed Nov 24, 2024
1 parent 9163a83 commit c383bc4
Show file tree
Hide file tree
Showing 4 changed files with 69 additions and 16 deletions.
79 changes: 66 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,79 @@
# ![img.png](/assets/img.png)

[![Discord](https://img.shields.io/discord/1011940744774303795.svg?color=7289da&logo=discord&label=Omaloon-Genral&style=for-the-badge)](https://discord.gg/bNMT82Hswb)
[![Discord](https://img.shields.io/discord/1011940744774303795.svg?color=7289da&logo=discord&label=Omaloon-General&style=for-the-badge)](https://discord.gg/bNMT82Hswb)
[![YouTube](https://img.shields.io/youtube/channel/subscribers/UCKYkjTAwp-ZpKBVDdknSIHw?color=ff5959&label=YouTube&logo=youtube&style=for-the-badge)](https://www.youtube.com/@omaloon)

[![Stars](https://img.shields.io/github/stars/xstabux/Omaloon?color=7289da&label=⭐️%20Please%20Star%20Omaloon%21&style=for-the-badge)](https://github.com/xStaBUx/Omaloon-mod-public)
[![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)
[![Stars](https://img.shields.io/github/stars/xstabux/Omaloon?color=7289da&label=%20Please%20Star%20Omaloon%21&style=for-the-badge)](https://github.com/xStaBUx/Omaloon-mod-public)
[![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 xstabux, uujuju/Aurora and randomguy. Mod aimed at expanding the game's standard campaign by adding a new star system.
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.

## Contributing

You can contribute on development by:
## Building from Source

* Submitting bug reports in [Issues](https://github.com/xStaBUx/Omaloon-mod-public/issues) category.
* Suggesting new content (The Issues category is **not** for suggestions, better visit the Omaloon's [discord server](https://discord.gg/bNMT82Hswb))
* Providing input regarding content balancing
### Prerequisites

## Compiling
- JDK 17 or higher
- Android SDK (for Android builds)
- Git

1. Clone repository.
### Setup

1. Clone the repository:
```bash
git clone -b master --single-branch https://github.com/xstabux/Omaloon
```
//TODO

2. Set up environment variables:
- Set `ANDROID_SDK_ROOT` or `ANDROID_HOME` to your Android SDK installation path (required for Android builds)

### Building

For Desktop:
```bash
gradlew jar
```

For Android:
```bash
gradlew dex
```

The built mod will be in the `build/libs` directory.

### Running

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

To install the mod to your Mindustry mods folder:
```bash
gradlew installJar
```

## Contributing

### Bug Reports
- Submit bug reports in the [Issues](https://github.com/xStaBUx/Omaloon-mod-public/issues) section
- Include detailed steps to reproduce the issue
- Mention your game version and mod version

### Feature Suggestions
- Join our [Discord server](https://discord.gg/bNMT82Hswb) to suggest new content
- The Issues section is reserved for bug reports only

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

## Credits

### Developers
- stabu - Lead Dev
- uujuju - Dev
### Contributors
- randomguy - Weathers code
- zelaux - Arc library, some code
- saigononozomi - Music
2 changes: 1 addition & 1 deletion assets/mod.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"displayName": "Omaloon",
"name": "omaloon",
"author": "stabu_, uujuju, randomguy",
"author": "stabu, uujuju",
"main": "omaloon.OmaloonMod",
"description": "An ambitious modification aimed at expanding the game's standard campaign by adding a new star system.",
"version": "0.1.1A",
Expand Down
2 changes: 1 addition & 1 deletion mod.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"displayName": "Omaloon",
"name": "omaloon",
"author": "stabu_, uujuju, randomguy",
"author": "stabu, uujuju",
"main": "omaloon.OmaloonMod",
"description": "An ambitious modification aimed at expanding the game's standard campaign by adding a new star system.",
"version": "0.1.1A",
Expand Down
2 changes: 1 addition & 1 deletion src/omaloon/content/OlTechTree.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public static void load() {
});
});

node(carborundumPress, () -> {
node(carborundumPress, with(new Research(smallShelter)), () -> {
node(graphitePress, () -> {

});
Expand Down

0 comments on commit c383bc4

Please sign in to comment.