Przeglądaj źródła

back to development

Nicola Murino 4 lat temu
rodzic
commit
957430e675

+ 1 - 1
.github/workflows/release.yml

@@ -5,7 +5,7 @@ on:
     tags: 'v*'
 
 env:
-  GO_VERSION: 1.15.4
+  GO_VERSION: 1.15
 
 jobs:
   create-release:

+ 1 - 0
README.md

@@ -4,6 +4,7 @@
 [![Code Coverage](https://codecov.io/gh/drakkan/sftpgo/branch/master/graph/badge.svg)](https://codecov.io/gh/drakkan/sftpgo/branch/master)
 [![Go Report Card](https://goreportcard.com/badge/github.com/drakkan/sftpgo)](https://goreportcard.com/report/github.com/drakkan/sftpgo)
 [![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)
+[![Docker Pulls](https://img.shields.io/docker/pulls/drakkan/sftpgo)](https://hub.docker.com/r/drakkan/sftpgo)
 [![Mentioned in Awesome Go](https://awesome.re/mentioned-badge.svg)](https://github.com/avelino/awesome-go)
 
 Fully featured and highly configurable SFTP server with optional FTP/S and WebDAV support, written in Go.

+ 6 - 0
pkgs/debian/changelog

@@ -1,3 +1,9 @@
+sftpgo (1.2.0-1ppa1) bionic; urgency=medium
+
+  * New upstream release.
+
+ -- Nicola Murino <nicola.murino@gmail.com>  Sun, 08 Nov 2020 06:59:19 +0100
+
 sftpgo (1.1.1-1ppa2) bionic; urgency=medium
 
   * Fix sftpgo data dir.

+ 4 - 11
pkgs/debian/patches/config.diff

@@ -2,7 +2,7 @@ Index: sftpgo/sftpgo.json
 ===================================================================
 --- sftpgo.orig/sftpgo.json
 +++ sftpgo/sftpgo.json
-@@ -69,7 +69,7 @@
+@@ -74,7 +74,7 @@
    },
    "data_provider": {
      "driver": "sqlite",
@@ -11,7 +11,7 @@ Index: sftpgo/sftpgo.json
      "host": "",
      "port": 5432,
      "username": "",
-@@ -80,14 +80,14 @@
+@@ -85,14 +85,14 @@
      "manage_users": 1,
      "track_quota": 2,
      "pool_size": 0,
@@ -25,10 +25,10 @@ Index: sftpgo/sftpgo.json
      "external_auth_scope": 0,
 -    "credentials_path": "credentials",
 +    "credentials_path": "/var/lib/sftpgo/credentials",
+     "prefer_database_credentials": false,
      "pre_login_hook": "",
      "post_login_hook": "",
-     "post_login_scope": 0,
-@@ -105,9 +105,9 @@
+@@ -111,9 +111,9 @@
    "httpd": {
      "bind_port": 8080,
      "bind_address": "127.0.0.1",
@@ -41,10 +41,3 @@ Index: sftpgo/sftpgo.json
      "auth_user_file": "",
      "certificate_file": "",
      "certificate_key_file": ""
-@@ -117,4 +117,4 @@
-     "ca_certificates": [],
-     "skip_tls_verify": false
-   }
--}
-\ No newline at end of file
-+}

+ 1 - 1
version/version.go

@@ -2,7 +2,7 @@ package version
 
 import "strings"
 
-const version = "1.2.0"
+const version = "1.2.0-dev"
 
 var (
 	commit = ""