Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

onedrive client version v2.5.0-alpha-1 #2494

Closed
wants to merge 56 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
56 commits
Select commit Hold shift + click to select a range
eb9d637
Initial commit of code re-write for v2.5.0
abraunegg Aug 26, 2023
9062d0e
Ensure version is v2.5.0-alpha-0
abraunegg Aug 26, 2023
f2e5dcb
Update config.d
abraunegg Aug 26, 2023
ce02fd8
Update sync.d
abraunegg Aug 27, 2023
1ac5d9f
Update PR
abraunegg Aug 27, 2023
f28bf7a
Update util.d
abraunegg Aug 27, 2023
3f5a4fa
Update PR
abraunegg Aug 28, 2023
44be502
Update PR
abraunegg Aug 28, 2023
eb837db
Update PR
abraunegg Aug 30, 2023
a584ee4
Update config
abraunegg Aug 30, 2023
e3b3abb
Update PR
abraunegg Sep 2, 2023
29b0cda
Update PR
abraunegg Sep 2, 2023
760b3c8
Update PR
abraunegg Sep 2, 2023
54b3d52
Update PR
abraunegg Sep 2, 2023
c659cb2
Update PR
abraunegg Sep 3, 2023
a656757
Update PR
abraunegg Sep 8, 2023
34cb303
Update PR
abraunegg Sep 8, 2023
4756680
Update PR
abraunegg Sep 8, 2023
fbfb339
Update PR
abraunegg Sep 9, 2023
222cac5
Update PR
abraunegg Sep 9, 2023
977be82
Update PR
abraunegg Sep 9, 2023
78328d0
Update PR
abraunegg Sep 10, 2023
d38589d
Update PR
abraunegg Sep 10, 2023
8ac38a2
Update PR
abraunegg Sep 10, 2023
6da9889
Update PR
abraunegg Sep 11, 2023
a819cfb
Update PR
abraunegg Sep 11, 2023
690cc52
Update PR
abraunegg Sep 11, 2023
bb1cf67
Update PR
abraunegg Sep 11, 2023
5ca45d9
Update PR
abraunegg Sep 11, 2023
a195fdc
Update PR
abraunegg Sep 12, 2023
6e7ab30
Update PR
abraunegg Sep 12, 2023
8d260a6
Update PR
abraunegg Sep 12, 2023
ee4092d
Update PR
abraunegg Sep 12, 2023
f4d768a
Merge branch 'onedrive-v2.5.0-alpha0' into onedrive-v2.5.0-alpha-1
abraunegg Sep 21, 2023
a49ca62
change document names
abraunegg Sep 21, 2023
3d5d53e
remove docs
abraunegg Sep 21, 2023
3502e0c
readd documentation
abraunegg Sep 21, 2023
4bd9ae5
Initial code commit for onedrive client version v2.5.0-alpha-1
abraunegg Sep 21, 2023
f325337
Update readme.md
abraunegg Sep 21, 2023
1482f1c
Update documentation
abraunegg Sep 21, 2023
0937364
Update PR
abraunegg Sep 22, 2023
e7d447d
Update PR
abraunegg Sep 22, 2023
9aabbab
Update PR
abraunegg Sep 22, 2023
37b4176
Update PR
abraunegg Sep 22, 2023
22eb96e
Update PR
abraunegg Sep 23, 2023
7b3051f
Update PR
abraunegg Sep 24, 2023
dabe6f3
Update PR
abraunegg Sep 24, 2023
a9eea44
Update PR
abraunegg Sep 26, 2023
d43ec6d
Update PR
abraunegg Sep 26, 2023
d02b872
Delete usage.md
abraunegg Sep 26, 2023
c232036
Update PR
abraunegg Sep 26, 2023
73ec9e9
Update PR
abraunegg Sep 27, 2023
00f7b3a
Update PR
abraunegg Sep 27, 2023
a077f45
Update PR
abraunegg Sep 27, 2023
cdb45b9
Update PR
abraunegg Sep 28, 2023
4fd4244
Update usage.md
abraunegg Sep 28, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 11 additions & 12 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ DEBUG = @DEBUG@
DC = @DC@
DC_TYPE = @DC_TYPE@
DCFLAGS = @DCFLAGS@
DCFLAGS += -w -g -O -J.
DCFLAGS += -wi -g -O -J.
ifeq ($(DEBUG),yes)
ifeq ($(DC_TYPE),dmd)
DCFLAGS += -debug -gs
Expand All @@ -55,7 +55,7 @@ endif
system_unit_files = contrib/systemd/[email protected]
user_unit_files = contrib/systemd/onedrive.service

DOCFILES = README.md config LICENSE CHANGELOG.md docs/Docker.md docs/INSTALL.md docs/SharePoint-Shared-Libraries.md docs/USAGE.md docs/BusinessSharedFolders.md docs/advanced-usage.md docs/application-security.md
DOCFILES = readme.md config LICENSE changelog.md docs/advanced-usage.md docs/application-security.md docs/business-shared-folders.md docs/docker.md docs/install.md docs/national-cloud-deployments.md docs/podman.md docs/privacy-policy.md docs/sharepoint-libraries.md docs/terms-of-service.md docs/ubuntu-package-install.md docs/usage.md

