Skip to content

Commit e7fdd3e

Browse files
committed
Switch PyCharm toolbar buttons to new group.
Bump version to 4.13.3.
1 parent 0c9ab7f commit e7fdd3e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

plugin/PySrc/space_tracer/about.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Don't put any code in here, because it must be safe to execute in setup.py. """
44

55
__title__ = 'space_tracer' # => name in setup.py
6-
__version__ = '4.13.2'
6+
__version__ = '4.13.3'
77
__author__ = "Don Kirkby"
88
__author_email__ = "donkirkby@gmail.com"
99
__description__ = "Trade time for space when debugging your code."

pycharm/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
group = "io.github.donkirkby"
9-
version = "4.13.2"
9+
version = "4.13.3"
1010

1111
repositories {
1212
mavenCentral()

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<action id="livepy.StartNewUI" class="io.github.donkirkby.livepycharm.StartActionNewUI" text="Start Live Coding"
4545
description="Run Python code as you type it, and show variable values."
4646
icon="LivePythonIcons.MEDIA_PLAY_DARK">
47-
<add-to-group group-id="RunToolbarMainActionGroup" anchor="last"/>
47+
<add-to-group group-id="MainToolbarRight" anchor="after" relative-to-action="NewUiRunWidget"/>
4848
</action>
4949
<action id="livepy.Turtle" class="io.github.donkirkby.livepycharm.TurtleAction" text="Start Live Turtle"
5050
description="Run Python code as you type it, and show a canvas for turtle graphics and more."
@@ -54,15 +54,15 @@
5454
<action id="livepy.TurtleNewUI" class="io.github.donkirkby.livepycharm.TurtleActionNewUI" text="Start Live Turtle"
5555
description="Run Python code as you type it, and show a canvas for turtle graphics and more."
5656
icon="LivePythonIcons.TURTLE_DARK">
57-
<add-to-group group-id="RunToolbarMainActionGroup" anchor="last"/>
57+
<add-to-group group-id="MainToolbarRight" anchor="after" relative-to-action="livepy.StartNewUI"/>
5858
</action>
5959
<action id="livepy.Stop" class="io.github.donkirkby.livepycharm.StopAction" text="Stop Live Coding"
6060
icon="LivePythonIcons.MEDIA_STOP">
6161
<add-to-group group-id="RunnerActions" anchor="last"/>
6262
</action>
6363
<action id="livepy.StopNewUI" class="io.github.donkirkby.livepycharm.StopActionNewUI" text="Stop Live Coding"
6464
icon="LivePythonIcons.MEDIA_STOP_DARK">
65-
<add-to-group group-id="RunToolbarMainActionGroup" anchor="last"/>
65+
<add-to-group group-id="MainToolbarRight" anchor="after" relative-to-action="livepy.TurtleNewUI"/>
6666
</action>
6767
</actions>
6868

0 commit comments

Comments
 (0)