Skip to content

Commit

Permalink
Ready for v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
makew0rld committed Dec 21, 2022
1 parent 3e494f4 commit bb2956b
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16
go-version: 1.19
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
with:
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,21 +6,19 @@ on:
- "**.md"
- "LICENSE"
- "didder.1"
- "didder.1.md"
pull_request:
paths-ignore:
- "**.md"
- "LICENSE"
- "didder.1"
- "didder.1.md"

jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go-version: ["1.14", "1.15", "1.16"]
go-version: ["1.17", "1.18", "1.19"]
steps:
- name: Install Go
uses: actions/setup-go@v2
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.2.0] - 2022-12-20
### Changed
- Updated dither library to v2.3.0
- When comparing colors, each channel is weighted according to human luminance perception (#14)

### Fixed
- Updated dither library to v2.3.0
- Corrected Burkes matrix (dither#10)
- Palette order no longer affects output (dither#9)

## [1.1.0] - 2021-05-09
### Added
Expand Down
4 changes: 2 additions & 2 deletions MANPAGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
title: DIDDER
section: 1
header: User Manual
footer: didder v1.1.0
date: May 24, 2022
footer: didder v1.2.0
date: December 20, 2022
---

# NAME
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


didder is an extensive, fast, and accurate command-line image dithering tool. It is designed to work well for both power users as well as pipeline scripting.
It is backed by my [dithering library](https://github.com/makeworld-the-better-one/dither), and is unique in its correctness and variety of dithering algorithms. No online or offline tool I know of provides as many options, while being correct (linearizing the image).
It is backed by my [dithering library](https://github.com/makeworld-the-better-one/dither), and is unique in its correctness and variety of dithering algorithms. No online or offline tool I know of provides as many options, while being correct (linearizing the image, weighting channels by luminance).


## Types of dithering supported
Expand Down
4 changes: 2 additions & 2 deletions didder.1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.\" Automatically generated by Pandoc 2.18
.\" Automatically generated by Pandoc 2.19.2
.\"
.\" Define V font for inline verbatim, using C font in formats
.\" that render this, and otherwise B font.
Expand All @@ -14,7 +14,7 @@
. ftr VB CB
. ftr VBI CBI
.\}
.TH "DIDDER" "1" "May 24, 2022" "didder v1.1.0" "User Manual"
.TH "DIDDER" "1" "December 20, 2022" "didder v1.2.0" "User Manual"
.hy
.SH NAME
.PP
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (

// Set by compiler, see Makefile
var (
version = "v1.1.0"
version = "v1.2.0"
commit = "unknown"
builtBy = "unknown"
)
Expand Down

0 comments on commit bb2956b

Please sign in to comment.