Skip to content

Commit d3adb2a

Browse files
v1.3.1
1 parent f9c05cf commit d3adb2a

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

Docs/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# PS3 Quick Disc Decryptor Change Log 📋
22

3-
## v1.3 *(current)* 🆕
3+
## v1.3.1 *(current)* 🆕
4+
#### 🛠️ Fixes:
5+
• A mistake in PS3 ISO validation (removed volume name check).
6+
7+
## v1.3 🔄
48
#### 🚀 New Features:
59
• Added support for zip archives (for both PS3 disc images and decryption key files).
610
#### 🌟 Improvements:

Source/PS3 Quick Disc Decryptor/Form1.vb

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -392,13 +392,11 @@ Friend NotInheritable Class Form1
392392
cd As New CDReader(isoStream, joliet:=False)
393393

394394
Dim isExpectedClusterSize As Boolean = cd.ClusterSize = 2048
395-
Dim isExpectedVolumeLabel As Boolean = cd.VolumeLabel = "PS3VOLUME"
396395

397396
Dim existsPS3GAMEDir As Boolean =
398397
cd.Root.GetDirectories("PS3_GAME", SearchOption.TopDirectoryOnly).Any()
399398

400399
If Not isExpectedClusterSize OrElse
401-
Not isExpectedVolumeLabel OrElse
402400
Not existsPS3GAMEDir Then
403401
Form1.ShowMessageBoxInUIThread(Me, "Error validating encrypted PS3 ISO", $"The ISO file is not a PS3 disc image: {refIso.FullName}", MessageBoxIcon.Error)
404402
Return False

Source/PS3 Quick Disc Decryptor/PS3 Quick Disc Decryptor.vbproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<Copyright>© 2024 ElektroStudios</Copyright>
2121
<PackageIcon>icon.png</PackageIcon>
2222
<NeutralLanguage>en</NeutralLanguage>
23-
<Version>1.3</Version>
23+
<Version>1.3.1</Version>
2424
</PropertyGroup>
2525

2626
<ItemGroup>

0 commit comments

Comments
 (0)