Skip to content

Commit

Permalink
new version
Browse files Browse the repository at this point in the history
  • Loading branch information
Abdenasser committed Dec 8, 2024
1 parent cda6450 commit 511e0da
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 7 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "neohtop",
"version": "1.1.1",
"version": "1.1.2",
"description": "",
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "neohtop"
version = "1.1.1"
version = "1.1.2"
description = "A cross-platform system monitor"
authors = ["you"]
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
},
"productName": "NeoHtop",
"mainBinaryName": "NeoHtop",
"version": "1.1.1",
"version": "1.1.2",
"identifier": "com.neohtop.dev",
"plugins": {
"os": {
Expand Down
7 changes: 6 additions & 1 deletion src/lib/components/modals/ProcessDetailsModal.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,12 @@
: [];
</script>

<Modal {show} title="Process Details" maxWidth="1000px" {onClose}>
<Modal
{show}
title={`${process ? process.name.slice(0, 10) : "Unknown Process"} - Process Details`}
maxWidth="1000px"
{onClose}
>
{#if process}
<div class="modal-content">
<!-- Header Stats -->
Expand Down

0 comments on commit 511e0da

Please sign in to comment.