after new patch "hide caption titlebar plus" extension doesnt work properly

Add-ons for Pale Moon and other applications
General discussion, compatibility, contributed extensions, themes, plugins, and more.

Moderators: Lootyhoof, FranklinDM

MrAccident
Apollo supporter
Apollo supporter
Posts: 44
Joined: 2017-11-19, 19:34

Re: after new patch "hide caption titlebar plus" extension doesnt work properly

Post by MrAccident » 2021-02-06, 15:44

Solution: what worked for me ― is in the extension "Tab Mix Plus" - to move Tab-Bar position to the bottom (may require a restart). Takes getting used to, but possible to keep "Hide Caption Titlebar Plus".

Moonchild - you mean the version of "Hide Caption Titlebar Plus"? I had 2.something; now switched to 4.1.1 from Classic Addons Archive 2.0.2. The issue is in both. It also seems that not only the Tabs-Bar was invisible ― but also opening new tabs - didn't show their content, and even a menu from the menu-button was hidden below the only visible bar, while the part on it - visible.

User avatar
Lootyhoof
Themeist
Themeist
Posts: 1580
Joined: 2012-02-09, 23:35
Location: United Kingdom

Re: after new patch "hide caption titlebar plus" extension doesnt work properly

Post by Lootyhoof » 2021-02-06, 15:57

Moonchild wrote:
2021-02-06, 14:24
Can someone please tell me the extension id of this (and the latest version to cause issues) so I can make sure to warn people about known problems with it?
The ID is hidecaptionplus-dp@dummy.addons.mozilla.org. I don't see any issues though personally, though that's from a quick glance.

Honestly, looking at this add-on the code is such an absolute mess. I don't envy anyone that dares inspect it. That said though, with some minor adjustments in version 2.8.6 (in avoidance of people just patching for their own sake I won't mention what here, please do properly fork if you want to help!) you do get a nice add-on that seems to work reasonably well in both Pale Moon and Basilisk. That version is even a true overlay add-on. Plus it does seem to perform some magic such that it can use a custom titlebar on Linux (as do later versions it seems too).

User avatar
billmcct
Board Warrior
Board Warrior
Posts: 1045
Joined: 2012-09-04, 15:19
Location: Union City Georgia USA

Re: after new patch "hide caption titlebar plus" extension doesnt work properly

Post by billmcct » 2021-02-06, 17:55

I am using "Hide Caption Titlebar Plus 2.8.7rc" which is not in the CAA. I downloaded it from his support site years ago.
The only problem I had with the extension, was that it would overlay the titlebar text onto the buttons I have on the Menu bar. A CSS trick fixed that. The problem that folks are having with the Tabs bar disappearing is another matter.
I suspect another add-on.
--------------------------------------------------------------------------------------------------------------
Dell Precision 15 7550
Windows 10 Pro. 22H2 19045.5965
Xeon W-10885M
64 GB DDR4 ECC memory (128 GB max)
500 GB Corsair T500 main M2 SSD
1 TB Intel storage M2 SSD (6 TB max)
Intel onboard GPU 1080p
Quadro RTX 5000 Max-Q GPU 4K

Pale Moon 33.7.x x64 AVX2 build

The difference between the Impossible and the Possible lies in a man's Determination.
Tommy Lasorda

riiis
Lunatic
Lunatic
Posts: 471
Joined: 2014-05-17, 15:51
Location: USA

Quick fix "hide caption titlebar plus" version 2.8.6

Post by riiis » 2021-02-06, 20:01

"Hide Caption Titlebar Plus" views Pale Moon 29 as Firefox 29. Thus, the Australis UI is erroneously loaded. To fix, the extension's chrome.manifest file needs to be changed. For example, change lines 3 to 5 of chrome.manifest from:

Code: Select all

# *** SEPARATE Manifests *** for AUSTRALIS (Fx29+) and Fx28-
manifest   chrome/fx4/fx4.manifest                  appversion<29
manifest   chrome/australis/australis.manifest      appversion>=29
Change to:

