Skip to content

Commit cff9eea

Browse files
Pushed to 2.2
1 parent cc3d53c commit cff9eea

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ BIMP. Batch Image Manipulation Plugin for GIMP.
44
Changelog
55
---------
66

7+
2.2
8+
- Added support to WEBP (issue #184)
9+
- Enabled HEIF in "Change Format and Compression" (issue #185)
10+
- Saving back to HEIF with default values caused "zero quality" image
11+
- Fixed TIFF parameter setup in "Change Format and Compression"
12+
- Removed PCRE dependency in favor of GLib (issue #189)
13+
714
2.1
815
- Improved GUI flexibility and high DPI support (thanks to @scribblemaniac)
916
- Added Serbian language (thanks to @nstVanja)

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ makewin-debug:
1212

1313
makewin:
1414
which gimptool-2.0 && \
15-
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
15+
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
1616

1717
install:
1818
mkdir -p "$(USER_INSTALL_DIR)"

src/bimp-gui.c

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1044,10 +1044,8 @@ static void load_set(GtkMenuItem *menuitem, gpointer user_data)
10441044
static void open_about()
10451045
{
10461046
const gchar *auth[] = {
1047-
"Alessandro Francesconi <alessandrofrancesconi@live.it>",
1048-
"Thomas Mevel <thomas.prog@mevtho.com>",
1049-
"Walt9Z <https://github.com/Walt9Z>",
1050-
"KHam0425 <https://github.com/KHam0425>",
1047+
"Alessandro Francesconi <alessandrofrancesconi@live.it>",
1048+
"GitHub contributors <https://github.com/alessandrofrancesconi/gimp-plugin-bimp/graphs/contributors>",
10511049
NULL };
10521050
const gchar *license =
10531051
"This program is free software; you can redistribute it and/or modify "

src/bimp.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66

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

1515
#define BIMP_RESULT_OK 1
1616
#define BIMP_RESULT_WARNING 0

0 commit comments

Comments
 (0)