Skip to content

Commit 8ba5fd4

Browse files
making a comback i guess, removing deprecation notice and upping version for recent changes/fixes
1 parent d36a9e6 commit 8ba5fd4

File tree

2 files changed

+1
-13
lines changed

2 files changed

+1
-13
lines changed

README.md

-12
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,5 @@
11
Hustle: A persistent javascript queuing/messaging library
22
=============================================================
3-
__NOTE:__ Don't use this library. It's pretty much unsupported at this point.
4-
The main reason being that IndexedDB is an *ok* idea, but browsers refuse to
5-
support it to the point where it's usable for anything more than a very simple
6-
key-value store. Hustle overreached the abilities of IndexedDB in both Chrome
7-
and Firefox, often causing failed operations or causing them to outright crash.
8-
9-
This may not be the case further down the road, but until it runs reliably in
10-
most browsers, this library has two large stamps on it: `unsupported` and
11-
`caution`!
12-
13-
---
14-
153
Hustle is a javascript queuing and messaging library built on top of IndexedDB.
164

175
The idea is that sometimes you have two pieces of an application that need to

hustle.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
(function(window, undefined) {
22
"use strict";
3-
var version = '0.2.0';
3+
var version = '0.3.0';
44
var internal_db_version = 5;
55

66
var indexedDB = window.indexedDB || window.webkitIndexedDB || window.mozIndexedDB || window.oIndexedDB || window.msIndexedDB;

0 commit comments

Comments
 (0)