diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 40ee278da..324a39d90 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -1,5 +1,5 @@ -name: "Release 1.5.2" +name: "Release 1.5.4" on: workflow_dispatch: # Allows manual triggering of the workflow @@ -56,11 +56,11 @@ jobs: name: release-artifact path: release/kokofixcomputers/panel.tar.gz - - name: "Release 1.5.2" + - name: "Release 1.5.4" uses: softprops/action-gh-release@v1 with: - tag_name: "1.5.2" - name: "Release 1.5.2" + tag_name: "1.5.4" + name: "Release 1.5.4" files: release/kokofixcomputers/panel.tar.gz # Specify the file to attach draft: false # Set to true if you want to create a draft release prerelease: false # Set to true if this is a pre-release diff --git a/CHANGELOG.md b/CHANGELOG.md index 6da64b1db..0d1915b09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +### Version 1.5.4 +- Center everything??????? (by kokodev) + +### Version 1.5.3 +- Update index.blade.php (by kokodev) +- Update index.blade.php (by kokodev) +- Update FileEditContainer.tsx (by kokodev) +- Update FileEditContainer.tsx (by kokodev) +- Use icon (by kokofixcomputers koko) + ### Version 1.5.2 - Update index.blade.php (by kokodev) - Update index.blade.php (by kokodev) diff --git a/VERSION b/VERSION index a73b43254..63ebd3fe3 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.5.2 \ No newline at end of file +1.5.4 \ No newline at end of file diff --git a/resources/scripts/components/dashboard/ServerRow.tsx b/resources/scripts/components/dashboard/ServerRow.tsx index 7fa16ef83..70b465e62 100644 --- a/resources/scripts/components/dashboard/ServerRow.tsx +++ b/resources/scripts/components/dashboard/ServerRow.tsx @@ -129,34 +129,36 @@ export default ({ server, className }: { server: Server; className?: string }) = {stats && ( -
- {/* CPU Indicator */} -
-
- - {stats.cpuUsagePercent.toFixed(2)}% -
+
+ {/* CPU Indicator */} +
+
+ + + {stats.cpuUsagePercent.toFixed(2)}% +
+
- {/* Memory Indicator */} -
-
- - - {bytesToString(stats.memoryUsageInBytes)} - -
+ {/* Memory Indicator */} +
+
+ + + {bytesToString(stats.memoryUsageInBytes)} +
+
- {/* Disk Indicator */} -
-
- - {bytesToString(stats?.diskUsageInBytes)} -
+ {/* Disk Indicator */} +
+
+ + {bytesToString(stats?.diskUsageInBytes)}
- )} +
+ )}
);