Skip to content

Commit

Permalink
Prepare for release v2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jarun committed Feb 19, 2018
1 parent e8c545a commit 5f1af75
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 7 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
imgp v2.5
2018-02-19

What's in?
- New option `--nn` to use nearest neighbour interpolation for PNG files
- Identify Multi Picture Object (MPO) files

-------------------------------------------------------------------------------

imgp v2.4.1
2017-08-29

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ Shell completion scripts for Bash, Fish and Zsh can be found in respective subdi

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

### Developers

1. Copyright © 2016-2017 [Arun Prakash Jana](https://github.com/jarun)
1. Copyright © 2016-2018 [Arun Prakash Jana](https://github.com/jarun)
2. [Ananya Jana](https://github.com/ananyajana)
6 changes: 3 additions & 3 deletions imgp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# Resize or rotate JPEG and PNG images.
#
# Copyright © 2016-2017 Arun Prakash Jana <[email protected]>
# Copyright © 2016-2018 Arun Prakash Jana <[email protected]>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -50,7 +50,7 @@ pad = '_IMGP' # output file suffix when --overwrite is unused
png_ip = PIL.Image.ANTIALIAS # default interpolation for PNG
fill_color = '#ffffff' # BG color to strip alpha channel
init_time = time.time() # profile the total time taken
_VERSION_ = '2.4.1' # current program version
_VERSION_ = '2.5' # current program version

# Globals for multiprocessing
pool = None
Expand Down Expand Up @@ -415,7 +415,7 @@ class ExtendedArgumentParser(argparse.ArgumentParser):

file.write('''
Version %s
Copyright © 2016-2017 Arun Prakash Jana <[email protected]>
Copyright © 2016-2018 Arun Prakash Jana <[email protected]>
License: GPLv3
Webpage: https://github.com/jarun/imgp
''' % _VERSION_)
Expand Down
4 changes: 2 additions & 2 deletions imgp.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "IMGP" "1" "Aug 2017" "Version 2.4.1" "User Commands"
.TH "IMGP" "1" "19 Feb 2018" "Version 2.5" "User Commands"
.SH NAME
imgp \- Resize, rotate JPEG and PNG images.
.SH SYNOPSIS
Expand Down Expand Up @@ -191,7 +191,7 @@ Arun Prakash Jana <[email protected]>
.SH REPORTING BUGS
.I https://github.com/jarun/imgp/issues
.SH LICENSE
Copyright \(co 2016-2017 Arun Prakash Jana <[email protected]>
Copyright \(co 2016-2018 Arun Prakash Jana <[email protected]>
.PP
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
.br
Expand Down

3 comments on commit 5f1af75

@jarun
Copy link
Owner Author

@jarun jarun commented on 5f1af75 Feb 19, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@szlin @shaggytwodope imgp v2.5 is released.

@jpdasma if the AUR package is not updated by the current maintainer, I'll see how I can add you.

@jarun
Copy link
Owner Author

@jarun jarun commented on 5f1af75 Feb 19, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@zach-adams please update the AUR package.

@szlin
Copy link
Collaborator

@szlin szlin commented on 5f1af75 Feb 20, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jarun The new version of imgp has been uploaded. Thank you for your effort!

Please sign in to comment.