1. 31 Aug, 2020 2 commits
  2. 09 Mar, 2020 1 commit
  3. 27 Feb, 2020 2 commits
  4. 26 Feb, 2020 2 commits
  5. 10 Oct, 2019 1 commit
  6. 09 Oct, 2019 1 commit
  7. 08 Oct, 2019 2 commits
  8. 09 Sep, 2019 3 commits
  9. 23 Jul, 2019 2 commits
  10. 10 Jul, 2019 2 commits
  11. 01 Jul, 2019 2 commits
  12. 28 Jun, 2019 2 commits
  13. 22 Mar, 2019 1 commit
  14. 21 Mar, 2019 2 commits
  15. 19 Mar, 2019 1 commit
  16. 11 Mar, 2019 4 commits
  17. 04 Mar, 2019 2 commits
    • Romain Courteaud's avatar
      Release 3.37.0 · 20f2d3e9
      Romain Courteaud authored
      Deprecate websql.
      
      Add group_by parameter to allDocs.
      
      Queries: Fix some parsing/serialization issues
      20f2d3e9
    • Tristan Cavelier's avatar
      Queries: Fix some parsing/serialization issues · 83d022d4
      Tristan Cavelier authored
      - fixes query toString inconsistent output
      - change serialization behavior
        ( a:b OR a:c ) -> a:( b OR c )
        a:( b OR c )   -> a:( b OR c )
      - rename simpleQuerySetKey to querySetKey
        as it also applies on complex queries.
      83d022d4
  18. 01 Mar, 2019 2 commits
  19. 14 Feb, 2019 2 commits
  20. 21 Jan, 2019 2 commits
    • Romain Courteaud's avatar
      Release 3.36.0 · f6e18118
      Romain Courteaud authored
      Add LinshareStorage
      f6e18118
    • Romain Courteaud's avatar
      [linshare] add linshare storage · 01e87e2c
      Romain Courteaud authored
      LinshareStorage uses the linshare document name as jio key.
      
      If multiple linshare documents have the same name, only the most recent modified is used.
      
      Thanks to Vincent Bechu for his work on this storage.
      01e87e2c
  21. 16 Oct, 2018 2 commits
    • Romain Courteaud's avatar
      Release 3.35.0 · 8143c5a8
      Romain Courteaud authored
      Fix IndexedDB transaction handling.
      
      Ease usage of ReplicateStorage.
      8143c5a8
    • Romain Courteaud's avatar
      [replicateStorage] Replicate all documents/attachments before raising. · e9a130ed
      Romain Courteaud authored
      Accumulate all operations done in a ReplicateReport object.
      
      This ReplicateReport is returned by the repair method in any case (success or failure).
      
      If an error occured while replicating a document, do not stop the full process and log the issue in the report.
      Which means repair now always tries to replicate all documents even if one fails.
      
      Each operation has a code to ease parsing it if needed.
      
      By default, the report only contains error code (< 100).
      It is possible to change the log level by using the 'report_level' storage parameter.
      
      If the 'debug' parameter is set to true, codes will also be displayed in the console.log.
      e9a130ed