Skip to content

Commit 3d6e88c

Browse files
committed
chore: update version to 0.5.0
1 parent 43ffdef commit 3d6e88c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ui/src/components/KvmCard.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ export default function KvmCard({
6363
* their actual version. Unparseable versions fall back to 0.4.91 for safety.
6464
*/
6565
const kvmUrl = useMemo(() => {
66-
const BACKWARDS_COMPATIBLE_VERSION = "0.4.91";
66+
const BACKWARDS_COMPATIBLE_VERSION = "0.5.0";
6767

68-
// Use device version if valid and >= 0.4.91, otherwise fall back to backwards-compatible version
68+
// Use device version if valid and >= 0.5.0, otherwise fall back to backwards-compatible version
6969
const shouldUseDeviceVersion =
7070
semver.valid(appVersion) && semver.gte(appVersion, BACKWARDS_COMPATIBLE_VERSION);
7171
const version = shouldUseDeviceVersion ? appVersion : BACKWARDS_COMPATIBLE_VERSION;

0 commit comments

Comments
 (0)