Skip to content

Commit 68f60fe

Browse files
committed
update: increment version to 1.0.2 and adjust console output formatting
1 parent d56a1cf commit 68f60fe

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Automatic update checking and configuration management library for Minecraft plu
2929
<dependency>
3030
<groupId>com.github.NighterDevelopment</groupId>
3131
<artifactId>PluginUpdateCore</artifactId>
32-
<version>1.0.0</version>
32+
<version>1.0.2</version>
3333
<scope>compile</scope>
3434
</dependency>
3535
</dependencies>
@@ -43,7 +43,7 @@ repositories {
4343
}
4444
4545
dependencies {
46-
implementation 'com.github.NighterDevelopment:PluginUpdateCore:1.0.0'
46+
implementation 'com.github.NighterDevelopment:PluginUpdateCore:1.0.2'
4747
}
4848
```
4949

@@ -204,7 +204,7 @@ public class MyPlugin extends JavaPlugin {
204204
3. **Console Output Example**:
205205
```
206206
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
207-
🔮 UPDATE AVAILABLE 🔮
207+
🔮 UPDATE AVAILABLE 🔮
208208
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
209209
210210
📦 Current version: 1.0.0

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
}
55

66
group = 'io.github.pluginupdatecore'
7-
version = '1.0.1'
7+
version = '1.0.2'
88

99
repositories {
1010
mavenCentral()

src/main/java/io/github/pluginupdatecore/updater/UpdateChecker.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ private void displayConsoleUpdateMessage() {
141141
plugin.getLogger().info(frameColor +
142142
"━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━" + CONSOLE_RESET);
143143
plugin.getLogger().info(frameColor + CONSOLE_BRIGHT_GREEN +
144-
" 🔮 UPDATE AVAILABLE 🔮" + CONSOLE_RESET);
144+
" 🔮 UPDATE AVAILABLE 🔮" + CONSOLE_RESET);
145145
plugin.getLogger().info(frameColor +
146146
"━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━" + CONSOLE_RESET);
147147
plugin.getLogger().info("");
@@ -153,7 +153,7 @@ private void displayConsoleUpdateMessage() {
153153
plugin.getLogger().info(frameColor +
154154
CONSOLE_RESET + "📥 Download the latest version at:" + CONSOLE_RESET);
155155
plugin.getLogger().info(frameColor + " " +
156-
CONSOLE_LAVENDER + formatConsoleText(modrinthLink, 51) + CONSOLE_RESET);
156+
CONSOLE_LAVENDER + formatConsoleText(modrinthLink, 100) + CONSOLE_RESET);
157157
plugin.getLogger().info("");
158158
plugin.getLogger().info(frameColor +
159159
"━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━" + CONSOLE_RESET);

0 commit comments

Comments
 (0)