Minor status bar issues

Discussion related to "Everything" 1.5 Alpha.
Post Reply
win32
Posts: 12
Joined: Fri Mar 19, 2021 11:48 am

Minor status bar issues

Post by win32 »

  • #height doesnt work in picture items, is empty. In columns the same property is displayed. In videos it works in both cases.
  • ini setting aspect_ratio_format isnt respected by statusbar's #aspect-ratio:, in columns is displayed properly
  • a suggestion: Adding a statusbar render time in the debug log. I had some issues with cpu hiccups when saving videos and the statusbar displaying indexed length time in the June 2024 build. In the winter builds, the problem seems to have been resolved, but given statusbar is rendered in each window, it might worth a metric.
void
Developer
Posts: 17149
Joined: Fri Oct 16, 2009 11:31 pm

Re: Minor status bar issues

Post by void »

#height doesnt work in picture items, is empty. In columns the same property is displayed. In videos it works in both cases.
Please use
$height:

To clarify, is the height also showing empty under the Height column?
The height information is not gathered immediately. It may take several seconds for the height to display.


ini setting aspect_ratio_format isnt respected by statusbar's #aspect-ratio:, in columns is displayed properly
$variables: always use their raw values. Never formatted values.
You will need to manually apply formatting.
Everything 1.5.0.1388a adds a
<FORMAT_ASPECT_RATIO:...>
preprocessor function.
Example usage:
<FORMAT_ASPECT_RATIO:1.333>
=>
4:3



a suggestion: Adding a statusbar render time in the debug log. I had some issues with cpu hiccups when saving videos and the statusbar displaying indexed length time in the June 2024 build. In the winter builds, the problem seems to have been resolved, but given statusbar is rendered in each window, it might worth a metric.
Everything 1.5.0.1388a will now show timing information when in verbose debug mode (Tools -> Debug -> Verbose) and updating the status bar.
Post Reply