Skip to content

Commit e9df523

Browse files
committed
fix: icon classes to existing icons #release:major
- Replace specific file type icons that are non existent with generic 'file-code' icon.
1 parent 5630be7 commit e9df523

File tree

3 files changed

+63
-17
lines changed

3 files changed

+63
-17
lines changed

app/components/ui/FileIcon.tsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ export function FileIcon({ filename, size = 'md', className }: FileIconProps) {
3939
}
4040

4141
if (['java', 'class', 'jar'].includes(extension)) {
42-
return 'i-ph:file-java';
42+
return 'i-ph:file-code';
4343
}
4444

4545
if (['php'].includes(extension)) {
46-
return 'i-ph:file-php';
46+
return 'i-ph:file-code';
4747
}
4848

4949
if (['rb', 'ruby'].includes(extension)) {
@@ -63,15 +63,15 @@ export function FileIcon({ filename, size = 'md', className }: FileIconProps) {
6363
}
6464

6565
if (['swift'].includes(extension)) {
66-
return 'i-ph:file-swift';
66+
return 'i-ph:file-code';
6767
}
6868

6969
if (['kt', 'kotlin'].includes(extension)) {
70-
return 'i-ph:file-kotlin';
70+
return 'i-ph:file-code';
7171
}
7272

7373
if (['dart'].includes(extension)) {
74-
return 'i-ph:file-dart';
74+
return 'i-ph:file-code';
7575
}
7676

7777
// Config files
@@ -80,7 +80,7 @@ export function FileIcon({ filename, size = 'md', className }: FileIconProps) {
8080
}
8181

8282
if (['xml', 'svg'].includes(extension)) {
83-
return 'i-ph:file-xml';
83+
return 'i-ph:file-code';
8484
}
8585

8686
if (['toml'].includes(extension)) {
@@ -157,7 +157,7 @@ export function FileIcon({ filename, size = 'md', className }: FileIconProps) {
157157
}
158158

159159
if (filename.startsWith('Dockerfile')) {
160-
return 'i-ph:docker-logo';
160+
return 'i-ph:file-code';
161161
}
162162

163163
// Default

changelog.md

Lines changed: 55 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,72 @@
1-
# 🚀 Release v1.0.0
1+
# 🚀 Release v0.0.7
22

33
## What's Changed 🌟
44

5-
### 🔄 Changes since v1.0.0-draft
5+
### 🔄 Changes since v0.0.6
66

77
### ✨ Features
88

9-
* lock files ([#1681](https://github.com/stackblitz-labs/bolt.diy/pull/1681)) by @Stijnus
10-
* github fix and ui improvements ([#1685](https://github.com/stackblitz-labs/bolt.diy/pull/1685)) by @Stijnus
9+
* added support for reasoning content ([#1168](https://github.com/stackblitz-labs/bolt.diy/pull/1168)) by @thecodacus
10+
* add deepseek-r1-distill-llama-70b to groq provider ([#1187](https://github.com/stackblitz-labs/bolt.diy/pull/1187)) by @saif78642
11+
* add Gemini 2.0 Flash-thinking-exp-01-21 model with 65k token support ([#1202](https://github.com/stackblitz-labs/bolt.diy/pull/1202)) by @saif78642
12+
* added more dynamic models, sorted and remove duplicate models ([#1206](https://github.com/stackblitz-labs/bolt.diy/pull/1206)) by @thecodacus
13+
* support for <think></think> tags to allow reasoning tokens formatted in UI ([#1205](https://github.com/stackblitz-labs/bolt.diy/pull/1205)) by @thecodacus
14+
* enhanced Code Context and Project Summary Features ([#1191](https://github.com/stackblitz-labs/bolt.diy/pull/1191)) by @thecodacus
15+
* added dynamic model support for openAI provider ([#1241](https://github.com/stackblitz-labs/bolt.diy/pull/1241)) by @thecodacus
16+
* bolt dyi new settings UI V3 ([#1245](https://github.com/stackblitz-labs/bolt.diy/pull/1245)) by @Stijnus
17+
* implement llm model search ([#1322](https://github.com/stackblitz-labs/bolt.diy/pull/1322)) by @kamilfurtak
18+
* diff-view-v2-no-conflict ([#1335](https://github.com/stackblitz-labs/bolt.diy/pull/1335)) by @Toddyclipsgg
19+
* netlify one click deployment ([#1376](https://github.com/stackblitz-labs/bolt.diy/pull/1376)) by @xKevIsDev
20+
* diff view v3 ([#1367](https://github.com/stackblitz-labs/bolt.diy/pull/1367)) by @Toddyclipsgg
21+
* added anthropic dynamic models ([#1374](https://github.com/stackblitz-labs/bolt.diy/pull/1374)) by @thecodacus
22+
* make user made changes persistent after reload ([#1387](https://github.com/stackblitz-labs/bolt.diy/pull/1387)) by @thecodacus
1123

1224

1325
### 🐛 Bug Fixes
1426

15-
* invalid line number error in search functionality ([#1682](https://github.com/stackblitz-labs/bolt.diy/pull/1682)) by @Stijnus
16-
* fix icon classes for consistency and clarity #release:major (870828d) by @xKevIsDev
27+
* docker prod env variable fix ([#1170](https://github.com/stackblitz-labs/bolt.diy/pull/1170)) by @thecodacus
28+
* improve push to github option ([#1111](https://github.com/stackblitz-labs/bolt.diy/pull/1111)) by @thecodacus
29+
* git import issue when importing bolt on bolt ([#1020](https://github.com/stackblitz-labs/bolt.diy/pull/1020)) by @thecodacus
30+
* issue with alternate message when importing from folder and git ([#1216](https://github.com/stackblitz-labs/bolt.diy/pull/1216)) by @thecodacus
31+
* tune the system prompt to avoid diff writing ([#1218](https://github.com/stackblitz-labs/bolt.diy/pull/1218)) by @thecodacus
32+
* removed chrome canary note (6a8449e) by @leex279
33+
* starter template icons fix and auto resize of custon icons are reverted ([#1298](https://github.com/stackblitz-labs/bolt.diy/pull/1298)) by @thecodacus
34+
* auto scroll fix, scroll allow user to scroll up during ai response ([#1299](https://github.com/stackblitz-labs/bolt.diy/pull/1299)) by @thecodacus
35+
* bug fix New UI / Feature tab - Default values hard-coded (294adfd) by @leex279
36+
* debounce profile update notifications to prevent toast spam (70b723d) by @xKevIsDev
37+
* bolt dyi UI bugfix ([#1342](https://github.com/stackblitz-labs/bolt.diy/pull/1342)) by @Stijnus
38+
* preserve complete provider settings in cookies (220e2da) by @xKevIsDev
39+
* for remove settings icon _index.tsx ([#1356](https://github.com/stackblitz-labs/bolt.diy/pull/1356)) by @Stijnus
40+
* fix enhance prompt to stop implementing full project instead of enhancing ([#1383](https://github.com/stackblitz-labs/bolt.diy/pull/1383)) by @thecodacus
1741

1842

19-
### ♻️ Code Refactoring
43+
### ⚙️ CI
2044

21-
* optimize error handling and npm install performance ([#1688](https://github.com/stackblitz-labs/bolt.diy/pull/1688)) by @xKevIsDev
45+
* updated Dockerfile to install latest version of corepack to ensure to have the right version to pnpm (c88938c) by @BaptisteCDC
2246

2347

48+
### 🔍 Other Changes
49+
50+
* new anthropogenic model for amazon bedrock (0fd039b) by @leex279
51+
* This reverts commit 871aefbe83c31660b32b53b63772ebba33ed7954, reversing ([#1335](https://github.com/stackblitz-labs/bolt.diy/pull/1335)) by @Toddyclipsgg
52+
* Update docker.yaml (stable/main deployment) (f0ea22e) by @leex279
53+
* Update Dockerfile - Test Bugfix Dockerpipeline (8e790d0) by @leex279
54+
* Update Dockerfile (5297081) by @leex279
55+
* Update docker.yaml (7dda793) by @leex279
56+
* Update docker.yaml (67c4051) by @leex279
57+
* Fix broken astro project git clone ([#1352](https://github.com/stackblitz-labs/bolt.diy/pull/1352)) by @Phr33d0m
58+
59+
60+
## ✨ First-time Contributors
61+
62+
A huge thank you to our amazing new contributors! Your first contribution marks the start of an exciting journey! 🌟
63+
64+
* 🌟 [@BaptisteCDC](https://github.com/BaptisteCDC)
65+
* 🌟 [@Phr33d0m](https://github.com/Phr33d0m)
66+
* 🌟 [@kamilfurtak](https://github.com/kamilfurtak)
67+
* 🌟 [@saif78642](https://github.com/saif78642)
68+
* 🌟 [@xKevIsDev](https://github.com/xKevIsDev)
69+
2470
## 📈 Stats
2571

26-
**Full Changelog**: [`v1.0.0-draft..v1.0.0`](https://github.com/stackblitz-labs/bolt.diy/compare/v1.0.0-draft...v1.0.0)
72+
**Full Changelog**: [`v0.0.6..v0.0.7`](https://github.com/stackblitz-labs/bolt.diy/compare/v0.0.6...v0.0.7)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"license": "MIT",
66
"sideEffects": false,
77
"type": "module",
8-
"version": "1.0.0",
8+
"version": "0.0.7",
99
"author": {
1010
"name": "bolt.diy team",
1111
"email": "[email protected]"

0 commit comments

Comments
 (0)