mirror of
https://github.com/kunkunsh/kunkun-ext-disk-speed.git
synced 2025-04-03 18:56:44 +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
|
||||
|
||||

|
||||
|
||||
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",
|
||||
"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",
|
||||
|
@ -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}
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user