Skip to content

Commit

Permalink
feat : ui changes & new logo
Browse files Browse the repository at this point in the history
  • Loading branch information
fal3n-4ngel committed Jan 28, 2025
1 parent 00dddda commit 020c632
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions app/components/Dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -609,6 +609,7 @@ useEffect(() => {

await update(ref(database, `tasks/${taskId}`), {
status: "completed",
doneUserId: user.uid,
output: result,
completedAt: new Date().toISOString(),
});
Expand All @@ -618,6 +619,7 @@ useEffect(() => {
}
await update(ref(database, `tasks/${taskId}`), {
status: "failed",
doneUserId: user.uid,
output: `Error: ${(error as Error).toString()}`,
completedAt: new Date().toISOString(),
});
Expand Down Expand Up @@ -1186,8 +1188,10 @@ useEffect(() => {
</>
)}

<div className="mt-4">
<div className="mb-2 flex items-center space-x-2">
<div className={`mt-4 h-full ${
isDockerMode ? "max-h-[50%]" : "max-h-[30%]"
}`}>
<div className="mb-2 flex items-center space-x-2 ">
<Terminal className="h-4 w-4" />
<span className="font-medium">Output</span>
</div>
Expand Down
2 changes: 1 addition & 1 deletion app/data/data.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const currentDASHVersion = "1.9.0";
export const currentDASHVersion = "1.9.1";
Binary file modified src-tauri/icons/StoreLogo.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 src-tauri/icons/icon.ico
Binary file not shown.
Binary file modified src-tauri/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.

0 comments on commit 020c632

Please sign in to comment.