Skip to content

Commit 6c8104c

Browse files
authored
Merge pull request #15 from VirtuBox/develop
v2.0
2 parents 55dbd15 + 2696d18 commit 6c8104c

10 files changed

+450
-259
lines changed

.editorconfig

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 4
6+
end_of_line = lf
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = false

.gitattributes

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
4+
# Documents
5+
*.md text eol=lf
6+
*.tex text diff=tex
7+
*.adoc text
8+
*.textile text
9+
*.mustache text eol=lf
10+
*.csv text
11+
*.tab text
12+
*.tsv text
13+
*.txt text
14+
*.sql text
15+
16+
# Scripts
17+
*.bash text eol=lf
18+
*.fish text eol=lf
19+
*.sh text eol=lf
20+
21+
# Source files
22+
# ============
23+
*.pxd text diff=python
24+
*.py text diff=python
25+
*.py3 text diff=python
26+
*.pyc text diff=python
27+
*.pyd text diff=python
28+
*.pyo text diff=python
29+
*.pyw text diff=python
30+
*.pyx text diff=python
31+
*.pyz text diff=python
32+
33+
34+
#
35+
# Exclude files from exporting
36+
#
37+
38+
.gitattributes export-ignore
39+
.gitignore export-ignore

.github/workflows/main.yml

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- develop
7+
- master
8+
pull_request:
9+
branches:
10+
- master
11+
release:
12+
types: [published]
13+
schedule:
14+
- cron: '0 0 * * 0'
15+
16+
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
17+
jobs:
18+
# This workflow contains a single job called "build"
19+
build:
20+
# The type of runner that the job will run on
21+
runs-on: ubuntu-latest
22+
23+
# Steps represent a sequence of tasks that will be executed as part of the job
24+
steps:
25+
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
26+
- uses: actions/checkout@v2
27+
28+
# Runs a set of commands using the runners shell
29+
- name: Install prerequesites
30+
run: |
31+
sudo apt-get update
32+
sudo apt-get install jpegoptim -y
33+
sudo -E time bash scripts/install-webp.sh > /dev/null 2>&1
34+
sudo -E time bash scripts/install-optipng.sh > /dev/null 2>&1
35+
sudo wget -qO /usr/local/bin/avif https://github.com/Kagami/go-avif/releases/download/v0.1.0/avif-linux-x64
36+
sudo chmod +x /usr/local/bin/avif
37+
sudo cp optimize.sh /usr/local/bin/img-optimize
38+
sudo chmod 755 /usr/local/bin/img-optimize
39+
40+
- name: Optimize Images
41+
run: |
42+
ls -alh images/
43+
/usr/local/bin/img-optimize --avif
44+
ls -alh images/
45+
/usr/local/bin/img-optimize --webp
46+
ls -alh images/
47+
rm -f images/*.webp images/*.avif
48+
/usr/local/bin/img-optimize --all
49+
ls -alh images/

.travis.yml

+12-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
sudo: required
1+
os: linux
22
dist: bionic
33

4-
language: bash
4+
language: shell
55

66
cache:
77
apt: true
@@ -10,21 +10,27 @@ git:
1010
quiet: true
1111

1212
before_script:
13+
- sudo apt-get install tree -y
1314
- sudo apt-get -qq autoremove --purge
1415
addons:
1516
apt:
1617
update: true
1718

1819
script:
1920
- sudo apt-get install jpegoptim -y
20-
- sudo bash scripts/install-webp.sh
21-
- sudo bash scripts/install-optipng.sh
21+
- sudo -E time bash scripts/install-webp.sh > /dev/null 2>&1
22+
- sudo -E time bash scripts/install-optipng.sh > /dev/null 2>&1
23+
- sudo wget -qO /usr/local/bin/avif https://github.com/Kagami/go-avif/releases/download/v0.1.0/avif-linux-x64
24+
- sudo chmod +x /usr/local/bin/avif
2225
- sudo cp optimize.sh /usr/local/bin/img-optimize
2326
- sudo chmod 755 /usr/local/bin/img-optimize
24-
- /usr/local/bin/img-optimize --all
25-
- /usr/local/bin/img-optimize -jpg -q
27+
- ls -alh images/
28+
- /usr/local/bin/img-optimize --all -q
29+
- ls -alh images/
30+
- /usr/local/bin/img-optimize --jpg -q
2631
- /usr/local/bin/img-optimize --png -q
2732
- rm images/*.webp
2833
- /usr/local/bin/img-optimize --webp
34+
- tree -L 2 .
2935
- rm images/*.webp
3036
- /usr/local/bin/img-optimize --webp --quiet

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,21 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
## [V2.0] - 2020-11-10
10+
911
### Added
1012

1113
- quiet mode
1214
- option --no-run-if-empty added to xargs
1315
- scripts to compile optipng & libwebp from source
16+
- Avif (AV1 Image Format) support
17+
- Avoid optimizing the same image at the same moment [PR #12](https://github.com/VirtuBox/img-optimize/pull/12)
1418

1519
### Changed
1620

21+
- JPG are optimized as progressive JPG
22+
- WebP and Avif newly created images are deleted in case of failure during conversion
23+
1724
## [V1.1] - 2019-04-05
1825

1926
### Added

0 commit comments

Comments
 (0)