Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added Binary Releases/1.9.7/PosteRazor-1.9.7-OSX.dmg
Binary file not shown.
9 changes: 8 additions & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
PosteRazor 1.9.7
================
(Preview version for the upcoming Qt-based PosteRazor 2)
- Changed: Various small fixes
- Added: Danish translation by Henrik Troels-Hansen
- Added: Czech translation by Filip Pivarči

PosteRazor 1.9.6
================
(Preview version for the upcoming Qt-based PosteRazor 2)
Expand Down Expand Up @@ -90,4 +97,4 @@ PosteRazor 1.1
- Added: PosteRazor has a settings dialog for setting units of
lenth, UI language and usage of OpenGL
- Added: An input image can be specified by command line (or drag
and drop on the program icon). It is loaded at startup.
and drop on the program icon). It is loaded at startup.
1 change: 1 addition & 0 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Description:

Homepage:
http://posterazor.sourceforge.net/
https://github.com/aportale/posterazor

Maintainer:
Alessandro Portale <alessandro _at_ casaportale _dot_ de>
Expand Down
4 changes: 2 additions & 2 deletions packaging/iss/posterazor.iss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#define APPLICATIONTITLE "PosteRazor"
#define VERSION "1.9.5"
#define COPYRIGHT "2005-2008 Alessandro Portale"
#define VERSION "1.9.7"
#define COPYRIGHT "2005-2020 Alessandro Portale"
#define PREFERENCESDIR "{userappdata}\CasaPortale"
#define PREFERENCESFILE PREFERENCESDIR + "\PosteRazor.ini"
#define WEBSITE "http://posterazor.sourceforge.net/"
Expand Down
8 changes: 4 additions & 4 deletions src/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<key>CFBundleExecutable</key>
<string>PosteRazor</string>
<key>CFBundleGetInfoString</key>
<string>PosteRazor 1.9.5, Copyright 2005-2008 Alessandro Portale, GNU General Public License</string>
<string>PosteRazor 1.9.7, Copyright 2005-2020 Alessandro Portale, GNU General Public License</string>
<key>CFBundleIconFile</key>
<string>posterazor</string>
<key>CFBundleIdentifier</key>
Expand All @@ -17,15 +17,15 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.9.5</string>
<string>1.9.7</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.9.5</string>
<string>1.9.7</string>
<key>CSResourcesFileMapped</key>
<true/>
<key>NSHumanReadableCopyright</key>
<string>Copyright 2005-2008 http://posterazor.sourceforge.net/</string>
<string>Copyright 2005-2020 http://posterazor.sourceforge.net/</string>
<key>CFBundleDocumentTypes</key>
<array>
<dict>
Expand Down
9 changes: 6 additions & 3 deletions src/posterazor.pro
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,16 @@ macx:ICON = \
posterazor.icns

macx:CONFIG += \
x86 ppc
x86
# x86 ppc

macx:QMAKE_MAC_SDK = \
/Developer/SDKs/MacOSX10.4u.sdk
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk
# /Developer/SDKs/MacOSX10.4u.sdk

macx:QMAKE_MACOSX_DEPLOYMENT_TARGET = \
10.3
10.7
# 10.3

RC_FILE += \
posterazor.rc
Expand Down
12 changes: 6 additions & 6 deletions src/posterazor.rc
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ POSTERAZOR_ICON ICON "posterazor.ico"
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,9,5,0
PRODUCTVERSION 1,9,5,0
FILEVERSION 1,9,7,0
PRODUCTVERSION 1,9,7,0
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -53,15 +53,15 @@ BEGIN
BEGIN
BLOCK "00000000"
BEGIN
VALUE "Comments", "PosteRazor 1.9.5, Copyright 2005-2009 Alessandro Portale, GNU General Public License"
VALUE "Comments", "PosteRazor 1.9.7, Copyright 2005-2020 Alessandro Portale, GNU General Public License"
VALUE "CompanyName", "Alessandro Portale www.casaportale.de"
VALUE "FileDescription", "PosteRazor"
VALUE "FileVersion", "1.9.5"
VALUE "LegalCopyright", "Copyright (C) 2005-2009 Alessandro Portale"
VALUE "FileVersion", "1.9.7"
VALUE "LegalCopyright", "Copyright (C) 2005-2020 Alessandro Portale"
VALUE "LegalTrademarks", "Alessandro Portale"
VALUE "OriginalFilename", "posterazor.exe"
VALUE "ProductName", "PosteRazor"
VALUE "ProductVersion", "1.9.5"
VALUE "ProductVersion", "1.9.7"
END
END
BLOCK "VarFileInfo"
Expand Down