rejetto forum

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - dj

Pages: 1 ... 13 14 15 16 17 ... 20
211
The thumbfolder must be a subfolder from your videos
and the thumbs must have the same name as the videos (without .jpg, or replace +'' with +'.jpg')

I have also updated viewthumbs2, where is nothing to change.

|-videos/
  bunny.mkv (a video)
  |-thumb/
    bunny.mkv (a image) or bunny.mkv.jpg

212
HTML & templates / Re: base64 Re: Responsive small screen template
« on: October 30, 2018, 05:42:54 AM »
I can't test at the moment, but I don't find the scripting command base64decode in the docu.
Why do you need this?

213
if there's a setting or option I missed that would allow HFS to show thumbnails for video files

There is no such option in hfs, you need a template, that shows thumbnails.
Change var patt = /\.mp4|\.webm|\.mkv/ in viewthumbs (for v2.4) and put your coverpics in a subfolder thumb.

214
HTML & templates / Re: Responsive small screen template
« on: October 29, 2018, 04:46:10 PM »
changelog: touch feedback, disable upload, links

215
Bug reports / Re: LARGE folders
« on: October 25, 2018, 05:04:44 PM »
show waiting time in (default) template (works, but better show not :))
URL parameter ~files.lst is faster

Code: [Select]
[+]
<script>
var ref=window['folder-stats']||document.querySelector('header').lastChild
ref.textContent += ', '+((Date.now()-sessionStorage.start)/1000).toFixed()+'s'
window.onbeforeunload = function(){sessionStorage.start=Date.now(); ref.textContent='\u231B'}
</script>

update: show entertainment (a running clock) while waiting
update: cssonly

216
F.A.Q.s / Re: A way to display *.mp3 tags
« on: October 22, 2018, 07:10:47 AM »
mp3toion in javascript
update: mp3toion_with_ogg extracts cover
update: mp3toion_with_lyric with querystringparameter ?lyrics finds lyric

217
HTML & templates / Re: Photo thumbnail template?
« on: October 19, 2018, 03:47:18 PM »
Welcome.
You can try the new standard-template with jpgimgthumbs and picturviewer addon.
This addon downloads only the first 64kB from images and extract the thumbnails.

If this don't work, because you have no thumbs in your jpegs, then try dnd_upload_thumb.
It generates thumbs on the fly on (dnd) upload. Create subfolder thumb.
You can also use querystringparameter ?onlythumb to create only thumbnails.

update: dnd_upload_advanced with querystringparameter ?auto creates thumbs from all pics (without upload)

218
Bug reports / Re: LARGE folders
« on: October 13, 2018, 04:08:55 PM »

219
HTML & templates / Re: Responsive small screen template
« on: October 11, 2018, 01:54:35 PM »
a new version of the comment addon (works now with UTF-8)
update: dnd_upload_comment generates comment from image title (edit in file explorer)

220
Beta / Re: version 2.4
« on: October 08, 2018, 03:19:03 AM »
works also with IE11

Quote from: Mars on October 07, 2018, 09:38:10 PM
I am again confronted with a reported problem: check boxes checked have the same effect as clicking the name of the associated item

Changing:
Code: [Select]
.item-link { float:left; }
To:
Code: [Select]
.item-link { float:none; }...seems to solve the problem.

This alone don't solve the problem just as a non transparent border don't.
The checkboxes must be inserted before the link as already reported (line 952 in the new tpl)

Quote
do you think you can make a drop-down menu for the "more options"
not a drop-down, but always vertical
Code: [Select]
[+common-head]
<style>
.item-menu-dialog {width: initial}
.item-menu-dialog .pure-button {display:block}
</style>

221
Beta / Re: version 2.4
« on: October 06, 2018, 04:16:13 PM »
you are discussing about different versions of jquery.

jQuery was born many years ago when browser implementations were very different, and much of the advanced functionality (like querySelectorAll) was not implemented. Now with the new javascript, there's very little reason for jQuery.

why not use the change and write the template without jquery?
For the old templates you can leave jquery in hfs or change one line in the old template.

If I have (5 hours) time, I will try to rewrite the template without jquery.

222
Beta / Re: version 2.4
« on: October 05, 2018, 02:48:23 AM »
the checkboxes are broken again

223
Beta / Re: version 2.4
« on: October 04, 2018, 11:44:19 AM »
...and now: BIG NEWS! :)

Quickly tested. Also works with IE11 except for the More Options buttons.

Replace in css display:initial with display:inline-block (line326 in Leos tpl) and it works also with IE11

224
Beta / Re: version 2.4
« on: October 02, 2018, 04:21:14 PM »
I try to replace the script in the menu panel with css  // leave space for the fixed panel

delete the script
replace #menu-panel { position: fixed;
with      #menu-panel { position: -webkit-sticky; position: sticky; margin-bottom:5px;

225
Beta / Re: version 2.4
« on: September 25, 2018, 04:20:02 AM »
- SVG vs WebFonts (or font optimization)
If you want to optimize this (since HFS barely uses 10 icons or less), it would be great if you only use the SVG/PNG format, instead of using the complete 'Font Awesome' WebFont.

I try to use svg. Incomplete, not IE (must change i tags for IE)
update: v2 should work with IE11 (currently untested)
v3 can resize icons

Quote
New jQuery version broke old browser support
I'm not fit in jquery, but it should support Internet Explorer: 9+
the some not wide-compatible code syntax is ECMAScript6
I also think, IE11 should still be supported

Pages: 1 ... 13 14 15 16 17 ... 20