]> OzVa Git service - ozva-cloud/commitdiff
chore(release): version 0.32.0 (#183)
authorsigoden <sigoden@gmail.com>
Fri, 24 Feb 2023 00:21:57 +0000 (08:21 +0800)
committerGitHub <noreply@github.com>
Fri, 24 Feb 2023 00:21:57 +0000 (08:21 +0800)
.github/workflows/release.yaml
CHANGELOG.md
Cargo.lock
Cargo.toml
assets/index.css

index 199da713a1d17e5e4d1125b584056dc687926c3d..72a160dee20866d1d5d413962fa0cdada6900bb8 100644 (file)
@@ -8,6 +8,8 @@ on:
 jobs:
   release:
     name: Publish to Github Releases
+    permissions:
+      contents: write
     outputs:
       rc: ${{ steps.check-tag.outputs.rc }}
 
index bf9f3f4dbfcad44ae28fd99ce9ae2708df0f91ae..8a0d0aeb6d054080fae1ba5e2ec2e48b99ee1e54 100644 (file)
@@ -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
index 845053a34e13a578377b3aa0955da5845dded03c..456285a61665184fbbe7c55a9301d5976ebb9468 100644 (file)
@@ -416,7 +416,7 @@ checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
 
 [[package]]
 name = "dufs"
-version = "0.31.0"
+version = "0.32.0"
 dependencies = [
  "alphanumeric-sort",
  "anyhow",
index 2d5ce0e62c3c6f1ff86a3b56569d58a01913b919..068ecd91880e5d392c81c10b99283bf9089bdef8 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "dufs"
-version = "0.31.0"
+version = "0.32.0"
 edition = "2021"
 authors = ["sigoden <sigoden@gmail.com>"]
 description = "Dufs is a distinctive utility file server"
index 587bd5f9267e207ab30452f5c75229cd06c02950..4bc1ff42d22db01cbc42d3bdc11608ab258306e9 100644 (file)
@@ -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