Skip to content

Commit

Permalink
Updated version number to 1.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
jsummers committed Nov 22, 2022
1 parent 8484ed7 commit 6a43f72
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Unreleased changes
Version 1.3.5 - 11 Nov 2022
- Added feature "-opt jpeg:rstm" / "-opt jpeg:rstr".
- Added feature "-opt jpeg:optcoding".
- Added feature "-opt bmp:version=auto".
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.4])
AC_INIT([imageworsener], [1.3.5])
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
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ImageWorsener is a raster image scaling and processing utility.
Version 1.3.4
Version 1.3.5
Copyright (c) 2011-2022 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.4
VERSION=1.3.5
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.4
VERSION=1.3.5

if [ ! -f technical.txt ]
then
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 0x010304
#define IW_VERSION_INT 0x010305


//// Codes for use with iw_get_value/iw_set_value.
Expand Down
8 changes: 4 additions & 4 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,4,1
PRODUCTVERSION 1,3,4,1
FILEVERSION 1,3,5,1
PRODUCTVERSION 1,3,5,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, 4, 1\0"
VALUE "FileVersion", "1, 3, 5, 1\0"
VALUE "InternalName", "imagew\0"
VALUE "LegalCopyright", "Copyright (c) 2011-2022 Jason Summers\0"
VALUE "LegalTrademarks", "\0"
VALUE "OriginalFilename", "imagew.exe\0"
VALUE "PrivateBuild", "\0"
VALUE "ProductName", "ImageWorsener\0"
VALUE "ProductVersion", "1, 3, 4, 1\0"
VALUE "ProductVersion", "1, 3, 5, 1\0"
VALUE "SpecialBuild", "\0"
END
END
Expand Down

0 comments on commit 6a43f72

Please sign in to comment.