Skip to content

Commit

Permalink
Updated version number to 1.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jsummers committed Sep 9, 2021
1 parent 5e7fe8c commit 7257b0b
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 13 deletions.
2 changes: 1 addition & 1 deletion COPYING.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ImageWorsener v1.2.0+ is distributed under an MIT-style license.

Copyright (c) 2011-2018 Jason Summers
Copyright (c) 2011-2021 Jason Summers
<[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy
Expand Down
5 changes: 5 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Version 1.3.4 - 9 Sep 2021
- (This release is mainly to refresh the Windows binaries.)
- Minor improvements to code quality and stability.
- Changed libtool versioning scheme.

Version 1.3.3 - 19 Oct 2018
- Security and stability fixes

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

dnl TODO: Figure out the actual minimum version that will work.
AC_PREREQ([2.63])
AC_INIT([imageworsener], [1.3.3])
AC_INIT([imageworsener], [1.3.4])
dnl AC_CONFIG_SRCDIR is just any unique file: a sanity check
AC_CONFIG_SRCDIR([src/imagew.h])
AM_CONFIG_HEADER([config.h])
Expand Down
4 changes: 2 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ImageWorsener is a raster image scaling and processing utility.
Version 1.3.3
Copyright (c) 2011-2018 Jason Summers <[email protected]>
Version 1.3.4
Copyright (c) 2011-2021 Jason Summers <[email protected]>

Web site: https://entropymine.com/imageworsener/

Expand Down
2 changes: 1 addition & 1 deletion scripts/makerelease-win.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

VERSION=1.3.3
VERSION=1.3.4
WINDOWS_DOCS='readme.txt technical.txt COPYING.txt'

if [ ! -f technical.txt ]
Expand Down
2 changes: 1 addition & 1 deletion scripts/makerelease.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

VERSION=1.3.3
VERSION=1.3.4

if [ ! -f technical.txt ]
then
Expand Down
2 changes: 1 addition & 1 deletion src/imagew-internals.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#define IW_INCLUDE_UTIL_FUNCTIONS
#include "imagew.h"

#define IW_COPYRIGHT_YEAR "2011" "\xe2\x80\x93" "2018"
#define IW_COPYRIGHT_YEAR "2011" "\xe2\x80\x93" "2021"

#ifdef IW_WINDOWS
#define IW_INLINE __inline
Expand Down
2 changes: 1 addition & 1 deletion src/imagew.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ extern "C" {

// The version of the IW header files.
// Use iw_get_version_int() to get the version at runtime.
#define IW_VERSION_INT 0x010303
#define IW_VERSION_INT 0x010304


//// Codes for use with iw_get_value/iw_set_value.
Expand Down
10 changes: 5 additions & 5 deletions src/imagew.rc
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
IWICON ICON "resources/imagew.ico"

VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,3,3,1
PRODUCTVERSION 1,3,3,1
FILEVERSION 1,3,4,1
PRODUCTVERSION 1,3,4,1
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -32,14 +32,14 @@ BEGIN
VALUE "Comments", "\0"
VALUE "CompanyName", "Jason Summers\0"
VALUE "FileDescription", "ImageWorsener\0"
VALUE "FileVersion", "1, 3, 3, 1\0"
VALUE "FileVersion", "1, 3, 4, 1\0"
VALUE "InternalName", "imagew\0"
VALUE "LegalCopyright", "Copyright (c) 2011-2018 Jason Summers\0"
VALUE "LegalCopyright", "Copyright (c) 2011-2021 Jason Summers\0"
VALUE "LegalTrademarks", "\0"
VALUE "OriginalFilename", "imagew.exe\0"
VALUE "PrivateBuild", "\0"
VALUE "ProductName", "ImageWorsener\0"
VALUE "ProductVersion", "1, 3, 3, 1\0"
VALUE "ProductVersion", "1, 3, 4, 1\0"
VALUE "SpecialBuild", "\0"
END
END
Expand Down

0 comments on commit 7257b0b

Please sign in to comment.