Skip to content

Commit 44e9a26

Browse files
drakehanguyenDrakeNguyen
andauthored
Release v0.1.4 (#39)
* Release v0.1.4 * Update prepare for new release. --------- Co-authored-by: DrakeNguyen <drake.ha.nguyen@gmail.com>
1 parent 7c71ba8 commit 44e9a26

6 files changed

Lines changed: 11 additions & 11 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "devpockit-frontend",
3-
"version": "0.1.0",
3+
"version": "0.1.4",
44
"description": "DevPockit Frontend - Developer Tools Web App",
55
"license": "MIT",
66
"repository": {

src/components/AppSidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ export function AppSidebar({
427427
value={codeEditorTheme}
428428
onValueChange={(value) => setCodeEditorTheme(value as CodeEditorTheme)}
429429
>
430-
<SelectTrigger className="h-[35px] w-full text-xs bg-neutral-100 dark:bg-neutral-800">
430+
<SelectTrigger borderless className="h-[35px] w-full text-xs bg-neutral-100 dark:bg-neutral-800">
431431
<div className="flex items-center gap-2">
432432
<Code className="h-3.5 w-3.5 text-neutral-600 dark:text-neutral-400" />
433433
<SelectValue />

src/components/layout/MobileTopBar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export function MobileTopBar({ onToolSelect, onHomeClick }: MobileTopBarProps) {
9191
value={codeEditorTheme}
9292
onValueChange={(value) => setCodeEditorTheme(value as CodeEditorTheme)}
9393
>
94-
<SelectTrigger className="h-8 w-full text-xs">
94+
<SelectTrigger borderless className="h-8 w-full text-xs">
9595
<SelectValue />
9696
</SelectTrigger>
9797
<SelectContent container={typeof document !== 'undefined' ? document.body : undefined}>

src/components/pages/AboutPage.tsx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export function AboutPage() {
4444
<div>
4545
<div className="font-semibold">Contribute & Star</div>
4646
<p className="text-sm text-muted-foreground">
47-
Since we&apos;re open-source, you can check out the code or contribute a new tool on GitHub.
47+
View source, report bugs, or submit a PR.
4848
</p>
4949
</div>
5050
</Link>
@@ -59,7 +59,7 @@ export function AboutPage() {
5959
<div>
6060
<div className="font-semibold">Suggest a Tool</div>
6161
<p className="text-sm text-muted-foreground">
62-
Have an idea for a feature that would save you 5 minutes a day? We&apos;re all ears!
62+
Open an issue with your idea.
6363
</p>
6464
</div>
6565
</Link>
@@ -74,8 +74,7 @@ export function AboutPage() {
7474
<div>
7575
<div className="font-semibold">Buy Us a Coffee</div>
7676
<p className="text-sm text-muted-foreground">
77-
If DevPockit has made your life a little easier, you can buy us a coffee.
78-
It helps cover the hosting costs and keeps us caffeinated for the next update.
77+
Fuel for late-night bug fixes.
7978
</p>
8079
</div>
8180
</Link>

src/components/ui/editor-settings-menu.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,16 +161,15 @@ export function EditorSettingsMenu({
161161
<DropdownMenuTrigger asChild>
162162
<button
163163
className={cn(
164-
'p-1 rounded hover:bg-neutral-200 dark:hover:bg-neutral-700 transition-colors',
165-
'text-neutral-900 dark:text-neutral-300',
164+
'flex items-center justify-center h-6 w-6 rounded-md border border-neutral-300 dark:border-neutral-600 bg-white dark:bg-neutral-900 text-muted-foreground hover:text-foreground hover:border-neutral-400 dark:hover:border-neutral-500 transition-colors',
166165
'disabled:opacity-50 disabled:cursor-not-allowed',
167166
className
168167
)}
169168
disabled={!isEditorAvailable}
170169
aria-label="Editor settings"
171170
title="Editor settings"
172171
>
173-
<ChevronUp className="h-4 w-4" />
172+
<ChevronUp className="h-3.5 w-3.5" />
174173
</button>
175174
</DropdownMenuTrigger>
176175
<DropdownMenuContent

src/components/ui/select.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,14 @@ const SelectTrigger = React.forwardRef<
1717
React.ComponentPropsWithoutRef<typeof SelectPrimitive.Trigger> & {
1818
label?: string;
1919
valueAlign?: 'left' | 'right' | 'center';
20+
borderless?: boolean;
2021
}
21-
>(({ className, children, label, valueAlign = 'center', ...props }, ref) => (
22+
>(({ className, children, label, valueAlign = 'center', borderless = false, ...props }, ref) => (
2223
<SelectPrimitive.Trigger
2324
ref={ref}
2425
className={cn(
2526
"inline-flex h-10 items-center justify-between rounded-lg bg-background pl-3 pr-2 py-[9.5px] text-sm focus:outline-hidden disabled:cursor-not-allowed disabled:opacity-50",
27+
!borderless && "border border-neutral-200 dark:border-neutral-700",
2628
className
2729
)}
2830
{...props}

0 commit comments

Comments
 (0)