mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-03 17:33:25 +00:00

It is broken and throws critical, see #10596. Expedient to hide it instead of fixing it, to not block 3.0rc1. As discussed in #10652, a user can simply restart GIMP instead. "Refresh Scripts" is a poor design, a bandaid. There are plans for better alternatives to install/remove scripts. The MR for #10652 shows the reason it throws critical, and could fix it, but completing the MR requires time we don't have. Note the MR is not on these files, but on core plugin machinery. The change is to extract functions to a separate file, and still build them, but not call them or link them. They also are not translated while not being called. Eventually, the extracted files can be deleted (or restored when they work.) There is other related cruft that needs deletion in scheme-wrapper.c.
23 lines
No EOL
924 B
C
23 lines
No EOL
924 B
C
/* GIMP - The GNU Image Manipulation Program
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef __SCRIPT_FU_REFRESH_H__
|
|
#define __SCRIPT_FU_REFRESH_H__
|
|
|
|
void script_fu_register_refresh_procedure (GimpPlugIn *plug_in);
|
|
|
|
#endif /* __SCRIPT_FU_REFRESH_H__ */ |