File manager is here!
Pre-release
Pre-release
1. Persistence Storage with indexedDB
- refreshing the page will not make you lose your data
- In-browser storage in IndexedDB (your data are stored locally in your browser only)
2. Search is now supported
2.1 Support partial search
- Search with
A..Z
a..z
0..9
or even other characters like in Chinese搜寻
2.2 Support 'SQL-syntax' search
- Search with
%
to represent keywords of any length ie.apple%bear
will return search forapplebear
,apple123bear
,applecarebear
...etc - search with
_
to represent unknown keyword of length 1. ie.apple_
will return search forapple1
,applebear
but NOTapple