Skip to content

Commit 5f1af75

Browse files
committed
Prepare for release v2.5
1 parent e8c545a commit 5f1af75

File tree

4 files changed

+16
-7
lines changed

4 files changed

+16
-7
lines changed

CHANGELOG

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
imgp v2.5
2+
2018-02-19
3+
4+
What's in?
5+
- New option `--nn` to use nearest neighbour interpolation for PNG files
6+
- Identify Multi Picture Object (MPO) files
7+
8+
-------------------------------------------------------------------------------
9+
110
imgp v2.4.1
211
2017-08-29
312

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ Shell completion scripts for Bash, Fish and Zsh can be found in respective subdi
141141

142142
```
143143
usage: imgp [-h] [-x res] [-o deg] [-a] [-c] [-d] [-e] [-f] [-i] [-k] [-m]
144-
[-n] [-p] [-q N] [-r] [-s byte] [-w] [-z]
144+
[-n] [--nn] [-p] [-q N] [-r] [-s byte] [-w] [-z]
145145
[PATH [PATH ...]]
146146
147147
Resize, rotate JPEG and PNG images.
@@ -238,5 +238,5 @@ optional arguments:
238238

239239
### Developers
240240

241-
1. Copyright © 2016-2017 [Arun Prakash Jana](https://github.com/jarun)
241+
1. Copyright © 2016-2018 [Arun Prakash Jana](https://github.com/jarun)
242242
2. [Ananya Jana](https://github.com/ananyajana)

imgp

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# Resize or rotate JPEG and PNG images.
44
#
5-
# Copyright © 2016-2017 Arun Prakash Jana <engineerarun@gmail.com>
5+
# Copyright © 2016-2018 Arun Prakash Jana <engineerarun@gmail.com>
66
#
77
# This program is free software: you can redistribute it and/or modify
88
# it under the terms of the GNU General Public License as published by
@@ -50,7 +50,7 @@ pad = '_IMGP' # output file suffix when --overwrite is unused
5050
png_ip = PIL.Image.ANTIALIAS # default interpolation for PNG
5151
fill_color = '#ffffff' # BG color to strip alpha channel
5252
init_time = time.time() # profile the total time taken
53-
_VERSION_ = '2.4.1' # current program version
53+
_VERSION_ = '2.5' # current program version
5454

5555
# Globals for multiprocessing
5656
pool = None
@@ -415,7 +415,7 @@ class ExtendedArgumentParser(argparse.ArgumentParser):
415415

416416
file.write('''
417417
Version %s
418-
Copyright © 2016-2017 Arun Prakash Jana <engineerarun@gmail.com>
418+
Copyright © 2016-2018 Arun Prakash Jana <engineerarun@gmail.com>
419419
License: GPLv3
420420
Webpage: https://github.com/jarun/imgp
421421
''' % _VERSION_)

imgp.1

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "IMGP" "1" "Aug 2017" "Version 2.4.1" "User Commands"
1+
.TH "IMGP" "1" "19 Feb 2018" "Version 2.5" "User Commands"
22
.SH NAME
33
imgp \- Resize, rotate JPEG and PNG images.
44
.SH SYNOPSIS
@@ -191,7 +191,7 @@ Arun Prakash Jana <engineerarun@gmail.com>
191191
.SH REPORTING BUGS
192192
.I https://github.com/jarun/imgp/issues
193193
.SH LICENSE
194-
Copyright \(co 2016-2017 Arun Prakash Jana <engineerarun@gmail.com>
194+
Copyright \(co 2016-2018 Arun Prakash Jana <engineerarun@gmail.com>
195195
.PP
196196
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
197197
.br

0 commit comments

Comments
 (0)