mirror of
https://github.com/kunkunsh/kunkun-ext-disk-speed.git
synced 2025-04-04 11:16:43 +00:00
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:
parent
41f95a7af7
commit
f900f944d8
@ -4,3 +4,6 @@
|
|||||||
- Store: https://kunkun.sh/store/disk-speed
|
- Store: https://kunkun.sh/store/disk-speed
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
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.
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
"name": "kunkun-ext-disk-speed",
|
"name": "kunkun-ext-disk-speed",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "https://github.com/kunkunsh/kunkun-ext-disk-speed",
|
"repository": "https://github.com/kunkunsh/kunkun-ext-disk-speed",
|
||||||
"version": "0.0.7",
|
"version": "0.0.8",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"kunkun": {
|
"kunkun": {
|
||||||
"name": "Disk Speed",
|
"name": "Disk Speed",
|
||||||
|
@ -126,6 +126,10 @@
|
|||||||
<Button disabled={!$targetDir || running} on:click={startSpeedTest}>
|
<Button disabled={!$targetDir || running} on:click={startSpeedTest}>
|
||||||
Start Speed Test
|
Start Speed Test
|
||||||
</Button>
|
</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">
|
<div class="grid h-96 w-full grid-cols-2">
|
||||||
<SpeedGauge
|
<SpeedGauge
|
||||||
speedInMBps={writeSpeedMBps}
|
speedInMBps={writeSpeedMBps}
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { writable } from "svelte/store";
|
import { writable } from "svelte/store";
|
||||||
|
|
||||||
export const stress = writable(1);
|
export const stress = writable(1);
|
||||||
export const targetDir = writable<string | undefined>("/Volumes/Portable2TB");
|
export const targetDir = writable<string | undefined>(undefined);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user