|
|
|
#1
|
|||
|
|||
|
3. StorePrivateKey
its protecting script codes from decompile ? |
| Sponsored Links |
|
#2
|
||||
|
||||
|
for me the ee2 version doesn't beat the interface, too bad it's old, I can't even read this one, it looks like a rainbow of colors in the code and very dull, you need an oled monitor to read
![]() you could add this option like in the screenshot like nsis, it would be an orgasm ![]() Thanks mr. blackfire Last edited by Dario06; 29-09-2024 at 05:51. |
| The Following 2 Users Say Thank You to Dario06 For This Useful Post: | ||
Behnam2018 (27-09-2024), Cesar82 (27-09-2024) | ||
|
#3
|
||||
|
||||
|
Upcoming InnoSetup Private Edition - v1.8 Update
Code:
1. Updated InnoSetup version to the latest available on GitHub. 2. Added built-in Botva2-like components/classes: * Ability to use Botva2-like implementations without any third-party DLL. A. TImgButton (with CheckBox) B. TImgProgressbar C. TImgTrackbar Code:
[Code}
var
ImgBtn: TImgButton;
ImgPB: TImgProgressbar;
ImgTrackBar: TImgTrackbar;
procedure InitializeWizard();
begin
ImgBtn := TImgButton.Create(WizardForm, ExtractAndLoad('Button.png'));
ImgBtn.SetBounds(252, 384, 120, 50);
ImgBtn.Text('< &Back');
ImgBtn.OnClick(@CommonOnClick);
ImgPB := TImgProgressbar.Create(WizardForm,
ExtractAndLoad('pb3.png'),
ExtractAndLoad('pbbkg3.png'), False);
ImgPB.Value(0, 100);
ImgTrackBar: TImgTrackbar.Create(WizardForm,
ExtractAndLoad('trackbar_bkg.png'),
ExtractAndLoad('trackbar_btn.png'));
ImgTrackBar.SetBounds(20, 403, 150, 10);
ImgTrackBar.BtnOffset(393, 18, 33);
ImgTrackBar.SetValue(69);
end;
Code:
3. Added Any Image support (TAnyImage) * Ability to draw any image format (.bmp, .jpg, .png, .gif, .webp, .svg, etc.) in InnoSetup. * More image manipulations will be available in the future, including: - Hue and Saturation adjustments - BlendToMask, BlendToDarken, BlendToLighten, BlendToAlpha - Draw Shadow, Glow - Tile images - Sharpen - Cropping - Rotate - Reduce colors - Grayscale, Invert Colors * Currently, images are detected by their file extensions. - In IS-PE v2.0, a better detection method will be implemented. * Support for image layers: - TAnyImageImgLyr: Image Layer (for overlaying images) - TAnyImageBlurLyr: Blur Layer (Linear, Radial, Custom Shape, etc.) - Hue and Saturation layers will be added in the future. Code:
[Code}
var
Img: TAnyImage;
ImgBlur: TAnyImageBlurLyr;
ImgLogo: TAnyImageImgLyr
procedure InitializeWizard();
begin
Img := TAnyImage.Create(WizardForm);
Img.SetBounds(382, 110, 230, 300);
// Img.LoadImageEx(ExtractAndLoad('base.dat'), IS_IMG_PNG);
Img.LoadImage(ExtractAndLoad('base.png'));
Img.Stretch(True);
ImgBlur := Img.AddGaussinaBlurLayer;
ImgBlur.Amount(20); // 0-100
ImgBlur.AutoSize(True);
ImgLogo := Img.AddImageLayer;
ImgLogo.SetBounds(15, 100, 200, 200);
ImgLogo.LoadImage(ExtractAndLoad('base.png'));
ImgLogo.Stretch(True);
ImgLogo.BringToFront;
end;
Code:
4. Enhanced Auto-Completion: * Currently in beta stage. * This feature will be improved in the next major update. 5. Added built-in Audio/Video classes: A. TVideoPlay (supports .avi, .mp4 formats) B. TAudioPlay (supports .mp3, .ogg formats) 6. Added ability to load DLLs from memory: * No need to extract third-party DLLs to the HDD. * DLLs can be extracted into memory and functions can be called directly from there. 7. Added support for modern Delphi classes/functions. 8. Features on request: * Individual users can request specific features to be included. A. Built-in support for `UnArc.dll` or `TISArcEx` B. Built-in support for `CmdOut.dll` or `TCmdOut` C. Built-in support for `XHashEx.dll` or `TXHashEx` Notice: Quote:
. |
| The Following 6 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
Aschenputtell (17-02-2025), audiofeel (17-10-2024), Cesar82 (17-10-2024), Dario06 (17-10-2024), Lord.Freddy (17-10-2024), ScOOt3r (17-10-2024) | ||
|
#4
|
||||
|
||||
|
hi blackfire add unpacked options please (CallWindowProc)
my example: Last edited by Dario06; 21-10-2024 at 11:36. |
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Best Compression Methods for 'Specific' Games INDEX | JustFun | Conversion Tutorials | 58 | 30-03-2026 18:03 |
| INDEX - CD2DVD Conversion Index **UPDATED: 17-07-2024** | Grumpy | PC Games - CD/DVD Conversions | 252 | 16-07-2024 20:35 |
| Fallout Nv Ultimate Edition 3xDVD9 to 2xDVD5 InnoSetup 1 LANGUAGE | THADEADMAN2011 | PC Games - CD/DVD Conversions | 9 | 04-09-2022 05:40 |