fix(intellij): fix compatibility for build 2023.x. Bump version to 0.1.1. (#335)

release-0.0
Zhiming Ma 2023-08-04 14:18:14 +08:00 committed by GitHub
parent 7a61ceac1b
commit a90a195807
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 4 deletions

View File

@ -5,7 +5,7 @@ plugins {
}
group = "com.tabbyml"
version = "0.1.0"
version = "0.1.1"
repositories {
mavenCentral()

View File

@ -31,7 +31,7 @@ class StatusBarWidgetFactory : StatusBarEditorBasedWidgetFactory() {
override fun createWidget(project: Project): StatusBarWidget {
return object : EditorBasedStatusBarPopup(project, false) {
val scope: CoroutineScope = CoroutineScope(Dispatchers.Main)
val updateStatusScope: CoroutineScope = CoroutineScope(Dispatchers.Main)
val text = "Tabby"
var icon = AllIcons.Actions.Refresh
var tooltip = "Tabby: Initializing"
@ -39,7 +39,7 @@ class StatusBarWidgetFactory : StatusBarEditorBasedWidgetFactory() {
init {
val settings = service<ApplicationSettingsState>()
val agentService = service<AgentService>()
scope.launch {
updateStatusScope.launch {
settings.state.combine(agentService.status) { settings, agentStatus ->
Pair(settings, agentStatus)
}.collect {

View File

@ -16,12 +16,14 @@
<description><![CDATA[
<h1 id="tabby-plugin-for-intellij-platform">Tabby Plugin for IntelliJ Platform</h1>
<p>Tabby is an AI coding assistant that can suggest multi-line code or full functions in real-time.</p>
<p><strong>Requirements</strong> Tabby plugin requires <a href="https://nodejs.org/">Node.js</a> 16.0+ installed and added into <code>PATH</code> enviroment variable. </p>
<br/>
<p>For more information, please check out our <a href="https://tabbyml.com/">Website</a> and <a href="https://github.com/TabbyML/tabby">GitHub</a>.
If you encounter any problem or have any suggestion, please <a href="https://github.com/TabbyML/tabby/issues/new">open an issue</a>, or join our <a href="https://join.slack.com/t/tabbycommunity/shared_invite/zt-1xeiddizp-bciR2RtFTaJ37RBxr8VxpA">Slack community</a> for more support!</p>
<h2 id="demo">Demo</h2>
<p>Try our online demo <a href="https://tabbyml.github.io/tabby/playground">here</a>.</p>
<p><img src="https://tabbyml.github.io/tabby/img/demo.gif" alt="Demo"></p>
<h2 id="requirements">Requirements</h2>
Tabby plugin requires <a href="https://nodejs.org/">Node.js</a> 16.0+ installed and added into <code>PATH</code> enviroment variable. </p>
<h2 id="get-started">Get Started</h2>
<ol>
<li>Please following <a href="https://tabbyml.github.io/tabby/docs/self-hosting/">this guide</a> to setup a self-hosted Tabby server.</li>