From 65da9bedee81aa3d9d6d13ea1377e2253aeda965 Mon Sep 17 00:00:00 2001 From: sigoden Date: Fri, 24 Feb 2023 08:21:57 +0800 Subject: [PATCH] chore(release): version 0.32.0 (#183) --- .github/workflows/release.yaml | 2 ++ CHANGELOG.md | 18 ++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- assets/index.css | 13 +++++++++++-- 5 files changed, 33 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 199da71..72a160d 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -8,6 +8,8 @@ on: jobs: release: name: Publish to Github Releases + permissions: + contents: write outputs: rc: ${{ steps.check-tag.outputs.rc }} diff --git a/CHANGELOG.md b/CHANGELOG.md index bf9f3f4..8a0d0ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,24 @@ All notable changes to this project will be documented in this file. +## [0.32.0] - 2023-02-22 + +### Bug Fixes + +- Set the STOPSIGNAL to SIGINT for Dockerfile +- Remove Method::Options auth check ([#168](https://github.com/sigoden/dufs/issues/168)) +- Clear search input also clear query ([#178](https://github.com/sigoden/dufs/issues/178)) + +### Features + +- [**breaking**] Add option --allow-archive ([#152](https://github.com/sigoden/dufs/issues/152)) +- Use env var for args ([#170](https://github.com/sigoden/dufs/issues/170)) +- Hiding only directories instead of files ([#175](https://github.com/sigoden/dufs/issues/175)) +- API to search and list directories ([#177](https://github.com/sigoden/dufs/issues/177)) +- Support edit files ([#179](https://github.com/sigoden/dufs/issues/179)) +- Support new file ([#180](https://github.com/sigoden/dufs/issues/180)) +- Ui improves the login experience ([#182](https://github.com/sigoden/dufs/issues/182)) + ## [0.31.0] - 2022-11-11 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 845053a..456285a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -416,7 +416,7 @@ checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10" [[package]] name = "dufs" -version = "0.31.0" +version = "0.32.0" dependencies = [ "alphanumeric-sort", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 2d5ce0e..068ecd9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "dufs" -version = "0.31.0" +version = "0.32.0" edition = "2021" authors = ["sigoden "] description = "Dufs is a distinctive utility file server" diff --git a/assets/index.css b/assets/index.css index 587bd5f..4bc1ff4 100644 --- a/assets/index.css +++ b/assets/index.css @@ -58,8 +58,8 @@ body { margin-right: 10px; } -.toolbox > a, -.toolbox > div { +.toolbox>a, +.toolbox>div { /* vertically align with breadcrumb text */ height: 1.1rem; } @@ -253,6 +253,10 @@ body { fill: #fff; } + .head { + background-color: #111; + } + .searchbar { background-color: #111; border-color: #fff6; @@ -269,4 +273,9 @@ body { .paths-table tbody tr:hover { background-color: #1a1a1a; } + + .editor { + background: black; + color: white; + } } \ No newline at end of file