Skip to content

Commit

Permalink
Release 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Charles-Antoine Mathieu committed Oct 27, 2020
1 parent a05ae36 commit cae2200
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ language: go
sudo: required

go:
- 1.15.2
- 1.15.3

go_import_path: github.com/root-gg/plik

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ FROM plik-frontend-builder AS plik-frontend
RUN make clean-frontend frontend

##################################################################################
FROM golang:1.15.2-buster AS plik-builder
FROM golang:1.15.3-buster AS plik-builder

# Install needed binaries
RUN apt-get update && apt-get install -y build-essential crossbuild-essential-armhf crossbuild-essential-armel crossbuild-essential-arm64 crossbuild-essential-i386
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,16 @@ Plik is a scalable & friendly temporary file upload system ( wetransfer like ) i
- [Filelink for Plik](https://gitlab.com/joendres/filelink-plik) : Thunderbird Addon to upload attachments to Plik

### Version
1.3
1.3.1

### Installation

##### From release
To run plik, it's very simple :
```sh
$ wget https://github.com/root-gg/plik/releases/download/1.3/plik-1.3-linux-64bits.tar.gz
$ tar xzvf plik-1.3-linux-64bits.tar.gz
$ cd plik-1.3/server
$ wget https://github.com/root-gg/plik/releases/download/1.3.1/plik-1.3.1-linux-amd64.tar.gz
$ tar xzvf plik-1.3.1-linux-64bits.tar.gz
$ cd plik-1.3.1/server
$ ./plikd
```
Et voilà ! You now have a fully functional instance of Plik running on http://127.0.0.1:8080.
Expand Down
23 changes: 23 additions & 0 deletions changelog/1.3.1
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
Plik 1.3.1

Hi, today we're releasing Plik 1.3.1 !

Here is the changelog :

New
- Server Side Encryption support for S3 data backend
- Docker based cross-compilation and release process

Fixed
- Redirect to login page if not logged in and anonymous upload is disabled
- Fix npe when --info and not --server
- Fix server cmd user list to display all users if --provider is not used
- Fix authentication redirect URL when config.Path is set
- Add confirm dialog to delete upload and files actions

Misc
- All binaries are now statically linked
- Removed server releases for Windows and MacOS

Faithfully,
The plik team
1 change: 1 addition & 0 deletions client/test_downgrade.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ RELEASES=(
1.2.3
1.2.4
1.3-RC1
1.3
)

###
Expand Down
1 change: 1 addition & 0 deletions client/test_upgrade.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ RELEASES=(
1.2.3
1.2.4
1.3-RC1
1.3
)

###
Expand Down
2 changes: 1 addition & 1 deletion server/common/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"github.com/jinzhu/copier"
)

const version = "1.3"
const version = "1.3.1"

// GetVersion return the current package version
func GetVersion() string {
Expand Down

0 comments on commit cae2200

Please sign in to comment.