From 9b7335ead2c737b2b94fdefdd66cff78ec4b24ae Mon Sep 17 00:00:00 2001 From: Infendro Date: Sat, 13 Dec 2025 15:23:18 +0100 Subject: [PATCH] update README to match wiki --- README.md | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 91d9c55..8a9ae7a 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,15 @@ -# Kotlin ByteArray Utilities +# bytearray-kt -This library provides various utilities for working with ByteArray in Kotlin Multiplatform. +`bytearray-kt` is a Kotlin Multiplatform library that provides helper functions for working with `ByteArray`. -## Features +## Targets -* Multiplatform support - * JVM - * JavaScript - * Native (Linux) +| Target | Status | +|------------------|---------------| +| JVM | Supported | +| JavaScript | Supported | +| Native (Linux) | Supported | +| Native (Windows) | Not Supported | ## Installation @@ -19,6 +21,6 @@ repositories { } dependencies { - implementation("com.infendro:bytearray:1.1.1") + implementation("com.infendro:bytearray:1.2.4") } ```