Skip to content
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
Binary file modified assets/icons/icon.icns
Binary file not shown.
Binary file modified assets/icons/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/icons/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion electron-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,14 @@ mac:
target:
- target: dmg
arch: universal
identity: null
identity: null
category: "public.app-category.developer-tools"
type: "distribution"
hardenedRuntime: true
entitlements: "assets/entitlements.mac.plist"
entitlementsInherit: "assets/entitlements.mac.plist"
gatekeeperAssess: false
# notarize: true

win:
icon: assets/icons/logo.png
Expand Down
4 changes: 2 additions & 2 deletions src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ export default function Header() {
</div>
)}
<div className='flex justify-center items-center gap-4'>
{/* Create task button - only show in main window */}
{!isTaskDetailMode && (
{/* Create task button - only show in home page */}
{!isTaskDetailMode && (router.pathname === '/home' || router.pathname === '/') && (
<Button
type="text"
icon={<ScheduledTaskIcon />}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export default function Home() {
<ModelConfigBar />

{/* Query input box */}
<div className='h-[160px]'>
<div className='h-[160px] p-4'>
<Input.TextArea
value={query}
onChange={(e) => setQuery(e.target.value)}
Expand Down