Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v3.2.2 #114

Merged
merged 4 commits into from
Dec 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

- (Misc): We now have an icon pack! Search the marketplace for "**Catppuccin Icons**" to install it!

### Added

### Changed
Expand All @@ -12,6 +14,9 @@

### Fixed

- (UI): `TextField.selectionBackground` no longer matches `TextField.background`. Selected text should now clearly stand
out compared to non-selected text.

### Security

## 3.2.1 - 2023-10-31
Expand Down
21 changes: 18 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,24 @@ Settings</kbd> → <kbd>Plugins</kbd> → ⚙️ → <kbd>Install plugin from di

## Usage

- User Interface: <kbd>Settings</kbd> → <kbd>Appearance & Behaviour</kbd> → <kbd>Appearance</kbd> → Pick your
favourite flavour!
- Code Editor: <kbd>Settings</kbd> → <kbd>Editor</kbd> → <kbd>Color Scheme</kbd> → Pick your favourite flavour!
There are 4 lovely flavours for you to choose from: **Latte**, **Frappé**, **Macchiato** and **Mocha**.

### User Interface

1. Head to <kbd>Settings</kbd> → <kbd>Appearance & Behaviour</kbd> → <kbd>Appearance</kbd>
2. Pick your favourite flavour
3. **(Optional)** Restart your IDE

### Code Editor

1. Head to <kbd>Settings</kbd> → <kbd>Editor</kbd> → <kbd>Color Scheme</kbd>
2. Pick your favourite flavour
3. **(Optional)** Restart your IDE

### Icon Pack

We have created an icon pack, **Catppuccin Icons**, to compliment this theme. Follow the instructions on
the [GitHub repository](https://github.com/catppuccin/jetbrains-icons) to install it.

## Contributing

Expand Down
3 changes: 2 additions & 1 deletion generateFlavours/ui.theme.json
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,8 @@
"background": "panelBackground"
},
"TextField": {
"background": "secondaryBackground"
"background": "secondaryBackground",
"selectionBackground": "{{isLatte (opacityWithHex surface0 0.4) surface2}}"
},
"ToggleButton": {
"buttonColor": "primaryForeground",
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pluginGroup = com.github.catppuccin
pluginName = Catppuccin Theme
pluginVersion = 3.2.1
pluginVersion = 3.2.2
pluginSinceBuild = 231
pluginUntilBuild = 233.*
platformType = IC
Expand Down
31 changes: 25 additions & 6 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,29 @@ perfect for coding, designing, and much more!

<h3>Usage</h3>

There are 4 lovely flavours for you to choose from, <em>Latte, Frappé, Macchiato and Mocha!</em> If you are not fond of italics... don't worry! We've got you covered 😎
<br>
Head into <strong>Settings</strong> > <strong>Editor/Color Scheme</strong> and then pick the non-italic version of your favourite flavour! E.g. Catppuccin Mocha (no italics)
<p>There are 4 lovely flavours for you to choose from: <strong>Latte</strong>, <strong>Frappé</strong>, <strong>Macchiato</strong> and <strong>Mocha</strong>.</p>

<h4>User Interface</h4>

<ul>
<li>Head to <strong>Settings</strong> → <strong>Appearance & Behaviour</strong> → <strong>Appearance</strong></li>
<li>Pick your favourite flavour</li>
<li><strong>(Optional)</strong> Restart your IDE</li>
</ul>

<h4>Code Editor</h4>

<ul>
<li>Head to <strong>Settings</strong> → <strong>Editor</strong> → <strong>Color Scheme</strong></li>
<li>Pick your favourite flavour</li>
<li><strong>(Optional)</strong> Restart your IDE</li>
</ul>

<h4>Icon Pack</h4>

<p>
We have created an icon pack to compliment this theme! Search the marketplace for "**Catppuccin Icons**" to install it.
</p>

<h3>Help</h3>

Expand All @@ -35,9 +55,8 @@ For further help, see also:
<li><a href="https://github.com/catppuccin/jetbrains/issues?q=is%3Aissue+is%3Aopen+sort%3Aupdated-desc" target="_blank">Issue Tracker</a></li>
</ul>

<p align="center"><img src="https://raw.githubusercontent.com/catppuccin/catppuccin/main/assets/footers/gray0_ctp_on_line.png"/></p>
<p align="center">Copyright &copy; 2021-present <a href="https://github.com/catppuccin" target="_blank">Catppuccin Org</a>
<p align="center"><a href="https://github.com/catppuccin/catppuccin/blob/main/LICENSE"><img src="https://img.shields.io/static/v1.png?style=for-the-badge&label=License&message=MIT&logoColor=d9e0ee&colorA=363a4f&colorB=b7bdf8" border="0"/></a></p>
<p>Copyright &copy; 2021-present <a href="https://github.com/catppuccin" target="_blank">Catppuccin Org</a>
<p>LICENSE: <a href="https://github.com/catppuccin/jetbrains/blob/main/LICENSE">MIT</a></p>
]]></description>
<depends>com.intellij.modules.platform</depends>
<extensions defaultExtensionNs="com.intellij">
Expand Down