ifneq ("$(wildcard /etc/redhat-release)","")
RHEL = $(shell cat /etc/redhat-release | grep -E "(Red Hat Enterprise Linux|CentOS)" | wc -l)
Expand All @@ -66,20 +66,19 @@ RHEL_VERSION = 0
endif

SOURCES = \
src/config.d \
src/itemdb.d \
src/log.d \
src/main.d \
src/monitor.d \
src/onedrive.d \
src/config.d \
src/log.d \
src/util.d \
src/qxor.d \
src/selective.d \
src/sqlite.d \
src/curlEngine.d \
src/onedrive.d \
src/sync.d \
src/upload.d \
src/util.d \
src/itemdb.d \
src/sqlite.d \
src/clientSideFiltering.d \
src/progress.d \
src/arsd/cgi.d
src/monitor.d

ifeq ($(NOTIFICATIONS),yes)
SOURCES += src/notifications/notify.d src/notifications/dnotify.d
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md → changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
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.5.0 - TBA


### Changed
* Renamed various documentation files to align with document content


## 2.4.25 - 2023-06-21
### Fixed
* Fixed that the application was reporting as v2.2.24 when in fact it was v2.4.24 (release tagging issue)
Expand Down
10 changes: 3 additions & 7 deletions config
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# with their default values.
# All values need to be enclosed in quotes
# When changing a config option below, remove the '#' from the start of the line
# For explanations of all config options below see docs/USAGE.md or the man page.
# For explanations of all config options below see docs/usage.md or the man page.
#
# sync_dir = "~/OneDrive"
# skip_file = "~*|.~*|*.tmp"
Expand Down Expand Up @@ -40,10 +40,11 @@
# bypass_data_preservation = "false"
# azure_ad_endpoint = ""
# azure_tenant_id = "common"
# sync_business_shared_folders = "false"
# sync_business_shared_items = "false"
# sync_dir_permissions = "700"
# sync_file_permissions = "600"
# rate_limit = "131072"
# operation_timeout = "3600"
# webhook_enabled = "false"
# webhook_public_url = ""
# webhook_listening_host = ""
Expand All @@ -54,8 +55,3 @@
# display_running_config = "false"
# read_only_auth_scope = "false"
# cleanup_local_files = "false"
# operation_timeout = "3600"
# dns_timeout = "60"
# connect_timeout = "10"
# data_timeout = "600"
# ip_protocol_version = "0"
20 changes: 10 additions & 10 deletions configure
Original file line number Diff line number Diff line change
@@ -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.25.
# Generated by GNU Autoconf 2.69 for onedrive v2.5.0-alpha-0.
#
# Report bugs to <https://github.com/abraunegg/onedrive>.
#
Expand Down Expand Up @@ -579,8 +579,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='onedrive'
PACKAGE_TARNAME='onedrive'
PACKAGE_VERSION='v2.4.25'
PACKAGE_STRING='onedrive v2.4.25'
PACKAGE_VERSION='v2.5.0-alpha-0'
PACKAGE_STRING='onedrive v2.5.0-alpha-0'
PACKAGE_BUGREPORT='https://github.com/abraunegg/onedrive'
PACKAGE_URL=''

Expand Down Expand Up @@ -1219,7 +1219,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.25 to adapt to many kinds of systems.
\`configure' configures onedrive v2.5.0-alpha-0 to adapt to many kinds of systems.

Usage: $0 [OPTION]... [VAR=VALUE]...

Expand Down Expand Up @@ -1280,7 +1280,7 @@ fi

if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of onedrive v2.4.25:";;
short | recursive ) echo "Configuration of onedrive v2.5.0-alpha-0:";;
esac
cat <<\_ACEOF

Expand Down Expand Up @@ -1393,7 +1393,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
onedrive configure v2.4.25
onedrive configure v2.5.0-alpha-0
generated by GNU Autoconf 2.69

Copyright (C) 2012 Free Software Foundation, Inc.
Expand All @@ -1410,7 +1410,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.25, which was
It was created by onedrive $as_me v2.5.0-alpha-0, which was
generated by GNU Autoconf 2.69. Invocation command line was

$ $0 $@
Expand Down Expand Up @@ -2162,7 +2162,7 @@ fi



PACKAGE_DATE="June 2023"
PACKAGE_DATE="August 2023"



Expand Down Expand Up @@ -3159,7 +3159,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.25, which was
This file was extended by onedrive $as_me v2.5.0-alpha-0, which was
generated by GNU Autoconf 2.69. Invocation command line was

CONFIG_FILES = $CONFIG_FILES
Expand Down Expand Up @@ -3212,7 +3212,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.25
onedrive config.status v2.5.0-alpha-0
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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.25], [https://github.com/abraunegg/onedrive], [onedrive])
AC_INIT([onedrive],[v2.5.0-alpha-0], [https://github.com/abraunegg/onedrive], [onedrive])
AC_CONFIG_SRCDIR([src/main.d])


Expand Down
192 changes: 0 additions & 192 deletions docs/BusinessSharedFolders.md

This file was deleted.

Loading