Code: Select all

# *** SEPARATE Manifests *** for Pale Moon and Basilisk-
manifest   chrome/fx4/fx4.manifest                   application={8de7fcbb-c55c-4fbe-bfc5-fc555c87dbc4} 
manifest   chrome/australis/australis.manifest       application={ec8030f7-c20a-464f-9b0e-13a3a9e97384}  
Additionally, Pale Moon 29 requires that Pale Moon be listed as a target application in the extension's install.rdf file, such as:

Code: Select all

      <!-- Pale Moon -->
    <em:targetApplication>
      <Description>
        <em:id>{8de7fcbb-c55c-4fbe-bfc5-fc555c87dbc4}</em:id>
        <em:minVersion>28.0</em:minVersion>
        <em:maxVersion>29.*</em:maxVersion>
      </Description>
    </em:targetApplication> 
      <!-- Basilisk -->
    <em:targetApplication>
      <Description>
        <em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id>
        <em:minVersion>52.0</em:minVersion>
        <em:maxVersion>*</em:maxVersion>
      </Description>
	</em:targetApplication> -->
The changes above are a quick fix for individual use. To fork this extension properly, more changes would appear needed and appropriate.

New Tobin Paradigm

Re: after new patch "hide caption titlebar plus" extension doesnt work properly

Post by New Tobin Paradigm » 2021-02-06, 20:27

Stop. I had hoped you wouldn't fall back to your bullshit of ignoring the proper recommendations to not half-ass and selfishly localhack extensions instead of properly forking and sharing them for everyone's benefit.

But I suppose hoping for constructive cooperation from someone who, in today's vernacular, tried to cancel me in 2016 was too much to dream of.

Why don't you focus on your own extensions. Big changes are coming and you have work to do.

User avatar
Moonchild
Pale Moon guru
Pale Moon guru
Posts: 37765
Joined: 2011-08-28, 17:27
Location: Motala, SE

Re: after new patch "hide caption titlebar plus" extension doesnt work properly

Post by Moonchild » 2021-02-06, 20:56

Thanks lootyhoof. blocklist entry added.
"A dead end street is a place to turn around and go into a new direction" - Anonymous
"Seek wisdom, not knowledge. Knowledge is of the past; wisdom is of the future." -- Native American proverb
"Linux makes everything difficult." -- Lyceus Anubite

riiis
Lunatic
Lunatic
Posts: 471
Joined: 2014-05-17, 15:51
Location: USA

Re: after new patch "hide caption titlebar plus" extension doesnt work properly

Post by riiis » 2021-02-07, 19:14

The latest CA-Archive version of Hide Caption Titlebar Plus (version 4.1.1) appears to work, out-of-the-box, in the latest version of Pale Moon (version 29.0.1).

This is in Windows 10. I don't know if Hide Caption Titlebar Plus (version 4.1.1) will work in Linux, or with prior version of Pale Moon 29.0.0.
hidecaptiontitlebar.jpg
You do not have the required permissions to view the files attached to this post.
Last edited by riiis on 2021-02-07, 21:22, edited 1 time in total.

User avatar
billmcct
Board Warrior
Board Warrior
Posts: 1045
Joined: 2012-09-04, 15:19
Location: Union City Georgia USA

Re: after new patch "hide caption titlebar plus" extension doesnt work properly

Post by billmcct » 2021-02-07, 20:00

That has to be set in HCTPs options.
Unless set in options the close X will close tabs.
--------------------------------------------------------------------------------------------------------------
Dell Precision 15 7550
Windows 10 Pro. 22H2 19045.5965
Xeon W-10885M
64 GB DDR4 ECC memory (128 GB max)
500 GB Corsair T500 main M2 SSD
1 TB Intel storage M2 SSD (6 TB max)
Intel onboard GPU 1080p
Quadro RTX 5000 Max-Q GPU 4K

Pale Moon 33.7.x x64 AVX2 build

The difference between the Impossible and the Possible lies in a man's Determination.
Tommy Lasorda

