Skip to content

Commit b61a050

Browse files
committed
chore: update plugin.xml action properties and migrate to messages bundle
fix: set `untilBuild` in gradle script to null provider
1 parent 4aa63ad commit b61a050

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ intellijPlatform {
3636

3737
ideaVersion {
3838
sinceBuild = "233"
39-
untilBuild = ""
39+
untilBuild = provider { null }
4040
}
4141
}
4242

src/main/resources/META-INF/plugin.xml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,7 @@
3333

3434
<action
3535
id="com.ashotn.opencode.companion.actions.NewSessionAction"
36-
class="com.ashotn.opencode.companion.actions.NewSessionAction"
37-
text="New Session"
38-
description="Create a new OpenCode session and switch the TUI to it">
36+
class="com.ashotn.opencode.companion.actions.NewSessionAction">
3937
<keyboard-shortcut keymap="$default" first-keystroke="shift F12"/>
4038
</action>
4139

src/main/resources/messages/OpenCodeBundle.properties

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ configurable.opencode.displayName=OpenCode Companion
22

33
notification.group.opencode=OpenCode Companion
44

5+
action.com.ashotn.opencode.companion.actions.NewSessionAction.text=New Session
6+
action.com.ashotn.opencode.companion.actions.NewSessionAction.description=Create a new OpenCode session and switch the TUI to it
7+
58
action.com.ashotn.opencode.companion.actions.ClearSelectedSessionAction.text=Clear Selected Session
69
action.com.ashotn.opencode.companion.actions.ClearSelectedSessionAction.description=Clear the selected session and remove all diff highlights
710

0 commit comments

Comments
 (0)