Selur's Little Message Board

Full Version: Esxi running macos For selur
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Quote:Just found out i passed.
Congratulation!

Cu Selur

Adamcarter

(17.03.2021, 06:10)Selur Wrote: [ -> ]
Quote:Just found out i passed.
Congratulation!

Cu Selur
Thanks Wink
Uploaded a new dev version to my Google Drive.
As a side note:
Code:
[General]
experimental=true
in the misc.ini runs Hybrid in full screen mode, this also worked with a bunch of older versions for a while. Wink

Cu Selur

Adamcarter

(23.03.2021, 10:40)Selur Wrote: [ -> ]Uploaded a new dev version to my Google Drive.
As a side note:
Code:
[General]
experimental=true
in the misc.ini runs Hybrid in full screen mode, this also worked with a bunch of older versions for a while. Wink

Cu Selur

Nice.

Thanks selur for all your hard work.
Can't believe it happens Big Grin

disableIcons=true option works again!
experimental=true allow fullscreen as well as window resize.

Is it possible somehow add an option to use experimental=true but do not always force start at fullscreen?

Colored tabs concept is interesting, but maybe make blue color a little bit darker for better visibility?
[Image: XoyAcIH.jpg]

Colored text on pressed tabs is hard to read. It probably it needs some invert effect:
[Image: F41AxOy.jpg]

Some cropped text block detected here:
[Image: CdwywyT.jpg]
Quote:disableIcons=true option works again!
lucky coincidence

Quote:Is it possible somehow add an option to use experimental=true but do not always force start at fullscreen?
'experimental' is an option where I test stuff, be lucky that the icons aren't blinking and the button size doesn't change on 'mouse over' (tested both and really didn't like it). Wink
With experimental some code is activated which is left over from some tests like the colors,...
-> so don't complain about the gui when using "experimental" Smile

About the coloring atm. the whole coloring is done in one function:
Code:
void HybridMainWindow::initColoring()
{
  if (!m_colorHelper) {
    m_tabColors.clear();
    return;
  }
  QColor standard = QColor(0, 0, 0, 255);
  QColor videoRelated = QColor(86, 177, 255, 255);
  QColor containerRelated = QColor(202, 177, 0, 255);
  QColor jobRelated = QColor(20, 134, 0, 255);

  m_tabColors.insert(QString("Crop/Resize"), videoRelated);
  m_tabColors.insert(QString("Filtering"), videoRelated);
  m_tabColors.insert(QString("Subtitle"), QColor(88, 105, 171, 255));
  m_tabColors.insert(QString("Audio"), QColor(134, 128, 0, 255));
  m_tabColors.insert(QString("Tags"), containerRelated);
  m_tabColors.insert(QString("Chapter"), QColor(141, 78, 69, 255));
  m_tabColors.insert(QString("Muxing"), containerRelated);
  m_tabColors.insert(QString("Video"), videoRelated);
  m_tabColors.insert(QString("Config"), standard);
  m_tabColors.insert(QString("Jobs"), jobRelated);
  m_tabColors.insert(QString("Log"), standard);
  m_tabColors.insert(QString("Base"), standard);
  m_tabColors.insert(QString("Container"), containerRelated);
  m_tabColors.insert(QString("Input"), QColor(174, 35, 255, 255));
  m_tabColors.insert(QString("Output"), QColor(204, 153, 0, 255));
  m_tabColors.insert(QString("Profile"), QColor(255, 159, 122, 255));
  m_tabColors.insert(QString("Source Info"), standard);
}
Originally I also planned to use different colors to group all the Vapoursynth filters into groups, but lost the motivation for this, especially since there was no 'filter queue'-support in Vapoursynth,... -> might add some coloring to the 'Filter Queue'-list in the future and mainly kept the code around for experimenting.
So atm. Hybrid uses the above RGB(A) values for text coloring if you have color preferences share them and I can test them.
(The whole thing can be overwritten changed, through the styling support of Qt,see https://forum.selur.net/Thread-INFO-hidd...id-options -> Command Line Interface (CLI))

about the box size and the text:
No clue what mac os is doing there,.. (looks fine on Windows., MacOS and Linux, there the box size is expanded to match the text length)
[attachment=1363]
Cu Selur
Seems font overlaps there because i use fontSize=14 in misc.ini
Without increased font size it looks OK.
[Image: bMdgKSN.jpg]

I see you moved to BigSur. Are these new Hybrid versions compatible with Mojave? I didn't tested a lot, but at least 2021.03.23 UI starts well on Mojave.
Build the version on BigSur so if it works it seems to be fine.

Cu Selur
Ok, great. It is also nice that you still use MKVToolNix-53 in Hybrid.
MKVToolNix-53.0.0 is the last version that support Mojave. MKVToolNix-54+ require macOS 10.15+
I'm not starting to not update tools due to compatibility issues with older MacOS versions.
Didn't have time to update the tools,... so that might change if I don't think about it while preparing the next release. Smile
Have you actually tried latest MKVtoolnix on Mojave?

Cu Selur