Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions > Conversion Tutorials
Register FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Search this Thread Display Modes
  #106  
Old 15-12-2022, 22:27
Behnam2018 Behnam2018 is offline
Registered User
 
Join Date: Jun 2018
Location: IRAN
Posts: 57
Thanks: 973
Thanked 24 Times in 20 Posts
Behnam2018 is on a distinguished road
Unhappy

thank you audiofeel
Attached Images
File Type: jpg 222.JPG (63.2 KB, 259 views)

Last edited by Behnam2018; 15-12-2022 at 22:42. Reason: error please help
Reply With Quote
The Following User Says Thank You to Behnam2018 For This Useful Post:
audiofeel (15-12-2022)
Sponsored Links
  #107  
Old 16-12-2022, 04:58
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 688
Thanks: 481
Thanked 2,547 Times in 561 Posts
BLACKFIRE69 is on a distinguished road
Quote:
Originally Posted by Behnam2018 View Post
thank you audiofeel
this might work.

in the latest release (22-Dec-15), i removed resources for Windows 7 and Windows 8.

Quote:
Originally Posted by BLACKFIRE69 View Post
FMXInno (Alpha) - Updates

Code:
* Stripped unused resources. ( 2.53 MB  -->  2.21 MB )
,

Last edited by BLACKFIRE69; 14-07-2024 at 01:44.
Reply With Quote
The Following User Says Thank You to BLACKFIRE69 For This Useful Post:
audiofeel (16-12-2022)
  #108  
Old 16-12-2022, 09:11
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 688
Thanks: 481
Thanked 2,547 Times in 561 Posts
BLACKFIRE69 is on a distinguished road
Arrow FMXInno - Updates

FMXInno - Updates

Code:
* FMXInno is now fully compatible with Windows 10 (except transparency).
* DrawFrame is available for every form.

 (Tested on Windows 10 22H2 x64)
,

Last edited by BLACKFIRE69; 14-07-2024 at 01:44.
Reply With Quote
The Following 6 Users Say Thank You to BLACKFIRE69 For This Useful Post:
ADMIRAL (19-12-2022), audiofeel (16-12-2022), ffmla (19-12-2022), Harsh ojha (18-12-2022), hitman797 (16-12-2022), Razor12911 (17-12-2022)
  #109  
Old 17-12-2022, 14:34
Masquerade Masquerade is offline
Registered User
 
Join Date: Jan 2020
Location: Monte d'Or
Posts: 1,217
Thanks: 294
Thanked 1,404 Times in 637 Posts
Masquerade is on a distinguished road
@BLACKFIRE69

There's a slight issue with the function VerifyHashesFromFile.

In my repacks, I read hash files from a _Verify folder, so each line of the file path begins with ..\ to indicate that the files are one directory up from the folder containing the checksum.

However, when reading the checksum file and pointing it to {app} or {app}\Verify, the FMXPlugin is trying to read ..\ as the directory name and is leading to all files returning as incorrect.

Example:



Please may you fix this?

Thanks,
Masquerade
Reply With Quote
  #110  
Old 17-12-2022, 21:45
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 688
Thanks: 481
Thanked 2,547 Times in 561 Posts
BLACKFIRE69 is on a distinguished road
Quote:
Originally Posted by Masquerade View Post
@BLACKFIRE69

There's a slight issue with the function VerifyHashesFromFile.

In my repacks, I read hash files from a _Verify folder, so each line of the file path begins with ..\ to indicate that the files are one directory up from the folder containing the checksum.

However, when reading the checksum file and pointing it to {app} or {app}\Verify, the FMXPlugin is trying to read ..\ as the directory name and is leading to all files returning as incorrect.

Example:



Please may you fix this?

Thanks,
Masquerade


try this out.

Code:
Improvement

BasePath:  
  C:\Testing1\Testing2\_Verify    =    ( {app}\_Verify )

HashFile.md5:
  ...
  07c7314cfefa2fc0292a4780da6c6ede *..\chunk.pb0

  OR

  07c7314cfefa2fc0292a4780da6c6ede ..\chunk.pb0
  ...

XHash (Internal) Reading:
  >>  C:\Testing1\Testing2\chunk.pb0    =    ( {app}\chunk.pb0 )

Last edited by BLACKFIRE69; 22-12-2022 at 10:33.
Reply With Quote
The Following 2 Users Say Thank You to BLACKFIRE69 For This Useful Post:
ADMIRAL (21-12-2022), Masquerade (18-12-2022)
  #111  
