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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-07-21Fix othersJoas Schilling
2016-07-2110.0 beta it isLukas Reschke
2016-07-20Implement brute force protectionLukas Reschke
Class Throttler implements the bruteforce protection for security actions in Nextcloud. It is working by logging invalid login attempts to the database and slowing down all login attempts from the same subnet. The max delay is 30 seconds and the starting delay are 200 milliseconds. (after the first failed login)
2016-07-13Save the files external mount id in the mount cache tableRobin Appelman
2016-06-29fix version stringDaniel Molkentin
2016-06-299.1.0 RC 1Daniel Molkentin
2016-06-24Repair step to adjust link share delete permissionsVincent Petry
2016-06-17store last check timestamp in token instead of sessionChristoph Wurst
2016-06-08ownCloud 9.1.0 beta 2v9.1.0beta2v9.0.1beta2Daniel Molkentin
2016-05-31Create session tokens for apache auth usersChristoph Wurst
2016-05-30Add bzip2 to known mimetypesVictor Dubiniuk
2016-05-26Update license headersLukas Reschke
2016-05-259.1.0 beta 1v9.1.0beta1C Montero-Luque
2016-05-24when generating browser/device token, save the login name for later password ↵Christoph Wurst
checks
2016-05-20Increase version for DB additionVincent Petry
2016-05-12Use CLOB for auth token names to allow long user agent stringsChristoph Wurst
2016-05-11increase version number to trigger db migrationChristoph Wurst
2016-03-02Increase all versions on master which is now 9.1Joas Schilling
2016-03-01Update author informationLukas Reschke
Probably nice for the people that contributed to 9.0 to see themselves in the AUTHORS file :)
2016-02-26exchange user_id_key for a unique one.Arthur Schiwon
2016-02-24add index definitions for comments tablesArthur Schiwon
2016-02-22Make sure we can store strings as per the interfaceJoas Schilling
2016-02-189.0.0 beta 2v9.0.0beta2C Montero-Luque
2016-02-119.0.0 beta 1v9.0beta1C Montero-Luque
2016-02-04Introduce some mimetypes for richdocumentsFaruk Uzun
* application/vnd.lotus-wordpro * application/vnd.visio * application/vnd.wordperfect * application/msonenote
2016-02-03Add store/retrieve checksumsRoeland Jago Douma
* Add extra db column to filecache * Bump version * Update filecache code to actually handle checksum * Webdav code to store/retrieve checksums
2016-01-29introduce comments read marke tables, comes with user cleanup after deletionArthur Schiwon
2016-01-22Increase version due to new tablesVincent Petry
2016-01-12Happy new year!Thomas Müller
2016-01-06[Share 2.0] Update db structure to stay backwards compatibleRoeland Jago Douma
2015-12-01Set "SetEnv" within base `.htaccess` fileLukas Reschke
mod_rewrite as used by the front controller may require a `RewriteBase` in case the installation is done using an alias. Since we cannot enforce a writable `.htaccess` file this will move the `front_controller_active` environment variable into the main .htaccess file. If administrators decide to have this one not writable they can still enable this feature by setting the `front_controller_active` environment variable within the Apache config.
2015-11-30Allow DI the system tag stuff without Application classJoas Schilling
2015-11-25[Sharing 2.0] Add a new db column for the file ownerRoeland Jago Douma
We need to store the owner of a file in the db to do efficient queries on the owner of a file. Without this we need to construct fill paths for each file id in the table and see who the owner of a file is. Which does not scale.
2015-11-05Drop unused tables principalgroups and principalsMorris Jobke
* was removed in 3e84f170e7133d9acc46123ba4c901a24e438b2c
2015-10-26Update license headersLukas Reschke
2015-10-21increase core version and add dav version numberMorris Jobke
2015-10-14Master is now 9.0.0 developmentJoas Schilling
2015-10-068.2 RC1v8.2RC1C Montero-Luque
2015-10-05update licence headers via scriptMorris Jobke
2015-10-02Added mimetype repair stepRoeland Jago Douma
* Version number increased
2015-10-01add more precise version to also repair git master instancesMorris Jobke
2015-09-188.2 beta1v8.2beta1C Montero-Luque
2015-09-17Make version.php PHP 5.3 compatible for the build scriptsVincent Petry
2015-09-15Use integer for availability instead of boolRobin McCorkell
2015-08-30Restrict upgrades to explicit allowed versionVincent Petry
version.php now contains the previous ownCloud version from which upgrades are allowed. Any other upgrades will show a message that the upgrade/downgrade is not supported.
2015-08-11Bump version patch number, fixes #18129Robin McCorkell
2015-07-24Add an update script to reset the valueJoas Schilling
In case encryption was not enabled, we accidently set encrypted = 1 for files inside mount points, since 8.1.0. This breaks opening the files in 8.1.1 because we fixed the code that checks if a file is encrypted. In order to fix the file, we need to reset the flag of the file. However, the flag might be set because the file is in fact encrypted because it was uploaded at a time where encryption was enabled. So we can only do this when: - Current version of ownCloud before the update is 8.1.0 or 8.2.0.(0-2) - Encryption is disabled - files_encryption is not known in the app config If the first two are not the case, we are save. However, if files_encryption values exist in the config, we might have a false negative here. Now if there is no file with unencrypted size greater 0, that means there are no files that are still encrypted with "files_encryption" encryption. So we can also safely reset the flag here. If this is not the case, we go with "better save then sorry" and don't change the flag but write a message to the ownCloud log file.
2015-07-14Remove index on file_target of share tableMorris Jobke
* causes issues on InnoDB because it exceeds the maximal key length of an index which is 767 (3-byte charset * varchar(512) = 1536) * fixes #17619
2015-07-08Add indexes to speedup DB queriesMorris Jobke
* file_target is often used in the sharing code in JOIN statements for retrieval of shares
2015-07-01This will be 8.2 in the futureFrank Karlitschek