1{{ $allVersions := . }}
2{{- range $index, $changes := . }}{{ with $changes -}}
3Changelog for ownCloud Desktop Client [{{ .Version }}] ({{ .Date }})
4=======================================
5The following sections list the changes in ownCloud Desktop Client {{ .Version }} relevant to
6ownCloud admins and users.
7
8{{/* creating version compare links */ -}}
9{{ $next := add1 $index -}}
10{{ if ne (len $allVersions) $next -}}
11{{ $previousVersion := (index $allVersions $next).Version -}}
12{{ if eq .Version "unreleased" -}}
13[{{ .Version }}]: https://github.com/owncloud/client/compare/v{{ $previousVersion }}...master
14{{- else -}}
15[{{ .Version }}]: https://github.com/owncloud/client/compare/v{{ $previousVersion }}...v{{ .Version }}
16{{- end -}}
17{{ end -}}
18
19{{- /* last version managed by calens, end of the loop */ -}}
20{{ if eq .Version "2.6.2" -}}
21[{{ .Version }}]: https://github.com/owncloud/client/compare/v2.6.1...v{{ .Version }}
22{{- end }}
23
24Summary
25-------
26{{ range $entry := .Entries }}{{ with $entry }}
27* {{ .Type }} - {{ .Title }}: [#{{ .PrimaryID }}]({{ .PrimaryURL }})
28{{- end }}{{ end }}
29
30Details
31-------
32{{ range $entry := .Entries }}{{ with $entry }}
33* {{ .Type }} - {{ .Title }}: [#{{ .PrimaryID }}]({{ .PrimaryURL }})
34{{ range $par := .Paragraphs }}
35   {{ wrapIndent $par 80 3 }}
36{{ end -}}
37{{ range $url := .IssueURLs }}
38   {{ $url -}}
39{{ end -}}
40{{ range $url := .PRURLs }}
41   {{ $url -}}
42{{ end -}}
43{{ range $url := .OtherURLs }}
44   {{ $url -}}
45{{ end }}
46{{ end }}{{ end }}
47{{ end }}{{ end -}}
48
49{{/* Start of old changelog */ -}}
50ChangeLog
51=========
52version 2.6.1 (2020-01-17)
53(last updated on de0d330c002436454f3fe4929bd707e5f0425949)
54
55Changes:
56* GUI: Change the display name to "server (user name)", show the full text in the tooltip (#6728)
57* GUI: Add quit button to the settings dialog (#7547)
58* GUI: Show a warning that proxy settings do not apply to localhost (#7169)
59* CLI: Make it possible to show settings/quit by command line invocation (#7018, #7547)
60* Linux:  Add action to Desktop file to show settings, quit the client (#7018, #7547)
61
62Bugfixes:
63* Sync: Correctly sync files on Windows after they got unlocked (owncloud/enterprise#3609)
64* Log: Message priority wasn't handled correctly so the console log was flooded(#7453)
65* Vfs: Do not overwrite existing files by placeholder (#7557,  #7556)
66* Discovery:  Allow more HTTP error code to be treated as ignored dir (#7586)
67* GUI: Limit the clickable region of the 'add folder' button (#7326)
68* GUI: Don't show the "All files deleted" popup when unselecting everything with selective sync (#7337)
69* GUI: Don't put a too big icon in about dialog (#7574)
70* Shell Integration: Don't assume read-only folder when permissions are not known (#7330)
71* Sync: Temporary disable http2 support by default again (#7610)
72* Windows Installer: Remember install location on auto update (#7580)
73
74version 2.6.0 (2019-11-11)
75(last update on 5131f50ff048d5213aa69edfbae349de2822498a)
76
77Major changes and additions:
78* Rewrote discovery code for performance improvements and better maintainability.
79* Tech Preview: Add native virtual files mode for Windows 10.
80  (https://github.com/owncloud/client/wiki/Virtual-Files-on-Windows-10)
81* Tech Preview: Improvements and fixes for all virtual files mode
82  (https://github.com/owncloud/client/wiki/Virtual-Files)
83* Add basic support for libcloudproviders for gtk/gnome integration (#7209)
84* Remove support for Shibboleth auth, please use OAuth2 server app (#6451)
85
86Some small changes and bug fixes:
87* Sync: Better detection of complex renames
88* Sync: Add workarounds so HTTP2 may be enabled with Qt >=5.12.4 (#7092, #7174)
89* Sync: When propagating new remote directories, set local mtime to server mtime (#7119)
90* Sync: Add support for asynchronous upload operations (core#31851)
91* Sync: Handle blacklisted_files server capability (#434)
92* Sync: Fix downloading of files when the database is used for local discovery
93* Sync: Fix sync progress when virtual files are created (#6933)
94* Sync: Fix issue with a folder being renamed into another renamed folder (#6694)
95* Sync: Reduce client-triggered touch ignore duration from 15s to 3s
96* Sync: Fix file attribute propagation when propagating conflicts
97* Sync: Fix local discovery when removing a selective sync exclusion
98* Sync: Fix detection of case-only renames on Windows
99* Sync: Fix race conditions in the linux folder watcher (#7068)
100* Sync: Fix issue with special characters in the filename and chunked uploads (#7176)
101* Sync: Fix renaming a single file causing the "all files deleted" popup (#7204)
102* Sync: Reduce memory use during uploads by not reading whole chunks to memory (#7226)
103* Sync: Don't abort on 404, 500, 503 errors (#5088, #5859, #7199)
104* Sync: Fix parsing of etags, improving move detection (#7271, #7345)
105* Sync: If a move is forbidden, restore the source (#7410)
106* Sync: When moving is allowed but deleting is not, do not restore moved items (#7293)
107* Sync: Fix delete-before-rename bug (#7441)
108* Sync: Delay job execution a bit (#7439)
109* Sync: Make sure we schedule only one job (#7439)
110* Sync: PropagateDownload: Don't try to open readonly temporaries (#7419)
111* Sync: Don't fatal on "Storage temporarily unavailable" (#5088)
112* Experimental: Add capability to sync file deltas. (#179) (https://github.com/owncloud/client/wiki/DeltaSync)
113* Vfs: The online-only/available-locally flag applies to new remote files now.
114* Vfs: Introduce actions and warning text for switching vfs on and off.
115* Vfs: Cannot be used with selective sync at the same time.
116* Vfs: Can now be fully enabled or disabled.
117* Vfs: Suffix mode ignores remote files with the suffix (#6953)
118* Vfs: Fix behavior when file is renamed and suffix is added/removed at the same time (#7001)
119* Vfs: Improve notifications for file creation actions (#7101)
120* Vfs: Improve user-visible aspects of pinning and availability (#7111)
121* Vfs: Add note about which plugin is in use to about dialog (#7137)
122* Vfs: Fix reliability of "Download file" context menu action (#7124)
123* Vfs: Fix crash when dehydrating a complete folder
124* Vfs: Make "Free space" context menu action only enabled when it has an effect (#7143)
125* Vfs: Ensure the database temporaries are marked as excluded (#7141)
126* Vfs: Don't dehydrate existing data when switching on (#7302)
127* Vfs: Fix move detection when virtual files are involved (#7001)
128* Vfs: Lots of tests and corrections for suffix edge cases (#7350, #7261)
129* GUI: Adjust "new public link share" ui so options can be set before share creation
130* GUI: Added action to open folder in browser to selective sync context menu (#6471)
131* GUI: Add server version info to SSL info button (#6628)
132* GUI: Allow log window of running client to be opened via command line
133* GUI: Introduce conflict resolution actions to right-click menu of conflicts and files in read-only directories (#6252)
134* GUI: Update sooner when user resolves a conflict (#7073)
135* GUI: Improve error message for missing data in server replies (#7112)
136* GUI: Remove log window, instead focus on easy handling of log files (#6475)
137* GUI: Fix notification buttons sometimes getting their own window (#7185)
138* GUI: Notifications: Remove do-nothing "OK" button (#7355)
139* GUI: Add "Show file versions" context menu action (#7196)
140* GUI: Fix layout in "Add Certificate" dialog (#7184)
141* GUI: Fix duplicated error message for fatal errors (#5088)
142* GUI: Fix selective sync ui initial state after account creation (#7336)
143* GUI: Improve help text in ignore editor (#7162)
144* GUI: Show restoration items in protocol
145* Sharing: Fix issues with enforced passwords and expiry (#7246, #7245)
146* Sharing: Fix resharing an item in a share with limited permissions (#7275)
147* Sharing: Use the default expiration date even when not enforced (#7256)
148* Sharing: When sharing from context menu, show dialog if share creation fails (#7286)
149* Sharing: Always show at least readonly permissions (#7429)
150* OSX: Fix issues with Finder integration being gone after reboot
151* OSX: Use the same implementation as on Linux/Windows for the settings dialog (#7371)
152* Linux: Add autostart delay to avoid tray icon issues (#6518)
153* Folder watcher: Test before relying on it (#7241)
154* Client certs: Fix storage of large certs in older Windows versions (#6776)
155* Updater: Show a nicer version string In the "available update" notification (#6602)
156* Updater: Set correct state on network error (#3933)
157* Updater: Provide more useful options on update failure (#7217)
158* Updater: Improve logging (#3475, #7388)
159* Updater: Fix Version numer not shown in the user visible string (#7288)
160* DB: Database path for new folders now starts  with ".sync_", avoiding the "._" (#5904)
161* File hashes: Add support for SHA256 and SHA3
162* Cmd: Respect chunk sizing environment variables (#7078)
163* Log: Don't write to logdir if --logfile is passed (#6909)
164* Log: Make --logfile - work on Windows
165* Log: Make --logdir compress logs reliably (#7353)
166* Log: Print critical and fatal messages to stderr
167* Doc: Migrate the documentation to Antora (#6785)
168* Doc: Update Windows build instructions
169* Doc: Add explanation of how to manually change server url (#6579)
170* Doc: List more environment variables
171* Doc: List more config file options (owncloud/docs#1365)
172* Build: Fix KDEInstallDirs deprecation warnings (#6922)
173* Build: Fixes for compiling on "remarkable" tablet (#6870)
174* Build: Add PLUGINDIR variable for finding vfs plugins (#7027)
175* Build: Drone (#7426)
176* Build: Remove 'binary' submodule, remove outdated VS projects
177* Translations: Change the way we pull in translations  (#7426)
178* Remove the WebKit dependency (#6451)
179* Several performance optimizations
180* Update SQLite3 to 3.27.2 (if bundled)
181* Many test improvements (like #6358)
182
183version 2.5.4 (2019-03-19)
184* Crash fix: Infinite recursion for bad paths on Windows (#7041)
185* Crash fix: SocketApi mustn't send if readyRead happens after disconnected (#7044)
186* Fix rare error causing spurious local deletes (#6677)
187* Disable HTTP2 support due to bugs in Qt 5.12.1 (#7020, QTBUG-73947)
188* Fix loading of persisted cookies when loading accounts (#7054)
189* Windows: Fix breaking of unrelated explorer actions (#7004, #7023)
190* Windows: Forbid syncing of files with bytes 0x00 to 0x1F in filenames (#6987)
191* macOS: Opt out of dark mode until problems can be addressed (#7043)
192* macOS: Fix folder dehydration requests (#6977)
193* Linux: Tray: Try to establish tray after 10s if failed initially (#6518)
194* Linux: FolderWatcher: Work around missing notifications (#7068)
195* Shares: "copy link" action can create shares with expiry (#7061)
196* Selective sync: Don't collapse folder tree when changing selection (#7055)
197* Client cert dialog: Avoid incorrect behavior due to multiple signal connections
198
199version 2.5.3 (2019-02-07)
200* Connectivity: Add a noUnauthedRequests branding option
201* Credentials: Warn in log if keychain-write jobs fail (#6776)
202* Database: Move drop-index to after pragmas are set (#6881)
203* Download: Ignore Content-length for compressed HTTP2/SPDY replies (#6885)
204
205version 2.5.2 (2019-01-25)
206* Crash fix: macOS: When opening settings dialog (#6930)
207* Crash fix: macOS: While app is in background
208* Crash fix: When deleting an account (#6893)
209* Crash fix: During password dialog
210* SyncJournalDB: Change sqlite3 locking_mode to "exclusive" (#6881)
211* Wizard: Fix setting up accounts with SSL client certs (#6911)
212* Sync: Fix duplicate slashes in destination of MOVE operation (#6904)
213* Sync: Fix file unlocking triggering too many syncs (#6822)
214* GUI: Increase default size of ignore list editor (#6641)
215* GUI: Fix background color of SSL info button (#871)
216* GUI: Ctrl-L and Cmd-L open the log window (F12 is sometimes taken)
217* Vfs: Fix problem with dehydrating a file on OSX (#6844)
218* Vfs: Do not show settings window when opening a virtual file (#6764)
219* Settings: Fix lookup of system override settings (e.g. from HKEY_LOCAL_MACHINE)
220* macOS: New "make macdeployqt" target instead of deploying Qt on "make install"
221
222version 2.5.1 (2018-11-09)
223* OAuth2: Refresh the token without aborting the sync (#6814)
224* OAuth2: Fix migration from BasicAuth when the server uses LDAP
225* Linux: FolderWatcher: fix paths after dir renames (#6808)
226* Sync: Always recurse within touched directory (#6804)
227* Sync: Fixed crash when aborting sync of large files with older servers
228* Sync: Don't error out if X-OC-MTime header is missing (#6797)
229* Sync: Fix memory leak during upload (#6699)
230* Sync: Server Move: Fix too many starting slashes in the destination header (#6824)
231* Sync: Windows: Don't check if a server file name can be encoded (#6810)
232* Virtual Files: Renaming a virtual files also rename the file on the server (#6718)
233* Virtual Files: Disable the 'choose what to sync' in the new folder wizard when virtual files are selected
234* Account Settings: Add a context menu entry to enable or disable virtual files (#6725)
235* Account Settings: Fix progress being written in white when there are errors
236* Account Settings: Link to about dialog from old about space in General Settings
237* GUI: Plug a few smaller memory leaks
238* Wizard: Reset the QSslConfiguration before checking the server (#6832)
239* Wizard: Manual folder configuration should not create the local folder (#6853)
240* Windows Shell Integration: No limit on the amount of selected files (#6780)
241* Windows Shell Integration: Make OCUtil helper lib static and link it statically against crt
242* Windows: Disable autostartCheckBox if autostart is configured system wide (#6816)
243* Windows: Make qFatal() trigger the crash reporter on Windows (#6823)
244* macOS: Fix icon name in Info.plist
245* macOS: Do not select ownCloud in Finder after installation (#6781)
246* macOS: Improve macdeployqt.py
247* Discovery: Include path in error message (#6826)
248* Database: Allow downgrade from 2.6
249* Migration from 2.4: fallback to move file by file if directory move failled (#6807)
250* owncloudcmd: Read server version and dav user id from the server (#6830)
251
252version 2.5.0 (2018-09-18)
253* Local discovery: Speed up by skipping directories without changes reported by the file system watcher.
254* Experimental option to create virtual files (e.g. my_document.txt.owncloud) and download contents on demand ("placeholders")
255* Windows: Add sync folders to Explorer's navigation pane (#5295)
256* Config: Client configuration in roaming profile on Windows, XDG conform on Linux (#684, #2245)
257* Experimental option to upload conflict files (#4557)
258* Conflicts: Change conflict file naming scheme
259* Conflicts: Add user name to conflict file name (#6325)
260* Conflicts: Better comparison when connection broke (#6626)
261* Conflicts: Deal with file/folder conflicts (#6312)
262* Conflicts: Change tray icon for unresolved conflicts (#6277)
263* Conflicts: Add documentation link to conflicts listing (#6396)
264* Conflicts: Change tags to be more user friendly (#6365)
265* Share dialog: Allow opening it if the file's contents are still syncing (#4608)
266* Share dialog: Don't hide account settings when opening it (#6185)
267* Share dialog: Remove odd grey square on OSX (#5774)
268* Share dialog: Preserve the entered password when unrelated changes are done (#6512)
269* Share dialog: Fix Re-shares not not showing up (#6666)
270* Sharing: Add "copy public link" to menu (#6356)
271* Share link: Update permission wording (#6192)
272* Private links: improve legacy fileid derivation (#6745)
273* User shares: Show avatars
274* OAuth2: Remove the timeout (#6612)
275* Wizard: Remove the "Skip folder config" button and instead add a radio button (#3664)
276* Wizard: Fix for back button in OAuth2 (#6574)
277* Wizard: add a context menu to copy the OAuth2 link (enterprise
278* Wizard: Put errors into a scroll area (#6546)
279* Wizard: show a message when the URL is invalid
280* Wizard: pre-select the right radio button (#6685)
281* Selective Sync: Do not abort applying selective sync if one folder has an error (#6675)
282* Protocol: Introduce context menu with "open in browser" (#6121)
283* Protocol: Correct sorting by size (#6326)
284* Issues tab: Invalidate issues selectively (#6226)
285* Issues tab: Don't allow two issues for the same file/folder
286* Issues tab: addItem performance improvement
287* Activities: Remove the text that a server does not support activities when the account is removed (#6679)
288* Activities: Handle the fact that the username can contain a '@' (#6728)
289* Notifications: Lower hiding timeout
290* Notifications: Also have clickable link (#6236)
291* Shell integration: Add "Open in browser" entry in the explorer menu (#5903)
292* Sync journal: Fix crash when unmounting a drive while a sync is running (#6049)
293* Client certs: Improve error message (#6128)
294* Settings: Hide selective sync buttons while disconnected (#5809)
295* Settings: Show account page when account created
296* Settings: Move "About" to a dialog (#6075)
297* Settings: Force sync should wipe the blacklist (#6757)
298* Excludes: Optimize further the matching of exclude files using regular expression
299* Windows: Update Overlay Icon naming
300* Windows: Release handle/fd when file open fails (#6699)
301* Config: Look for exclude file in a relative path.
302* Config: Versionize settings
303* Settings: Fix rename migration issue on old macOS
304* Credentials: Re-try on Linux if daemon not running  (#4274, #6522)
305* Windows: Fixed MSVC build and compiler bugs
306* Proxy: Hostname validation and reconnection on setting change (#6140)
307* owncloudcmd: Set proxy earlier (#6281)
308* Exclude regex: Restore old matching on Windows (#6245)
309* Build system: Modernize the CMakeLists.txt files
310* Use standard png2ico
311* Sync: When detecting a local move, keep the local mtime (#6629)
312* Sync: Better error handling for local directory parsing (#6610)
313* Sync: Error if properties are missing (#6317)
314* Sync: Recover when the PUT reply (or chunkin's MOVE) is lost (#5106)
315* Sync: Do not abort a sync if the server closes the connection (#6516)
316* Sync: Increase the timeout for the last MOVE/PUT for huge files (#6527)
317* Sync: Fix renames making hierarchy inversion (#6694)
318* Sync: RemotePermissions: Fix empty vs null (#4608)
319* Sync: Fix the "direction" of the "all file delted" message when the server is reset (#6317)
320* Data-Fingerprint: Fix backup detection when fingerprint is empty
321* propagateuploadv1: Fixed an assert with ownCloud 5
322* Download: Use the <s:message> from the reply in the error message (#6459, #6459)
323* SocketAPI: dynamic action menu
324* Hidden option to move remote-deleted files to trash (#6265)
325* FolderStatusModel: Refresh folders on Problem sync (#6337)
326* SyncJournal: Clear etag filter before sync
327* SyncEngine: Use separate state for two unicode conversions
328* owncloudcmd: Do not read the proxy settings from the gui's config file
329* ProgressInfo: Add information for local vs remote discovery
330* SyncResult: Make sure the number of conflicts is correct (#6226)
331* Remove the "CSync" wording from the error messages
332* Apply branding to crashreporter resources file
333* SslButton: Add HTTP/2 info (#3146)
334* SslButton: Improve speed (especially on macOS) (#6031)
335* Folder: normalize the local path. (#4424)
336* Folder: Fix checking if the folder can be used as sync folder (#6654)
337* Blacklisting must prevent parent etag updates (#6411)
338* FolderStatusModel: fix potential assert
339* Nautilus integration: Not a ColumnProvider
340* Nautilus integration: Fix python3 compatibility (#6406, #6643)
341* Nautilus: Guard against None state (#6643)
342* Dolphin plugin: fall back if $XDG_RUNTIME_DIR is empty
343* Notify if an explicitly excluded folder is created (#6222)
344* Theme: unify ownCloudTheme and Theme classes
345* SyncJournalDb::setSelectiveSyncList: Always use a transaction (#6431)
346* Folders: Use "Problem" icon for unresolved conflicts (#6277)
347* macOS: Unload the Finder extension on exit (#5382, #3819)
348* Logging: Go to new file on Problem/Abort too (#6442)
349* Logging: Compress log when switching files (#6442)
350* Logging: Add persistent auto-logdir option (#6442)
351* Logging: .owncloudsynclog: Allow 10 MB of size (#6420)
352* Logging: .owncloudsynclog: Persist X-Request-ID for correlation with server (#6420)
353* UI: High-DPI layout fixes
354* Network settings: Better warnings about bad configuration (#5885)
355* Folder watcher: Show a notification if it becomes unreliable (#6119)
356* Ignore editor: Preserve comments in the exclude list file
357* Updater: Support EXE->MSI upgrade (different code than 2.4)
358* Updater: Remove unused installers before copying new ones into the appdata dir (#6690)
359* ConnectionValidator: change the minimum server version to 7.0
360* ConnectionValidator: Warn when the server version is less than 10.0
361* Valgrind: Refactorings to avoid errors
362* Crash fixes (#6562 and more)
363* Windows: Fix missing company name in our DLLs
364* Windows: Appveyor/craft changes
365* Linux: More tray workarounds (#6545)
366* libocsync: Rename to ${APPLICATION_EXECUTABLE}_csync
367* Don't use Qt deprecated API now that we required Qt 5.6
368
369version 2.4.3 (2018-08-13)
370* Windows: Don't ignore files with FILE_ATTRIBUTE_TEMPORARY (#6696, #6610)
371* OAuth2: Fix infinite loop when the refresh token is expired
372* Windows MSI: Fix crash in the auto updater
373* Nautilus: Guard against None state (#6643)
374
375version 2.4.2 (2018-07-18)
376* Linux: Tray workarounds (#6545)
377* Fix nautilus/nemo shell issues (#6393, #6406)
378* Updater: Add update channel feature (#6259)
379* Updater: Support EXE->MSI upgrade
380* SyncJournal: Fixes for sync folders on removable media (#6049, #6049)
381* SslButton: Add HTTP/2 info (#3146)
382* Fix assert when using ownCloud server 5 (which you should not) (#6403)
383* Normalize local path (#4424)
384* Blacklisting must prevent parent etag updates (#6411)
385* macdeployqt: Adjust minimum version based on our Qt (#5932)
386* macOS: Unload the Finder extension on exit (#5382, #3819)
387* Upload: Adjust timeout for final job based on file size (#6527)
388* Sync: When detecting a local move, keep the local mtime (#6629)
389* Credentials: Retry fetching from the keychain in case the keychain is still starting (#4274, #6522)
390* OAuth2: Try to refresh the token even if the credentials weren't ready (#6522)
391
392version 2.4.1 (2018-03-05)
393* Ignore files with file names that can't be encoded for the filesystem (#6287, #5676, #5719)
394* Issues: Speed up insertion and add hard upper limit (#6272)
395* Notifications: Fix "Dismiss" action
396* Notifications: Fix timer invocation on macOS
397* Notifications: Immediately poll when account online
398* Protocol: Remove entries for auto resolved conflicts (#6316)
399* owncloudcmd: Set proxy before capabilities call (#6281)
400* owncloudcmd: Do not do the capability call when --nonshib is passed
401* Avatars: Use old location for servers <10 (#6279)
402* Link shares: Change default share name (#6298)
403* Sharing: Use maximum allowed permissions for new share (#6346)
404* Nautilus integration: Work with python2 and python3
405* Windows: Don't delete contents behind directory junctions (#6322)
406* SyncJournal: Don't use LIKE with paths (#6322)
407* Fix setting launch-on-startup when the first account is set up (#6347)
408* HTTP2: Only allow with Qt 5.9.4 (#6285)
409* Crash fixes
410
411version 2.4.0 (2017-12-21)
412* If you're using 2.4.0 alpha1, please upgrade as previous alphas/rcs had an issue with hidden files and renames!
413* OAuth2 authentication support by opening external browser (#5668)
414* Shibboleth: Change to use OAuth2 if supported (#6198)
415* Sharing: Add support for multiple public link shares (#5655)
416* Sharing: Add option to copy/email private links (#5023, #5627)
417* Sharing: Add option "show file listing" (#5837)
418* Sharing: Show warning that links are public (#5747)
419* Sharing: Sharing dialog redesign: multiple share links support (#5695)
420* Sharing: Make "can edit" partially checked sometimes (#5642)
421* Sharing: Trigger a sync for folder affected by a change of sharing (#6098)
422* Wizard: Never propose an existing folder for syncing (#5597)
423* Wizard: Don't show last page anymore, go to settings directly (#5726)
424* Wizard: Handle url-shortener redirects (#5954)
425* Wizard: Resolve url/ redirects only if url/status.php not found (#5954)
426* Wizard: Add explanation text when server error is shown (#6157)
427* Wizard: Update the window size on high dpi screen (#6156)
428* Wizard: Don't report confusing error message (#6116)
429* Gui: Display the user server avatar (#5482)
430* Gui: Use display name of user, not internal name
431* Server URL: Update configuration in case of permanent redirection (#5972)
432* Gui: Allow to add multiple sync folder connection of the same folder (#6032)
433* Tray Menu: More detailed status messages
434* Tray Menu: Shibboleth: raise the browser when clicking on the tray (#6105)
435* Activity: Link errors from the account tab, allow filtering by account/folder (#5861)
436* Activity: Present conflicts more prominently (#5894)
437* Activity: Allow sorting the columns in issues and protocol tabs (#6093, #6086)
438* Selective Sync: Open sub folder context menu (#5596)
439* Selective Sync: Skip excluded folders when reading db (#5772)
440* Selective Sync: Remove local files of unselected folder despite other modified files (#5783)
441* Excludes: Remove .htaccess form list of excluded files (#5701)
442* Excludes: Hardcode desktop.ini
443* Excludes: Allow escaping "#" (#6012)
444* Excludes: Use faster matching via QRegularExpression (#6063)
445* Discovery: Increase the MAX_DEPTH and show deep folders as ignored (#1067)
446* Discovery: General speed improvements
447* Downloads: Remove empty temporary if disk space full (#5746)
448* Downloads: Read Content-MD5 header for object store setups
449* Checksums: Add global disable environment variable (#5017)
450* Quota: PropagateUpload: Model of remote quota, avoid some uploads (#5537)
451* Create favorite also in folder wizard (#455)
452* Windows: Use the application icon for the Windows 8 sidebar favorite (#2446, #5690)
453* macOS: Finder sidebar icon (#296)
454* Overlay Icons: Consider also the "shared by me" as shared (#4788)
455* Overlay Icons: Update right after sharing (#6115)
456* Overlay Icons: Fix different case paths not matching (#5257)
457* Overlay Icons: Detect changes in the shared flag (#6098)
458* Windows Overlay Icons: Potential hang fixes
459* Linux Overlay Icons: fix branded nemo and caja shell integration (#5966)
460* Credentials: Fix behavior for bad password (#5989)
461* Credentials: Don't create empty client cert keychain entries (#5752)
462* Credentials: Namespace windows cred keys (#6125)
463* Credentials: Use per-account keychain entries (#5830, #6126)
464* AccountSettings: Triggering log in re-ask about previously rejected certificates (#5819)
465* owncloudcmd: Added bandwidth limit parameter (#5707)
466* owncloudcmd: Fix timestamps, Fix --logdebug
467* AccountSettings: Sync with clean discovery on Ctrl-F6 (#5666)
468* Sync: Dynamic sizing of chunks in chunked uploads for improved big file upload performance (#5852)
469* Sync: Introduce overall errors that are not tied to a file (#5746)
470* Sync: Better messaging for 507 Insufficient Storage (#5537)
471* Sync: Create conflicts by comparing the hash of files with identical mtime/size (#5589)
472* Sync: Avoid downloads by comparing the hash of files with identical mtime/size (#6153)
473* Sync: Upload conflict files if OWNCLOUD_UPLOAD_CONFLICT_FILES environment variable is set (#6038)
474* Sync: Blacklist: Don't let errors become warnings (#5516)
475* Sync: Check etag again after active sync (#4116)
476* Sync: Rename handling fixes: duplicate file ids (#6096, #6212)
477* Sync: Rename handling fixes: File size must be equal
478* Sync: Rename handling: Fix duplicate files on abort/resume sync (#5949)
479* Sync: Add capability for invalid filename regexes (#6092)
480* SyncJournalDB: Fall back to DELETE journal mode if WAL mode does not seem to work (#5723)
481* SyncJournalDB: Don't crash if the db file is readonly (#6050)
482* SyncJournalDB: DB close error is not fatal
483* Fix at least one memory leak
484* Documentation improvements
485* Logging improvements (With Qt logging categories) (#5671)
486* Logging filtering per account (#5672)
487* Crash fixes
488* Test improvements
489* Small UI layout fixes
490* Performance improvements
491* Maintenance Mode: Detect maintenance mode (#4485)
492* Maintenance Mode: Add a 1 to 5 min reconnection delay (#5872)
493* HTTP: Send a unique X-Request-ID with each request (#5853)
494* HTTP: Support HTTP2 when built and running with Qt 5.9.x (Official packages still on Qt 5.6.x) (#5659)
495* owncloudcmd: Don't start if connection or auth fails (#5692)
496* csync: Switch build from C to C++ (#6033)
497* csync: Refactor a lot to use common data structures to save memory and memory copying
498* csync: Switch some data structures to Qt data structures
499* csync: Switch to using upper layer SyncJournalDB (#6087)
500* Switch 3rdparty/json usage to Qt5's QJson (#5710)
501* OpenSSL: Don't require directly, only via Qt (#5833)
502* Remove iconv dependency, use Qt for file system locale encoding/decoding (emoji filename support on macOS) (#5875)
503* Compilation: Remove Qt 4 code (#6025, #5702, #5505)
504* Harmonize source code style with clang-format (#5732)
505* Switch over to Qt 5 function pointer signal/slot syntax (#6041)
506* Compile with stack-smashing protection
507* Updater: Rudimentary support for beta channel (#6048)
508
509version 2.3.4 (2017-11-02)
510* Checksums: Use addData function to avoid endless loop CPU load issues with Office files
511* Packaging: Require ZLIB
512
513version 2.3.3 (2017-08-29)
514* Chunking NG: Don't use old chunking on new DAV endpoint (#5855)
515* Selective Sync: Skip excluded folders when reading DB, don't let them show errors (#5772)
516* Settings: Make window bigger so Qt version is always visible (#5760)
517* Share links: Show warning that public link shares are public (#5786)
518* Downloads: Re-trigger folder discovery on HTTP 404 (#5799)
519* Overlay Icons: Fix potential hangs on Windows
520* SyncJournalDB: Don't use ._ as filename pattern if that does not work because of SMB storage settings (#5844)
521* SyncJournalDB: Log reason for sqlite3 opening errors
522* Notifications: Proapgate "Dismiss" button action to server (#5922)
523* Switch Linux build also to Qt 5.6.2 (#5470)
524* Stopped maintaining Qt 4 buildability
525
526version 2.3.2 (2017-05-08)
527* Fix more crashes (thanks to everyone submitting to our crash reporter!)
528* Improve compatibility with server 10.0 (#5691, X-OC-Total-Size)
529* Share dialog: UI improvements, Bring to front on tray click
530* owncloudcmd: Align process return value with sync return value (#3936)
531* Fix disk free check on Windows when opening the local DB
532
533version 2.3.1 (2017-03-21)
534* Fix several crashes (thanks to everyone submitting to our crash reporter!)
535* Improve HTTP redirect handling (#5555)
536* Blacklist: Escalate repeated soft error to normal error (#5500)
537* NTFS: Do not attempt to upload two existing files with similar casing (#5544)
538* Fix URL for linking to application password generation for ownCloud 10.0 (#5605)
539
540version 2.3.0 (2017-03-03)
541* Decreased memory usage during sync
542* Overlay icons: Lower CPU usage
543* Allow to not sync the server's external storages by default
544* Switch Windows and OS X build to Qt 5.6.2
545* Switch to new ownCloud server WebDAV endpoint
546* Chunking NG: New file upload chunking algorithmn for ownCloud server 9.2
547* Allow to sync a folder to multiple different servers (Filename change from .csync_journal.db to _sync_$HASH.db)
548* Conflicts: Use the local mtime for the conflict file name (#5273)
549* "Sync now" menu item
550* SSL Client certificate support improved (Show UI, Store keys in keychain)
551* Propagator: Upload more small files in parallel
552* Sync Engine: Read data-fingerprint property to detect backups (#2325)
553* GUI: Show link to ceate an app password/token for syncing
554* Share dialog: Add 'Mail link' button
555* Caja file manager plugin
556* Make "backup detected" message to not trigger in wrong cases
557* SyncEngine: Fix renaming of folder when file are changed (#5192)
558* Fix reconnect bug if status.php intermittently returns wrong data (#5188)
559* Improve sync scheduling (#5317)
560* Overlay icons: Improvements in correctnes
561* Tray menu: Only update on demand to fix Linux desktop integration glitches
562* Progress: Better time/bandwidth estimations
563* Network: Follow certain HTTP redirects (#2791)
564* Network: Remove all cookies (including load balancers etc) when logging out
565* Discovery thread: Low priority
566* owncloudsync.log: Write during propagation
567* Better error message for files with trailing spaces on Windows
568* Excludes: Consider files in hidden folders excluded (#5163)
569* Allow sync directory to be a symlinked directory
570* Add manifest file on Windows to make the application UAC aware
571* macOS: Improve monochrome tray icons
572* Shibboleth bugfixes
573* Fixes with regards to low disk space
574* A ton of other bugfixes
575* Refactorings
576* Improved documentation
577* Crash fixes
578
579version 2.2.4 (release 2016-09-27)
580* Dolphin Plugin: Use the Application name for the socket path (#5172)
581* SyncEngine: Fix renaming of folder when file are changed (#5195)
582* Selective Sync: Fix HTTP request loop and show error in view (#5154)
583* ConnectionValidator: properly handle error in status.php request (#5188)
584* Discovery: Set thread priority to low (#5017)
585* ExcludeFiles: Fix when the folder casing is not the same in the settings and in the FS
586* ShareLink: Ensure the password line edit is enabled (#5117)
587
588version 2.2.3 (release 2016-08-08)
589* SyncEngine: Fix detection of backup (#5104)
590* Fix bug with overriding URL in config (#5016)
591* Sharing: Fix bug with file names containing percent encodes (#5042, #5043)
592* Sharing: Permissions for federated shares on servers >=9.1 (#4996, #5001)
593* Overlays: Fix issues with file name casing on OS X and Windows
594* Windows: Skip symlinks and junctions again (#5019)
595* Only accept notification API Capability if endpoint is OCS-enabled (#5034)
596* Fix windows HiDPI (#4994)
597* SocketAPI: Use different pipe name to avoid unusual delay (#4977)
598* Tray: Add minimal mode as workaround and testing tool for Linux issues (#4985, #4990)
599* owncloudcmd: Fix --exclude regression #4979
600* Small memleak: Use the full file stat destructors (#4992)
601* Fix small QAction memleak (#5008)
602* Fix crash on shutting down during propagation (#4979)
603* Decrease memory usage during sync #4979
604* Setup csync logging earlier to get all log output (#4991)
605* Enable Shibboleth debug view with OWNCLOUD_SHIBBOLETH_DEBUG env
606
607version 2.2.2 (release 2016-06-21)
608* Excludes: Don't redundantly add the same exclude files (memleak) (#4967, #4988)
609* Excludes: Only log if the pattern was really logged. (#4989)
610
611version 2.2.1 (release 2016-06-06)
612 * Fix out of memory error when too many uploads happen (#4611)
613 * Fix display errors in progress display (#4803 #4856)
614 * LockWatcher: Remember to upload files after they become unlocked (#4865)
615 * Fix overlay icons for files with umlauts (#4884)
616 * Certs: Re-ask for different cert after rejection (#4898, #4911)
617 * Progress: Don't count items without propagation jobs (#4856, #4910)
618 * Utility: Fix for the translation of minutes, second (#4855)
619 * SyncEngine: invalid the blacklist entry when the rename destination change
620
621version 2.2.0 (release 2016-05-12)
622 * Overlay icons: Refactoring - mainly for performance improvements
623 * Improved error handling with Sync Journal on USB storages (#4632)
624 * Sharing Completion: Improved UI of completion in sharing from desktop. (#3737)
625 * Show server notifications on the client (#3733)
626 * Improved Speed with small files by dynamic parallel request count (#4529)
627 * LockWatcher: Make sure to sync files after apps released exclusive locks on Windows.
628 * Improved handling of Win32 file locks and network files
629 * Workaround Ubuntu 16.04 tray icon bug (#4693)
630 * Removed the Alias field from the folder definition (#4695)
631 * Improved netrc parser (#4691)
632 * Improved user notifications about ignored files and conflicts (#4761, #3222)
633 * Add warnings for old server versions (#4523)
634 * Enable tranportation checksums if the server supports based on server capabilities (#3735)
635
636 * Default Chunk-size changed to 10MB (#4354)
637 * Documentation Improvements, ie. about overlay icons
638 * Translation fixes
639 * Countless other bugfixes
640 * Update of QtKeyChain to support Windows credential store
641 * Packaging of dolphin overlay icon module for bleeding edge distros
642
643version 2.1.1 (release 2016-02-10)
644 * UI improvements for HiDPI screens, error messages, RTL languages
645 * Fix occurences of "Connection Closed" when a new unauthenticated TCP socket is used
646 * Fix undeliberate WiFi scanning done by Qt Network classes
647 * Several fixes/improvements to the sharing dialog
648 * Several fixes/improvements to the server activity tab
649 * Create the directory when using --confdir and it does not exist
650 * Windows Overlay icons: Fix DLL and icon oddities
651 * Mac Overlay icons: Don't install legacy Finder plugin on >= 10.10
652 * Linux Overlay icons: Nemo plugin
653 * Overlay icons: Fix several wrong icon state computations
654 * Allow changeable upload chunk size in owncloud.cfg
655 * Crash fixes on account deletion
656 * Forget password on explicit sign-out
657 * OS X: Fix the file system watcher ignoring unicode paths (#4424)
658 * Windows Installer: Update to NSIS 2.50, fixes possible DLL injection
659 * Sync Engine: .lnk files
660 * Sync Engine: symlinked syn directories
661 * Sync Engine: Windows: Fix deleting and replacing of read-only files (#4308, #4277)
662 * Sync Engine: Fixes for files becoming directories and vice versa (#4302)
663 * Misc other fixes/improvements
664
665version 2.1 (release 2015-12-03)
666 * GUI: Added a display of server activities
667 * GUI: Added a separate view for not synced items, ignores, errors
668 * GUI: Improved upload/download progress UI (#3403, #3569)
669 * Allowed sharing with ownCloud internal users and groups from Desktop
670 * Changed files starting in .* to be considered hidden on all platforms (#4023)
671 * Reflect read-only permissions in filesystem (#3244)
672 * Blacklist: Clear on successful chunk upload (#3934)
673 * Improved reconnecting after network change/disconnect (#4167 #3969 ...)
674 * Improved performance in Windows file system discovery
675 * Removed libneon-based propagator. As a consequence, The client can no
676   longer provide bandwith limiting on Linux-distributions where it is
677   using Qt < 5.4
678 * Performance improvements in the logging functions
679 * Ensured that local disk space problems are handled gracefully (#2939)
680 * Improved handling of checksums: transport validation, db (#3735)
681 * For *eml-files don't reupload if size and checksum are unchanged (#3235)
682 * Ensured 403 reply code is handled properly (File Firewall) (#3490)
683 * Reduced number of PROPFIND requests to server(#3964)
684 * GUI: Added Account toolbox widget to keep account actions (#4139)
685 * Tray Menu: Added fixes for Recent Activity menu (#4093, #3969)
686 * FolderMan: Fixed infinite wait on pause (#4093)
687 * Renamed env variables to include unit (#2939)
688 * FolderStatusModel: Attempt to detect removed undecided files (#3612)
689 * SyncEngine: Don't whipe the white list if the sync was aborted (#4018)
690 * Quota: Handle special negative value for the quota (#3940)
691 * State app name in update notification (#4020)
692 * PropagateUpload: Fixed double-emission of finished (#3844)
693 * GUI: Ensured folder names which are excluded from sync can be clicked
694 * Shell Integration: Dolphin support, requires KF 5.16 and KDE Application 15.12
695 * FolderStatusModel: Ensured reset also if a folder was renamed (#4011)
696 * GUI: Fixed accessiblity of remaing items in full settings toolbar (#3795)
697 * Introduced the term "folder sync connection" in more places (#3757)
698 * AccountSettings: Don't disable pause when offline (#4010)
699 * Fixed handling of hidden files (#3980)
700 * Handle download errors while resuming as soft errors (#4000)
701 * SocketAPI: Ensured that the command isn't trimmed (#3297)
702 * Shutdown socket API before removing the db (#3824)
703 * GUI: Made "Keep" default in the delete-all dialog (#3824)
704 * owncloudcmd: Introduced return code 0 for --version and --help
705 * owncloudcmd: Added --max-sync-retries (#4037)
706 * owncloudcmd: Don't do a check that file are older than 2s (#4160)
707 * Fixed getting size for selective sync (#3986)
708 * Re-added close button in the settings window (#3713)
709 * Added abililty to handle storage limitations gracefully (#3736)
710 * Organized patches to our base Qt version into admin/qt/patches
711 * Plus: A lot of unmentioned improvements and fixes
712
713version 2.0.2 (release 2015-10-21)
714  * csync_file_stat_s: Save a bit of memory
715  * Shibboleth: Add our base user agent to WebKit
716  * SelectiveSync: Increase folder list timeout to 60
717  * Propagation: Try another sync on 423 Locked (#3387)
718  * Propagation: Make 423 Locked a soft error (#3387)
719  * Propagation: Reset upload blacklist if a chunk succeeds
720  * Application: Fix crash on early shutdown (#3898)
721  * Linux: Don't show settings dialog always when launched twice (#3273, #3771, #3485)
722  * win32 vio: Add the OPEN_REPARSE_POINTS flag to the CreateFileW call. (#3813)
723  * AccountSettings: only expand root elements on single click.
724  * AccountSettings: Do not allow to expand the folder list when disconnected.
725  * Use application SHORT name for the name of the MacOSX pkg file (ownBrander).
726  * FolderMan: Fix for removing a syncing folder (#3843)
727  * ConnectionMethodDialog: Don't be insecure on close (#3863)
728  * Updater: Ensure folders are not removed (#3747)
729  * Folder settings: Ensure path is cleaned (#3811)
730  * Propagator: Simplify sub job finished counting (#3844)
731  * Share dialog: Hide settings dialog before showing (#3783)
732  * UI: Only expand 1 level in folder list (#3585)
733  * UI: Allow folder expanding from button click (#3585)
734  * UI: Expand folder treeview on single click (#3585)
735  * GUI: Change tray menu order (#3657)
736  * GUI: Replace term "sign in" with "Log in" and friends.
737  * SetupPage: Fix crash caused by uninitialized Account object.
738  * Use a themable WebDAV path all over.
739  * Units: Back to the "usual" mix units (JEDEC standard).
740  * csync io: Full UNC path support on Win (#3748)
741  * Tray: Don't use the tray workaround with the KDE theme (#3706, #3765)
742  * ShareDialog: Fix folder display (#3659)
743  * AccountSettings: Restore from legacy only once (#3565)
744  * SSL Certificate Error Dialog: show account name (#3729)
745  * Tray notification: Don't show a message about modified folder (#3613)
746  * PropagateLocalRemove:  remove entries from the DB even if there was an error.
747  * Settings UI improvements (eg. #3713, #3721, #3619 and others)
748  * Folder: Do not create the sync folder if it does not exist (#3692)
749  * Shell integration: don't show share menu item for top level folders
750  * Tray: Hide while modifying menus (#3656, #3672)
751  * AddFolder: Improve remote path selection error handling (#3573)
752  * csync_update: Use excluded_traversal() to improve performance (#3638)
753  * csync_excluded: Add fast _traversal() function (#3638)
754  * csync_exclude: Speed up significantly (#3638)
755  * AccountSettings: Adjust quota info design (#3644, #3651)
756  * Adjust buttons on remove folder/account questions (#3654)
757
758version 2.0.1 (release 2015-09-01)
759  * AccountWizard: fix when the theme specify a override URL (#3699)
760
761version 2.0.0 (release 2015-08-25)
762  * Add support for multiple accounts (#3084)
763  * Do not sync down new big folders from server without users consent (#3148)
764  * Integrate Selective Sync into the default UI
765  * OS X: Support native finder integration for 10.10 Yosemite (#2340)
766  * Fix situation where client would not reconnect after timeout (#2321)
767  * Use SI units for the file sizes
768  * Improve progress reporting during sync (better estimations, show all files, show all bandwidth)
769  * Windows: Support paths >255 characters (#57) by using Windows API instead of POSIX API
770  * Windows, OS X: Allow to not sync hidden files (#2086)
771  * OS X: Show file name in UI if file has invalid UTF-8 in file name
772  * Sharing: Make use of Capability API (#3439)
773  * Sharing: Do not allow sharing the root folder (#3495)
774  * Sharing: Show thumbnail
775  * Client Updater: Check for updates periodically, not only once per run (#3044)
776  * Windows: Remove misleading option to remove sync data (#3461)
777  * Windows: Do not provoke AD account locking if password changes (#2186)
778  * Windows: Fix installer when installing unprivileged (#2616, #2568)
779  * Quota: Only refresh from server when UI is shown
780  * SSL Button: Show more information
781  * owncloudcmd: Fix --httpproxy (#3465)
782  * System proxy: Ask user for credentials if needed
783  * Several fixes and performance improvements in the sync engine
784  * Network: Try to use SSL session tickets/identifiers. Check the SSL button to see if they are used.
785  * Bandwidth Throttling: Provide automatic limit setting for downloads (#3084)
786  * Systray: Workaround for issue with Qt 5.5.0 #3656
787
788version 1.8.4 (release 2015-07-13)
789  * Release to ship a security release of openSSL. No source changes of the ownCloud Client code.
790
791version 1.8.3 (release 2015-06-23)
792  * Fix a bug in the Windows Installer that could crash explorer (#3320)
793  * Reduce 'Connection closed' errors (#3318, #3313, #3298)
794  * Ignores: Force a remote discovery after ignore list change (#3172)
795  * Shibboleth: Avoid crash by letting the webview use its own QNAM (#3359)
796  * System Ignores: Removed *.tmp from system ignore again. If a user
797    wants to ignore *.tmp, it needs to be added to the user ignore list.
798
799version 1.8.2 (release 2015-06-08)
800 * Improve reporting of server error messages (#3220)
801 * Discovery: Ignore folders with any 503 (#3113)
802 * Wizard: Show server error message if possible (#3220)
803 * QNAM: Fix handling of mitm cert changes (#3283)
804 * Win32: Installer translations added (#3277)
805 * Win32: Allow concurrent OEM (un-)installers (#3272)
806 * Win32: Make Setup/Update Mutex theme-unique (#3272)
807 * HTTP: Add the branding name to the UserAgent string
808 * ConnectonValidator: Always run with new credentials (#3266)
809 * Recall Feature: Admins can trigger an upload of a file from
810   client to server again (#3246)
811 * Propagator: Add 'Content-Length: 0' header to MKCOL request (#3256)
812 * Switch on checksum verification through branding or config
813 * Add ability for checksum verification of up and download
814 * Fix opening external links for some labels (#3135)
815 * AccountState: Run only a single validator, allow error message
816   overriding (#3236, #3153)
817 * SyncJournalDB: Minor fixes and simplificatons
818 * SyncEngine: Force re-read of folder Etags for upgrades from
819   1.8.0 and 1.8.1
820 * Propagator: Limit length of temporary file name (#2789)
821 * ShareDialog: Password ui fixes (#3189)
822 * Fix startup hang by removing QSettings lock file (#3175)
823 * Wizard: Allow SSL cert dialog to show twice (#3168)
824 * ProtocolWidget: Fix rename message (#3210)
825 * Discovery: Test better, treat invalid hrefs as error (#3176)
826 * Propagator: Overwrite local data only if unchanged (#3156)
827 * ShareDialog: Improve error reporting for share API fails
828 * OSX Updater: Only allow updates only if in /Applications (#2931)
829 * Wizard: Fix lock icon (#1447)
830 * Fix compilation with GCC 5
831 * Treat any 503 error as temporary (#3113)
832 * Work around for the Qt PUT corruption bug (#2425)
833 * OSX Shell integration: Optimizations
834 * Windows Shell integration: Optimizations
835 .. more than 250 commits since 1.8.1
836
837version 1.8.1 (release 2015-05-07)
838 * Make "operation canceled" error a soft error
839 * Do not throw an error for files that are scheduled to be removed,
840   but can not be found on the server. #2919
841 * Windows: Reset QNAM to proper function after hibernation. #2899 #2895 #2973
842 * Fix argument verification of --confdir #2453
843 * Fix a crash when accessing a dangling UploadDevice pointer #2984
844 * Add-folder wizard: Make sure there is a scrollbar if folder names
845   are too long #2962
846 * Add-folder Wizard: Select the newly created folder
847 * Activity: Correctly restore column sizes #3005
848 * SSL Button: do not crash on empty certificate chain
849 * SSL Button: Make menu creation lazy #3007 #2990
850 * Lookup system proxy async to avoid hangs #2993 #2802
851 * ShareDialog: Some GUI refinements
852 * ShareDialog: On creation of a share always retrieve the share
853   This makes sure that if a default expiration date is set this is reflected
854   in the dialog. #2889
855 * ShareDialog: Only show share dialog if we are connected.
856 * HttpCreds: Fill pw dialog with previous password. #2848 #2879
857 * HttpCreds: Delete password from old location. #2186
858 * Do not store Session Cookies in the client cookie storage
859 * CookieJar: Don't accidentally overwrite cookies. #2808
860 * ProtocolWidget: Always add seconds to the DateTime locale. #2535
861 * Updater: Give context as to which app is about to be updated #3040
862 * Windows: Add version information for owncloud.exe. This should help us know
863   what version or build number a crash report was generated with.
864 * Fix a crash on shutdown in ~SocketApi #3057
865 * SyncEngine: Show more timing measurements #3064
866 * Discovery: Add warning if returned etag is 0
867 * Fix a crash caused by an invalid DiscoveryDirectoryResult::iterator #3051
868 * Sync: Fix sync of deletions during 503. #2894
869 * Handle redirect of auth request. #3082
870 * Discovery: Fix parsing of broken XML replies, which fixes local file disappearing #3102
871 * Migration: Silently restore files that were deleted locally by bug #3102
872 * Sort folder sizes SelectiveSyncTreeView numerically #3112
873 * Sync: PropagateDownload: Read the mtime from the file system after writing it #3103
874 * Sync: Propagate download: Fix restoring files for which the conflict file exists #3106
875 * Use identical User Agents and version for csync and the Qt parts
876 * Prevent another crash in ~SocketApi #3118
877 * Windows: Fix rename of finished file. #3073
878 * AccountWizard: Fix auth error handling. #3155
879 * Documentation fixes
880 * Infrastructure/build fixes
881 * Win32/OS X: Apply patch from OpenSSL to handle oudated intermediates gracefully #3087
882
883version 1.8.0 (release 2015-03-17)
884 * Mac OS: HIDPI support
885 * Support Sharing from desktop: Added a share dialog that can be
886   opened by context menu in the file managers (Win, Mac, Nautilus)
887   Supports public links with password enforcement
888 * Enhanced usage of parallel HTTP requests for ownCloud 8 servers
889 * Renamed github repository from mirall to client.
890 * Mac OS: Use native notification support
891 * Selective Sync: allow to enforce selective sync in brandings.
892 * Added ability to build on Windows utilizing MingGW
893 * SQLite database fixes if running on FAT filesystems
894 * Improved detection of changing files to upload from local
895 * Preparations for the multi-account feature
896 * Fixed experience for Window manager without system tray
897 * Build with Qt 5.4
898 * Dropped libneon dependency if Qt 5.4 is available
899 * Keep files open very short, that avoid lock problems on Windows
900   especially with office software but also others.
901 * Merged some NetBSD patches
902 * Selective sync support for owncloudcmd
903 * Reorganize the source repository
904 * Prepared direct download
905 * Added Crashreporter feature to be switched on on demand
906 * A huge amount of bug fixes in all areas of the client.
907 * almost 700 commits since 1.7.1
908
909version 1.7.1 (release 2014-12-18)
910 * Documentation fixes and updates
911 * Nautilus Python plugin fixed for Python 3
912 * GUI wording fixes plus improved log messages
913 * Fix hidning of the database files in the sync directories
914 * Compare http download size with the header value to avoid broken
915   downloads, bug #2528
916 * Avoid initial ETag fetch job at startup, which is not needed.
917 * Add chunk size http header to PUT requests
918 * Fixed deteteCookie method of our CookieJar, fix for Shibboleth
919 * Added fallback for distros where XDG_RUNTIME_DIR is undefined
920 * Fix the setup wizard, bug #1989, #2264
921 * Fix scheduling of ETag check jobs, bug #2553
922 * Fix to avoid syncing more than one folder at a time, bug #2407
923 * Use fife minutes timeout for all network jobs
924 * Cleanup for Folderwizard wording
925 * Improve journal check: Remove corrupted journal files, bug #2547
926 * Fix item count in progress dialog for deletes, bug #1132
927 * Display correct file count on deletion (#1132)
928 * Fix reinitializing the folder using the wizard in certain cases (#2606)
929 * Mac OS: Fixed branding of the pkg file
930 * Mac OS: Fix display of overlay icons in certain situations (#1132)
931 * Mac OS: Use a bundled version of OpenSSL (#764, #2600, #2510)
932 * Win32: improved filesystem watcher
933 * Win32: Improve threading with shell integration
934 * Win32: Upgraded to OpenSSL 1.0.1j
935 * Win32: Improve reliability of Installer, fix removal of Shell Extensions
936
937version 1.7.0 (release 2014-11-07)
938
939 * oC7 Sharing: Handle new sharing options of ownCloud 7 correctly.
940 * Added Selective sync: Ability to unselect server folders which are
941   excluded from syncing, plus GUI and setup GUI
942 * Added overlay icons for Windows Explorer, Mac OS Finder and GNOME Nautilus.
943   Information is provided by the client via a local socket / named pipe API
944   which provides information about the sync status of files.
945 * Improved local change detection: consider file size, detect files
946   with ongoing changes and do not upload immediately
947 * Improved HTTP request timeout handler: all successful requests reset
948   the timeout counter
949 * Improvements for syncing command line tool: netrc support, improved
950   SSL support, non interactive mode
951 * Permission system: ownCloud 7 delivers file and folder permissions,
952   added ability to deal with it for shared folders and more.
953 * Ignore handling: Do not recurse into ignored or excluded directories
954 * Major sync journal database improvements for more stability and performance
955 * New library interface to sqlite3
956 * Improve "resync handling" if errors occur
957 * Blacklist improvements
958 * Improved logging: more useful meta info, removed noise
959 * Updated to latest Qt5 versions on Windows and OS X
960 * Fixed data loss when renaming a download temporary fails and there was
961   a conflict at the same time.
962 * Fixed missing warnings about reusing a sync folder when the back button
963   was used in the advanced folder setup wizard.
964 * The 'Retry Sync' button now also restarts all downloads.
965 * Clean up temporary downloads and some extra database files when wiping a
966   folder.
967 * OS X: Sparkle update to provide pkg format properly
968 * OS X: Change distribution format from dmg to pkg with new installer.
969 * Windows: Fix handling of filenames with trailing dot or space
970 * Windows: Don't use the wrong way to get file mtimes in the legacy propagator.
971
972version 1.6.4 (release 2014-10-22)
973 * Fix startup logic, fixes bug #1989
974 * Fix raise dialog on X11
975 * Win32: fix overflow when computing the size of file > 4GiB
976 * Use a fixed function to get files modification time, the
977   original one was broken for certain timezone issues, see
978   core bug #9781 for details
979 * Added some missing copyright headers
980 * Avoid data corruption due to wrong error handling, bug #2280
981 * Do improved request timeout handling to reduce the number of
982   timed out jobs, bug #2155
983   version 1.6.3 (release 2014-09-03)
984 * Fixed updater on OS X
985 * Fixed memory leak in SSL button that could lead to quick memory draining
986 * Fixed upload problem with files >4 GB
987 * MacOSX, Linux: Bring Settings window to front properly
988 * Branded clients: If no configuration is detected, try to import the data
989    from a previously configured community edition.
990
991version 1.6.2 (release 2014-07-28 )
992 * Limit the HTTP buffer size when downloading to limit memory consumption.
993 * Another small mem leak fixed in HTTP Credentials.
994 * Fix local file name clash detection for MacOSX.
995 * Limit maximum wait time to ten seconds in network limiting.
996 * Fix data corruption while trying to resume and the server does
997   not support it.
998 * HTTP Credentials: Read password from legacy place if not found.
999 * Shibboleth: Fix the waiting curser that would not disapear (#1915)
1000 * Limit memory usage to avoid mem wasting and crashes
1001 * Propagator: Fix crash when logging out during upload (#1957)
1002 * Propagator_qnam: Fix signal slot connection (#1963)
1003 * Use more elaborated way to detect that the server was reconfigured (#1948)
1004 * Setup Wizard: Reconfigure Server also if local path was changed (#1948)
1005
1006version 1.6.1 (release 2014-06-26 )
1007 * Fix 'precondition failed' bug with broken upload
1008 * Fix openSSL problems for windows deployment
1009 * Fix syncing a folder with '#' in the name
1010 * Fix #1845: do not update parent directory etag before sub
1011   directories are removed
1012 * Fix reappearing directories if dirs are removed during its
1013   upload
1014 * Fix app version in settings dialog, General tab
1015 * Fix crash in FolderWizard when going offline
1016 * Shibboleth fixes
1017 * More specific error messages (file remove during upload, open
1018   local sync file)
1019 * Use QSet rather than QHash in SyncEngine (save memory)
1020 * Fix some memory leaks
1021 * Fix some thread race problems, ie. wait for neon thread to finish
1022   before the propagator is shut down
1023 * Fix a lot of issues and warnings found by Coverity
1024 * Fix Mac some settings dialog problems
1025
1026
1027version 1.6.0 (release 2014-05-30 )
1028 * Minor GUI improvements
1029 * Qt5 compile issues fixed
1030 * Ignore sync log file in filewatcher
1031 * Install libocsync to private library dir and use rpath to localize
1032 * Fix reconnect after server disconnect
1033 * Fix "unknown action" display in Activity window
1034 * Fix memory leaks
1035 * Respect XDG_CONFIG_HOME environment var
1036 * Handle empty fileids in the journal correctly
1037 * Add abilility to compile libowncloudsync without GUI dependendy
1038 * Fix SSL error with previously-expired CAs on Windows
1039 * Fix incorrect folder pause state after start
1040 * Fix a couple of actual potential crashes
1041 * Improve Cookie support (e.g. for cookie-based load-balancers)
1042 * Introduce a general timeout of 300s for network operations
1043 * Improve error handling, blacklisting
1044 * Job-based change propagation, enables faster parallel up/downloads
1045   (right now only if no bandwidth limit is set and no proxy is used)
1046 * Significantly reduced CPU load when checking for local and remote changes
1047 * Speed up file stat code on Windows
1048 * Enforce Qt5 for Windows and Mac OS X builds
1049 * Improved owncloudcmd: SSL support, documentation
1050 * Added advanced logging of operations (file .???.log in sync
1051   directory)
1052 * Avoid creating a temporary copy of the sync database (.ctmp)
1053 * Enable support for TLS 1.2 negotiation on platforms that use
1054   Qt 5.2 or later
1055 * Forward server exception messages to client error messages
1056 * Mac OS X: Support Notification Center in OS X 10.8+
1057 * Mac OS X: Use native settings dialog
1058 * Mac OS X: Fix UI inconsistencies on Mavericks
1059 * Shibboleth: Warn if authenticating with a different user
1060 * Remove vio abstraction in csync
1061 * Avoid data loss when a client file system is not case sensitive
1062
1063version 1.5.3 (release 2014-03-10 )
1064  * Fix usage of proxies after first sync run (#1502, #1524, #1459, #1521)
1065  * Do not wipe the credentials from config for reconnect (#1499, #1503)
1066  * Do not erase the full account config if an old version of the client stored
1067    the password (related to above)
1068  * Fix layout of the network tab (fixes #1491)
1069  * Handle authentication requests by a Shibboleth IdP
1070  * Shibboleth: If no connection is available, don't open the login window
1071  * [Packaging] Debian/Ubuntu: ship sync-exclude.lst
1072  * [Packaging] Fix issues with access to gnome keychain in Fedora and RHEL6
1073  * [Packaging] Ensure all sub packages get updated
1074  * [Packaging] Fix incorrect path in desktop file (RHEL6/CentOS6)
1075
1076version 1.5.2 (release 2014-02-26 )
1077  * Fix behavior when attempting to rename Shared folder
1078  * Fix potential endless sync loops on Mac OS (#1463)
1079  * Fix potential crash when pausing during update phase (#1442)
1080  * Fix handing of shared directories
1081  * Fix online state handling (#1441, #1459)
1082  * Fix potential crash in c_iconv on Mac OS
1083  * Fix certificate chain display in SSLButton
1084  * Fix sporadicly appearing multiple auth prompts on sign-in
1085  * Show correct state icon in Account Settings right away
1086  * Re-fetch content that gets deleted from read only shared directories
1087  * Do not store the password in the config file, erase existing ones (#1469)
1088  * Shibboleth: Close browser window after login
1089  * Shibboleth: Proper invalidation if timeout during sync
1090  * Shibboleth: Do not pop up IdP login immediately when modifying account
1091  * Shibboleth: Avoid auth on restart by storing cookies in the wallet
1092  * Fix license headers
1093
1094version 1.5.1 (release 2014-02-13 )
1095  * Added an auto updater that updates the client if a
1096    more recent version was found automatically (Windows, Mac OS X)
1097  * Added a button to the account dialog that gives information
1098    about the encryption layer used for communication, plus a
1099    certificate information widget
1100  * Preserve the permission settings of local files rather than
1101    setting them to a default (Bug #820)
1102  * Handle windows lnk files correctly (Bug #1307)
1103  * Detect removes and renames in read only shares and
1104    restore the gone away files. (Bug #1386)
1105  * Fixes sign in/sign out and password dialog. (Bug #1353)
1106  * Fixed error messages (Bug #1394)
1107  * Lots of fixes for building with Qt5
1108  * Changes to network limits are now also applied during a
1109    sync run
1110  * Fixed mem leak after via valgrind on Mac
1111  * Imported the ocsync library into miralls repository.
1112    Adopted all build systems and packaging to that.
1113  * Introduce a new linux packaging scheme following the
1114    debian upstream scheme
1115  * Use a refactored Linux file system watcher based on
1116    inotify, incl. unit tests
1117  * Wizard: Gracefully fall back to HTTP if HTTPS connection
1118    fails, issuing a warning
1119  * Fixed translation misses in the propagator
1120  * Fixes in proxy configuration
1121  * Fixes in sync journal handling
1122  * Fix the upload progress if the local source is still
1123    changing when the upload begins.
1124  * Add proxy support to owncloud commandline client
1125  * NSIS fixes
1126  * A lot of other fixes and minor improvements
1127  * Improve Qt5 compatability
1128
1129version 1.5.0 (release 2013-12-12 ), csync 0.91.4 required
1130  * New owncloud propagator that skips the vio abstraction layer
1131  * Add owncloudcmd to replace the ocsync command line tool
1132  * Localize Windows installer
1133  * Allow to sign in and out
1134  * Ask for password if missing
1135  * Introduce activity view
1136  * Introduce black list for files which could not be synced
1137  * Enabling accessbility by shipping accessibility enables on OS X (#736)
1138  * Toggle Settings window when clicking on systray icon on Win and KDE (#896)
1139  * FolderWizard: Sanitize error detection (#1201)
1140  * Set proper enable state of blacklist button after the dialog was opened
1141  * Set proper tooltips in blacklist
1142  * Translatable error messages for file errors
1143  * Add man page for owncloudcmd (#1234)
1144  * Don't close setup wizard when the initial sync run is started
1145  * Close the sync journal if a folder gets removed (#1252)
1146  * Activity: Avoid horizontal scrollbar (#1213)
1147  * Fix crash (#1229)
1148  * Resize wizard appropriately (#1130)
1149  * Fix account identity test (#1231)
1150  * Maintain the file type correctly
1151  * Display rename-target in sync protocol action column
1152  * Let recursive removal also remove the top dir
1153  * If item is a directory, remove its contents from the database as well (#1257)
1154  * Install headers for owncloudsync library
1155  * Fix opening the explorer with a selected file in Windows (#1249)
1156  * Add build number into versioning scheme
1157  * Windows: Fix rename of temporary files
1158  * Windows: Fix move file operation
1159
1160version 1.4.2 (release 2013-10-18 ), csync 0.90.4 required
1161  * Do not show the warning icon in the tray (#944)
1162  * Fix manual proxy support when switching (#1016)
1163  * Add folder column to detailed sync protocol (#1037)
1164  * Fix possible endless loop in inotify (#1041)
1165  * Do not elide the progress text (#1049)
1166  * Fix high CPU load (#1073)
1167  * Reconnect if network is unavailable after startup (#1080)
1168  * Ensure paused folder stays paused when syncing with more than one folder (#1083)
1169  * Don't show desktop notification when the user doesn't want to (#1093)
1170  * System tray: Avoid quick flickering up of the ok-icon for the sync prepare state
1171  * Progress: Do not show progress if nothing is transmitted
1172  * Progress: Show number of deletes.
1173
1174version 1.4.1 (release 2013-09-24 ), csync 0.90.1 required
1175
1176  * Translation and documentation fixes.
1177  * Fixed error display in settings/status dialog, displays multi
1178    line error messages now correctly.
1179  * Wait up to 30 secs before complaining about missing systray
1180    Fixes bug #949
1181  * Fixed utf8 issues with basic auth authentication, fixes bug #941
1182  * Fixed remote folder selector, avoid recursive syncing, fixes bug #962
1183  * Handle and display network problems at startup correctly.
1184  * Enable and disable the folder watcher during syncs correctly.
1185  * Fix setting of thread priority.
1186  * Fixed file size display.
1187  * Fixed various folder wizard issues, bug #992
1188  * Made "Sync started" message optional, fixes bug #934
1189  * Fixed shutdown, avoid crashed config on win32, fixes bug #945
1190  * Pop up config wizard if no server url is configured, fixes bug #1018
1191  * Settings: calculate sidebar width dynamically, fixes bug #1020
1192  * Fixed a crash if sync folders were removed, fixes bug #713
1193  * Do proper resync after network disconnect, fixes bug #1007
1194  * Various minor code fixes
1195
1196version 1.4.0 (release 2013-09-04 ), csync 0.90.0 required
1197
1198  * New Scheduler: Only sync when there are actual changes in the server
1199  * Add a Settings Dialog, move Proxy Settings there
1200  * Transform folder Status Dialog into Account Settings, provide feedback via context menu
1201  * Add Bandwidth Control
1202  * Add a visual storage/quota indicator (context menu and account settings)
1203  * Add progress indication (context menu and account settings)
1204  * Introduce a sync history, persisting results across syncs
1205  * Move ability to switch to mono icons from a switch to a Settings option
1206  * Add "Launch on System Startup" GUI option
1207  * Add "Show Desktop Nofications"GUI option (enabled by default)
1208    top optionally disable sync notifications
1209  * Add Help item, pointing to online reference
1210  * Implement graphical selection of remote folders in FolderWizard
1211  * Allow custom ignore patterns
1212  * Add an editor for ingore patterns
1213  * ALlow to flag certain ignore patterns as discardable
1214  * Ensure to ship with all valid translations
1215  * Progress Dialog now preserves the last syncned items across sync runs
1216  * Split Setup Wizard into multiple pages again
1217  * Implement "--logfile -" to log to stdout
1218  * Add preliminary support for Shibboleth authentication
1219  * Linux: Provide more icon sizes
1220  * Linux: Do not trigger notifier on ignored files
1221  * Windows: Reduce priority of CSync thread
1222  * Documentation: Prem. updates to reflect UI changes
1223  * Significant code refactorings
1224  * Require Qt 4.7
1225  * Known issue: Under certain conditions, a file will only get uploaded after up to five minutes
1226
1227version 1.3.0 (release 2013-06-25 ), csync 0.80.0 required
1228
1229  * Default proxy port to 8080
1230  * Don't lose proxy settings when changing passwords
1231  * Support SOCKS5 proxy (useful in combination with ssh   *D)
1232  * Propagate proxy changes to csync at runtime
1233  * Improve proxy wizard
1234  * Display proxy errors
1235  * Solved problems with lock files
1236  * Warn if for some reason all files are scheduled for removal on either side
1237  * Avoid infinite loop if authentication fails in certain cases
1238  * Fix reading the password from the config in certain cases
1239  * Do not crash when configured sync target disappears
1240  * Make --help work on windows
1241  * Make sync feedback less ambiguous.
1242  * Fix icon tray tooltip sometimes showing repeated content
1243  * More use of native directory separators on Windows
1244  * Remove journal when reusing a directory that used to have a journal before
1245  * Visual clean up of status dialog items
1246  * Wizard: When changing the URL or user name, allow the user to push his data
1247    to the new location or wipe the folder and start from scratch
1248  * Wizard: Make setting a custom folder as a sync target work again
1249  * Fix application icon
1250  * User-Agent now contains "Mozilla/5.0" and the Platform name (for firewall/proxy compat)
1251  * Server side directory moves will be detected
1252  * New setup wizard, defaulting to root syncing (only for new setups)
1253  * Improved thread stop/termination
1254
1255version 1.2.5 (release 2013-04-23 ), csync 0.70.7 required
1256  * [Fixes] NSIS installer fixes
1257  * [Fixes] Fix crash race by making certificateChain() thread safe
1258  * [Fixes] Build with older CMake versions (CentOS/RHEL 6)
1259  * [Fixes] Wording in GUI
1260  * [Fixes] Silently ignore "installed = true" status.php
1261  * Set log verbosity before calling csync_init.
1262  * GUI feedback for the statistics copy action
1263  * Safer approach for detecting duplicate sync runs
1264
1265version 1.2.4 (release 2013-04-11 ), csync 0.70.6 required
1266  * [Fixes] Clarify string in folder wizard
1267  * [Fixes] Fixed some valgrind warnings
1268  * [Fixes] Ensure that only one sync thread can ever run
1269  * [Fixes] Fix default config storage path
1270  * [Fixes] Skip folders with no absolute path
1271  * [Fixes] Allow setting the configuration directory on command line
1272
1273version 1.2.3 (release 2013-04-02 ), csync 0.70.5 required
1274  * [Fixes] Unbreak self-signed certificate handling
1275
1276version 1.2.2 (release 2013-04-02 ), csync 0.70.5 required
1277  * [Fixes] Do not crash when local file tree contains symlinks
1278  * [Fixes] Correctly handle locked files on Windows
1279  * [Fixes] Display errors in all members of the SSL chain
1280  * [Fixes] Enable Accessibility features on Windows
1281  * [Fixes] Make setupFavLink work properly on Mac OS
1282  * [Fixes] Ignore temporary files created by MS Office
1283  * [Gui] Support Nautilus in setupFavLink
1284
1285version 1.2.1 (release 2013-02-26 ), csync 0.70.4 required
1286  * [Fixes] Leave configured folders on configuration changes.
1287  * [Fixes] Do not allow to finish the setup dialog if connection can't be established.
1288  * [Fixes] Better handling of credentials in setup dialog.
1289  * [Fixes] Do not leak fd's to /dev/null when using gnutls
1290  * [Fixes] Stop sync scheduling when configuration wizard starts.
1291  * [Fixes] Clear pending network requests when stepping back in config wizard.
1292  * [Fixes] User password dialog asynchronous issues.
1293  * [Fixes] Make folderman starting and stoping the scheduling.
1294  * [Fixes] Various minor fixes and cleanups.
1295  * [Fixes] Crash on pausing sync
1296  * [Fixes] Stale lock file after pausing sync
1297  * [App] Load translations from app dir or bundle as well.
1298  * [Platform] Build fixes and simplifications, ie. build only one lib.
1299  * [Platform] Added some getter/setters for configuration values.
1300  * [Platform] Added man pages.
1301  * [Platform] Simplified/fixed credential store usage and custom configs.
1302  * [Platform] Added soname version to libowncloudsync.
1303  * [Platform] Pull in Qt translations
1304  * [Gui]  Make sync result popups less annoyingq
1305  * [Gui] Fix for result popup
1306
1307version 1.2.0 (release 2013-01-24 ), csync 0.70.2 required
1308  * [GUI] New status dialog to show a detailed list of synced files.
1309  * [GUI] New tray notifications about synced files.
1310  * [GUI] New platform specific icon set.
1311  * [App] Using cross platform QtKeychain library to store credentials crypted.
1312  * [App] Use cross platform notification for changes in the local file system rather than regular poll.
1313  * [Fixes] Improved SSL Certificate handling and SSL fixes troughout syncing.
1314  * [Fixes] Fixed proxy authentication.
1315  * [Fixes] Allow brackets in folder name alias.
1316  * [Fixes] Lots of other minor fixes.
1317  * [Platform] cmake fixes.
1318  * [Platform] Improved, more detailed error reporting.
1319
1320version 1.1.4 (release 2012-12-19 ), csync 0.60.4 required
1321  * No changes to mirall, only csync fixes.
1322
1323version 1.1.3 (release 2012-11-30 ), csync 0.60.3 required
1324  * No changes to mirall, only csync fixes.
1325
1326version 1.1.2 (release 2012-11-26 ), csync 0.60.2 required
1327  * [Fixes] Allow to properly cancel the password dialog.
1328  * [Fixes] Share folder name correctly percent encoded with old Qt
1329            4.6 builds ie. Debian.
1330  * [Fixes] If local sync dir is not existing, create it.
1331  * [Fixes] lots of other minor fixes.
1332  * [GUI] Display error messages in status dialog.
1333  * [GUI] GUI fixes for the connection wizard.
1334  * [GUI] Show username for connection in statusdialog.
1335  * [GUI] Show intro wizard on new connection setup.
1336  * [APP] Use CredentialStore to better support various credential
1337          backends.
1338  * [APP] Handle missing local folder more robust: Create it if
1339          missing instead of ignoring.
1340  * [APP] Simplify treewalk code.
1341  * [Platform] Fix Mac building
1342
1343version 1.1.1 (release 2012-10-18), csync 0.60.1 required
1344  * [GUI]   Allow changing folder name in single folder mode
1345  * [GUI]   Windows: Add license to installer
1346  * [GUI]   owncloud --logwindow will bring up the log window
1347            in an already running instance
1348  * [Fixes] Make sure SSL errors are always handled
1349  * [Fixes] Allow special characters in folder alias
1350  * [Fixes] Proper workaround for Menu bug in Ubuntu
1351  * [Fixes] csync: Fix improper memory cleanup which could
1352            cause memory leaks and crashes
1353  * [Fixes] csync: Fix memory leak
1354  * [Fixes] csync: Allow single quote (') in file names
1355  * [Fixes] csync: Remove stray temporary files
1356
1357  * [GUI]   Reworked tray context menu.
1358  * [GUI]   Users can now sync the server root folder.
1359  * [Fixes] Proxy support: now supports Proxy Auto-Configuration (PAC)
1360            on Windows, reliability fixes across all OSes.
1361  * [Fixes] Url entry field in setup assistant handles http/https correctly.
1362  * [Fixes] Button enable state in status dialog.
1363  * [Fixes] Crash fixed on ending the client, tray icon related.
1364  * [Fixes] Crash through wrong delete operator.
1365  * [MacOS] behave correctly on retina displays.
1366  * [MacOS] fix focus policy.
1367  * [MacOS] Packaging improvements.
1368  * [MacOS] Packaging improvements.
1369  * [Platform] Windows: Setup closes client prior to uninstall.
1370  * [Platform] Windows: ownCloud gets added to autorun by default.
1371  * [Platform] insert correct version info from cmake.
1372  * [Platform] csync conf file and database were moved to the users app data
1373               directory, away from the .csync dir.
1374  *         Renamed exclude.lst to sync-exclude.lst and moved it to
1375            /etc/appName()/ for more clean packaging. From the user path,
1376	    still exclude.lst is read if sync-exclude.lst is not existing.
1377  *         Placed custom.ini with customization options to /etc/appName()
1378
1379version 1.0.5 (release 2012-08-14), csync 0.50.8 required
1380  * [Fixes] Fixed setup dialog: Really use https if checkbox is activated.
1381
1382version 1.0.4 (release 2012-08-10), csync 0.50.8 required
1383  * [APP] ownCloud is now a single instance app, can not start twice any more.
1384  * [APP] Proxy support
1385  * [APP] Handle HTTP redirection correctly, note new url.
1386  * [APP] More relaxed handling of read only directories in the sync paths.
1387  * [APP] Started to split off a library with sync functionality, eg for KDE
1388  * [APP] Make ownCloud Info class a singleton, more robust.
1389  * [GUI] New, simplified connection wizard.
1390  * [GUI] Added ability for customized theming.
1391  * [GUI] Improved icon size handling.
1392  * [GUI] Removed Log Window Button, log available through command line.
1393  * [GUI] Proxy configuration dialog added.
1394  * [GUI] Added Translations to languages Slovenian, Polish, Catalan,
1395          Portuguese (Brazil), German, Greek, Spanish, Czech, Italian, Slovak,
1396	  French, Russian, Japanese, Swedish, Portuguese (Portugal)
1397	  all with translation rate >90%.
1398  * [Fixes] Loading of self signed certs into Networkmanager (#oc-843)
1399  * [Fixes] Win32: Handle SSL dll loading correctly.
1400  * [Fixes] Many other small fixes and improvements.
1401
1402version 1.0.3 (release 2012-06-19), csync 0.50.7 required
1403  * [GUI] Added a log window which catches the logging if required and
1404          allows to save for information.
1405  * [CMI] Added options --help, --logfile and --logflush
1406  * [APP] Allow to specify sync frequency in the config file.
1407  * [Fixes] Do not use csync database files from a sync before.
1408  * [Fixes] In Connection wizard, write the final config onyl if
1409            the user really accepted. Also remove the former database.
1410  * [Fixes] More user expected behaviour deletion of sync folder local
1411            and remote.
1412  * [Fixes] Allow special characters in the sync directory names
1413  * [Fixes] Win32: Fixed directory removal with special character dirs.
1414  * [Fixes] MacOS: Do not flood the system log any more
1415  * [Fixes] MacOS: Put app translations to correct places
1416  * [Fixes] Win32: Fix loading of csync state db.
1417  * [Fixes] Improved some english grammar.
1418  * [Platform] Added krazy2 static code checks.
1419
1420version 1.0.2 (release 2012-05-18), csync 0.50.6 required
1421  * [GUI] New icon set for ownCloud client
1422  * [GUI] No splashscreen any more (oC Bug #498)
1423  * [GUI] Russian translation added
1424  * [GUI] Added 'open ownCloud' to traymenu
1425  * [GUI] "Pause" and "Resume" instead of Enable/Disable
1426  * [Fixes] Long running syncs can be interrupted now.
1427  * [Fixes] Dialogs comes to front on click
1428  * [Fixes] Open local sync folder from tray and status for win32
1429  * [Fixes] Load exclude.lst correctly on MacOSX
1430    + csync fixes.
1431
1432version 1.0.1 (release 2012-04-18), csync 0.50.5 required
1433  * [Security] Support SSL Connections
1434  * [Security] SSL Warning dialog
1435  * [Security] Do not store password in clear text anymore
1436  * [Security] Restrict credentials to the configured host
1437  * [Security] Added ability to forbid local password storage.
1438  * [Fixes] Various fixes of the startup behaviour.
1439  * [Fixes] Various fixes in sync status display
1440  * [GUI] Various error messages for user display improved.
1441  * [GUI] fixed terms and Translations
1442  * [GUI] fixed translation loading
1443  * [Intern] Migrate old credentials to new format
1444  * [Intern] Some code refactorings, got rid of rotten QWebDav lib
1445  * [Intern] lots of cmake cleanups
1446  * [Intern] Backport to Qt Version 4.6 for compat. with older distros.
1447  * [Platform] MacOSX porting efforts
1448  * [Platform] MacOSX Bundle creation added
1449  * [Platform] Enabled ranslations on Windows.
1450
1451
1452
1453