Skip to content

Commit

Permalink
Pushed to 2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
alessandrofrancesconi committed Sep 8, 2019
1 parent cc3d53c commit cff9eea
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ BIMP. Batch Image Manipulation Plugin for GIMP.
Changelog
---------

2.2
- Added support to WEBP (issue #184)
- Enabled HEIF in "Change Format and Compression" (issue #185)
- Saving back to HEIF with default values caused "zero quality" image
- Fixed TIFF parameter setup in "Change Format and Compression"
- Removed PCRE dependency in favor of GLib (issue #189)

2.1
- Improved GUI flexibility and high DPI support (thanks to @scribblemaniac)
- Added Serbian language (thanks to @nstVanja)
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ makewin-debug:

makewin:
which gimptool-2.0 && \
gcc -mwindows -o ./bin/win32/bimp -Wall -Wno-unused-variable -Wno-pointer-sign src/*.c src/manipulation-gui/*.c src/images/*.c $(GIMPARGS) -lm -DGIMP_DISABLE_DEPRECATED
gcc -mwindows -o ./bin/win32/bimp -O2 -Wall -Wno-unused-variable -Wno-pointer-sign src/*.c src/manipulation-gui/*.c src/images/*.c $(GIMPARGS) -lm -DGIMP_DISABLE_DEPRECATED

install:
mkdir -p "$(USER_INSTALL_DIR)"
Expand Down
6 changes: 2 additions & 4 deletions src/bimp-gui.c
Original file line number Diff line number Diff line change
Expand Up @@ -1044,10 +1044,8 @@ static void load_set(GtkMenuItem *menuitem, gpointer user_data)
static void open_about()
{
const gchar *auth[] = {
"Alessandro Francesconi <[email protected]>",
"Thomas Mevel <[email protected]>",
"Walt9Z <https://github.com/Walt9Z>",
"KHam0425 <https://github.com/KHam0425>",
"Alessandro Francesconi <[email protected]>",
"GitHub contributors <https://github.com/alessandrofrancesconi/gimp-plugin-bimp/graphs/contributors>",
NULL };
const gchar *license =
"This program is free software; you can redistribute it and/or modify "
Expand Down
4 changes: 2 additions & 2 deletions src/bimp.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@

#define PLUG_IN_FULLNAME "Batch Image Manipulation Plugin"
#define PLUG_IN_DESCRIPTION "Applies GIMP manipulations on groups of images"
#define PLUG_IN_COPYRIGHT "(C) 2018 - Alessandro Francesconi"
#define PLUG_IN_COPYRIGHT "(C) 2019 - Alessandro Francesconi"
#define PLUG_IN_WEBSITE "http://www.alessandrofrancesconi.it/projects/bimp"
#define PLUG_IN_BINARY "bimp"
#define PLUG_IN_PROC "plug-in-bimp"
#define PLUG_IN_VERSION "2.1"
#define PLUG_IN_VERSION "2.2"

#define BIMP_RESULT_OK 1
#define BIMP_RESULT_WARNING 0
Expand Down

0 comments on commit cff9eea

Please sign in to comment.