Update package version to 0.0.8, add warning about read speed inaccuracies in README and App.svelte, and change default target directory to undefined in store.

This commit is contained in:
Huakun Shen 2025-03-23 08:08:49 -04:00
parent 41f95a7af7
commit f900f944d8
No known key found for this signature in database
4 changed files with 9 additions and 2 deletions

View File

@ -4,3 +4,6 @@
- Store: https://kunkun.sh/store/disk-speed
![](https://i.imgur.com/8ISVrRe.png)
This extension's read speed is not accurate. Your OS may cache the test data and result in a much higher speed.
Will be fixed in the future.

View File

@ -3,7 +3,7 @@
"name": "kunkun-ext-disk-speed",
"license": "MIT",
"repository": "https://github.com/kunkunsh/kunkun-ext-disk-speed",
"version": "0.0.7",
"version": "0.0.8",
"type": "module",
"kunkun": {
"name": "Disk Speed",

View File

@ -126,6 +126,10 @@
<Button disabled={!$targetDir || running} on:click={startSpeedTest}>
Start Speed Test
</Button>
<small class="text-gray-500">
This extension's read speed may be inaccurate. Your OS may cache the test
data and result in a much higher speed. Will be fixed in the future.
</small>
<div class="grid h-96 w-full grid-cols-2">
<SpeedGauge
speedInMBps={writeSpeedMBps}

View File

@ -1,4 +1,4 @@
import { writable } from "svelte/store";
export const stress = writable(1);
export const targetDir = writable<string | undefined>("/Volumes/Portable2TB");
export const targetDir = writable<string | undefined>(undefined);