updated todo...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2013-12-15 06:59:15 +04:00
parent 9faac8a6cd
commit 7603209627
2 changed files with 14 additions and 2 deletions

View File

@ -110,6 +110,13 @@ Roadmap
[_] 28% Gen 3 current todo
[_] 56% High priority
[_] BUG: appear to be leaking memory on very large sets of images (>8K)
| don't remember it before, so it might be due to the new
| loadImagesAround(..)
|
| Another place to check is pre-caching...
|
| Ran a test session -- we appear to never invalidate cache...
[_] 66% Bookmarks
[X] toggle
[X] save/load

View File

@ -299,10 +299,15 @@ function setupTags(viewer){
viewer
.on('imagesLoaded', function(){
TAGS = []
showStatusQ('Tags: building index...')
showStatusQ('Tags: Index: building...')
// XXX should this be sync???
var t0 = Date.now()
buildTagsFromImages()
showStatusQ('Tags: building index: done.')
var t1 = Date.now()
showStatusQ('Tags: Index: done ('+( t1 - t0 )+'ms).')
})
}