Switch to full style
Post all Gimp scripts and script writing questions here
Post a reply

Long time GEGL Graph Glitch solved. Need Help testing bevel update

Sun Apr 30, 2023 9:56 pm

A long time bug is solved and Custom Bevel and Glossy Balloon might be able to be called from my GEGL Effects plugin. But first I need others to test it.

Regarding these two filters
https://github.com/LinuxBeaver/GEGL-Custom-Bevel/
https://github.com/LinuxBeaver/GEGL-glo ... xt-styling

Being apart of a giga text styling filter
https://github.com/LinuxBeaver/GEGL-Eff ... alEdition/

because before this would happen but now it is solved.
Fu5vJbRWwAYKPd4.jpg
Fu5vJbRWwAYKPd4.jpg (68.67 KiB) Viewed 930 times


solved.png
solved.png (190.21 KiB) Viewed 930 times



I solved it by replacing gegl:opacity with

Code:
id=forceopacity dst-in  aux=[ ref=forceopacity ] id=makeopacity over  aux=[ ref=makeopacity ] id=forceopacity dst-in  aux=[ ref=forceopacity ] id=makeopacity over  aux=[ ref=makeopacity ] id=forceopacity dst-in  aux=[ ref=forceopacity ] id=makeopacity over  aux=[ ref=makeopacity ] id=forceopacity dst-in  aux=[ ref=forceopacity ] id=makeopacity over  aux=[ ref=makeopacity ]


In a nutshell it is just stacking layers on top of each other until the opacity is higher. It can't be adjusted.


In the mean time Glossy Balloon and Custom Bevel have a test update that I will finalize this week but first I need people to test it.
It should work the same as before and if it doesn't I won't update the Github.


You will see a binaries folder and source code. Here is the directory to put the binaries.


Directory to put binaries

Windows
Code:
C:\Users\USERNAME\AppData\Local\gegl-0.4\plug-ins

Linux
Code:
/home/(USERNAME)/.local/share/gegl-0.4/plug-ins

Linux (Flatpak)
Code:
/home/(USERNAME)/.var/app/org.gimp.GIMP/data/gegl-0.4/plug-ins


Overwrite Glossy Balloon and Custom Bevel's binary if it exist. you can't have both versions.

Fun Fact I've been aware of this bug for over a year before I even started making plugins.

Re: Long time GEGL Graph Glitch solved. Need Help testing bevel update

Sun Apr 30, 2023 11:56 pm

I just pushed the update on Github consider this thread closed.

Re: Long time GEGL Graph Glitch solved. Need Help testing bevel update

Thu May 04, 2023 5:50 am

The final update that happened may 2d is here.

This adds custombevel restorepuff=true/false checkboxes that revert back to legacy mode. In default custom bevel and glossy balloon are in legacy mode, the checkbox when enabled stacks a bunch of duplicate layers to kill transparency. I regret posting the April 30th update that has known problems. May 2'd update fixes everything. I urge everyone to update to the may second version that is here and on Github

https://github.com/LinuxBeaver/GEGL-glo ... g/releases
https://github.com/LinuxBeaver/GEGL-Cus ... l/releases


The drop shadow glitch is solved when the checkbox is enabled. This can be done in a GUI and the graph.
Code:
glossy-balloon removetransparency=true
dropshadow opacity=2


Code:
custom-bevel restorepuff=false
dropshadow opacity=2
Post a reply