#721
|
||||
|
||||
Everything is just fine. now you need to figure out the special characters, if they come across in the text, then it will all look like in this table
Code:
' %27 ( %28 ) %29 * %2A + %2B , %2C - %2D . %2E / %2F
__________________
https://t.me/FMXInno |
The Following 3 Users Say Thank You to audiofeel For This Useful Post: | ||
Sponsored Links |
#722
|
||||
|
||||
@Tihiy_Don,
Code:
- Updated FToggleCheckBox.FontColor method. Last edited by BLACKFIRE69; 22-01-2024 at 21:49. |
The Following 4 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
#723
|
|||
|
|||
Thanks, everything is working as it should now.
|
The Following User Says Thank You to Tihiy_Don For This Useful Post: | ||
BLACKFIRE69 (10-01-2024) |
#724
|
||||
|
||||
![]() Quote:
1. Desktop Widgets: Code:
* Similar to MacOS Sonoma, these widgets will be positioned on the active desktop, not on the installer interface. -- Includes CPU / RAM / DISK / Network / Battery usage. -- Temperature. -- (The weather widget is currently in the development stage, not fully finished) -- Clock (available in both Digital and Analog). -- Image gallery slideshow. -- Installation status: Remaining / Elapsed time, Installing speed, etc. -- Users can create custom widgets as desired. -- Fully customizable. 2. Co-Pilot sidebar Panel: Code:
* Similar to Windows Co-pilot, Co-pilot sidebar will be shown in an extended space of the installer on the left or right. meaning, the installer will automatically be resized (expanded/collapsed) when the Co-pilot side-bar is activated/deactivated. -- Powered by GPT-3.5 Turbo (paid users can use GPT-4 +). -- DALL-E is not yet available (even for paid users). -- Ability to define custom error codes or grammar queries for the corresponding installer. so, the Co-pilot will describe these errors or specific statuses and recommend suggestions when the user asks about them. -- By default, an animated image/button (like Apple's Siri) will indicate the Co-pilot on the installer until the user changes it. -- Fully customizable. . Last edited by BLACKFIRE69; 14-07-2024 at 02:16. |
The Following 5 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
audiofeel (12-01-2024), Harsh ojha (12-01-2024), hitman797 (12-01-2024), Lord.Freddy (12-01-2024), Masquerade (12-01-2024) |
#725
|
|||
|
|||
@Blackfire69
They look AWESOME. Such modern style features. |
The Following 3 Users Say Thank You to Masquerade For This Useful Post: | ||
#726
|
||||
|
||||
![]() Quote:
__________________
https://t.me/FMXInno |
The Following User Says Thank You to audiofeel For This Useful Post: | ||
hitman797 (12-01-2024) |
#727
|
||||
|
||||
I found it on a flash drive. but the date is old. April 23rd.
__________________
https://t.me/FMXInno |
The Following 2 Users Say Thank You to audiofeel For This Useful Post: | ||
Behnam2018 (16-01-2024), hitman797 (12-01-2024) |
#729
|
||||
|
||||
![]() FMXInno - Installer template Quote:
Quote:
. |
The Following 11 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
ADMIRAL (22-01-2024), audiofeel (22-01-2024), Behnam2018 (22-01-2024), Ele (22-01-2024), hitman797 (22-01-2024), Jahan1373 (22-01-2024), Lord.Freddy (22-01-2024), Noname1966 (28-11-2024), nordi (12-02-2024), pcblizzard (27-01-2024), Tihiy_Don (22-01-2024) |
#730
|
||||
|
||||
![]()
i've added two new functions to retrieve the build date of the FMXInno library. i hope they'll be helpful in some cases.
Code:
function wGetFMXInnoBuildDate: Integer; procedure wGetFMXInnoBuildDateEx(var YearW, MonthW, DayW: Word); 1. Method - 01 Code:
function FMXInnoBuildDate_1: String; var YearW, MonthW, DayW: Word; begin wGetFMXInnoBuildDateEx(YearW, MonthW, DayW); Result := Format('Build Date: %d-%d-%d', [YearW, MonthW, DayW]); end; 2. Method - 02 Code:
function FMXInnoBuildDate_2: String; var YearW, MonthW, DayW: Word; EncodedDate: Integer; begin EncodedDate := wGetFMXInnoBuildDate; YearW := EncodedDate shr 9; MonthW := (EncodedDate shr 5) and $0F; DayW := EncodedDate and $1F; Result := Format('Build Date: %d-%d-%d', [YearW, MonthW, DayW]); end; . Last edited by BLACKFIRE69; 11-05-2024 at 09:04. |
The Following 6 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
audiofeel (23-01-2024), Behnam2018 (23-01-2024), Cesar82 (13-02-2024), hitman797 (23-01-2024), Lord.Freddy (24-01-2024), Tihiy_Don (23-01-2024) |
#731
|
||||
|
||||
@BLACKFIRE69, can you add these two events to the form object.
FForm: Code:
procedure OnActivate(Event: TNotifyEvent); procedure OnDeactivate(Event: TNotifyEvent); |
The Following User Says Thank You to hitman797 For This Useful Post: | ||
audiofeel (26-01-2024) |
#732
|
||||
|
||||
Quote:
these two events don't get triggered for 'FForm', so nothing will change with these two events, and they'll never get triggered. |
#733
|
||||
|
||||
![]() Modern FitGirl Installer for Windows 11+ Quote:
Quote:
Quote:
Quote:
. |
The Following 14 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
ADMIRAL (28-01-2024), audiofeel (26-01-2024), Behnam2018 (27-01-2024), Cesar82 (27-01-2024), CipaRus (11-08-2024), Ele (28-01-2024), ffmla (30-01-2024), Harsh ojha (04-02-2024), hitman797 (28-01-2024), ItsAtomic (27-01-2024), Jahan1373 (28-01-2024), Lord.Freddy (27-01-2024), ScOOt3r (07-02-2024), Wanterlude (08-02-2024) |
#734
|
||||
|
||||
![]()
FMXInno Final Release: [2024-Jan-31]
New update uploaded to first post, check it out. Code:
What's new: 1. Added FMXInno WebView2 custom class. 2. Updated HTML text (updated _HTML-Syntax.txt). 3. Updated ISArcExCleanUp. 4. Added a simple tool (Installer Template Generator). 5. Addressed known issues. 6. Quality fixes and improvements. 1. FMXInno WebView2: Code:
1. Support for the latest Windows 10 and Windows 11 only. -- This requires the WebView2 Runtime package. -- Alternatively, download it manually: Microsoft Edge WebView2 2. Support for HTML 5. 3. FWebview is always on top of all other controls, just like the FVideoPlayer. Therefore, it's better to create this on an FCustomFluentWindow in real use. ![]() ![]() 2. Installer Template Generator: Code:
1. A simple tool to generate installer templates. - The script will include all the fundamental functions that the installer requires. . Last edited by BLACKFIRE69; 14-07-2024 at 02:17. |
The Following 8 Users Say Thank You to BLACKFIRE69 For This Useful Post: | ||
audiofeel (01-02-2024), Behnam2018 (01-02-2024), Ele (05-02-2024), hitman797 (04-02-2024), Lord.Freddy (01-02-2024), nordi (24-02-2024), Tihiy_Don (01-02-2024), Wanterlude (08-02-2024) |
#735
|
|||
|
|||
Maybe it will be useful to someone.
Automatically set the unpacking parameters depending on the amount of RAM: Quote:
|
The Following 4 Users Say Thank You to Tihiy_Don For This Useful Post: | ||
![]() |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
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 |