Re: [Gimp-developer] App background query

2021-02-01 Thread Ofnuts via gimp-developer-list
You can change the theme: Edit>Preferences>Interface>Theme You may also want to change the Icon theme: Edit>Preferences>Interface>Icon Theme) On 31/01/2021 15:02, Melvill's wrote: When I open GIMP it comes up with a black background. Can I change it to another color as I have problems

[Gimp-developer] Trouble compiling 2.99

2021-04-29 Thread Ofnuts via gimp-developer-list
I'm trying to compile 2.99. It used to work, but my last successful attempt was in June 2020. Compiling on Ubuntu 19.10 but I upgraded meson and pango to required versions. When I use the meson build: meson _build --prefix=${GIMP_PREFIX} --buildtype=release -Djavascript=always -Dlua=always

Re: [Gimp-developer] Trouble compiling 2.99

2021-04-30 Thread Ofnuts via gimp-developer-list
Thanks but no change Digging into this a bit more, it appears that the "HarfBuzz-0.0.gir:135.5-135.79"  would be a reference to /usr/share/gir-1.0/HarfBuzz-0.0.gir and starting at line #135 this file is:             And my /usr/include/harfbuzz/hb-common.h a line #168 is

Re: [Gimp-developer] Trouble compiling 2.99

2021-04-30 Thread Ofnuts via gimp-developer-list
Thanks, disabling that makes the build successful. However, when I start Gimp, I get a dialog with: GEGL operation missing! GIMP requires the GEGL operation "gegl:introspect". This operation cannot be found. Check your GEGL install and ensure it has been compiled with any

Re: [Gimp-developer] Trouble compiling 2.99

