Skip to content

Commit

Permalink
0.2.4-a: init git version
Browse files Browse the repository at this point in the history
  • Loading branch information
zvezdochiot committed Jan 30, 2025
0 parents commit 9cade38
Show file tree
Hide file tree
Showing 35 changed files with 34,883 additions and 0 deletions.
18 changes: 18 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
David Tschumperlé <David.Tschumperle AT greyc.ensicaen.fr>, french
o Author of the GREYCstoration algorithm
David Rodríguez García <david AT livux.com>
o Patch to limit progress bar updates
Michael Schumacher <schumaml AT gmx.de>, german
o Prepared Win32 binaries
Pedro Côrte-Real <pedrocr AT gmail.com>
o nice(19) patch to limit CPU use
Victor Stinner aka haypo <vitor.stinner AT haypocalc.com>, french
o First author of the patch
Thomas de Grenier de Latour <degrenier AT easyconnect.fr>
o Patch for use of autotools and getttext (based on official Gimp
plugin template), and also wrote first translation (in french)
Alexandre Prokoudine <alexandre.prokoudine AT gmail.com>, russian
o Russian translation
Johan VAUCOURT <jo.vaucourt AT ifrance.com>, french
o 0.2.4 and next versions made from GreyCStoration 2.4

340 changes: 340 additions & 0 deletions COPYING

Large diffs are not rendered by default.

48 changes: 48 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
2006-07-26 Johan Vaucourt
* Version 0.2.4-a ;
* Reset button now show stock icon ;
* Plugin moved from "Filters/Misc/GREYCstoration" to "Filters/Enhance/GREYCstoration" menu ;
* Russian translation now to-date ;
* Preview is now disabled by default.

2006-06-20 Johan Vaucourt
* Version 0.2.4
* Merged Greycstoration 2.4 code.

2006-04-27 Johan Vaucourt
* Version 0.2.3
* Merged Greycstoration 2.3 code.

2005-11-22 Victor Stinner

* Version 0.1.3
* Apply Thomas de Grenier de Latour (autotools + gettext).

2005-09-28 Victor Stinner

* Apply Pedro Côrte-Real patch (nice).

2005-09-07 Victor Stinner

* Apply David Rodríguez García patch (progress bar).

2005-03-18 Victor Stinner

* Version 0.1.2
* Use table and notebook for dialog

2005-03-12 Victor Stinner

* Version 0.1.1
* Dialog reorganized with better parameters names.
* Fix plugin entry in Gimp menu (Greycstoration -> GREYCstoration).
* Don't use CImg interface (keyboard/mouse) which remove X11 and
pthread dependencies (or Win32 dependencies)
* Change default values (p1=0.1 and sigma=1.4)

2005-03-11 Victor Stinner

* Version 0.1, first public release.
* Support image restoration.
* Plug-in dialog have all parameters needed and a preview view.

34 changes: 34 additions & 0 deletions INSTALL
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
The install the Gimp plugin GREYCstoration, you have to compile it first.
For this, you will need:

- Gimp 2.2.x (or greater) and headers of the Gimp library
http://www.gimp.org/
- Compiler GNU g++
http://gcc.gnu.org/
- GTK 2.x (version 2.6 or greater?) and development headers of GTK+
http://www.gtk.org/

The plugin is only tested on Linux, but Michael Schumacher
prepared Win32 binaries.

Instructions to compile
=======================

./configure [see --help for options]
make
make install

Last step ("make install") should be run by the root user. If you are not the
administrator on your station, you can still install the plugin in your home
directory ("$HOME/.gimp-2.2/plug-ins/"):
gimptool --install-bin src/greycstoration

Instruction to compile SVN sources
==================================

Prior to running the above described commands, you must create the "configure"
script by running this command:
./autogen.sh

This requires that you have installed some recent enough versions of GNU
autotools (tested with autoconf-1.9.6 and automake-2.59).
14 changes: 14 additions & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
AUTOMAKE_OPTIONS = foreign dist-bzip2

SUBDIRS = po src

EXTRA_DIST = \
autogen.sh \
intltool-extract.in \
intltool-merge.in \
intltool-update.in

DISTCLEANFILES = \
intltool-extract \
intltool-merge \
intltool-update
Loading

0 comments on commit 9cade38

Please sign in to comment.