From 4fe51f7ccef11c1ab7edeeafe156cab12b8c4c4a Mon Sep 17 00:00:00 2001 From: Nicola Murino Date: Sat, 7 Mar 2020 13:36:46 +0100 Subject: [PATCH] set version to 0.9.6 --- docs/service.md | 9 +++++---- sftpgo.iss | 9 ++------- utils/version.go | 2 +- 3 files changed, 8 insertions(+), 12 deletions(-) diff --git a/docs/service.md b/docs/service.md index 20ebaeedb..b19af39fd 100644 --- a/docs/service.md +++ b/docs/service.md @@ -16,10 +16,10 @@ sudo install -Dm755 sftpgo /usr/bin/sftpgo # install the default configuration file, edit it if required sudo install -Dm644 sftpgo.json /etc/sftpgo/ # override some configuration keys using environment variables -sudo echo "SFTPGO_HTTPD__TEMPLATES_PATH=/var/lib/sftpgo/templates" > /etc/sftpgo/sftpgo.env -sudo echo "SFTPGO_HTTPD__STATIC_FILES_PATH=/var/lib/sftpgo/static" >> /etc/sftpgo/sftpgo.env -sudo echo "SFTPGO_HTTPD__BACKUPS_PATH=/var/lib/sftpgo/backups" >> /etc/sftpgo/sftpgo.env -sudo echo "SFTPGO_DATA_PROVIDER__CREDENTIALS_PATH=/var/lib/sftpgo/credentials" >> /etc/sftpgo/sftpgo.env +sudo sh -c 'echo "SFTPGO_HTTPD__TEMPLATES_PATH=/var/lib/sftpgo/templates" > /etc/sftpgo/sftpgo.env' +sudo sh -c 'echo "SFTPGO_HTTPD__STATIC_FILES_PATH=/var/lib/sftpgo/static" >> /etc/sftpgo/sftpgo.env' +sudo sh -c 'echo "SFTPGO_HTTPD__BACKUPS_PATH=/var/lib/sftpgo/backups" >> /etc/sftpgo/sftpgo.env' +sudo sh -c 'echo "SFTPGO_DATA_PROVIDER__CREDENTIALS_PATH=/var/lib/sftpgo/credentials" >> /etc/sftpgo/sftpgo.env' # install static files and templates for the web UI sudo cp -r static templates /var/lib/sftpgo/ # initialize the configured data provider @@ -55,6 +55,7 @@ sudo mkdir -p /usr/local/opt/sftpgo/init \ sudo cp sftpgo /usr/local/opt/sftpgo/bin/ # install the launchd service sudo cp init/com.github.drakkan.sftpgo.plist /usr/local/opt/sftpgo/init/ +sudo chown root:wheel /usr/local/opt/sftpgo/init/com.github.drakkan.sftpgo.plist # install the default configuration file, edit it if required sudo cp sftpgo.json /usr/local/opt/sftpgo/etc/ # install static files and templates for the web UI diff --git a/sftpgo.iss b/sftpgo.iss index f82ee13bb..640a69bce 100644 --- a/sftpgo.iss +++ b/sftpgo.iss @@ -2,15 +2,13 @@ ; You need to change the paths for the source files to match your environment #define MyAppName "SFTPGo" -#define MyAppVersion "0.9.5.1" +#define MyAppVersion "0.9.6" #define MyAppURL "https://github.com/drakkan/sftpgo" #define MyAppExeName "sftpgo.exe" #define MyAppDir "C:\Users\vbox\Desktop\sftpgo_setup" #define MyOutputDir "C:\Users\vbox\Desktop" [Setup] -; NOTE: The value of AppId uniquely identifies this application. Do not use the same AppId value in installers for other applications. -; (To generate a new GUID, click Tools | Generate GUID inside the IDE.) AppId={{1FB9D57F-00DD-4B1B-8798-1138E5CE995D} AppName={#MyAppName} AppVersion={#MyAppVersion} @@ -21,8 +19,6 @@ AppUpdatesURL={#MyAppURL} DefaultDirName={autopf}\{#MyAppName} DefaultGroupName={#MyAppName} LicenseFile={#MyAppDir}\LICENSE.txt -; Uncomment the following line to run in non administrative install mode (install for current user only.) -;PrivilegesRequired=lowest OutputDir={#MyOutputDir} OutputBaseFilename=sftpgo_windows_x86_64 Compression=lzma @@ -40,14 +36,12 @@ Name: "english"; MessagesFile: "compiler:Default.isl" [Files] Source: "{#MyAppDir}\sftpgo.exe"; DestDir: "{app}"; Flags: ignoreversion Source: "{#MyAppDir}\sftpgo.db"; DestDir: "{commonappdata}\{#MyAppName}"; Flags: onlyifdoesntexist uninsneveruninstall -Source: "{#MyAppDir}\README.pdf"; DestDir: "{app}"; Flags: ignoreversion Source: "{#MyAppDir}\LICENSE.txt"; DestDir: "{app}"; Flags: ignoreversion Source: "{#MyAppDir}\sftpgo.json"; DestDir: "{commonappdata}\{#MyAppName}"; Flags: onlyifdoesntexist uninsneveruninstall Source: "{#MyAppDir}\scripts\*"; DestDir: "{app}\scripts"; Flags: ignoreversion recursesubdirs createallsubdirs Source: "{#MyAppDir}\sql\*"; DestDir: "{app}\sql"; Flags: ignoreversion recursesubdirs createallsubdirs Source: "{#MyAppDir}\templates\*"; DestDir: "{commonappdata}\{#MyAppName}\templates"; Flags: ignoreversion recursesubdirs createallsubdirs Source: "{#MyAppDir}\static\*"; DestDir: "{commonappdata}\{#MyAppName}\static"; Flags: ignoreversion recursesubdirs createallsubdirs -; NOTE: Don't use "Flags: ignoreversion" on any shared system files [Dirs] Name: "{commonappdata}\{#MyAppName}\logs"; Permissions: everyone-full @@ -58,6 +52,7 @@ Name: "{commonappdata}\{#MyAppName}\credentials"; Permissions: everyone-full Name: "{group}\Web Admin"; Filename: "http://127.0.0.1:8080/web"; Name: "{group}\Service Control"; WorkingDir: "{app}"; Filename: "powershell.exe"; Parameters: "-Command ""Start-Process cmd \""/k cd {app} & {#MyAppName} service --help\"" -Verb RunAs"; Comment: "Install, start, stop, uninstall SFTPGo Service" Name: "{group}\REST API CLI"; WorkingDir: "{app}\scripts"; Filename: "{cmd}"; Parameters: "/k sftpgo_api_cli.exe --help"; Comment: "Manage users and connections" +Name: "{group}\Documentation"; Filename: "https://github.com/drakkan/sftpgo/blob/0.9.6/README.md"; Name: "{group}\{cm:UninstallProgram,{#MyAppName}}"; Filename: "{uninstallexe}" [Run] diff --git a/utils/version.go b/utils/version.go index 0d484b217..9c0177920 100644 --- a/utils/version.go +++ b/utils/version.go @@ -1,6 +1,6 @@ package utils -const version = "0.9.5-dev" +const version = "0.9.6" var ( commit = ""