hifi wrote:
> - english localization isn't too polished,
> especially capitalization at several places
> should be checked
ACK.
> - maybe the artist prefix filter should be
> locale-sensitive, too (der die das)?
I don't understand this point -- do you just mean the predefined filter for a language?
> - oscilloscope visualization comes out rather
> flickering on my box
If you mean the background -- this is a feature (which may be disabled using the right mouse button in the visualization window).
If you recognize vertical blank lines, the visualization seems to be out of sync -- currently I do not use double buffering but just waiting for the vertical blank before drawing the next frame with the standard windows GDI.
However, the oscilloscope visualization should not be much more than a joke at the moment. There are other visualizations out there that may be used together with Silverjuke.
> - most UI elements on the main window don't have
> tooltip help.
Okay -- one time, there aleady were tooltips, but I had a lot of trouble with them, however, it should not be a real problem to implement them again.
> Apart from that: man, this thing rocks BIG TIME!!!
> Marvellous work!!!
Thanks.
pet peeves
-
- Posts: 13
- Joined: 17. Dec 04, 18:13 [phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/lib/Twig/Extension/Core.php on line 1266: count(): Parameter must be an array or an object that implements Countable
pet peeves
Last edited by hifi on 17. Jan 05, 11:07, edited 1 time in total.
- Service-Team
- Posts: 2448
- Joined: 7. Dec 04, 04:48
- Location: Germany [phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/lib/Twig/Extension/Core.php on line 1266: count(): Parameter must be an array or an object that implements Countable
-
- Posts: 13
- Joined: 17. Dec 04, 18:13 [phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/lib/Twig/Extension/Core.php on line 1266: count(): Parameter must be an array or an object that implements Countable
Re: pet peeves
Service-Team wrote:
> > - maybe the artist prefix filter should be
> > locale-sensitive, too (der die das)?
>
> I don't understand this point -- do you just mean
> the predefined filter for a language?
Yep. But on second thought, at least for you and me, this preset will be just fine
> > - maybe the artist prefix filter should be
> > locale-sensitive, too (der die das)?
>
> I don't understand this point -- do you just mean
> the predefined filter for a language?
Yep. But on second thought, at least for you and me, this preset will be just fine

- Service-Team
- Posts: 2448
- Joined: 7. Dec 04, 04:48
- Location: Germany [phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/lib/Twig/Extension/Core.php on line 1266: count(): Parameter must be an array or an object that implements Countable
Re: pet peeves
> - english localization isn't too polished,
> especially capitalization at several places
> should be checked
I've corrected many strings in V0.23...
> - oscilloscope visualization comes out rather
> flickering on my box
Is it still flickering with "Flash background" disabled?
However, I can reproduce some unwanted flickering on my machine, too. This happens if one frame cannot be drawn between two vertical blanks - which is not unusual eg. with font anti-aliasing enabled. Okay, I will use DirectX or sth. like that later.
> - most UI elements on the main window don't have
> tooltip help.
Tooltips are added in V0.23
> especially capitalization at several places
> should be checked
I've corrected many strings in V0.23...
> - oscilloscope visualization comes out rather
> flickering on my box
Is it still flickering with "Flash background" disabled?
However, I can reproduce some unwanted flickering on my machine, too. This happens if one frame cannot be drawn between two vertical blanks - which is not unusual eg. with font anti-aliasing enabled. Okay, I will use DirectX or sth. like that later.
> - most UI elements on the main window don't have
> tooltip help.
Tooltips are added in V0.23
- Service-Team
- Posts: 2448
- Joined: 7. Dec 04, 04:48
- Location: Germany [phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/lib/Twig/Extension/Core.php on line 1266: count(): Parameter must be an array or an object that implements Countable
Re: pet peeves
Last edited by Service-Team on 24. Oct 07, 14:44, edited 1 time in total.
- Service-Team
- Posts: 2448
- Joined: 7. Dec 04, 04:48
- Location: Germany [phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/lib/Twig/Extension/Core.php on line 1266: count(): Parameter must be an array or an object that implements Countable
Re: pet peeves
hifi wrote:
> - oscilloscope visualization comes out rather
> flickering on my box
Okay, I'm drawing the visualization offscreen now and copy it to the screen during the vertical blank. For this purpose, the computer and the operating system (here: Window's GDI) must be fast enough to bitblt the data in this little time window - otherwise the visualization will become flickering again.
However, this should work on most machines.
> - oscilloscope visualization comes out rather
> flickering on my box
Okay, I'm drawing the visualization offscreen now and copy it to the screen during the vertical blank. For this purpose, the computer and the operating system (here: Window's GDI) must be fast enough to bitblt the data in this little time window - otherwise the visualization will become flickering again.
However, this should work on most machines.