1. 07 Jul, 2015 2 commits
    • Romain Courteaud's avatar
      Release version 3.2.0 · 777b1010
      Romain Courteaud authored
      777b1010
    • Romain Courteaud's avatar
      ReplicateStorage: add automatic conflict resolution · 7407f357
      Romain Courteaud authored
      Configure the storage with the conflict_handling parameter value:
         0: (default): no resolution (ie, throw an Error)
         1: keep the local state
            (overwrites the remote document with local content)
            (delete remote document if local is deleted)
         2: keep the remote state
            (overwrites the local document with remote content)
            (delete local document if remote is deleted)
         3: keep both copies (leave documents untouched, no signature update)
      7407f357
  2. 29 Jun, 2015 3 commits
  3. 18 Jun, 2015 1 commit
  4. 17 Jun, 2015 5 commits
  5. 16 Jun, 2015 1 commit
  6. 12 Jun, 2015 1 commit
  7. 29 May, 2015 2 commits
  8. 22 May, 2015 1 commit
  9. 30 Apr, 2015 7 commits
  10. 27 Apr, 2015 2 commits
  11. 24 Apr, 2015 1 commit
  12. 15 Apr, 2015 1 commit
  13. 14 Apr, 2015 3 commits
  14. 13 Apr, 2015 1 commit
  15. 08 Apr, 2015 2 commits
  16. 03 Apr, 2015 2 commits
    • Romain Courteaud's avatar
      Drop not used test file. · ee6b9425
      Romain Courteaud authored
      ee6b9425
    • Romain Courteaud's avatar
      Stop mixing API parameters and user data. · 12bb5c55
      Romain Courteaud authored
      Modify jIO API to keep user data not modified.
          jIO.get({"_id": "foo"} -> jIO.get("foo")
          jIO.remove({"_id": "foo"} -> jIO.remove("foo")
          jIO.post({"title": "bar"}) -> jIO.post({"title": "bar"})
          jIO.put({"_id": "foo", "title": "bar"}) -> jIO.put("foo", {"title": "bar"})
          jIO.getAttachment({"_id": "foo", "_attachment": "enclosure"} -> jIO.get("foo", "enclosure")
          jIO.removeAttachment({"_id": "foo", "_attachment": "enclosure"} -> jIO.remove("foo", "enclosure")
          jIO.putAttachment({"_id": "foo", "_attachment": "enclosure", "_blob": blob} -> jIO.remove("foo", "enclosure", blob)
      
      jIO.get does not return an _id attribute anymore.
      12bb5c55
  17. 02 Apr, 2015 5 commits