riiis
Lunatic
Lunatic
Posts: 471
Joined: 2014-05-17, 15:51
Location: USA

Re: after new patch "hide caption titlebar plus" extension doesnt work properly

Post by riiis » 2021-02-07, 21:18

billmcct wrote:
2021-02-07, 20:00
That has to be set in HCTPs options.
Unless set in options the close X will close tabs.
Thanks. I changed the close X option to the default. The add-on now functions just fine.

User avatar
billmcct
Board Warrior
Board Warrior
Posts: 1045
Joined: 2012-09-04, 15:19
Location: Union City Georgia USA

Re: after new patch "hide caption titlebar plus" extension doesnt work properly

Post by billmcct » 2021-02-07, 23:32

I don't know what was changed in 29.0.1 but it fixed my original HCTP and both LiveClick and LiveClick Lunar.
Don't know if it had any effect on Tree Style Tabs.
--------------------------------------------------------------------------------------------------------------
Dell Precision 15 7550
Windows 10 Pro. 22H2 19045.5965
Xeon W-10885M
64 GB DDR4 ECC memory (128 GB max)
500 GB Corsair T500 main M2 SSD
1 TB Intel storage M2 SSD (6 TB max)
Intel onboard GPU 1080p
Quadro RTX 5000 Max-Q GPU 4K

Pale Moon 33.7.x x64 AVX2 build

The difference between the Impossible and the Possible lies in a man's Determination.
Tommy Lasorda

User avatar
__NM64__
Lunatic
Lunatic
Posts: 387
Joined: 2013-10-17, 05:29
Location: minus 4 hours UTC

Re: after new patch "hide caption titlebar plus" extension doesnt work properly

Post by __NM64__ » 2021-02-09, 23:02

AFAICT the versions that predate Firefox 29 support, such as extension version 2.7.3.1 and version 2.7.2.1, "just work" in Pale Moon 29 in the exact same way that the slightly-newer 2.8.7rc "just worked" in Pale Moon 28 - no modification required.

Interestingly, despite 2.7.3.1 listed as being specifically for Windows, it seems to actually work on my installation of Linux Mint 18.3 without issue. Similarly, the extension file name for 2.7.2.1 lists it as being specifically for Windows, but the (archived) webpage listing for 2.7.2.1 is not listed as being only for Windows and it too seems to work perfectly fine on Linux Mint 18.3.
Moonchild wrote:
2021-02-06, 20:56
Thanks lootyhoof. blocklist entry added.
I don't suppose there's a way for Pale Moon's extension blocklist to only block specific versions of the extension?

