Skip to content

Commit

Permalink
CHANGELOG.md updated
Browse files Browse the repository at this point in the history
  • Loading branch information
damiano1996 committed Dec 9, 2024
1 parent 24236f8 commit 08ae2a7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 25 deletions.
22 changes: 1 addition & 21 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,4 @@

# InCoder Changelog

## [Unreleased]

## [0.0.1] - 2024-12-09

### Added

- Initial project setup.
- Added Anthropic API key support.

### Changed

- Improved Markdown parser.
- Updated plugin properties:
- pluginSinceBuild set to `233`.
- pluginUntilBuild updated to `243.*`.
- Documentation updates:
- Updated `README.md` and license.

### Fixed

- Optimized disk space usage for GitHub workflow.
## [Unreleased]
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.github.damiano1996.jetbrains.incoder.ui.components;

import com.github.damiano1996.jetbrains.incoder.tool.window.ToolWindowColors;
import com.intellij.openapi.util.NlsContexts;
import com.intellij.ui.JBColor;
import com.intellij.ui.components.JBTextArea;
Expand All @@ -11,6 +12,7 @@ public class DescriptionLabel extends JBTextArea {
public DescriptionLabel(@NotNull @NlsContexts.Label String text) {
super(text);
setForeground(JBColor.namedColor("Label.infoForeground"));
setBackground(ToolWindowColors.TRANSPARENT);
setWrapStyleWord(true);
setLineWrap(true);
setEditable(false);
Expand All @@ -19,12 +21,10 @@ public DescriptionLabel(@NotNull @NlsContexts.Label String text) {
}

@Override
public void setCaretPosition(int position) {
// Prevent caret movement
}
public void setCaretPosition(int position) {}

@Override
public boolean isFocusable() {
return false; // Ensure no focus
return false;
}
}

0 comments on commit 08ae2a7

Please sign in to comment.