Skip to content

Commit 3f59151

Browse files
committed
Add support for viewing if it is up to date via /pp list
1 parent 2fd4cbe commit 3f59151

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414
uses: actions/checkout@v4
1515
- name: Validate Gradle Wrapper
1616
uses: gradle/actions/wrapper-validation@v3
17-
- name: Set up JDK 17
17+
- name: Set up JDK 21
1818
uses: actions/setup-java@v4
1919
with:
2020
distribution: 'temurin'
21-
java-version: 17
21+
java-version: 21
2222
check-latest: true
2323
- name: Publish
2424
env:

plugin/src/main/kotlin/gg/flyte/pluginportal/plugin/command/ListSubCommand.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ class ListSubCommand {
4141
.suggestCommand("/pp view \"${plugin.platformId}\" ${plugin.platform} --byId")
4242
)
4343
.append(textDark(" (${plugin.platform.name}) "))
44-
// .append(SharedComponents.getUpdateButton(plugin))
45-
// .append(text(" "))
44+
.append(SharedComponents.getUpdateButton(plugin))
45+
.append(text(" "))
4646
.append(SharedComponents.getInstallButton(plugin, true))
4747
}
4848

0 commit comments

Comments
 (0)