Old 18-12-2022, 01:35
Masquerade Masquerade is offline
Registered User
 
Join Date: Jan 2020
Location: Monte d'Or
Posts: 1,217
Thanks: 294
Thanked 1,404 Times in 637 Posts
Masquerade is on a distinguished road
^^
This is correct, however the hashes are always returning bad. I think FMXInno is thinking the hashes are MD5 whereas they are blake3.

Is Blake3 implemented?

Thanks,
Masquerade
Reply With Quote
  #112  
Old 18-12-2022, 02:26
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 688
Thanks: 481
Thanked 2,547 Times in 561 Posts
BLACKFIRE69 is on a distinguished road
Quote:
Originally Posted by Masquerade View Post
^^
This is correct, however the hashes are always returning bad. I think FMXInno is thinking the hashes are MD5 whereas they are blake3.

Is Blake3 implemented?
it's there.

Quote:
function VerifyHashesFromFile(ChecksumFile, BasePath: WideString; HashAlgo: Integer; LogFile: Boolean; Callback: TMultiHashCallback): Integer;

Blake3_256 ==>
HashAlgo := 11 OR
HashAlgo := H_BLAKE3_256

Last edited by BLACKFIRE69; 14-07-2024 at 01:44.
Reply With Quote
The Following 4 Users Say Thank You to BLACKFIRE69 For This Useful Post:
ADMIRAL (19-12-2022), auaksa (18-12-2022), audiofeel (20-12-2022), Masquerade (18-12-2022)
  #113  
Old 20-12-2022, 11:05
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 688
Thanks: 481
Thanked 2,547 Times in 561 Posts
BLACKFIRE69 is on a distinguished road
Quote:
Originally Posted by audiofeel View Post
Hi everybody. Happy New Year to everyone! and Merry Christmas... the creator of this topic, the creators of this forum and just users. A small pre-holiday script.




Windows 10 users won't be happy if you don't include the following alternatives.


Quote:
// For Windows 10 (if not IsOSMatched(B_WIN11_21H2) then // OS < Windows 11)



1. MsgForm.FCreateBlankForm(FMXForm.HandleHWND, VCLColorToFMXColor($002900), '');

2. DirBrowseDlg.FCreateBlankForm(VCLColorToFMXColor($002900), 'Select Install Directory', WizardForm.DirEdit.Text, '');

3. StartBrowseDlg.FCreateBlankForm(VCLColorToFMXColor($002900), 'Browse for Folders', WizardForm.GroupEdit.Text, '');

4. ExitForm.FCreateBlankForm(FMXForm.HandleHWND, VCLColorToFMXColor($002900), '');


Code:
FMXInno Lib:

- Fixed Custom form HandleHWND.  (for lockscreen:  AutoActivate)

Last edited by BLACKFIRE69; 14-07-2024 at 01:45.
Reply With Quote
The Following 2 Users Say Thank You to BLACKFIRE69 For This Useful Post:
ADMIRAL (21-12-2022), hitman797 (20-12-2022)
  #114  
Old 21-12-2022, 09:01
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 688
Thanks: 481
Thanked 2,547 Times in 561 Posts
BLACKFIRE69 is on a distinguished road
Quote:
Originally Posted by audiofeel View Post
If third-party fonts are used in the installer, then after exiting they remain in the "Temp" folder. Manually deleting them is difficult since they are open in "System". All this happens in Windows 10. There may be something wrong with my system... check who has the desire and opportunity

Make sure the FMXInnoShutDown is executed after the RemoveFontResource2. must work.

,

Last edited by BLACKFIRE69; 14-07-2024 at 01:45.
Reply With Quote
The Following 4 Users Say Thank You to BLACKFIRE69 For This Useful Post:
ADMIRAL (22-12-2022), audiofeel (21-12-2022), DelphiBuilder (21-12-2022), Gehrman (21-12-2022)
  #115  
Old 22-12-2022, 09:01
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 688
Thanks: 481
Thanked 2,547 Times in 561 Posts
BLACKFIRE69 is on a distinguished road
Arrow FMXInno + FMXInnoSk - Updates

Code:
What's New:

 - Applied the changes made so far.
 - Updated examples for both Windows 10 and Windows 11.
 - Updated CmdOut (internal). (Thanks Ele)

Latest version added to first post.
Reply With Quote
The Following 3 Users Say Thank You to BLACKFIRE69 For This Useful Post:
DelphiBuilder (22-12-2022), houcine80 (22-12-2022), ScOOt3r (23-12-2022)
  #116  
