Selur's Little Message Board
Esxi running macos For selur - Printable Version

+- Selur's Little Message Board (https://forum.selur.net)
+-- Forum: Talk, Talk, Talk (https://forum.selur.net/forum-5.html)
+--- Forum: Small Talk (https://forum.selur.net/forum-7.html)
+--- Thread: Esxi running macos For selur (/thread-1495.html)



RE: Esxi running macos For selur - Selur - 17.03.2021

Quote:Just found out i passed.
Congratulation!

Cu Selur


RE: Esxi running macos For selur - Adamcarter - 17.03.2021

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

Cu Selur
Thanks Wink


RE: Esxi running macos For selur - Selur - 23.03.2021

Uploaded a new dev version to my Google Drive.
As a side note:
[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


RE: Esxi running macos For selur - Adamcarter - 25.03.2021

(23.03.2021, 10:40)Selur Wrote: Uploaded a new dev version to my Google Drive.
As a side note:
[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.


RE: Esxi running macos For selur - shijan - 27.03.2021

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]


RE: Esxi running macos For selur - Selur - 27.03.2021

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:
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-hidden-Hybrid-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)
   
Cu Selur


RE: Esxi running macos For selur - shijan - 27.03.2021

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.


RE: Esxi running macos For selur - Selur - 27.03.2021

Build the version on BigSur so if it works it seems to be fine.

Cu Selur


RE: Esxi running macos For selur - shijan - 27.03.2021

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+


RE: Esxi running macos For selur - Selur - 27.03.2021

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