Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: JScript Panel (Read 427730 times) previous topic - next topic
0 Members and 2 Guests are viewing this topic.

Re: JScript Panel

Reply #1725
Dynamic sized thumbs really can't happen with the current design. When you look at a "grid", it's a single image stitched together from multiple images. The only sane thing to do right now is pick a thumb size and then resize the panel to fit and lock it.

Re: JScript Panel

Reply #1726
Dynamic sized thumbs really can't happen with the current design. When you look at a "grid", it's a single image stitched together from multiple images. The only sane thing to do right now is pick a thumb size and then resize the panel to fit and lock it.
Ah, no wonder I couldn't make heads or tales from the diff with the SMP version.

Got another one, I noticed when going into the Panel Properties for JSPlaylist, some keystrokes bleed through to FB2K when editing fields. Spacebar causes playback pausing/resuming, and Del (thank heavens) prompts if I really want to delete the selected/playing track (can't see which so must assume while playing it's the current track).

And I don't know what consequence this has, but I recently converted the few MP3's I still got in my collection (lost the bulk due to hd failure) to solely use ID3v2.4, which seems to have switched the DATE field to store recording date and puts the actual release date into another ID3 field (viewable as %release date%). So, if you configure FB2K to only use ID3v2.4 for MP3, or whatever format this gets used in, it'll affect a lot of your scripts where DATE is used for sorting. 

Re: JScript Panel

Reply #1727
I don't warn people about the dangers of assigning keyboard shortcuts consisting of a single key without modifier. I don't need to because fb2k itself already does it...


Re: JScript Panel

Reply #1728
I don't warn people about the dangers of assigning keyboard shortcuts consisting of a single key without modifier. I don't need to because fb2k itself already does it...


Thanks for the headsup. Completely forgot it's configurable. Always just assumed it was just the default key action since I never bothered assigning shortcut keys.

EDIT: As I thought, it's the default... never assigned it myself, comes OOB this way, same for the Space key.


Re: JScript Panel

Reply #1730
EDIT: As I thought, it's the default... never assigned it myself, comes OOB this way, same for the Space key.

The delete/space keys are certainly not pre-defined in the preferences. That would be insane. :/

And given you mentioned a prompt, you must be using file operations to actually remove files. For you, that might be fine but it would be an insane default for everyone else.

Without keyboard shortcut preferences defined, most playlist viewers handle the delete key being pressed to remove playlist items without touching files. JSPlaylist certainly does this and it doesn't interfere with typing.



Re: JScript Panel

Reply #1733
Thanks for the update.
It works fine now with the hardware acceleration is enabled.

Re: JScript Panel

Reply #1734
Nothing has changed.

In fact it has even gotten worse.

Re: JScript Panel

Reply #1735
Excellent news. Now just tell me you're going to uninstall it and never use it again. That would really make my day.

Re: JScript Panel

Reply #1736
But why.

What a pleasure it would be





Re: JScript Panel

Reply #1741
Beautiful. I see you optimized the block coloring. Tiny bug, last block doesn't have the space cleared behind it. Solvable by changing the loop condition to "for (var i = 1; i <= blocks; ++i)".

Re: JScript Panel

Reply #1742
^Thanks.

Showing off my appalling taste in music here but I managed to catch the rms levels exceeding the peak db...



This is with the AES 3db enabled. What would be the correct thing to do here. Leaving it as it is doesn't seem right??

Re: JScript Panel

Reply #1743
I don't think there is anything to do. Peak is of course higher than RMS, but the +3dB falsification causes reality distortion. It looks super stupid but artifically making peaks go higher would be just another lie.

Edit: same situation replicated in Audition configured for the silly RMS mode:
X
Edit 2: replaced the image with even more effective example where True Peak isn't any higher either.

Re: JScript Panel

Reply #1744
OK, I'll rather turn that +3 off then. Thanks.


Re: JScript Panel

Reply #1746
3.6.9

https://github.com/jscript-panel/release/releases/tag/latest

https://jscript-panel.github.io/docs/changes/

This breaks the existing VU Meter bundled with 3.6.7/3.6.8 and it must be reloaded from the samples menu. Apologies for the inconvenience.

But it does add full custom colour support via the right click menu and fixes padding on non-standard DPI settings.

Re: JScript Panel

Reply #1747
3.6.9

https://github.com/jscript-panel/release/releases/tag/latest

https://jscript-panel.github.io/docs/changes/

This breaks the existing VU Meter bundled with 3.6.7/3.6.8 and it must be reloaded from the samples menu. Apologies for the inconvenience.

But it does add full custom colour support via the right click menu and fixes padding on non-standard DPI settings.
I wonder if it would be possible in the Colours / Custom option to choose 3 colors to make something similar to the Rainbow option but with custom colors.

Re: JScript Panel

Reply #1748
I'm too lazy for menu options but you can right click the panel>Configure. Insert this before init() at the end.

Code: [Select]
rainbow_stops = [
[ 0.0, RGB(19, 115, 232) ],
[ 0.33, RGB(15, 168, 149) ],
[ 0.66, RGB(231, 215, 2) ],
[ 1.0, RGB(227, 9, 64) ],
];

Change the colours/remove/insert more. The rules are:

-there must be at least 2 entries
-the first value must be between 0 and 1

Re: JScript Panel

Reply #1749
I'm too lazy for menu options but you can right click the panel>Configure. Insert this before init() at the end.

Code: [Select]
rainbow_stops = [
[ 0.0, RGB(19, 115, 232) ],
[ 0.33, RGB(15, 168, 149) ],
[ 0.66, RGB(231, 215, 2) ],
[ 1.0, RGB(227, 9, 64) ],
];

Change the colours/remove/insert more. The rules are:

-there must be at least 2 entries
-the first value must be between 0 and 1

Thanks Marc