Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
xYundy committed Mar 15, 2024
2 parents 227b2ee + 634fd90 commit 0112f1d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ assignees: ''
---

**Before continuing**
Be sure to read the mod wiki page to verify that your requested feature isn't already added. Pay particular attention to the *configuration* section
Be sure to read the mod wiki page to verify that your requested feature isn't already added. Please pay attention to create good description of feature so anyone will know what you want to achieve by proposed feature.
2 changes: 1 addition & 1 deletion README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ To use this mod you need to install it to your Minecraft Java Edition instance w
To install this mod:
1. Download this mod
1. from [releases](https://github.com/xYundy/SquaredAdditions/releases), [latest build action](https://github.com/xYundy/SquaredAdditions/actions/workflows/build.yml) or [Modrinth](https://modrinth.com/mod/squaredadditions).
2. or "one-click download and install" using your Minecraft launcher (ex. Modrinth Launcher, Prism Launcher)
2. or "one-click download and install" using your Minecraft launcher (ex. [Modrinth Launcher](https://modrinth.com/app), [Prism Launcher](https://prismlauncher.org))
2. Place mod `.jar` file in `mods` folder
3. Launch the game

Expand Down
12 changes: 8 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
plugins {
id 'fabric-loom' version '1.5-SNAPSHOT'
id 'maven-publish'
id 'fabric-loom' version "1.5.+"

id 'maven-publish' // maven publishing
}

version = project.mod_version
String runNumber = System.getenv("GITHUB_RUN_NUMBER")
String build = runNumber != null ? "build.$runNumber" : "local"
version = "$mod_version-$build+mc$minecraft_version"

group = project.maven_group

base {
Expand Down Expand Up @@ -92,4 +96,4 @@ publishing {
// The repositories here will be used for publishing your artifact, not for
// retrieving dependencies.
}
}
}

0 comments on commit 0112f1d

Please sign in to comment.