@@ -13,13 +13,13 @@ InstallDirRegKey HKLM "Software\FreePDF" "InstallPath"
1313RequestExecutionLevel admin
1414
1515# Version Information
16- VIProductVersion " 2 .0.0.0"
16+ VIProductVersion " 3 .0.0.0"
1717VIAddVersionKey " ProductName" " FreePDF"
1818VIAddVersionKey " Comments" " Free PDF Translation Tool"
1919VIAddVersionKey " CompanyName" " FreePDF Team"
2020VIAddVersionKey " FileDescription" " FreePDF Setup"
21- VIAddVersionKey " FileVersion" " 2 .0.0.0"
22- VIAddVersionKey " ProductVersion" " 2 .0.0.0"
21+ VIAddVersionKey " FileVersion" " 3 .0.0.0"
22+ VIAddVersionKey " ProductVersion" " 3 .0.0.0"
2323VIAddVersionKey " InternalName" " FreePDF"
2424VIAddVersionKey " LegalCopyright" " © 2025 FreePDF Team"
2525VIAddVersionKey " OriginalFilename" " FreePDF_Setup.exe"
@@ -67,15 +67,15 @@ Section "FreePDF" SecMain
6767
6868 # Registry entries
6969 WriteRegStr HKLM " Software\FreePDF" " InstallPath" " $INSTDIR"
70- WriteRegStr HKLM " Software\FreePDF" " Version" " 2 .0.0"
70+ WriteRegStr HKLM " Software\FreePDF" " Version" " 3 .0.0"
7171
7272 # Add to control panel programs list
7373 WriteRegStr HKLM " Software\Microsoft\Windows\CurrentVersion\Uninstall\FreePDF" " DisplayName" " FreePDF"
7474 WriteRegStr HKLM " Software\Microsoft\Windows\CurrentVersion\Uninstall\FreePDF" " UninstallString" " $INSTDIR\Uninstall.exe"
7575 WriteRegStr HKLM " Software\Microsoft\Windows\CurrentVersion\Uninstall\FreePDF" " InstallLocation" " $INSTDIR"
7676 WriteRegStr HKLM " Software\Microsoft\Windows\CurrentVersion\Uninstall\FreePDF" " DisplayIcon" " $INSTDIR\FreePDF.exe"
7777 WriteRegStr HKLM " Software\Microsoft\Windows\CurrentVersion\Uninstall\FreePDF" " Publisher" " FreePDF Team"
78- WriteRegStr HKLM " Software\Microsoft\Windows\CurrentVersion\Uninstall\FreePDF" " DisplayVersion" " 2 .0.0"
78+ WriteRegStr HKLM " Software\Microsoft\Windows\CurrentVersion\Uninstall\FreePDF" " DisplayVersion" " 3 .0.0"
7979 WriteRegDWORD HKLM " Software\Microsoft\Windows\CurrentVersion\Uninstall\FreePDF" " NoModify" 1
8080 WriteRegDWORD HKLM " Software\Microsoft\Windows\CurrentVersion\Uninstall\FreePDF" " NoRepair" 1
8181
@@ -113,14 +113,14 @@ Function .onInit
113113 StrCmp $R0 " " done
114114
115115 # Check version for better update messaging
116- StrCmp $R1 " 2 .0.0" same_version different_version
116+ StrCmp $R1 " 3 .0.0" same_version different_version
117117
118118 same_version:
119- MessageBox MB_OKCANCEL |MB_ICONQUESTION " FreePDF v2 .0.0 is already installed.$\n$\n Click OK to reinstall or Cancel to exit." IDOK uninst
119+ MessageBox MB_OKCANCEL |MB_ICONQUESTION " FreePDF v3 .0.0 is already installed.$\n$\n Click OK to reinstall or Cancel to exit." IDOK uninst
120120 Abort
121121
122122 different_version:
123- MessageBox MB_OKCANCEL |MB_ICONINFORMATION " FreePDF $R1 is installed.$\n$\n Click OK to upgrade to v2 .0.0 or Cancel to exit." IDOK uninst
123+ MessageBox MB_OKCANCEL |MB_ICONINFORMATION " FreePDF $R1 is installed.$\n$\n Click OK to upgrade to v3 .0.0 or Cancel to exit." IDOK uninst
124124 Abort
125125
126126 uninst:
0 commit comments