Skip to content

Commit 6c163ac

Browse files
author
Nicholas Albion
committed
more name change updates
1 parent e9e865e commit 6c163ac

File tree

5 files changed

+11
-13
lines changed

5 files changed

+11
-13
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,12 @@ jobs:
6262
uses: actions/upload-artifact@v3
6363
with:
6464
name: distribution
65-
path: './build/distributions/idear.zip'
65+
path: './build/distributions/idiolect.zip'
6666

6767
publish-to-beta:
6868
runs-on: ubuntu-latest
6969
needs: build
70-
# Requires approval - https://github.com/OpenASR/idear/settings/environments/788279606/edit
70+
# Requires approval - https://github.com/OpenASR/idiolect/settings/environments/788279606/edit
7171
environment: beta
7272
env:
7373
INTELLIJ_CHANNEL: beta
@@ -92,7 +92,7 @@ jobs:
9292
publish-to-eap:
9393
runs-on: ubuntu-latest
9494
needs: build
95-
# Requires approval - https://github.com/OpenASR/idear/settings/environments/788279606/edit
95+
# Requires approval - https://github.com/OpenASR/idiolect/settings/environments/788279606/edit
9696
environment: eap
9797
env:
9898
INTELLIJ_CHANNEL: eap

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
uses: actions/upload-artifact@v3
8282
with:
8383
name: distribution
84-
path: './build/distributions/idear.zip'
84+
path: './build/distributions/idiolect.zip'
8585

8686
- name: Release
8787
uses: softprops/action-gh-release@v1
@@ -97,7 +97,7 @@ jobs:
9797
if: startsWith(github.ref, 'refs/tags/')
9898
runs-on: ubuntu-latest
9999
needs: build-and-release
100-
# Requires approval - https://github.com/OpenASR/idear/settings/environments/788239124/edit
100+
# Requires approval - https://github.com/OpenASR/idiolect/settings/environments/788239124/edit
101101
environment: Stable
102102
env:
103103
INTELLIJ_CHANNEL: Stable

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ Contributors who have IntelliJ IDEA installed can simply open the project. Other
3333

3434
Idiolect is implemented using the [IntelliJ Platform SDK](https://www.jetbrains.org/intellij/sdk/docs/intro/welcome.html). For more information about the plugin architecture, please refer to [the wiki page](https://github.com/OpenASR/idiolect/wiki/Architecture).
3535

36-
### Integration with Idear
36+
### Integration with Idiolect
3737

38-
[plugin.xml](src/main/resources/META-INF/plugin.xml) defines a number of `<extensionPoint>`s which would allow other plugins to integrate with or extend/customise the capabilities of Idear.
38+
[plugin.xml](src/main/resources/META-INF/plugin.xml) defines a number of `<extensionPoint>`s which would allow other plugins to integrate with or extend/customise the capabilities of Idiolect.
3939

4040
#### AsrProvider
4141
Listens for audio input, recognises speech to text and returns an `NlpRequest` with possible utterances.
@@ -61,7 +61,7 @@ Some APIs such as AWS Lex implement the functionality of `AsrProvider` and `NlpP
6161
Processes an `NlpRequest` (utterance/alternatives) and resolves an `NlpResponse` with `intentName` and `slots`.
6262
`ActionRecognizerManager.handleNlpRequest()` iterates through the `IntentResolver`s until it finds a match.
6363

64-
The Idear implementations use either exact-match or regular expressions on the recognized text.
64+
The Idiolect implementations use either exact-match or regular expressions on the recognized text.
6565
Alternative implementations may use AI to resolve the intent.
6666

6767
##### CustomPhraseRecognizer
@@ -87,7 +87,7 @@ You can add your own trigger phrase -> live template mapping in `~/.idea/phrases
8787
#### ttsProvider
8888
Reads audio prompts/feedback to the user
8989

90-
#### org.openasr.idear.nlp.NlpResultListener
90+
#### org.openasr.idiolect.nlp.NlpResultListener
9191
Any interfaces which are registered to the topic in plugin.xml under `<applicationListeners>` will be notified when
9292

9393
- listening state changes

src/main/java/org/openasr/idiolect/actions/recognition/LiveTemplateActionRecognizer.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import com.intellij.codeInsight.template.impl.TemplateSettings
88
import com.intellij.openapi.actionSystem.DataContext
99
import com.intellij.openapi.actionSystem.PlatformCoreDataKeys
1010
import com.intellij.openapi.editor.impl.EditorComponentImpl
11-
import org.openasr.idear.ide.PsiFileNoWhiteSpace
11+
import org.openasr.idiolect.ide.PsiFileNoWhiteSpace
1212
import org.openasr.idiolect.nlp.NlpGrammar
1313
import org.openasr.idiolect.nlp.NlpRequest
1414
import org.openasr.idiolect.nlp.NlpResponse

src/main/java/org/openasr/idiolect/ide/PsiFileNoWhiteSpace.kt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
package org.openasr.idear.ide
1+
package org.openasr.idiolect.ide
22

33
import com.intellij.openapi.util.Key
4-
import com.intellij.openapi.util.TextRange
54
import com.intellij.psi.*
6-
import com.intellij.psi.impl.source.tree.CompositeElement
75
import com.intellij.psi.impl.source.tree.java.PsiDeclarationStatementImpl
86
import com.intellij.psi.scope.PsiScopeProcessor
97
import com.intellij.psi.search.PsiElementProcessor

0 commit comments

Comments
 (0)