Skip to content

Commit 1135e2f

Browse files
author
WavyCat
committed
feat: update Catppuccin icons to v1.24.0
1 parent aa61a19 commit 1135e2f

5 files changed

Lines changed: 49 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
## [Unreleased]
66

7+
### Changed
8+
9+
- Updated Catppuccin icons to v1.24.0
10+
711
## [2.2.1] - 2025-08-10
812

913
### Fixed

builder_config.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -544,6 +544,20 @@
544544
"vala": "Vala",
545545
"vapi": "VAPI",
546546
"wrangler": "Wrangler",
547+
"3d": "3D",
548+
"blink": "Blink",
549+
"foreman": "Foreman",
550+
"lua-check": "Luacheck",
551+
"lua-client": "Lua client-side script",
552+
"lua-server": "Lua server-side script",
553+
"lua-test": "Lua test file",
554+
"luau-check": "Luau type checker",
555+
"luau-client": "Luau client-side script",
556+
"luau-config": "Luau config file",
557+
"luau-server": "Luau server-side script",
558+
"luau-test": "Luau test file",
559+
"moonwave": "Moonwave",
560+
"rsml": "RSML",
547561
"_file": {
548562
"title": "File",
549563
"altName": "file",

generate/vscode-icons

Submodule vscode-icons updated 92 files

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pluginGroup = cat.wavy
44
pluginName = Cat Activity
55
pluginRepositoryUrl = https://github.com/wavy-cat/Cat-Activity
66
# SemVer format -> https://semver.org
7-
pluginVersion = 2.2.1
7+
pluginVersion = 2.3.0
88

99
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1010
pluginSinceBuild = 243

src/main/kotlin/cat/wavy/catactivity/types/FileType.kt

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -373,6 +373,20 @@ enum class FileType(
373373
VALA("Vala", "vala"),
374374
VAPI("VAPI", "vapi"),
375375
WRANGLER("Wrangler", "wrangler"),
376+
A_3D("3D", "3d"),
377+
BLINK("Blink", "blink"),
378+
FOREMAN("Foreman", "foreman"),
379+
LUA_CHECK("Luacheck", "lua-check"),
380+
LUA_CLIENT("Lua client-side script", "lua-client"),
381+
LUA_SERVER("Lua server-side script", "lua-server"),
382+
LUA_TEST("Lua test file", "lua-test"),
383+
LUAU_CHECK("Luau type checker", "luau-check"),
384+
LUAU_CLIENT("Luau client-side script", "luau-client"),
385+
LUAU_CONFIG("Luau config file", "luau-config"),
386+
LUAU_SERVER("Luau server-side script", "luau-server"),
387+
LUAU_TEST("Luau test file", "luau-test"),
388+
MOONWAVE("Moonwave", "moonwave"),
389+
RSML("RSML", "rsml"),
376390
FILE("File", "_file")
377391
}
378392

@@ -394,9 +408,7 @@ fun getFileTypeByName(fileType: String, fileName: String, extension: String?) =
394408
"humans.txt" -> FileType.HUMANS
395409
"justfile", ".justfile" -> FileType.JUST
396410
"artisan" -> FileType.LARAVEL
397-
".luaurc" -> FileType.LUAU
398411
"book.toml" -> FileType.MDBOOK
399-
"mid", "midi" -> FileType.MIDI
400412
"pixi.toml" -> FileType.PIXI
401413
"pixi.lock" -> FileType.PIXI_LOCK
402414
"poetry.lock" -> FileType.POETRY_LOCK
@@ -577,6 +589,11 @@ fun getFileTypeByName(fileType: String, fileName: String, extension: String?) =
577589
".styluaignore" -> FileType.STYLUA_IGNORE
578590
"stylua.toml" -> FileType.STYLUA
579591
"wrangler.toml", "wrangler.json", "wrangler.jsonc" -> FileType.WRANGLER
592+
"foreman.toml", "aftman.toml" -> FileType.FOREMAN
593+
".luacheckrc" -> FileType.LUA_CHECK
594+
"selene.toml", "selene.yml", "selene.yaml" -> FileType.LUAU_CHECK
595+
".luaurc" -> FileType.LUAU_CONFIG
596+
"moonwave.toml" -> FileType.MOONWAVE
580597
else -> when (fileType) {
581598
"Dockerfile" -> FileType.DOCKER
582599
"JAVA" -> FileType.JAVA
@@ -618,6 +635,7 @@ fun getFileTypeByName(fileType: String, fileName: String, extension: String?) =
618635
"just" -> FileType.JUST
619636
"blade.php", "inky.php" -> FileType.LARAVEL
620637
"luau" -> FileType.LUAU
638+
"mid", "midi" -> FileType.MIDI
621639
"pptx", "ppt", "pptm", "potx", "potm", "ppsx", "ppsm", "pps", "ppam", "ppa", "odp" -> FileType.MS_POWERPOINT
622640
"doc", "docm", "docx", "dot", "dotm", "dotx", "rtf", "odt" -> FileType.MS_WORD
623641
"org" -> FileType.ORG
@@ -787,6 +805,15 @@ fun getFileTypeByName(fileType: String, fileName: String, extension: String?) =
787805
"sdf", "sdt" -> FileType.SLIDESK
788806
"vala" -> FileType.VALA
789807
"vapi" -> FileType.VAPI
808+
"fbx", "glb", "gltf", "ma", "mb", "obj", "prc", "stl", "u3d", "usd" -> FileType.A_3D
809+
"blink" -> FileType.BLINK
810+
"client.lua" -> FileType.LUA_CLIENT
811+
"server.lua" -> FileType.LUA_SERVER
812+
"spec.lua", "test.lua" -> FileType.LUA_TEST
813+
"client.luau" -> FileType.LUAU_CLIENT
814+
"server.luau" -> FileType.LUAU_SERVER
815+
"spec.luau", "test.luau" -> FileType.LUAU_TEST
816+
"rsml" -> FileType.RSML
790817
else -> FileType.FILE
791818
}
792819
}

0 commit comments

Comments
 (0)