Skip to content

Commit b637c91

Browse files
committed
icon and mac fix
1 parent 94f3702 commit b637c91

File tree

7 files changed

+823
-74
lines changed

7 files changed

+823
-74
lines changed

.idea/workspace.xml

Lines changed: 8 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build.gradle.kts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ dependencies {
2323
// Configure Gradle IntelliJ Plugin
2424
// Read more: https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html
2525
intellij {
26-
version.set("2022.2")
27-
type.set("IC") // use IntelliJ Community base, it supports all IDEs
28-
// localPath.set( // Example paths for local development
29-
// if (System.getProperty("os.name").lowercase().contains("windows")) {
30-
// "D:/Program Files/JetBrains/IntelliJ IDEA 2024.3.4.1"
31-
// } else {
32-
// "/Applications/PyCharm.app/Contents"
33-
// }
34-
// )
26+
// version.set("2022.2")
27+
// type.set("IC") // use IntelliJ Community base, it supports all IDEs
28+
localPath.set( // Example paths for local development
29+
if (System.getProperty("os.name").lowercase().contains("windows")) {
30+
"D:/Program Files/JetBrains/IntelliJ IDEA 2024.3.4.1"
31+
} else {
32+
"/Applications/PyCharm.app/Contents"
33+
}
34+
)
3535
}
3636

3737
tasks {

site/static/logo.svg

Lines changed: 51 additions & 50 deletions
Loading

src/main/java/components/ConfigDialog.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -522,11 +522,11 @@ public List<Boolean> getSelectedCheckboxes() {
522522
*/
523523
public static String getPythonInterpreter() {
524524
if (ProjectManager.getInstance().getOpenProjects().length == 0) {
525-
return "python";
525+
return "python3";
526526
}
527527
if (pythonInterpreterTextField.getText().isEmpty()
528528
|| pythonInterpreterTextField.getText().equals(selectPythonInterpreterPlaceHolder)) {
529-
return "python";
529+
return "python3";
530530
}
531531
return pythonInterpreterTextField.getText().equals(selectPythonInterpreterPlaceHolder)
532532
? selectPythonInterpreterPlaceHolder : pythonInterpreterTextField.getText();

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
Simple HTML elements (text formatting, paragraphs, and lists) can be added inside of <![CDATA[ ]]> tag.
1515
Guidelines: https://plugins.jetbrains.com/docs/marketplace/plugin-overview-page.html#plugin-description -->
1616
<description><![CDATA[
17-
CodeGRITS stands for <strong>G</strong>aze <strong>R</strong>ecording &amp; <strong>I</strong>DE
18-
<strong>T</strong>racking <strong>S</strong>ystem, which is a plugin specifically designed for SE researchers.
17+
CodeGRITS stands for <strong>G</strong>aze <strong>R</strong>ecording &amp; <strong>I</strong>DE <strong>T</strong>racking <strong>S</strong>ystem,
18+
which is a plugin specifically designed for empirical software engineering researchers.
1919
CodeGRITS is built on top of IntelliJ’s SDK, with wide compatibility with the entire family of JetBrains IDEs to
2020
track developers’ IDE interactions and eye gaze data. For more information, please visit our website
2121
<a href="https://codegrits.github.io/CodeGRITS/">CodeGRITS</a>.
@@ -51,7 +51,7 @@
5151
text="Pause Tracking">
5252
<add-to-group group-id="ToolsMenu" anchor="after" relative-to-action="CodeGRITS.StartStopTracking"/>
5353
</action>
54-
<action id="CodeGRITS.Config" class="actions.ConfigAction" text="Configuration"
54+
<action id="CodeGRITS.Config" class="actions.ConfigAction" text="CodeGRITS Configuration"
5555
description="Configure tracking options">
5656
<add-to-group group-id="ToolsMenu" anchor="after" relative-to-action="CodeGRITS.PauseResumeTracking"/>
5757
</action>

src/main/resources/META-INF/pluginIcon.svg

Lines changed: 375 additions & 4 deletions
Loading

0 commit comments

Comments
 (0)