-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This tag-point still builds and install okay for gimp2. This is the last update before making a gimp3 version.
- Loading branch information
Showing
14 changed files
with
318 additions
and
903 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
name: CI | ||
on: [push,pull_request] | ||
|
||
jobs: | ||
linux: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
choiceL: [--disable-silent-rules, --enable-silent-rules, --enable-debug] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Create configure | ||
run: | | ||
sudo apt-get update -y | ||
sudo apt-get install autoconf automake libtool gcc gimp libgimp2.0-dev | ||
autoreconf -i | ||
automake | ||
- name: Choose configure | ||
run: ./configure ${{ matrix.choiceL }} | ||
- name: Make gimp-refocus-it plug-in | ||
run: make | ||
- name: Test make strip | ||
run: make strip | ||
- name: Test make install GIMP shared plug-in | ||
if: matrix.choiceL == '--disable-silent-rules' | ||
run: | | ||
sudo make install | ||
sudo make uninstall | ||
win: | ||
runs-on: windows-latest | ||
strategy: | ||
matrix: | ||
include: [ | ||
{msystem: MINGW32, toolchain: mingw-w64-i686, version: x32 }, | ||
{msystem: MINGW64, toolchain: mingw-w64-x86_64, version: x64 }, | ||
{msystem: UCRT64, toolchain: mingw-w64-ucrt-x86_64, version: x64 }, | ||
{msystem: CLANG64, toolchain: mingw-w64-clang-x86_64, version: x64 }, | ||
] | ||
name: ${{ matrix.msystem }} | ||
defaults: | ||
run: | ||
shell: msys2 {0} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: msys2/setup-msys2@v2 | ||
with: | ||
msystem: ${{ matrix.msystem }} | ||
update: true | ||
install: autotools base-devel git ${{ matrix.toolchain }}-toolchain ${{ matrix.toolchain }}-gimp2 | ||
- name: Create configure | ||
run: | | ||
autoreconf -i | ||
automake | ||
- name: run ./configure | ||
run: ./configure | ||
- name: Make gimp-refocus-it plug-in | ||
run: make |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
This plug-in and command-line version of refocus-it was written by | ||
This plug-in version of refocus-it was written by | ||
Lukas Kunc <Lukas.Kunc@seznam.cz>. | ||
|
||
Some of the code in the plug-in was borrowed from the Gimp Sharpen | ||
plug-in by Michael Sweet and from Gimp Refocus blugin by Ernst Lippe. | ||
This is also GPL2+, and thanks to several other Authors. | ||
|
||
2024 bugfixes added to get refocus-it running on gimp 2.10+ by | ||
Jose da Silva | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,55 @@ | ||
2004-06-16 Lukas Kunc <lukas.kunc@seznam.cz> | ||
|
||
* Second public release - version 2.0.0 for GIMP 2.0 | ||
|
||
* cmd-line/: Added command-line version for users not having GIMP | ||
Use refocus-it-cmd --help for more information. | ||
|
||
* po/*: Internationalized | ||
|
||
2004-06-15 gettextize <bug-gnu-gettext@gnu.org> | ||
|
||
* Makefile.am (SUBDIRS): New variable. | ||
(ACLOCAL_AMFLAGS): New variable. | ||
(EXTRA_DIST): Add config.rpath. | ||
* configure.in (AC_OUTPUT): Add po/Makefile.in, | ||
2025-02-20 (2.1) Joe Da Silva <digital@joescat.com> | ||
|
||
* Replaced deprecated INTLTOOL with GETTEXT | ||
* Updated configure.ac and Makefile.am from 2.54 to 2.69 | ||
* Removed xmalloc code - We should avoid doing exit() here. | ||
* Simplified a lot of code with expectation of upgrading to GIMP3. | ||
* Inline is interesting, but the speed gains in excluding a call | ||
and matching return are neglible. Opted for smaller exe instead. | ||
* Optional float/double simplified to double since GIMP3 uses double. | ||
* Dropped build of cmd-line tools, since GIMP3 will use GTK3. | ||
* GIMP2 plugin binary name simplified to refocus-it | ||
* po/* locale files renamed to use gimp20-refocus-it | ||
* Dropped micro_version value since this is a binary, not a library. | ||
Distros can opt to use the micro_version value for their builds. | ||
* Realigned all code in src/* directory since some code followed | ||
different styles (TABs, spaces, {brackets}. Chose to use a more | ||
compact coding style similar to Fontforge 20120731 which allows | ||
more code to be viewed per display screen. | ||
* Dropped help/ directory, appeared unfinished and preliminary. | ||
* Moved doc/*.pgm to img/ directory since these are useful 16bpp. | ||
* Imported sourceforge information page into README.md and img/*.jpg | ||
|
||
NOTE: This is still a GIMP2 binary, and builds okay on gimp-2.10 | ||
|
||
2004-06-16 (2.0.0) Lukas Kunc <lukas.kunc@seznam.cz> | ||
|
||
* Second public release - version 2.0.0 for GIMP 2.0 | ||
* cmd-line/: Added command-line version for users not having GIMP | ||
Use refocus-it-cmd --help for more information. | ||
* po/*: Internationalized | ||
|
||
2004-06-15 (prerelease) gettextize <bug-gnu-gettext@gnu.org> | ||
|
||
* Makefile.am (SUBDIRS): New variable. | ||
(ACLOCAL_AMFLAGS): New variable. | ||
(EXTRA_DIST): Add config.rpath. | ||
* configure.in (AC_OUTPUT): Add po/Makefile.in, | ||
|
||
2003-07-19 (1.0.2) Lukas Kunc <lukas.kunc@seznam.cz> | ||
|
||
* First public release - version 1.0.2 (on sourceforge). | ||
|
||
2003-05-23 Lukas Kunc <lukas.kunc@seznam.cz> | ||
|
||
* This is the first public release (0.0.1) of the refocus plug-in. | ||
* This is the first public release (0.0.1) of the refocus plug-in. | ||
|
||
2003-05-28 Lukas Kunc <lukas.kunc@seznam.cz> | ||
|
||
* Makefile.msc: Makefile for Microsoft Visual C++ added. | ||
|
||
* blur.c: Added support for motion and gaussian blur, improved | ||
support for defocus blur. | ||
|
||
* main.c: Added support for motion and gaussian blur. | ||
* main.c: Added support for alpha channel. | ||
|
||
* weights.c: Make code faster for sparse convolution masks. | ||
* hopfield.c: Make code faster for sparse convolution masks. | ||
* Makefile.msc: Makefile for Microsoft Visual C++ added. | ||
* blur.c: Added support for motion and gaussian blur, | ||
improved support for defocus blur. | ||
* main.c: Added support for motion and gaussian blur. | ||
* main.c: Added support for alpha channel. | ||
* weights.c: Make code faster for sparse convolution masks. | ||
* hopfield.c: Make code faster for sparse convolution masks. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.