Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Heal Selection and other scm scripts #124

Open
wants to merge 25 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
287b776
Add link to wiki to README.md
itr-tert Oct 21, 2022
52b0066
Rename scripts .py to .scm
itr-tert Oct 21, 2022
854543c
Rewrite scripts from .py(python2) to .scm(tiny-scheme)
itr-tert Oct 21, 2022
aafd0c3
Update .gitignore
itr-tert Oct 22, 2022
b9da2fa
Add a plugin to handle gettext from script-fu
itr-tert Oct 22, 2022
a76717b
Update: Change scripts to use gettext.
itr-tert Oct 22, 2022
f5f635d
Minor Fix to translation format.
itr-tert Oct 22, 2022
c2fedaf
Add Japanese translation file(template as is)
itr-tert Oct 22, 2022
4cc1992
Add a linker option for WindowsOS.
itr-tert Oct 23, 2022
85fecd8
Add Japanese translation.
itr-tert Oct 23, 2022
9b3894f
Change installing path of locales folder
itr-tert Oct 27, 2022
c152ddb
Update README.md
itr-tert Oct 28, 2022
c6a8657
Import @libreajans 's Turkish translation file.
itr-tert Oct 29, 2022
b9533d9
Minor Fix to Turkish translation format.
itr-tert Oct 29, 2022
a6941bb
Update Turkish and fix some minor issues
yakushabb Oct 29, 2022
8b72d8c
Restore deleted accelerator specifiers.
itr-tert Oct 29, 2022
ae8ea64
Merge branch 'master' into update-tr-scm
itr-tert Oct 31, 2022
9f58791
Revert "Restore deleted accelerator specifiers."
itr-tert Oct 31, 2022
dff12aa
Change .scm scripts installation directory.
itr-tert Oct 31, 2022
295a75f
Clean: Move settings of installation location of help data
itr-tert Nov 2, 2022
5da40b6
Clean: Move settings of installation location of plugin binaries
itr-tert Nov 2, 2022
5101a92
Clean: Rename variables used in .ac/.am to match meaning.
itr-tert Nov 2, 2022
6870e58
Update: Add middle menu labels to translation.
itr-tert Nov 11, 2022
c82fd39
Merge with scm
samontab Aug 8, 2023
3827375
Add build instructions
samontab Aug 8, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

# Ignore editor backup files
*~
.\#*

# Ignore Python byte compiled files
*.pyc
Expand All @@ -17,6 +18,8 @@

# Ignore object files
*.o
*.a
*.exe

# Ignore
*.Po
Expand All @@ -39,6 +42,8 @@
/compile
/config.h
/config.h.in
/config.guess
/config.sub
/config.status
/configure
/depcomp
Expand All @@ -50,5 +55,13 @@
Makefile.in
Makefile

/src/resynthesizer/resynthesizer
/src/resynthesizer-gui/resynthesizer_gui
/src/resynthesizer-gettext/resynthesizer_gettext

POTFILES
stamp-it
stamp-h1

# ignore separate build directory
/build
27 changes: 10 additions & 17 deletions PluginScripts/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,22 +1,15 @@
## Process this file with automake to produce Makefile.in

## lkk 2011 I hacked this file from gimp../plugins/pygimp/plugins/Makefile.am
## pluginexecdir tells autotools where to install scripts
## scripts tells autotools the list of installable Python language scripts

pluginexecdir = $(gimpplugindir)/plug-ins

scripts = \
plugin-heal-selection.py \
plugin-resynth-sharpen.py \
plugin-resynth-enlarge.py \
plugin-uncrop.py \
plugin-render-texture.py \
plugin-map-style.py \
plugin-heal-transparency.py \
plugin-resynth-fill-pattern.py


pluginexec_SCRIPTS = $(scripts)
plugin-heal-selection.scm \
plugin-resynth-sharpen.scm \
plugin-resynth-enlarge.scm \
plugin-uncrop.scm \
plugin-render-texture.scm \
plugin-map-style.scm \
plugin-heal-transparency.scm \
plugin-resynth-fill-pattern.scm

resynthscripts_SCRIPTS = $(scripts)

EXTRA_DIST = $(scripts)
178 changes: 0 additions & 178 deletions PluginScripts/plugin-heal-selection.py

This file was deleted.

Loading