2021-04-30 Thread Ofnuts via gimp-developer-list
On 30/04/2021 19:58, Liam R. E. Quin wrote: On Fri, 2021-04-30 at 09:46 +0200, Ofnuts via gimp-developer-list wrote: /Gimp-dev/2.99/build/gimp/_build/libgimp/Gimp-3.0.gir HarfBuzz-0.0.gir:135.5-135.79: error: `hb_.language_t' not supported as type for constants Searching with Google

Re: [Gimp-developer] Trouble compiling 2.99

2021-04-30 Thread Ofnuts via gimp-developer-list
On 30/04/2021 21:08, Liam R E Quin wrote: On Fri, 2021-04-30 at 14:31 -0400, Liam R E Quin wrote: On Fri, 2021-04-30 at 17:18 +0200, Ofnuts via gimp-developer-list wrote:     GIMP requires the GEGL operation "gegl:introspect". I seem to remember this requiers "dot" (from

Re: [Gimp-developer] Translating Gimp into arabic

2021-02-04 Thread Ofnuts via gimp-developer-list
Gimp already has Arabic translations. Do you have something specific in mind? On 03/02/2021 09:41, Abdullah OLABI wrote: Hi, Hope you are all fine. I would like please to talk to someone in your organisation about translating Gimp into Arabic language. With kind regards Abdullah Olabi

Re: [Gimp-developer] Plug-In Golden ratio on Github/Youtube

2021-02-22 Thread Ofnuts via gimp-developer-list
Search a research paper widely available in the net as a PDF:  "Piecewise Circular Approximation of Spirals and Polar Polynomials" It describes how you can approximate a linear spiral using circle arcs. You can then use Gimp paths to create the arcs. There is a well known approximation or a

Re: [Gimp-developer] About The Python Script writing

2021-08-24 Thread Ofnuts via gimp-developer-list
Wouldn't it be more natural to write the migration program in Python itself (plus this needs Python2->Python3 migration)? Why add a dependency on yet another language? Is there a decent C# runtime on Linux? On 24/08/2021 17:31, ShiroYuki Mot via gimp-developer-list wrote: I wrote the Script

Re: [Gimp-developer] Gimp export to function

2021-10-07 Thread Ofnuts via gimp-developer-list
What OS/Version? It is possibly some security setting that prevents unrecognized apps from accessing external drives. On 02/10/2021 20:04, Ken Masters via gimp-developer-list wrote: I downloaded GIMP and so far I think most everything is fine except “when I use the export function it won’t

Re: [Gimp-developer] Allow simple warping/curving of text

2021-10-10 Thread Ofnuts via gimp-developer-list
Curve how? https://www.gimp-forum.net/Thread-ofn-bend-path https://www.gimp-forum.net/Thread-ofn-text-along-path On 09/10/2021 08:08, Jarrod T via gimp-developer-list wrote: Make an easy tool to curve text please, such as other editors have or photoshop has I find it really frustrating on

Re: [Gimp-developer] Fwd: Making enabling dynamics a checkbox (Issue #4333)

2021-12-29 Thread Ofnuts via gimp-developer-list
Also all in favor of a special status for the "Off" dynamics. We definitely need a way to identify them independently of the UI language. On 29/12/2021 17:19, Asalle via gimp-developer-list wrote: Forgot to include the mailing list :( -- Forwarded message - From: Asalle Date:

Re: [Gimp-developer] The problem of compile gimp

2021-07-22 Thread Ofnuts via gimp-developer-list
You also need to build Babl (like you did for GEGL, these packages work together). On 22/07/2021 14:41, via gimp-developer-list wrote: Hello?? Recently, I was learning to compile gimp from source code, and I encountered a problem. I'm following the rules

Re: [Gimp-developer] Adjustments on dynamics

2022-02-14 Thread Ofnuts via gimp-developer-list
IMHO one of the main issues with Dynamics is the rotation origin/range. Currently it is difficult to have a brush that just wiggles a bit because +5° and -5° are at opposite ends of the 0-360 curve. You have to create an upside-down brush for exactly this purpose (and give it a 175-185 range)

[Gimp-developer] wiki.gimp.org

2022-07-18 Thread Ofnuts via gimp-developer-list
Is wiki.gimp.org still active? My bookmarks to it no longer work. ___ gimp-developer-list mailing list List address:gimp-developer-list@gnome.org List membership: https://mail.gnome.org/mailman/listinfo/gimp-developer-list List archives:

[Gimp-developer] How to distribute translated/translatable python plugins in 2.99

2022-07-25 Thread Ofnuts via gimp-developer-list
What is necessary to distribute a translation-enabled python plugin for 2.99? I assume that the plugin distribution should be self-sufficient  since it cannot assume that translations will be available in some general repository. What should the plugin directory look like (it seems it needs a

Re: [Gimp-developer] How to distribute translated/translatable python plugins in 2.99

2022-07-26 Thread Ofnuts via gimp-developer-list
wrote: Hi! On Mon, Jul 25, 2022 at 11:38 PM Ofnuts via gimp-developer-list wrote: What is necessary to distribute a translation-enabled python plugin for 2.99? I assume that the plugin distribution should be self-sufficient  since it cannot assume that translations will be

Re: [Gimp-developer] GIMP 2.99.12 Python User Script's Localization

2022-08-30 Thread Ofnuts via gimp-developer-list
My own plugin does:     def do_set_i18n(self, *args):     print(f'do_set_i18n({args})')     return True, 'ofn-guides-presets',None (where 'ofn-guides-presets' is the same same as the plugin python file itself, and as I understand it, if the I18N domain is the same name as the plugin

Re: [Gimp-developer] Windows Photodraw MIX files

2022-08-20 Thread Ofnuts via gimp-developer-list
If this ever happens, it will be in Gimp 2.10.34 at best, so coming to your Gimp 2.8.8  which is about 9 years old, be prepared for a culture shock. Why don't you upgrade? 2.10 is so much better... On 18/08/2022 15:34, TheotroniX . via gimp-developer-list wrote: Hi Gimp developers, I use your

Re: [Gimp-developer] GIMP 2.99.12 Python User Script's Localization

2022-08-31 Thread Ofnuts via gimp-developer-list
nd easy to understand. I'm glad that this clears up my questions. :) I'll try this tonight. 2022年8月30日(火) 18:40 Ofnuts via gimp-developer-list : My own plugin does: def do_set_i18n(self, *args): print(f'do_set_i18n({args})') ret

Re: [Gimp-developer] GIMP 2.99.12 Python User Script's Localization

2022-08-31 Thread Ofnuts via gimp-developer-list
PS: of course your Gimp should be working in Japanese (which it will be if these environment variables are set when you start Gimp) On 31/08/2022 14:45, Ofnuts via gimp-developer-list wrote: Just re-checked, works for me. What are the environment values in the Python console? >>> o

Re: [Gimp-developer] PF_ENUM, SF_ENUM, dynamically defined enums for plugins

2022-08-14 Thread Ofnuts via gimp-developer-list
I'm not convinced this needs to be an enum. The basic problem it to show  a list of strings, and return the index of the selected one.  The contents of the list can be quite dynamic. As far as I can tell, in 2.10 they aren't cached in pluginrc. In 3.0, the query/init methods of the plugin suggest

Re: [Gimp-developer] PF_ENUM, SF_ENUM, dynamically defined enums for plugins

2022-08-15 Thread Ofnuts via gimp-developer-list
Not really. With the current interface, I manage it that way: I have these two functions: def createOpts(name,pairs):     optsclass=namedtuple(name+'Type',[symbol for symbol,label in pairs]+['labels','labelTuples'])     opts=optsclass(*(     range(len(pairs))