diff --git a/CHANGELOG.md b/CHANGELOG.md index bd7ecb2..9dfdb78 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. +## [0.23.1] - 2022-06-30 + +### Bug Fixes + +- Safari layout and compatibility ([#83](https://github.com/sigoden/dufs/issues/83)) +- Permissions of unzipped files ([#84](https://github.com/sigoden/dufs/issues/84)) + ## [0.23.0] - 2022-06-29 ### Features diff --git a/Cargo.lock b/Cargo.lock index 98ea18e..53e624c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -322,9 +322,9 @@ dependencies = [ [[package]] name = "clap" -version = "3.2.7" +version = "3.2.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5b7b16274bb247b45177db843202209b12191b631a14a9d06e41b3777d6ecf14" +checksum = "190814073e85d238f31ff738fcb0bf6910cedeb73376c87cd69291028966fd83" dependencies = [ "bitflags", "clap_lex", @@ -478,7 +478,7 @@ checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" [[package]] name = "dufs" -version = "0.23.0" +version = "0.23.1" dependencies = [ "assert_cmd", "assert_fs", diff --git a/Cargo.toml b/Cargo.toml index e94b4bb..6dddb0c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dufs" -version = "0.23.0" +version = "0.23.1" edition = "2021" authors = ["sigoden "] description = "Dufs is a distinctive utility file server" diff --git a/README.md b/README.md index 4dd67bf..4824b71 100644 --- a/README.md +++ b/README.md @@ -180,11 +180,11 @@ dufs -a @[@|@*] For example: ``` -dufs -a /@admin:pass@* -a /ui@designer:pass1 -A +dufs -a /@admin:pass1@* -a /ui@designer:pass2 -A ``` - All files/folders are public to view/download. -- Account `admin:pass` can upload/delete/view/download any files/folders. -- Account `designer:pass1` can upload/delete/view/download any files/folders in the `ui` folder. +- Account `admin:pass1` can upload/delete/view/download any files/folders. +- Account `designer:pass2` can upload/delete/view/download any files/folders in the `ui` folder. ## License