generated from JetBrains/intellij-platform-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed 2022.3 Beta Project Startup. (#164)
- Loading branch information
1 parent
8635bd8
commit f9e9651
Showing
9 changed files
with
59 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,3 @@ | ||
### Added | ||
|
||
- Custom Content, please <a href="https://github.com/ani-memes/AMII/tree/main#custom-assets"> | ||
documentation</a> for more details! | ||
- 2022.3 Build Support | ||
|
||
### Fixed | ||
|
||
- `Show Previous Meme` not replaying sound for assets that have sound. | ||
- Reactions when debugging Flutter tests on Windows. | ||
- Issue | ||
preventing [Apex unit tests](https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_dev_guide.htm) | ||
reactions from showing up | ||
when [using the Illuminated Cloud 2](https://plugins.jetbrains.com/plugin/10253-illuminated-cloud-2) plugin. | ||
- Not being able to open any project from the Welcome Screen on the 2022.3 Beta build. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
src/main/kotlin/io/unthrottled/amii/actions/FireIdleAction.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package io.unthrottled.amii.actions | ||
|
||
import com.intellij.openapi.actionSystem.AnAction | ||
import com.intellij.openapi.actionSystem.AnActionEvent | ||
import com.intellij.openapi.project.DumbAware | ||
import io.unthrottled.amii.events.EVENT_TOPIC | ||
import io.unthrottled.amii.events.UserEvent | ||
import io.unthrottled.amii.events.UserEventCategory | ||
import io.unthrottled.amii.events.UserEvents | ||
import io.unthrottled.amii.tools.PluginMessageBundle | ||
|
||
class FireIdleAction : AnAction(), DumbAware { | ||
override fun actionPerformed(e: AnActionEvent) { | ||
val project = e.project | ||
project?.messageBus | ||
?.syncPublisher(EVENT_TOPIC) | ||
?.onDispatch( | ||
UserEvent( | ||
UserEvents.IDLE, | ||
UserEventCategory.NEUTRAL, | ||
PluginMessageBundle.message("user.event.idle.name"), | ||
project | ||
) | ||
) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters