You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Seriously toned down the complexity of Lazybones. Instead of a full abstraction of PouchDB, Lazybones is now more of a OOP/Backbone cousin.
Removed the write queue. While theoretically better, I couldn't justify all of that extra code for something PouchDB kind of already handles under the hood.
Added the ability to fetch documents from views. This does not load the view's values, only the documents from that view.
Removed .load() method. I've realized that .connect() and .fetch() are fundamentally different and shouldn't be generalized like they were. This is functionality that is good to wire up by hand, as needed.
Sync no longer needs access to a Lazybones instance, just a PouchDB instance. This means that Documents can be saved without needing to create a full Lazybones object.
Integrated with Backbone Symlink. This was going to be separate, however the two were designed for each other.