Skip to content

Commit

Permalink
fix(eclipse): update chat panel api to 0.5.0. (#3651)
Browse files Browse the repository at this point in the history
* fix(eclipse): update chat panel api 0.5.0.

* fix(eclipse): add selection context sync.
  • Loading branch information
icycodes authored Jan 8, 2025
1 parent 6d46695 commit 20e34e2
Show file tree
Hide file tree
Showing 17 changed files with 529 additions and 297 deletions.
4 changes: 2 additions & 2 deletions clients/eclipse/feature/feature.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<feature
id="com.tabbyml.features.tabby4eclipse"
label="Tabby"
version="0.0.2.30"
version="0.0.2.31"
provider-name="com.tabbyml">

<description url="http://www.example.com/description">
Expand All @@ -19,6 +19,6 @@

<plugin
id="com.tabbyml.tabby4eclipse"
version="0.0.2.30"/>
version="0.0.2.31"/>

</feature>
2 changes: 1 addition & 1 deletion clients/eclipse/plugin/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Tabby Plugin for Eclipse
Bundle-SymbolicName: com.tabbyml.tabby4eclipse;singleton:=true
Bundle-Version: 0.0.2.30
Bundle-Version: 0.0.2.31
Bundle-Activator: com.tabbyml.tabby4eclipse.Activator
Bundle-Vendor: com.tabbyml
Require-Bundle: org.eclipse.ui,
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package com.tabbyml.tabby4eclipse.chat;

public abstract class ChatCommand {
public static final String EXPLAIN = "explain";
public static final String FIX = "fix";
public static final String GENERATE_DOCS = "generate-docs";
public static final String GENERATE_TESTS = "generate-tests";
}

This file was deleted.

Loading

0 comments on commit 20e34e2

Please sign in to comment.