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

feat: Dekstop Revamp #2877

Merged
merged 47 commits into from
May 29, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
47 commits
Select commit Hold shift click to select a range
98bc86b
feat: desktop revamp
urmauur May 6, 2024
f73f4e4
feat: refactor system monitor
urmauur May 7, 2024
78d2621
fix linter CI
urmauur May 8, 2024
27a5838
remove unused import component
urmauur May 8, 2024
c140c5f
added responsive and resizeable component
urmauur May 10, 2024
023dd9d
responsive and resizeable local server page
urmauur May 10, 2024
0091c3b
finalize responsive and resizeable component
urmauur May 10, 2024
1a3ceab
fix scroll custom ui
urmauur May 10, 2024
22c4470
remove react scroll to bottom from modal troubleshoot
urmauur May 10, 2024
a19ecfe
fix modal troubleshoot ui
urmauur May 12, 2024
0b59e38
fix setting gpu list
urmauur May 12, 2024
3efd394
text area custom scroll bar
urmauur May 12, 2024
a59b82d
fix padding message input
urmauur May 12, 2024
f923ba8
cleanup classname
urmauur May 13, 2024
e1c76d1
update inference engine model dropdown
urmauur May 13, 2024
49ef1f5
update loader style
urmauur May 13, 2024
aff17bb
update quick ask ui
urmauur May 13, 2024
a5c9a29
prepare theme provider
urmauur May 13, 2024
c979f5c
update dark theme
urmauur May 13, 2024
ced890a
remove update hotkey list model and navigation
urmauur May 13, 2024
aaaf184
fix: cleanup hardcode classname
urmauur May 13, 2024
3e5b709
fix: update feedback
urmauur May 14, 2024
87b4bce
Set native theme electron
urmauur May 14, 2024
a1a8445
update destop ui revamp from feedback
urmauur May 15, 2024
68c12c9
update button icon component insider icon chat input message
urmauur May 16, 2024
d13d4a2
update model dropdown ui
urmauur May 16, 2024
cf89c39
update tranaparent baclground
urmauur May 20, 2024
b332d3a
update logo model provider
urmauur May 20, 2024
04c8740
fix: set background material acrylic support to blur background windows
urmauur May 21, 2024
aaecf70
fix: update tranparent left and right panel
urmauur May 22, 2024
45e9ee2
fix: linter CI
urmauur May 22, 2024
d7fdb5c
update app using frameless window
urmauur May 22, 2024
df9a010
styling custom style minimize, maximize and close app
urmauur May 23, 2024
9be000d
temporary hidden maximize window
urmauur May 23, 2024
89b88f0
fix: responsive left and right panel
urmauur May 23, 2024
287c364
fix: enable click outside when leftpanel responsive
urmauur May 23, 2024
20019e6
fix: remove unused import
urmauur May 23, 2024
a84f195
update transparent variable css windows
urmauur May 24, 2024
2d4fc4e
fix: ui import model
urmauur May 24, 2024
d653ea2
feat: Support Theme system (#2946)
urmauur May 27, 2024
5fa8bb6
fix: update feedback missing state when refrash app
urmauur May 27, 2024
d95930a
fix: error test CI
urmauur May 27, 2024
062ac6b
chore: refactor useLoadThemes
urmauur May 28, 2024
aa6b9a5
chore: cleanup unused vars
urmauur May 28, 2024
1f240bf
fix: revert back menubar windows
urmauur May 28, 2024
f7d1b80
fix minor ui
urmauur May 28, 2024
331c1ba
fix: minor ui
urmauur May 28, 2024
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
Prev Previous commit
Next Next commit
fix: cleanup hardcode classname
  • Loading branch information
urmauur committed May 27, 2024
commit aaaf1849d1fe25ee8138c071a91b718ce22e8b8f
2 changes: 1 addition & 1 deletion web/screens/Settings/Advanced/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 346,7 @@ const Advanced = () => {
))}
</div>
{gpuEnabled && gpusInUse.length > 1 && (
<div className="mt-2 flex items-start space-x-2 text-yellow-500">
<div className="mt-2 flex items-start space-x-2 text-[hsla(var(--warning-bg))]">
<AlertTriangleIcon
size={16}
className="flex-shrink-0"
Expand Down
12 changes: 5 additions & 7 deletions web/screens/Settings/EditModelInfoModal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -119,27 119,25 @@ const EditModelInfoModal = () => {
content={
<div>
<div className="flex flex-row space-x-4 rounded-xl border border-[hsla(var(--app-border))] p-4">
<div className="flex h-10 w-10 items-center justify-center rounded-full bg-blue-400">
<div className="flex h-10 w-10 items-center justify-center rounded-full">
<Paperclip color="#fff" />
</div>

<div className="flex flex-1 flex-col">
<p>{editingModel.name}</p>
<div className="flex flex-row">
<span className="mr-2 text-sm text-[#71717A]">
<span className="mr-2 text-sm">
{toGibibytes(editingModel.size)}
</span>
<div className="flex flex-row space-x-1">
<span className="text-sm font-semibold text-[#71717A]">
Format:
</span>
<span className="text-sm font-normal text-[#71717A]">
<span className="text-sm font-semibold">Format:</span>
<span className="text-sm font-normal">
{editingModel.format.toUpperCase()}
</span>
</div>
</div>
<div className="mt-1 flex flex-row items-center space-x-2">
<span className="line-clamp-1 text-xs font-normal text-[#71717A]">
<span className="line-clamp-1 text-xs font-normal">
{modelPath}
</span>
<Button theme="ghost" onClick={onShowInFinderClick}>
Expand Down
7 changes: 5 additions & 2 deletions web/screens/Settings/SelectingModelModal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 71,11 @@ const SelectingModelModal = () => {
onClick={onSelectFileClick}
>
<div className="flex flex-col items-center justify-center">
<div className="mx-auto inline-flex h-12 w-12 items-center justify-center rounded-full bg-blue-200">
<UploadCloudIcon size={24} />
<div className="mx-auto inline-flex h-12 w-12 items-center justify-center rounded-full">
<UploadCloudIcon
size={24}
className="text-[hsla(var(--primary-bg))]"
/>
</div>
<div className="mt-4">
<span className="text-primary text-sm font-bold">
Expand Down
2 changes: 1 addition & 1 deletion web/screens/Thread/ThreadCenterPanel/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 158,7 @@ const ThreadCenterPanel = () => {
)}
>
<div className="mx-auto w-1/2 text-center">
<div className="mx-auto inline-flex h-12 w-12 items-center justify-center rounded-full bg-blue-200">
<div className="mx-auto inline-flex h-12 w-12 items-center justify-center rounded-full">
<UploadCloudIcon
size={24}
className="text-[hsla(var(--primary-bg))]"
Expand Down