diff --git a/CHANGELOG.md b/CHANGELOG.md index 73a7f9ba..e3b7dd3c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,24 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## 2.3.3 - 2019-04-16 +### Fixed +* Fix --upload-only check for Sharepoint uploads +* Fix check to ensure item root we flag as 'root' actually is OneDrive account 'root' +* Handle object error response from OneDrive when uploading to OneDrive Business +* Fix handling of some OneDrive accounts not providing 'quota' details +* Fix 'resume_upload' handling in the event of bad OneDrive response + +### Added +* Add debugging for --get-O365-drive-id function +* Add shell (bash,zsh) completion support +* Add config options for command line switches to allow for better config handling in docker containers + +### Updated +* Implement more meaningful 5xx error responses +* Update onedrive.logrotate indentations and comments +* Update 'min_notif_changes' to 'min_notify_changes' + ## 2.3.2 - 2019-04-02 ### Fixed * Reduce scanning the entire local system in monitor mode for local changes diff --git a/Makefile b/Makefile index d77f3f28..76df2b07 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ DC ?= dmd -RELEASEVER = v2.3.2 +RELEASEVER = v2.3.3 pkgconfig := $(shell if [ $(PKGCONFIG) ] && [ "$(PKGCONFIG)" != 0 ] ; then echo 1 ; else echo "" ; fi) notifications := $(shell if [ $(NOTIFICATIONS) ] && [ "$(NOTIFICATIONS)" != 0 ] ; then echo 1 ; else echo "" ; fi) completions := $(shell if [ $(COMPLETIONS) ] && [ "$(COMPLETIONS)" != 0 ] ; then echo 1 ; else echo "" ; fi) diff --git a/contrib/gentoo/onedrive-2.3.2.ebuild b/contrib/gentoo/onedrive-2.3.3.ebuild similarity index 100% rename from contrib/gentoo/onedrive-2.3.2.ebuild rename to contrib/gentoo/onedrive-2.3.3.ebuild diff --git a/onedrive.1.in b/onedrive.1.in index 34e00642..35e92421 100644 --- a/onedrive.1.in +++ b/onedrive.1.in @@ -1,4 +1,4 @@ -.TH ONEDRIVE "1" "April 2019" "2.3.2" "User Commands" +.TH ONEDRIVE "1" "April 2019" "2.3.3" "User Commands" .SH NAME onedrive \- folder synchronization with OneDrive .SH SYNOPSIS diff --git a/pacman/PKGBUILD b/pacman/PKGBUILD index 572bda1f..55a0c581 100644 --- a/pacman/PKGBUILD +++ b/pacman/PKGBUILD @@ -1,5 +1,5 @@ pkgname=onedrive -pkgver=2.3.2 +pkgver=2.3.3 pkgrel=1 #patch-level (Increment this when patch is applied) pkgdesc="A free OneDrive Client for Linux. This is a fork of the https://github.com/skilion/onedrive repository" license=("unknown") diff --git a/spec/onedrive.spec b/spec/onedrive.spec index 81dc9d2d..58c9cdec 100644 --- a/spec/onedrive.spec +++ b/spec/onedrive.spec @@ -6,7 +6,7 @@ %endif Name: onedrive -Version: 2.3.2 +Version: 2.3.3 Release: 1%{?dist} Summary: Microsoft OneDrive Client Group: System Environment/Network @@ -16,7 +16,7 @@ URL: https://github.com/abraunegg/onedrive BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: git -BuildRequires: dmd >= 2.079.0 +BuildRequires: dmd >= 2.085.0 BuildRequires: sqlite-devel >= 3.7.15 BuildRequires: libcurl-devel Requires: sqlite >= 3.7.15