diff --git a/CHANGELOG.md b/CHANGELOG.md index 11222278..27122a57 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,31 @@ 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.4.4 - 2020-08-11 +### Fixed +* Fix 'skip_dir' & 'skip_file' pattern matching to ensure correct matching is performed +* Fix 'skip_dir' & 'skip_file' so that each directive is only used against directories or files as requried in --monitor +* Fix client hand when attempting to sync a Unix pipe file +* Fix --single-directory & 'sync_list' performance +* Fix erroneous 'return' statements which could prematurely end processing all changes returned from OneDrive +* Fix segfault when attempting to perform a comparison on an inotify event when determining if event path is directory or file +* Fix handling of Shared Folders to ensure these are checked against 'skip_dir' entries +* Fix 'Skipping uploading this new file as parent path is not in the database' when uploading to a Personal Shared Folder +* Fix how available free space is tracked when uploading files to OneDrive and Shared Folders +* Fix --single-directory handling of parent path matching if path is being seen for first time + +### Added +* Added Fish auto completions + +### Updated +* Increase maximum individual file size to 100GB due to Microsoft file limit increase +* Update Docker build files and align version of compiler across all Docker builds +* Update Docker documentation +* Update NixOS build information +* Update the 'Processing XXXX' output to display the full path +* Update logging output when a sync starts and completes when using --monitor +* Update Office 365 / SharePoint site search query and response if query return zero match + ## 2.4.3 - 2020-06-29 ### Fixed * Check if symbolic link is relative to location path diff --git a/configure b/configure index 8cb1acb4..be0e5d1c 100755 --- a/configure +++ b/configure @@ -1,6 +1,6 @@ #! /bin/sh # Guess values for system-dependent variables and create Makefiles. -# Generated by GNU Autoconf 2.69 for onedrive v2.4.4-dev. +# Generated by GNU Autoconf 2.69 for onedrive v2.4.4. # # Report bugs to . # @@ -579,8 +579,8 @@ MAKEFLAGS= # Identity of this package. PACKAGE_NAME='onedrive' PACKAGE_TARNAME='onedrive' -PACKAGE_VERSION='v2.4.4-dev' -PACKAGE_STRING='onedrive v2.4.4-dev' +PACKAGE_VERSION='v2.4.4' +PACKAGE_STRING='onedrive v2.4.4' PACKAGE_BUGREPORT='https://github.com/abraunegg/onedrive' PACKAGE_URL='' @@ -590,7 +590,6 @@ LIBOBJS DEBUG ZSH_COMPLETION_DIR BASH_COMPLETION_DIR -FISH_COMPLETION_DIR bashcompdir COMPLETIONS NOTIFICATIONS @@ -661,7 +660,6 @@ enable_notifications enable_completions with_bash_completion_dir with_zsh_completion_dir -with_fish_completion_dir enable_debug ' ac_precious_vars='build_alias @@ -1219,7 +1217,7 @@ if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF -\`configure' configures onedrive v2.4.4-dev to adapt to many kinds of systems. +\`configure' configures onedrive v2.4.4 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... @@ -1280,7 +1278,7 @@ fi if test -n "$ac_init_help"; then case $ac_init_help in - short | recursive ) echo "Configuration of onedrive v2.4.4-dev:";; + short | recursive ) echo "Configuration of onedrive v2.4.4:";; esac cat <<\_ACEOF @@ -1291,7 +1289,7 @@ Optional Features: --disable-version-check Disable checks of compiler version during configure time --enable-notifications Enable desktop notifications via libnotify - --enable-completions Install shell completions for bash, zsh, and fish + --enable-completions Install shell completions for bash and zsh --enable-debug Pass debug option to the compiler Optional Packages: @@ -1305,8 +1303,6 @@ Optional Packages: Directory for bash completion files --with-zsh-completion-dir=DIR Directory for zsh completion files - --with-fish-completion-dir=DIR - Directory for fish completion files Some influential environment variables: DC D compiler executable @@ -1393,7 +1389,7 @@ fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF -onedrive configure v2.4.4-dev +onedrive configure v2.4.4 generated by GNU Autoconf 2.69 Copyright (C) 2012 Free Software Foundation, Inc. @@ -1410,7 +1406,7 @@ cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. -It was created by onedrive $as_me v2.4.4-dev, which was +It was created by onedrive $as_me v2.4.4, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ @@ -2162,7 +2158,7 @@ fi -PACKAGE_DATE="June 2020" +PACKAGE_DATE="August 2020" @@ -2583,22 +2579,6 @@ fi ZSH_COMPLETION_DIR=$with_zsh_completion_dir - -# Check whether --with-fish-completion-dir was given. -if test "${with_fish_completion_dir+set}" = set; then : - withval=$with_fish_completion_dir; -else - with_fish_completion_dir=auto -fi - - if test "x$with_fish_completion_dir" = "xyes" -o "x$with_fish_completion_dir" = "xauto"; then : - - with_fish_completion_dir="/usr/share/fish/completions" - -fi - FISH_COMPLETION_DIR=$with_fish_completion_dir - - fi # Check whether --enable-debug was given. @@ -3158,7 +3138,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" -This file was extended by onedrive $as_me v2.4.4-dev, which was +This file was extended by onedrive $as_me v2.4.4, which was generated by GNU Autoconf 2.69. Invocation command line was CONFIG_FILES = $CONFIG_FILES @@ -3211,7 +3191,7 @@ _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ -onedrive config.status v2.4.4-dev +onedrive config.status v2.4.4 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" diff --git a/configure.ac b/configure.ac index ece138ee..44ca50ce 100644 --- a/configure.ac +++ b/configure.ac @@ -9,7 +9,7 @@ dnl - commit the changed files (configure.ac, configure) dnl - tag the release AC_PREREQ([2.69]) -AC_INIT([onedrive],[v2.4.4-dev], [https://github.com/abraunegg/onedrive], [onedrive]) +AC_INIT([onedrive],[v2.4.4], [https://github.com/abraunegg/onedrive], [onedrive]) AC_CONFIG_SRCDIR([src/main.d]) diff --git a/contrib/gentoo/onedrive-2.4.3.ebuild b/contrib/gentoo/onedrive-2.4.4.ebuild similarity index 100% rename from contrib/gentoo/onedrive-2.4.3.ebuild rename to contrib/gentoo/onedrive-2.4.4.ebuild diff --git a/contrib/spec/onedrive.spec.in b/contrib/spec/onedrive.spec.in index 589fcfaa..5c48cac7 100644 --- a/contrib/spec/onedrive.spec.in +++ b/contrib/spec/onedrive.spec.in @@ -6,7 +6,7 @@ %endif Name: onedrive -Version: 2.4.3 +Version: 2.4.4 Release: 1%{?dist} Summary: Microsoft OneDrive Client Group: System Environment/Network