-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b2c499f
commit 8c29645
Showing
3 changed files
with
58 additions
and
8 deletions.
There are no files selected for viewing
Submodule scripts
updated
3 files
+3 −1 | .gitattributes | |
+46 −8 | gradle/build-info.gradle | |
+2 −2 | gradle/publishing.gradle |
44 changes: 44 additions & 0 deletions
44
src/main/java/org/auioc/mcmod/arnicalib/base/util/SemVer.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/* | ||
* Copyright (C) 2025 AUIOC.ORG | ||
* | ||
* This file is part of ArnicaLib, a mod made for Minecraft. | ||
* | ||
* ArnicaLib is free software: you can redistribute it and/or modify it under | ||
* the terms of the GNU General Public License as published by the Free | ||
* Software Foundation, either version 3 of the License, or (at your option) | ||
* any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, but WITHOUT | ||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
* more details. | ||
* | ||
* You should have received a copy of the GNU General Public License along with | ||
* this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package org.auioc.mcmod.arnicalib.base.util; | ||
|
||
import javax.annotation.Nullable; | ||
|
||
public record SemVer(int major, int minor, int patch, @Nullable String prerelease, @Nullable String build) { | ||
|
||
@Override | ||
public String toString() { | ||
return String.format( | ||
"%d.%d.%d%s%s", | ||
major, minor, patch, | ||
(isPrerelease()) ? "-" + prerelease : "", | ||
(build != null && !build.isEmpty()) ? "+" + build : "" | ||
); | ||
} | ||
|
||
public String core() { | ||
return String.format("%d.%d.%d", major, minor, patch); | ||
} | ||
|
||
public boolean isPrerelease() { | ||
return prerelease != null && !prerelease.isEmpty(); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters