aboutsummaryrefslogtreecommitdiffstats
path: root/CHANGES.md
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2022-06-26 17:34:21 +0200
committerSven Gothel <[email protected]>2022-06-26 17:34:21 +0200
commit0c47029c1387a65f402f5addffa16e188fb3eed6 (patch)
treef90b941e8af839f2a77c18b0ed35076e7aa9c8fb /CHANGES.md
parent22c86f21aab87f2c005740a4270fa1ad2df3b007 (diff)
Add java mapping of `jau::io::ByteInStream` for file, URL and feed for general use
Diffstat (limited to 'CHANGES.md')
-rw-r--r--CHANGES.md6
1 files changed, 5 insertions, 1 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 4dd0296..600370a 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -10,10 +10,14 @@
**0.14.0** (TODO)
+* Add java mapping of `jau::io::ByteInStream` for file, URL and feed for general use
+ - `org.jau.nio.ByteInStream`, `org.jau.nio.ByteInStream_File`, `org.jau.nio.ByteInStream_URL`, `org.jau.nio.ByteInStream_Feed`
+ - Mapped `jau::io::to_ByteInStream()` to `org.jau.nio.ByteInStream.create()`
+ - Mapped `jau::io::uri` to `org.jau.nio.Uri`
* Add `jau::fs::mount_image()` and `umount()`
- `mount_image()` is currently only supported on `Linux`
- Enable testing on `Linux` via `-DTEST_WITH_SUDO=ON` as it requires `root` permissions.
- - Require to be calles as user with capabilities `cap_sys_admin,cap_setuid,cap_setgid+eip` or as root via sudo
+ - Require to be called as user with capabilities `cap_sys_admin,cap_setuid,cap_setgid+eip` or as root via sudo
- Uses fork() to have child-process seteuid(0) if not already for loop-control and mount only.
* Update Catch2 to v3.0.1, generated 2022-05-17 and adopt build and tests
* Use `libcurl` optional, enable via cmake option `-DUSE_LIBCURL=ON` and remove dependencies if unused.