Skip to content

Commit

Permalink
3.0.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
pfusik committed Jan 22, 2024
1 parent 122d47b commit 9007c1f
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = 2.0.0
VERSION = 3.0.0

PREFIX = /usr/local
CFLAGS = -O2 -Wall
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
qoi-fu (3.0.0-1) UNRELEASED; urgency=low

* New release.

-- Piotr Fusik <piotr@fusion-lang.org> Mon, 22 Jan 2024 15:28:05 +0100

qoi-fu (2.0.0-1) UNRELEASED; urgency=low

* New release.
Expand Down
2 changes: 1 addition & 1 deletion debian/control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Source: qoi-fu
Maintainer: Piotr Fusik <fox@scene.pl>
Maintainer: Piotr Fusik <piotr@fusion-lang.org>
Section: graphics
Priority: optional
Standards-Version: 4.6.0
Expand Down
4 changes: 2 additions & 2 deletions macos/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
<key>CFBundleName</key>
<string>qoi-fu</string>
<key>CFBundleShortVersionString</key>
<string>2.0.0</string>
<string>3.0.0</string>
<key>CFBundleVersion</key>
<string>2.0.0</string>
<string>3.0.0</string>
<key>CFPlugInDynamicRegisterFunction</key>
<string/>
<key>CFPlugInDynamicRegistration</key>
Expand Down
4 changes: 2 additions & 2 deletions png2qoi.c
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// png2qoi.c - command-line converter between PNG and QOI formats
//
// Copyright (C) 2021-2022 Piotr Fusik
// Copyright (C) 2021-2024 Piotr Fusik
//
// MIT License:
//
Expand Down Expand Up @@ -170,7 +170,7 @@ int main(int argc, char **argv)
else if ((arg[1] == 'h' && arg[2] == '\0') || strcmp(arg, "--help") == 0)
usage();
else if ((arg[1] == 'v' && arg[2] == '\0') || strcmp(arg, "--version") == 0)
puts("png2qoi 2.0.0");
puts("png2qoi 3.0.0");
else {
fprintf(stderr, "png2qoi: unknown option: %s\n", arg);
return 1;
Expand Down
5 changes: 4 additions & 1 deletion qoi-fu.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: qoi-fu
Version: 2.0.0
Version: 3.0.0
Release: 1
Summary: Quite OK Image (QOI) encoder/decoder
License: MIT
Expand Down Expand Up @@ -54,6 +54,9 @@ make PREFIX=%{buildroot}%{_prefix} GDK_PIXBUF_LOADERS_DIR=%{buildroot}%{_libdir}
%{_libdir}/gimp/2.0/plug-ins/file-qoi/file-qoi

%changelog
* Mon Jan 22 2024 Piotr Fusik <piotr@fusion-lang.org>
- 3.0.0-1

* Mon Sep 12 2022 Piotr Fusik <fox@scene.pl>
- 2.0.0-1

Expand Down
4 changes: 2 additions & 2 deletions win32/QOIPaintDotNet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
[assembly: AssemblyTitle("Paint.NET Quite OK Image (QOI) plugin")]
[assembly: AssemblyCompany("Piotr Fusik")]
[assembly: AssemblyCopyright("Copyright © 2021-2024")]
[assembly: AssemblyVersion("2.0.0.0")]
[assembly: AssemblyFileVersion("2.0.0.0")]
[assembly: AssemblyVersion("3.0.0.0")]
[assembly: AssemblyFileVersion("3.0.0.0")]

namespace QOI.PaintDotNet
{
Expand Down

0 comments on commit 9007c1f

Please sign in to comment.