I had version 2.7.2.1 installed on the aforementioned Linux Mint 18.3 PC (which is basically just a basic browsing and email PC used by my elderly parents) and by pure dumb luck discovered that it had gotten disabled at some point. When I previously tested Pale Moon v29.0.0 on that PC, I specifically noticed that 2.8.7rc was borking things up and therefore intentionally downgraded the extension to 2.7.2.1, resulting in things once again working as they were in Pale Moon 28 (I've since manually upgraded the extension to version 2.7.3.1, and things continued to seemingly work fine).

I had the extension blocklist setting set to "Low", yet even that seemed to have resulted in the extension getting disabled (which I also double-checked and confirmed via testing with a separate copy of Pale Moon). I really don't want to have the extension blocklist setting set to "Off" just to have it not disable the seemingly-working version 2.7.2.1 or version 2.7.3.1 due to newer versions of the extension borking things out.
CPU: Xeon E3-1246 v3 (4c/8t Haswell/Intel 4th gen) — core & cache @ 3.9GHz via multicore enhancement
GPU: Intel integrated HD Graphics P4600
RAM: 4x8GB Corsair Vengence @ DDR3-1600
OS: Linux Mint 20.3 Xfce + [VM] Win7 SP1 x64

User avatar
Moonchild
Pale Moon guru
Pale Moon guru
Posts: 37765
Joined: 2011-08-28, 17:27
Location: Motala, SE

Re: after new patch "hide caption titlebar plus" extension doesnt work properly

Post by Moonchild » 2021-02-09, 23:16

__NM64__ wrote:
2021-02-09, 23:02
I don't suppose there's a way for Pale Moon's extension blocklist to only block specific versions of the extension?
There is, but there is simply no time to test every version on every OS, and I've just added it as level 1 meaning you will be informed that the extension is known to cause problems, use with caution.
"A dead end street is a place to turn around and go into a new direction" - Anonymous
"Seek wisdom, not knowledge. Knowledge is of the past; wisdom is of the future." -- Native American proverb
"Linux makes everything difficult." -- Lyceus Anubite

User avatar
billmcct
Board Warrior
Board Warrior
Posts: 1045
Joined: 2012-09-04, 15:19
Location: Union City Georgia USA

Re: after new patch "hide caption titlebar plus" extension doesnt work properly

Post by billmcct » 2021-02-10, 01:51

Actually any version above Version "2.7.3.1-signed (windows)" (and don't know why it's designated windows cause it is like all previous versions and works in Linux) has Australis added. The 2.8.7rc version I use works fine though, with the exception of the warning.
--------------------------------------------------------------------------------------------------------------
Dell Precision 15 7550
Windows 10 Pro. 22H2 19045.5965
Xeon W-10885M
64 GB DDR4 ECC memory (128 GB max)
500 GB Corsair T500 main M2 SSD
1 TB Intel storage M2 SSD (6 TB max)
Intel onboard GPU 1080p
Quadro RTX 5000 Max-Q GPU 4K

Pale Moon 33.7.x x64 AVX2 build

The difference between the Impossible and the Possible lies in a man's Determination.
Tommy Lasorda

User avatar
__NM64__
Lunatic
Lunatic
Posts: 387
Joined: 2013-10-17, 05:29
Location: minus 4 hours UTC

Re: after new patch "hide caption titlebar plus" extension doesnt work properly

Post by __NM64__ » 2021-02-10, 04:41

billmcct wrote:
2021-02-10, 01:51
The 2.8.7rc version I use works fine though, with the exception of the warning.
I myself had been using 2.8.7rc on Pale Moon 28, but the issue I found was that, because it treats Pale Moon 29 as Firefox 29, it's not possible to have a functioning "Pale Moon" button like you have in stock Pale Moon when the menu bar is set to not be visible - it forces the according setting for showing the Pale Moon button to "never" (which you can confirm via about:config - the according setting should be the only one with "fx4" in the name).

Simply using a version of the extension that predates Firefox 29 avoids that, allowing for the same functioning visibility setting for the Pale Moon button experienced with Pale Moon 28.

But yes, technically other than that, 2.8.7rc does work on Pale Moon 29, but for me the entire reason I was using the extension in the first place was so that I could achieve the "tabs in title bar on a maximized window with a Pale Moon button" appearance on Linux (I'm referring specifically to the GUI appearance that debuted back with Firefox 4 on Windows)
CPU: Xeon E3-1246 v3 (4c/8t Haswell/Intel 4th gen) — core & cache @ 3.9GHz via multicore enhancement
GPU: Intel integrated HD Graphics P4600
RAM: 4x8GB Corsair Vengence @ DDR3-1600
OS: Linux Mint 20.3 Xfce + [VM] Win7 SP1 x64

Gumboots

Re: after new patch "hide caption titlebar plus" extension doesnt work properly

Post by Gumboots » 2021-02-10, 09:09

Just got the warning about this. HCTP 4.1.1 is still working without issues for me, on a Windows 10 box, but I'll keep an eye on it. I'll use it as long as I can, because my current setup suits me perfectly, but if it stops working I'll look at the alternative of Compact Moon combined its Options Menu.
Marcus wrote:
2021-02-04, 12:27
Moonchild wrote:
2021-02-04, 01:40
A window title is essential.
I'm not advocating the elimination of the titlebar, only an option to hide it.
It's a matter of elegance and functionality: to have only the necessary showing at a given time. I manage to only have two bars at the top and that gives me both a clean look and monitor real estate.
Obviously it's personal preference, but I agree with this. Tab titles are perfectly adequate for me, and IMO the default title bar is just an ugly waste of screen space. It would be nice to have disabling the title bar as a default option, but that's not my call. It might be possible to do something with a custom userChrome.css if HCTP becomes non-viable. You can do a lot of things with a bit of CSS.

User avatar
moonbat
Knows the dark side
Knows the dark side
Posts: 5605
Joined: 2015-12-09, 15:45

Re: after new patch "hide caption titlebar plus" extension doesnt work properly

Post by moonbat » 2021-02-10, 09:18

Gumboots wrote:
2021-02-10, 09:09
You can do a lot of things with a bit of CSS.
Getting rid of the window title that is set by the OS window manager on every application window is not one of them.
"One hosts to look them up, one DNS to find them and in the darkness BIND them."

Image
KDE Neon on a Slimbook Excalibur (Ryzen 7 8845HS, 64 GB RAM)
AutoPageColor|PermissionsPlus|PMPlayer|Pure URL|RecordRewind|TextFX
Jabber: moonbat@hot-chili.net

New Tobin Paradigm

Re: after new patch "hide caption titlebar plus" extension doesnt work properly

Post by New Tobin Paradigm » 2021-02-10, 09:46

He is talking about the fake window title (which Firefox didn't have) in the fake titlebar when Pale Moon fakes the window frame on Windows when the AppMenu is used as a filthy custom ui hack that shouldn't exist (which is default on Windows).

Please try and consider the context, Moonbat.

User avatar
moonbat
Knows the dark side
Knows the dark side
Posts: 5605
Joined: 2015-12-09, 15:45

Re: after new patch "hide caption titlebar plus" extension doesnt work properly

Post by moonbat » 2021-02-10, 10:47

Ah well, it goes back to the UI hijinx introduced with Firefox 4, AppMenu and the like. Wouldn't have had to do all this and remained with a simple menubar like Firefox 3.6 if not for the appmenu, but well.
"One hosts to look them up, one DNS to find them and in the darkness BIND them."

Image
KDE Neon on a Slimbook Excalibur (Ryzen 7 8845HS, 64 GB RAM)
AutoPageColor|PermissionsPlus|PMPlayer|Pure URL|RecordRewind|TextFX
Jabber: moonbat@hot-chili.net

riiis
Lunatic
Lunatic
Posts: 471
Joined: 2014-05-17, 15:51
Location: USA

"Hide Caption" add-on alternatives

Post by riiis » 2021-03-08, 02:50

Titlebar Tool, an alternative to the "Hide Caption Titlebar Plus" extension in MS Windows, is now available at APMO. Titlebar Tool hides the titlebar caption, makes the titlebar a bit thinner, and makes the appmenu button smaller and movable.
titlebar.png
For displaying the Pale Moon appmenu, the Hamburger Menu-Button extension can be used to replace the Titlebar Tool appmenu button with a movable hamburger-style button.
hamburger.png
Note that in MS Windows, pressing the "Alt" key, in Pale Moon, opens the Pale Moon "Menu Bar". With Titlebar Tool enabled, "Tabs on Top", and a normal non-maximized window-- unfortunately, this combination results in the Pale Moon "Menu Bar" partially overlapping the Tabs Bar. Note that this temporary but overlapping Pale Moon "Menu Bar" should still be usable. If not, maximize the Pale Moon active window, before pressing the "Alt" key. Or, use the shortcut keys to open the "Menu Bar" sub-menus directly ("Alt + F" for the "File" menu, "Alt + T" for the "Tools" menu, etc.).
You do not have the required permissions to view the files attached to this post.

User avatar
Marcus
Fanatic
Fanatic
Posts: 182
Joined: 2016-09-23, 11:58

Re: after new patch "hide caption titlebar plus" extension doesnt work properly

Post by Marcus » 2021-03-08, 18:31

Any chance of having this extension on Linux?