From af9ef83ce37e3bf422abce915e94b74e8a0b397c Mon Sep 17 00:00:00 2001 From: Patrick Hener Date: Fri, 22 Nov 2024 09:21:22 +0100 Subject: [PATCH] README and version --- README.md | 7 +++++-- main.go | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2d4dc28..e2559e4 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -![Version](https://img.shields.io/badge/Version-v1.0.0-green) +![Version](https://img.shields.io/badge/Version-v1.0.1-green) [![GitHub](https://img.shields.io/github/license/patrickhener/goshs)](https://github.com/patrickhener/goshs/blob/master/LICENSE) ![GitHub go.mod Go version](https://img.shields.io/github/go-mod/go-version/patrickhener/goshs) [![GitHub issues](https://img.shields.io/github/issues-raw/patrickhener/goshs)](https://github.com/patrickhener/goshs/issues) @@ -22,7 +22,10 @@ For a detailed documentation go to [goshs.de](https://goshs.de) # Features * Download or view files * Bulk download as .zip file -* Upload files (Drag & Drop) +* Upload files + * POST request + * PUT request + * Drag & Drop in web interface * Delete files * Individually * Bulk delete diff --git a/main.go b/main.go index 239dabc..2c8ddfb 100644 --- a/main.go +++ b/main.go @@ -17,7 +17,7 @@ import ( "github.com/patrickhener/goshs/utils" ) -const goshsVersion = "v1.0.0" +const goshsVersion = "v1.0.1" var ( port = 8000