diff --git a/CHANGELOG.md b/CHANGELOG.md index 9c0ee0ad3..c390e9763 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ All notable changes to this project will be documented in this file. +## [0.25.0] - 2022-07-06 + +### Features + +- Ui supports creating folder ([#91](https://github.com/sigoden/dufs/issues/91)) +- Ui supports move folder/file to new path ([#92](https://github.com/sigoden/dufs/issues/92)) +- Check permission on move/copy destination ([#93](https://github.com/sigoden/dufs/issues/93)) +- Add completions ([#97](https://github.com/sigoden/dufs/issues/97)) +- Limit the number of concurrent uploads ([#98](https://github.com/sigoden/dufs/issues/98)) + ## [0.24.0] - 2022-07-02 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 1f7a8a4f1..ea8f652c1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -379,7 +379,7 @@ checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" [[package]] name = "dufs" -version = "0.24.0" +version = "0.25.0" dependencies = [ "assert_cmd", "assert_fs", diff --git a/Cargo.toml b/Cargo.toml index 9f6dfb30f..b87a41612 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dufs" -version = "0.24.0" +version = "0.25.0" edition = "2021" authors = ["sigoden "] description = "Dufs is a distinctive utility file server" diff --git a/README.md b/README.md index 1f352d832..a3a86deea 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Dufs is a distinctive utility file server that supports static serving, uploading, searching, accessing control, webdav... -![demo](https://user-images.githubusercontent.com/4012553/174486522-7af350e6-0195-4f4a-8480-d9464fc6452f.png) +![demo](https://user-images.githubusercontent.com/4012553/177549931-130383ef-0480-4911-b9c2-0d9534a624b7.png) ## Features @@ -64,6 +64,7 @@ OPTIONS: --render-index Serve index.html when requesting a directory, returns 404 if not found index.html --render-try-index Serve index.html when requesting a directory, returns directory listing if not found index.html --render-spa Serve SPA(Single Page Application) + --completions Print shell completion script for [possible values: bash, elvish, fish, powershell, zsh] --tls-cert Path to an SSL/TLS certificate to serve with HTTPS --tls-key Path to the SSL/TLS certificate's private key -h, --help Print help information