The following warnings occurred:
Warning [2] Trying to access array offset on null - Line: 198 - File: inc/plugins/google_seo.php PHP 8.3.12-nmm1 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/plugins/google_seo.php 198 errorHandler->error_callback
/inc/plugins/google_seo/redirect.php 135 google_seo_tid
/inc/class_plugins.php 142 google_seo_redirect_hook
/global.php 100 pluginSystem->run_hooks
/showthread.php 28 require_once
Warning [2] Trying to access array offset on null - Line: 14 - File: inc/plugins/cookielaw.php(272) : eval()'d code PHP 8.3.12-nmm1 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/plugins/cookielaw.php(272) : eval()'d code 14 errorHandler->error_callback
/inc/plugins/cookielaw.php 272 eval
/inc/class_plugins.php 142 cookielaw_global_intermediate
/global.php 100 pluginSystem->run_hooks
/showthread.php 28 require_once
Warning [2] Trying to access array offset on null - Line: 14 - File: inc/plugins/cookielaw.php(272) : eval()'d code PHP 8.3.12-nmm1 (Linux)
File Line Function
/inc/class_error.php 153 errorHandler->error
/inc/plugins/cookielaw.php(272) : eval()'d code 14 errorHandler->error_callback
/inc/plugins/cookielaw.php 272 eval
/inc/class_plugins.php 142 cookielaw_global_intermediate
/global.php 100 pluginSystem->run_hooks
/showthread.php 28 require_once



This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm whether you accept or reject these cookies being set.

A cookie will be stored in your browser regardless of choice to prevent you being asked this question again. You will be able to change your cookie settings at any time using the link in the footer.

Esxi running macos For selur
Quote:Just found out i passed.
Congratulation!

Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Reply
(17.03.2021, 06:10)Selur Wrote:
Quote:Just found out i passed.
Congratulation!

Cu Selur
Thanks Wink
Reply
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
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Reply
(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.
Reply
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]
Reply
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-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)
   
Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Reply
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.
Reply
Build the version on BigSur so if it works it seems to be fine.

Cu Selur
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Reply
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+
Reply
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
----
Dev versions are in the 'experimental'-folder of my GoogleDrive, which is linked on the download page.
Reply


Forum Jump:


Users browsing this thread: 11 Guest(s)