Old 23-12-2022, 09:26
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 688
Thanks: 481
Thanked 2,547 Times in 561 Posts
BLACKFIRE69 is on a distinguished road
Arrow FMXInno - Updates

FMXInno - Alpha

Code:
* Added Video Player.
  -- Video format: [.avi, .wmv]

Last edited by BLACKFIRE69; 14-07-2024 at 01:45.
Reply With Quote
The Following 5 Users Say Thank You to BLACKFIRE69 For This Useful Post:
audiofeel (23-12-2022), Cesar82 (23-12-2022), DelphiBuilder (23-12-2022), houcine80 (23-12-2022), ScOOt3r (23-12-2022)
  #117  
Old 24-12-2022, 19:14
Behnam2018 Behnam2018 is offline
Registered User
 
Join Date: Jun 2018
Location: IRAN
Posts: 57
Thanks: 973
Thanked 24 Times in 20 Posts
Behnam2018 is on a distinguished road
Wink Help

APEX Installer

Can it be made by script FMXInno?
Attached Images
File Type: jpg 1.JPG (91.6 KB, 261 views)
File Type: jpg 2.JPG (86.3 KB, 257 views)
File Type: jpg 3.JPG (103.7 KB, 258 views)
File Type: jpg 4.JPG (103.5 KB, 257 views)
Attached Files
File Type: rar Installer.rar (7.81 MB, 79 views)
Reply With Quote
The Following User Says Thank You to Behnam2018 For This Useful Post:
ADMIRAL (28-12-2022)
  #118  
Old 24-12-2022, 23:22
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 688
Thanks: 481
Thanked 2,547 Times in 561 Posts
BLACKFIRE69 is on a distinguished road
Quote:
Originally Posted by Behnam2018 View Post
APEX Installer

Can it be made by script FMXInno?
yes, it can be done with FMXInno.

Last edited by BLACKFIRE69; 14-07-2024 at 01:46.
Reply With Quote
The Following 2 Users Say Thank You to BLACKFIRE69 For This Useful Post:
ADMIRAL (28-12-2022), audiofeel (26-12-2022)
  #119  
Old 26-12-2022, 08:44
BLACKFIRE69's Avatar
BLACKFIRE69 BLACKFIRE69 is offline
Registered User
 
Join Date: Mar 2019
Location: In the Hell
Posts: 688
Thanks: 481
Thanked 2,547 Times in 561 Posts
BLACKFIRE69 is on a distinguished road
Quote:
Originally Posted by audiofeel View Post
No pain No gain
ok ladies, let me touch on some key points for Apex Installer.

(i'm little bit busy so i don't have enough time to make a complete script.)


.
Attached Images
File Type: png 1.png (126.8 KB, 274 views)
File Type: png 2.png (126.5 KB, 273 views)

Last edited by BLACKFIRE69; 31-03-2023 at 09:44.
Reply With Quote
The Following 6 Users Say Thank You to BLACKFIRE69 For This Useful Post:
ADMIRAL (28-12-2022), audiofeel (26-12-2022), Gehrman (26-12-2022), Harsh ojha (27-12-2022), houcine80 (26-12-2022), ScOOt3r (27-12-2022)
  #120  
Old 30-12-2022, 11:01
hitman797's Avatar
hitman797 hitman797 is offline
Registered User
 
Join Date: Feb 2013
Location: Algeria
Posts: 168
Thanks: 486
Thanked 202 Times in 122 Posts
hitman797 is on a distinguished road
Quote:
Originally Posted by audiofeel View Post
under OLD Installer
FLAT by Razor12911
CPI by Razor12911
Attached Images
File Type: png FLAT.png (21.4 KB, 234 views)
File Type: png CPI.png (29.9 KB, 237 views)
Reply With Quote
The Following User Says Thank You to hitman797 For This Useful Post:
audiofeel (30-12-2022)
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Windows Fluent Effects Standalone API - InnoSetup / VCL / FXM BLACKFIRE69 Conversion Tutorials 0 15-11-2023 17:35
Windows Phone Installer similar to razor12911's original design? Kitsune1982 Conversion Tutorials 0 02-07-2020 13:04
INDEX - Conversion Tutorial Index Razor12911 Conversion Tutorials 5 11-06-2020 02:05
Frequently Asked Questions Joe Forster/STA PC Games - Frequently Asked Questions 0 29-11-2005 09:48



All times are GMT -7. The time now is 19:15.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
FileForums @ https://fileforums.com