Skip to content

Commit

Permalink
HFSExplorer 0.23.
Browse files Browse the repository at this point in the history
  • Loading branch information
unsound committed Jan 9, 2015
1 parent 2d2b3b4 commit 9f61e03
Show file tree
Hide file tree
Showing 7 changed files with 44 additions and 15 deletions.
Binary file modified dist/bin/hfsexplorer.exe
Binary file not shown.
29 changes: 29 additions & 0 deletions doc/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,35 @@ HFSExplorer Changelog
---------------------


0.23
----
- Feature: Support for files compressed with HFS+ compression methods 3 and 4
(introduced starting with Mac OS X 10.6). Compressed files are indicated with
blue colour in HFSExplorer.

- Feature: Support in HFSExplorer for extracting extended attributes to
AppleDouble files.

- Feature: Support for Mac OS X sparse image (.sparseimage) files.

- Enhancement: Add support for UDIF images larger than 2 GiB.

- Bugfix: Fix regressions in the UDIF XML and zlib-compression code which broke
UDIF image support.

- Bugfix: Fix broken parsing of non-ASCII XML data in UDIF file.

- Bugfix: Fix incorrect data being extracted for multiple-extent files.

- Bugfix: Windows installer now installs HFSExplorer shortcuts in 'All users'
instead of the user-specific start menu directory.

- Bugfix: Windows uninstaller didn't clean up files in newly added directories.

- Many other small fixes. See the git log for more info:
https://github.com/unsound/hfsexplorer/releases/tag/hfsexplorer-0.23


0.22.1
------
- Feature: The "Load file system from device" dialog is enabled for non-Windows
Expand Down
2 changes: 1 addition & 1 deletion doc/hfsexplorer.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

; HM NIS Edit Wizard helper defines
!define PRODUCT_NAME "HFSExplorer"
!define PRODUCT_VERSION "0.22.1"
!define PRODUCT_VERSION "0.23"
!define PRODUCT_PUBLISHER "Catacombae Software"
!define PRODUCT_WEB_SITE "http://www.catacombae.org/"
!define PRODUCT_UNINST_KEY "Software\Microsoft\Windows\CurrentVersion\Uninstall\${PRODUCT_NAME}"
Expand Down
12 changes: 6 additions & 6 deletions doc/version.sdic.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
!SimpleDictionary: 1.0
AppName: HFSExplorer
Version: 0.22.1
Build: 220100
Date: 2014-08-25
Installer: http://downloads.sourceforge.net/catacombae/hfsexplorer-0.22.1-setup.exe?use_mirror=
Binary: http://downloads.sourceforge.net/catacombae/hfsexplorer-0.22.1-bin.zip?use_mirror=
Source: http://downloads.sourceforge.net/catacombae/hfsexplorer-0.22.1-src.zip?use_mirror=
Version: 0.23
Build: 230000
Date: 2015-01-09
Installer: http://downloads.sourceforge.net/catacombae/hfsexplorer-0.23-setup.exe?use_mirror=
Binary: http://downloads.sourceforge.net/catacombae/hfsexplorer-0.23-bin.zip?use_mirror=
Source: http://downloads.sourceforge.net/catacombae/hfsexplorer-0.23-src.zip?use_mirror=
Changelog: http://www.catacombae.org/hfsexplorer/changelog.txt
2 changes: 1 addition & 1 deletion src/java/org/catacombae/hfsexplorer/BuildNumber.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@

public class BuildNumber {
//[BuildEnumerator:Opening] WARNING: The following lines are managed by an external program. Do NOT change.
public static final long BUILD_NUMBER = 220100L;
public static final long BUILD_NUMBER = 230000L;
//[BuildEnumerator:Closing] The lines managed by an external program end here.
}
4 changes: 2 additions & 2 deletions src/java/org/catacombae/hfsexplorer/HFSExplorer.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@

@SuppressWarnings("deprecation") // TODO: Fix HFSExplorer so it doesn't use deprecated methods...
public class HFSExplorer {
public static final String VERSION = "0.22.1";
public static final String VERSION = "0.23";
public static final String COPYRIGHT =
"Copyright \u00A9 Erik Larsson 2006-2014";
"Copyright \u00A9 Erik Larsson 2006-2015";
public static final String[] NOTICES = {
"This program is distributed under the GNU General Public License version 3.",
"See <http://www.gnu.org/copyleft/gpl.html> for the details.",
Expand Down
10 changes: 5 additions & 5 deletions src/win32/launcher/launcher.rc
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_NEUTRAL
//

1 VERSIONINFO
FILEVERSION 0,22,1,0
PRODUCTVERSION 0,22,1,0
FILEVERSION 0,23,0,0
PRODUCTVERSION 0,23,0,0
FILEFLAGSMASK 0x0L
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -44,12 +44,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Catacombae Software"
VALUE "FileDescription", "HFSExplorer"
VALUE "FileVersion", "0, 22, 1, 0"
VALUE "FileVersion", "0, 23, 0, 0"
VALUE "InternalName", "HFSExplorer"
VALUE "LegalCopyright", "Copyright (C) 2006-2014 Erik Larsson"
VALUE "LegalCopyright", "Copyright (C) 2006-2015 Erik Larsson"
VALUE "OriginalFilename", "hfsexplorer.exe"
VALUE "ProductName", "HFSExplorer: A tool for accessing HFS/HFS+/HFSX hard drives and disk images."
VALUE "ProductVersion", "0, 22, 1, 0"
VALUE "ProductVersion", "0, 23, 0, 0"
END
END
BLOCK "VarFileInfo"
Expand Down

0 comments on commit 9f61e03

Please sign in to comment.