Skip to content

Commit

Permalink
Prepare for release v2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
jarun committed Nov 30, 2020
1 parent c3fd8cc commit f2512ad
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 11 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
imgp v2.8
2020-12-01

- option `-M` to specify minimum resolution of iamges to process
- option `-H` (process hidden files) replaces `-d`
- option `-d` (debug mode) replaces `-z`
- option `-N` and `--nearest` (nearest neighbour for PNG) replace `--nn`
- option `-P` (save JPEG as progressive) replaces `--pr`

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

imgp v2.7
2019-12-21

Expand Down
2 changes: 1 addition & 1 deletion imgp
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,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.7' # current program version
_VERSION_ = '2.8' # current program version

# Globals for multiprocessing
pool = None
Expand Down
6 changes: 3 additions & 3 deletions imgp.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH "IMGP" "1" "21 Dec 2019" "Version 2.7" "User Commands"
.TH "IMGP" "1" "01 Dec 2020" "Version 2.8" "User Commands"
.SH NAME
imgp \- Resize, rotate JPEG and PNG images.
.SH SYNOPSIS
Expand Down Expand Up @@ -82,13 +82,13 @@ Do not process if image hres or vres matches specified hres or vres, or --res is
.BI "-n, --enlarge"
Enlarge smaller images. By default smaller images are not scaled if specified resolution is greater.
.TP
.BI "--nn"
.BI "-N --nearest"
Use nearest neighbour interpolation for PNG images instead of default antialias.
.TP
.BI "-p, --optimize"
Optimize output images using PIL library optimization algorithm. Disabled by default.
.TP
.BI "--pr, --progressive"
.BI "-P, --progressive"
Save all output JPEG images as progressive, even if the source is not.
.TP
.BI "-q, --quality=" N
Expand Down
7 changes: 0 additions & 7 deletions packagecore.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,6 @@ commands:
install:
- make PREFIX="/usr" install DESTDIR="${BP_DESTDIR}"
packages:
archlinux:
builddeps:
- make
deps:
- python-pillow
- python
container: "archlinux/base"
centos7.5:
builddeps:
- make
Expand Down

7 comments on commit f2512ad

@jarun
Copy link
Owner Author

@jarun jarun commented on f2512ad Nov 30, 2020

Choose a reason for hiding this comment

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

@szlin, @pabloariasal, @dilawar, @eclipseo imgp v2.8 is released!

@szlin
Copy link
Collaborator

@szlin szlin commented on f2512ad Dec 1, 2020

Choose a reason for hiding this comment

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

@jarun Thanks for letting me know, the new version of imgp has been uploaded.

@jarun
Copy link
Owner Author

@jarun jarun commented on f2512ad Dec 1, 2020

Choose a reason for hiding this comment

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

Thanks Lin!

@eclipseo
Copy link

Choose a reason for hiding this comment

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

Updated in Fedora.

@jarun
Copy link
Owner Author

@jarun jarun commented on f2512ad Dec 6, 2020

Choose a reason for hiding this comment

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

Thank you!

@dilawar
Copy link

@dilawar dilawar commented on f2512ad Dec 6, 2020

Choose a reason for hiding this comment

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

https://build.opensuse.org/users/alois beat me to it. Already in openSUSE:Factory.

@jarun
Copy link
Owner Author

@jarun jarun commented on f2512ad Dec 6, 2020

Choose a reason for hiding this comment

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

Thank you!

Please sign in to comment.