Skip to content

Commit

Permalink
Merge pull request #69 from devoxx/issue-68
Browse files Browse the repository at this point in the history
Issue 68
  • Loading branch information
stephanj authored May 16, 2024
2 parents 45d0046 + a748f1e commit 5494e5c
Show file tree
Hide file tree
Showing 11 changed files with 39 additions and 12 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = "com.devoxx.genie"
version = "0.1.8"
version = "0.1.9"

repositories {
mavenCentral()
Expand Down
2 changes: 0 additions & 2 deletions src/main/java/com/devoxx/genie/ui/panel/BackgroundPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
import javax.swing.*;
import java.awt.*;

import static com.devoxx.genie.ui.util.DevoxxGenieColors.DEFAULT_BG_COLOR;
import static com.devoxx.genie.ui.util.DevoxxGenieColors.GRAY_COLOR;

public class BackgroundPanel extends JBPanel<BackgroundPanel> {
Expand All @@ -18,7 +17,6 @@ public class BackgroundPanel extends JBPanel<BackgroundPanel> {
public BackgroundPanel(String name) {
super.setName(name);
setName(name);
setBackground(DEFAULT_BG_COLOR);
setBorder(BorderFactory.createCompoundBorder(
new RoundBorder(GRAY_COLOR, 1, 5),
BorderFactory.createEmptyBorder(5, 5, 5, 5)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class DevoxxGenieColors {
public static final Color TRANSPARENT_COLOR = new JBColor(new Color(0, 0, 0, 0), new Color(0, 0, 0, 0));
public static final Color HOVER_BG_COLOR = new JBColor(new Color(192, 192, 192, 50), new Color(192, 192, 192, 50));

public static final Color DEFAULT_BG_COLOR = new JBColor(new Color(61, 63, 66), new Color(45, 48, 52));
public static final Color DEFAULT_BG_COLOR = new JBColor(new Color(61, 63, 66), new Color(255, 255, 255));

public static final Color PROMPT_BG_COLOR = new JBColor(new Color(42, 45, 48), new Color(33, 36, 39));

Expand Down
6 changes: 5 additions & 1 deletion src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,11 @@
</UL>
]]></description>

<change-notes><![CDATA[
<change-notes><![CDATA[]
<h2>v0.1.9</h2>
<UL>
<LI>Support light mode</LI>
</UL>
<h2>v0.1.8</h2>
<UL>
<LI>Feat #63: Support for Gemini Pro 1.5 & Flash using API Keys</LI>
Expand Down
6 changes: 3 additions & 3 deletions src/main/resources/icons/addNewFile.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/main/resources/icons/addNewFile_dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/main/resources/icons/devoxxHead_dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 3 additions & 2 deletions src/main/resources/icons/paperPlane.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/main/resources/icons/paperPlane_dark.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/main/resources/icons/pluginIcon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 5494e5c

Please sign in to comment.