1
0
Fork 0
mirror of https://github.com/vbatts/imgsrv.git synced 2024-11-23 16:45:39 +00:00
Commit graph

6 commits

Author SHA1 Message Date
Vincent Batts
d4824ad6a2 * more logging on upload failures.
* adding an error page
* trying to fix the tag cloud
2013-09-10 14:51:44 -04:00
5eab319c6c now images are lower cased, and searching for names is insensitive.
for your mongo db set, run:
db.fs.files.find().forEach(
  function(e) {
    e.filename = e.filename.toLowerCase();
    db.fs.files.save(e);
  }
)
2013-08-06 10:37:58 -04:00
2e7fe1a454 /k/ shows a tagcloud now 2013-08-05 20:29:16 -04:00
Vincent Batts
eb1946b223 adding layout for audio mime type files 2013-06-04 16:44:31 -04:00
Vincent Batts
c62df15429 ZOMG, just ironed out the '/v/' page, to handle embedding video with
html5 tag
2013-05-09 12:36:49 -04:00
Vincent Batts
967daf48b2 moved types out to a package 2013-05-09 12:13:46 -04:00