Skip to content

Commit

Permalink
2.0.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
pfusik committed Sep 12, 2022
1 parent 29ebf9f commit 27e377f
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = 1.1.2
VERSION = 2.0.0

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

* New release.
* Added 2png and gdk-pixbuf subpackages.

-- Piotr Fusik <fox@scene.pl> Mon, 12 Sep 2022 10:27:01 +0200

qoi-ci (1.1.2-1) UNRELEASED; urgency=low

* New release.
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-ci</string>
<key>CFBundleShortVersionString</key>
<string>1.2.0</string>
<string>2.0.0</string>
<key>CFBundleVersion</key>
<string>1.2.0</string>
<string>2.0.0</string>
<key>CFPlugInDynamicRegisterFunction</key>
<string/>
<key>CFPlugInDynamicRegistration</key>
Expand Down
2 changes: 1 addition & 1 deletion png2qoi.c
Original file line number Diff line number Diff line change
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 1.2.0");
puts("png2qoi 2.0.0");
else {
fprintf(stderr, "png2qoi: unknown option: %s\n", arg);
return 1;
Expand Down
5 changes: 4 additions & 1 deletion qoi-ci.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: qoi-ci
Version: 1.1.2
Version: 2.0.0
Release: 1
Summary: Quite OK Image (QOI) encoder/decoder
License: MIT
Expand Down Expand Up @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT
%{_libdir}/gimp/2.0/plug-ins/file-qoi/file-qoi

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

* Wed Aug 3 2022 Piotr Fusik <fox@scene.pl>
- 1.1.2-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-2022")]
[assembly: AssemblyVersion("1.1.2.0")]
[assembly: AssemblyFileVersion("1.1.2.0")]
[assembly: AssemblyVersion("2.0.0.0")]
[assembly: AssemblyFileVersion("2.0.0.0")]

namespace QOI.PaintDotNet
{
Expand Down
2 changes: 1 addition & 1 deletion win32/qoiimagine.c
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ __declspec(dllexport) BOOL IMAGINEAPI ImaginePluginGetInfoW(IMAGINEPLUGININFOW *
static const IMAGINEPLUGININFOW pluginInfoW = {
sizeof(pluginInfoW),
registerProcW,
0x01010200,
0x02000000,
L"QOI Plugin",
IMAGINEPLUGININTERFACE_VERSION
};
Expand Down

0 comments on commit 27e377f

Please sign in to comment.