Ready for v1.2.0

This commit is contained in:
makeworld
2022-12-20 23:00:31 -05:00
parent 3e494f4895
commit bb2956b79f
7 changed files with 17 additions and 10 deletions

View File

@@ -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:

View File

@@ -6,13 +6,11 @@ on:
- "**.md"
- "LICENSE"
- "didder.1"
- "didder.1.md"
pull_request:
paths-ignore:
- "**.md"
- "LICENSE"
- "didder.1"
- "didder.1.md"
jobs:
test:
@@ -20,7 +18,7 @@ jobs:
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

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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.
@@ -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

View File

@@ -10,7 +10,7 @@ import (
// Set by compiler, see Makefile
var (
version = "v1.1.0"
version = "v1.2.0"
commit = "unknown"
builtBy = "unknown"
)