Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-09-19Disable "legacy path handling" for executablesDean Ferreyra
This is a defensive measure in case legacy path handling has been enabled at the system level. Duplicati requires that legacy path handling be _disabled_ to function properly. Issue #4295 appears to be a result of legacy path handling being enabled globally.
2020-07-27Target .NET Framework 4.7.1.Kenneth Hsu
This updates all projects to target .NET Framework 4.7.1. The TencentCOS and Tardigrade backends depend on .NET Standard 2.0. When a .NET Framework prior to 4.7.1 is targeted, the system cannot be sure that all the dependencies exist, so it copies all dependent assemblies to the output directory. This causes many assemblies from the System namespace to become bundled in the release. https://stackoverflow.com/a/48875007 We had previously attempted to make individual projects target 4.7.1 (see pull request #4242), but this can cause compatibility issues when 4.6.2 projects depend on 4.7.1. projects. This will require Mono 5.10.0 or greater (previously, we required 5.0.0 or greater). https://www.mono-project.com/docs/about-mono/releases/5.10.0/#class-libraries This fixes issue #4234.
2019-10-19Mark fields that don't need to be reassigned as readonly.Kenneth Hsu
This makes it explicit at compile-time that these fields should not be reassigned outside the constructor.
2019-08-04change exe projects to true for AutoGenerateBindingRedirectsBlueBlock
resolves build warning for mismatching assemblies
2019-07-31update csproj toolverion and nuget packagesBlueBlock
2019-07-26initial upgrade to framework 4.6.2BlueBlock
- no code changes except those noted below - projects upgrade to 4.6.2 - wixinstaller project upgraded automatically by VisualStudio - wixinstaller updated to require 4.6.2 - Library.Encryption changed to Standard2.0 so accommodate update to SharpAesCrypt
2018-10-17Target Windows 8.1 and 10 in order to display correct version in UIMikael Mello
2018-10-14Remove unnecessary use of partial keyword.Kenneth Hsu
These classes are defined in a single location.
2018-10-07Replace chained LINQ calls with call to overload with predicate.Kenneth Hsu
This simplifies the code by reducing the number of enumerators created while also making the code slightly more readable.
2018-05-25Mark fields that shouldn't be reassigned as readonly.Kenneth Hsu
This makes it explicit at compile-time that these fields should not be reassigned outside the constructor.
2018-02-11Fixed two cases where commandline arguments were not correctly escaped when ↵Kenneth Skovhede
being passed to another process. This should also solve the issues with #3001 This fixes #2961
2017-10-16Avoid signing assemblies.Kenneth Hsu
Using strong-named assemblies can cause difficulties with the GNU LGPL license, which allows for one to recombine or relink their application with modified versions of the code. While one solution is to share the private key so that people can sign the assemblies themselves, this would break the trust that is expected from signed assemblies. For now, the easiest fix is to simply not sign the assemblies. Note that by doing so, we prevent the code from being referenced from other signed assemblies. This also fixes an issue introduced in revision ba94d36a80 ("Added auto-update for WindowsService and Service."), where the WindowsService project (signed) referenced the AutoUpdater project (not signed). We also removed instances of <SignAssembly>false</SignAssembly> to be consistent with newly created .csproj files that do not contain the SignAssembly element. This was motivated by the discussion in issue #2814.
2017-10-11Merge branch 'experiment/autoupdate_service' into feature/improve-autoupdaterKenneth Skovhede
2017-06-02Added the `<Prefer32Bit>False</Prefer32Bit>` option to all executables.Kenneth Skovhede
This fixes #2519
2016-12-30Disabled MSBuild for much faster builds on MacOSKenneth Skovhede
2016-10-23Prevent flooding EventLog with: The Duplicati service service has reported ↵Max
an invalid current state 0.
2016-10-12Added auto-update for WindowsService and Service.experiment/autoupdate_serviceKenneth Skovhede
Needs some work otherwise the service will auto-update with a new sub-folder instead of autoupdate from the source folder.
2016-09-23Tabs-to-spaces fixKenneth Skovhede
2016-09-15Made the WindowsService self-installable with parameter support.Kenneth Skovhede
This fixes #1768
2016-04-21Updated windows-service assemblyinfo to the defaultKenneth Skovhede
2016-04-13Fixed signing the windows service and fixed the solution after merging with ↵Kenneth Skovhede
master
2016-04-13Added a windows serviceKenneth Skovhede