From 7f04a791119759e903946375a1463ca3acab3110 Mon Sep 17 00:00:00 2001 From: Gilbert Chen Date: Thu, 13 Jul 2017 23:33:14 -0400 Subject: [PATCH] Replace Fair Source 5 with our own free-for-personal-use license --- LICENSE.md | 21 +++------------------ README.md | 6 +++--- duplicacy/duplicacy_main.go | 4 ++-- src/duplicacy_acdclient.go | 4 ++-- src/duplicacy_acdclient_test.go | 4 ++-- src/duplicacy_acdstorage.go | 4 ++-- src/duplicacy_azurestorage.go | 4 ++-- src/duplicacy_b2client.go | 4 ++-- src/duplicacy_b2client_test.go | 4 ++-- src/duplicacy_b2storage.go | 4 ++-- src/duplicacy_backupmanager.go | 4 ++-- src/duplicacy_backupmanager_test.go | 4 ++-- src/duplicacy_chunk.go | 4 ++-- src/duplicacy_chunk_test.go | 4 ++-- src/duplicacy_chunkdownloader.go | 4 ++-- src/duplicacy_chunkmaker.go | 4 ++-- src/duplicacy_chunkmaker_test.go | 4 ++-- src/duplicacy_chunkuploader.go | 4 ++-- src/duplicacy_chunkuploader_test.go | 4 ++-- src/duplicacy_config.go | 4 ++-- src/duplicacy_dropboxstorage.go | 4 ++-- src/duplicacy_entry.go | 5 ++--- src/duplicacy_entry_test.go | 4 ++-- src/duplicacy_filereader.go | 4 ++-- src/duplicacy_filestorage.go | 4 ++-- src/duplicacy_gcdstorage.go | 4 ++-- src/duplicacy_gcsstorage.go | 4 ++-- src/duplicacy_hubicclient.go | 4 ++-- src/duplicacy_hubicclient_test.go | 4 ++-- src/duplicacy_hubicstorage.go | 4 ++-- src/duplicacy_keyring.go | 4 ++-- src/duplicacy_keyring_windows.go | 4 ++-- src/duplicacy_log.go | 4 ++-- src/duplicacy_oneclient.go | 4 ++-- src/duplicacy_oneclient_test.go | 4 ++-- src/duplicacy_onestorage.go | 4 ++-- src/duplicacy_preference.go | 4 ++-- src/duplicacy_s3cstorage.go | 4 ++-- src/duplicacy_s3storage.go | 4 ++-- src/duplicacy_sftpstorage.go | 4 ++-- src/duplicacy_shadowcopy.go | 4 ++-- src/duplicacy_shadowcopy_windows.go | 4 ++-- src/duplicacy_snapshot.go | 4 ++-- src/duplicacy_snapshotmanager.go | 4 ++-- src/duplicacy_snapshotmanager_test.go | 4 ++-- src/duplicacy_storage.go | 4 ++-- src/duplicacy_storage_test.go | 4 ++-- src/duplicacy_utils.go | 4 ++-- src/duplicacy_utils_others.go | 4 ++-- src/duplicacy_utils_test.go | 4 ++-- src/duplicacy_utils_windows.go | 4 ++-- 51 files changed, 104 insertions(+), 120 deletions(-) diff --git a/LICENSE.md b/LICENSE.md index 8cd32da..b723cc0 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,20 +1,5 @@ Copyright © 2017 Acrosync LLC -Licensor: Acrosync LLC - -Software: Dulicacy - -Use Limitation: 5 users - -License Grant. Licensor hereby grants to each recipient of the Software (“you”) a non-exclusive, non-transferable, royalty-free and fully-paid-up license, under all of the Licensor’s copyright and patent rights, to use, copy, distribute, prepare derivative works of, publicly perform and display the Software, subject to the Use Limitation and the conditions set forth below. - -Use Limitation. The license granted above allows use by up to the number of users per entity set forth above (the “Use Limitation”). For determining the number of users, “you” includes all affiliates, meaning legal entities controlling, controlled by, or under common control with you. If you exceed the Use Limitation, your use is subject to payment of Licensor’s then-current list price for licenses. - -Conditions. Redistribution in source code or other forms must include a copy of this license document to be provided in a reasonable manner. Any redistribution of the Software is only allowed subject to this license. - -Trademarks. This license does not grant you any right in the trademarks, service marks, brand names or logos of Licensor. - -DISCLAIMER. THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OR CONDITION, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. LICENSORS HEREBY DISCLAIM ALL LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE. - -Termination. If you violate the terms of this license, your rights will terminate automatically and will not be reinstated without the prior written consent of Licensor. Any such termination will not affect the right of others who may have received copies of the Software from you. - +* Free for personal use or commerical trial +* Non-trial commercial use equires per-user licenses available from [duplicacy.com](https://duplicacy.com/customer) at a cost of $20 per year +* Modification and redistribution are permitted, but commerical use of derivative works is subject to the license terms \ No newline at end of file diff --git a/README.md b/README.md index 5820a7b..5d8b6a2 100644 --- a/README.md +++ b/README.md @@ -301,6 +301,6 @@ For more details and other speed comparison results, please visit https://github ## License -Duplicacy CLI is released under the [Fair Source 5 License](https://fair.io), which means it is free for individual users or any company or organization with less than 5 users. If your company or organization has 5 or more users, then a license for the actual number of users must be purchased from [duplicacy.com](https://duplicacy.com/customer). - -A user is defined as the owner of any files to be backed up by Duplicacy. If you are an IT administrator who uses Duplicacy to back up files for your colleagues, then each colleague will be counted in the user limit permitted by the license. +* Free for personal use or commerical trial +* Non-trial commercial use equires per-user licenses available from [duplicacy.com](https://duplicacy.com/customer) at a cost of $20 per year +* Modification and redistribution are permitted, but commerical use of derivative works is subject to the license terms diff --git a/duplicacy/duplicacy_main.go b/duplicacy/duplicacy_main.go index bd0e61a..e9fcdd7 100644 --- a/duplicacy/duplicacy_main.go +++ b/duplicacy/duplicacy_main.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package main diff --git a/src/duplicacy_acdclient.go b/src/duplicacy_acdclient.go index 49e7056..47e4803 100644 --- a/src/duplicacy_acdclient.go +++ b/src/duplicacy_acdclient.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_acdclient_test.go b/src/duplicacy_acdclient_test.go index 74a08de..8b0efa8 100644 --- a/src/duplicacy_acdclient_test.go +++ b/src/duplicacy_acdclient_test.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_acdstorage.go b/src/duplicacy_acdstorage.go index 4525006..bcce649 100644 --- a/src/duplicacy_acdstorage.go +++ b/src/duplicacy_acdstorage.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_azurestorage.go b/src/duplicacy_azurestorage.go index a60cd8b..6404733 100644 --- a/src/duplicacy_azurestorage.go +++ b/src/duplicacy_azurestorage.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_b2client.go b/src/duplicacy_b2client.go index 7526f85..c797b7f 100644 --- a/src/duplicacy_b2client.go +++ b/src/duplicacy_b2client.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_b2client_test.go b/src/duplicacy_b2client_test.go index 839a523..369c192 100644 --- a/src/duplicacy_b2client_test.go +++ b/src/duplicacy_b2client_test.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_b2storage.go b/src/duplicacy_b2storage.go index 3a3dfeb..35364f9 100644 --- a/src/duplicacy_b2storage.go +++ b/src/duplicacy_b2storage.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_backupmanager.go b/src/duplicacy_backupmanager.go index 876f2da..fb68ab4 100644 --- a/src/duplicacy_backupmanager.go +++ b/src/duplicacy_backupmanager.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_backupmanager_test.go b/src/duplicacy_backupmanager_test.go index 6171974..c50a47d 100644 --- a/src/duplicacy_backupmanager_test.go +++ b/src/duplicacy_backupmanager_test.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_chunk.go b/src/duplicacy_chunk.go index 2bbb072..87620fe 100644 --- a/src/duplicacy_chunk.go +++ b/src/duplicacy_chunk.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_chunk_test.go b/src/duplicacy_chunk_test.go index ba5d4ce..8f46525 100644 --- a/src/duplicacy_chunk_test.go +++ b/src/duplicacy_chunk_test.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_chunkdownloader.go b/src/duplicacy_chunkdownloader.go index 50fea4b..65bd82e 100644 --- a/src/duplicacy_chunkdownloader.go +++ b/src/duplicacy_chunkdownloader.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_chunkmaker.go b/src/duplicacy_chunkmaker.go index 7f9a3ab..0720274 100644 --- a/src/duplicacy_chunkmaker.go +++ b/src/duplicacy_chunkmaker.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_chunkmaker_test.go b/src/duplicacy_chunkmaker_test.go index 6d0aa88..fc559b5 100644 --- a/src/duplicacy_chunkmaker_test.go +++ b/src/duplicacy_chunkmaker_test.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_chunkuploader.go b/src/duplicacy_chunkuploader.go index 7373017..56fc2fe 100644 --- a/src/duplicacy_chunkuploader.go +++ b/src/duplicacy_chunkuploader.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_chunkuploader_test.go b/src/duplicacy_chunkuploader_test.go index e820cc9..8634454 100644 --- a/src/duplicacy_chunkuploader_test.go +++ b/src/duplicacy_chunkuploader_test.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_config.go b/src/duplicacy_config.go index 6c90d85..8c3fb8e 100644 --- a/src/duplicacy_config.go +++ b/src/duplicacy_config.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_dropboxstorage.go b/src/duplicacy_dropboxstorage.go index 57f7006..88af10a 100644 --- a/src/duplicacy_dropboxstorage.go +++ b/src/duplicacy_dropboxstorage.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_entry.go b/src/duplicacy_entry.go index 9237aae..59cf32a 100644 --- a/src/duplicacy_entry.go +++ b/src/duplicacy_entry.go @@ -1,7 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users - +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy import ( diff --git a/src/duplicacy_entry_test.go b/src/duplicacy_entry_test.go index d508e1d..2262f8e 100644 --- a/src/duplicacy_entry_test.go +++ b/src/duplicacy_entry_test.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_filereader.go b/src/duplicacy_filereader.go index dff12b2..a252981 100644 --- a/src/duplicacy_filereader.go +++ b/src/duplicacy_filereader.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_filestorage.go b/src/duplicacy_filestorage.go index db95935..f7caa03 100644 --- a/src/duplicacy_filestorage.go +++ b/src/duplicacy_filestorage.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_gcdstorage.go b/src/duplicacy_gcdstorage.go index ec46ac9..2830baa 100644 --- a/src/duplicacy_gcdstorage.go +++ b/src/duplicacy_gcdstorage.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_gcsstorage.go b/src/duplicacy_gcsstorage.go index 5767844..a47926d 100644 --- a/src/duplicacy_gcsstorage.go +++ b/src/duplicacy_gcsstorage.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_hubicclient.go b/src/duplicacy_hubicclient.go index c7d0b8b..937f410 100644 --- a/src/duplicacy_hubicclient.go +++ b/src/duplicacy_hubicclient.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_hubicclient_test.go b/src/duplicacy_hubicclient_test.go index 4f31954..402562a 100644 --- a/src/duplicacy_hubicclient_test.go +++ b/src/duplicacy_hubicclient_test.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_hubicstorage.go b/src/duplicacy_hubicstorage.go index 981ebe5..f39a7ee 100644 --- a/src/duplicacy_hubicstorage.go +++ b/src/duplicacy_hubicstorage.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_keyring.go b/src/duplicacy_keyring.go index f19f544..1ca665a 100644 --- a/src/duplicacy_keyring.go +++ b/src/duplicacy_keyring.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com // +build !windows diff --git a/src/duplicacy_keyring_windows.go b/src/duplicacy_keyring_windows.go index 26866d3..4157e0f 100644 --- a/src/duplicacy_keyring_windows.go +++ b/src/duplicacy_keyring_windows.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_log.go b/src/duplicacy_log.go index 62917a1..0cde121 100644 --- a/src/duplicacy_log.go +++ b/src/duplicacy_log.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_oneclient.go b/src/duplicacy_oneclient.go index 99eb6b8..c781f4c 100644 --- a/src/duplicacy_oneclient.go +++ b/src/duplicacy_oneclient.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_oneclient_test.go b/src/duplicacy_oneclient_test.go index ed35f25..6601246 100644 --- a/src/duplicacy_oneclient_test.go +++ b/src/duplicacy_oneclient_test.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_onestorage.go b/src/duplicacy_onestorage.go index 73b2a3b..7b9c1e5 100644 --- a/src/duplicacy_onestorage.go +++ b/src/duplicacy_onestorage.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_preference.go b/src/duplicacy_preference.go index 530104a..be7c3cf 100644 --- a/src/duplicacy_preference.go +++ b/src/duplicacy_preference.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_s3cstorage.go b/src/duplicacy_s3cstorage.go index 518b798..e834b46 100644 --- a/src/duplicacy_s3cstorage.go +++ b/src/duplicacy_s3cstorage.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_s3storage.go b/src/duplicacy_s3storage.go index 41590c0..b328f2f 100644 --- a/src/duplicacy_s3storage.go +++ b/src/duplicacy_s3storage.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_sftpstorage.go b/src/duplicacy_sftpstorage.go index 9cfead7..ed19918 100644 --- a/src/duplicacy_sftpstorage.go +++ b/src/duplicacy_sftpstorage.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_shadowcopy.go b/src/duplicacy_shadowcopy.go index 893cd14..e97e67e 100644 --- a/src/duplicacy_shadowcopy.go +++ b/src/duplicacy_shadowcopy.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com // +build !windows diff --git a/src/duplicacy_shadowcopy_windows.go b/src/duplicacy_shadowcopy_windows.go index e71fb96..d337125 100644 --- a/src/duplicacy_shadowcopy_windows.go +++ b/src/duplicacy_shadowcopy_windows.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_snapshot.go b/src/duplicacy_snapshot.go index 27e72e0..d2f3249 100644 --- a/src/duplicacy_snapshot.go +++ b/src/duplicacy_snapshot.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_snapshotmanager.go b/src/duplicacy_snapshotmanager.go index 36c2326..6156e89 100644 --- a/src/duplicacy_snapshotmanager.go +++ b/src/duplicacy_snapshotmanager.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_snapshotmanager_test.go b/src/duplicacy_snapshotmanager_test.go index f960c0b..9e4b8a7 100644 --- a/src/duplicacy_snapshotmanager_test.go +++ b/src/duplicacy_snapshotmanager_test.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_storage.go b/src/duplicacy_storage.go index 2f25cfe..57b78b0 100644 --- a/src/duplicacy_storage.go +++ b/src/duplicacy_storage.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_storage_test.go b/src/duplicacy_storage_test.go index 6b8e5f6..2a58355 100644 --- a/src/duplicacy_storage_test.go +++ b/src/duplicacy_storage_test.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_utils.go b/src/duplicacy_utils.go index 90d0ee5..6e9addc 100644 --- a/src/duplicacy_utils.go +++ b/src/duplicacy_utils.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_utils_others.go b/src/duplicacy_utils_others.go index 172ba97..759a5ae 100644 --- a/src/duplicacy_utils_others.go +++ b/src/duplicacy_utils_others.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com // +build !windows diff --git a/src/duplicacy_utils_test.go b/src/duplicacy_utils_test.go index 83883c5..43543e3 100644 --- a/src/duplicacy_utils_test.go +++ b/src/duplicacy_utils_test.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy diff --git a/src/duplicacy_utils_windows.go b/src/duplicacy_utils_windows.go index 1fcb88d..76fca97 100644 --- a/src/duplicacy_utils_windows.go +++ b/src/duplicacy_utils_windows.go @@ -1,6 +1,6 @@ // Copyright (c) Acrosync LLC. All rights reserved. -// Licensed under the Fair Source License 0.9 (https://fair.io/) -// User Limitation: 5 users +// Free for personal use and commercial trial +// Commercial use requires per-user licenses available from https://duplicacy.com package duplicacy