FileForums

FileForums (https://fileforums.com/index.php)
-   Conversion Tutorials (https://fileforums.com/forumdisplay.php?f=55)
-   -   ASIS: Advanced Simple Installer Script (https://fileforums.com/showthread.php?t=99481)

Titeuf 07-02-2019 02:45

Quote:

Originally Posted by KaktoR (Post 479362)
Open Settings.iss and add this to somewhere

Because you don't have a type-in field in compact mode.


Hello KaktoR,
Is it me who forgot something but in normal mode the input field is not displayed!
hmm maybe i'm so tired! lol

KaktoR 07-02-2019 03:18

Sorry :D

Code:

[INISettings]
// Enable Yes (1) or No (0).
Enable=1
INIFile={app}\steam_emu.ini
Section=Settings
Key=UserName
Value=


Titeuf 07-02-2019 05:43

Quote:

Originally Posted by KaktoR (Post 479365)
Sorry :D

Code:

[INISettings]
// Enable Yes (1) or No (0).
Enable=1
INIFile={app}\steam_emu.ini
Section=Settings
Key=UserName
Value=


KaktoR, thank you for your work this work very well!
just one thing, to be more aesthetic in my language, I need to add spaces for the checks (md5) look at my picture:

https://i.imgur.com/PqujW8V.jpg

the ideal would be that it must be like this (in French)!
Quote:

Total des fichiers: 48 Fichiers traités: 21 Ok:21 manquants:0 mauvais: 0
Where do I have to add spaces, please?

doofoo24 07-02-2019 08:17

is it possible to change WizardForm.BorderStyle color ?

kocchi96x 07-02-2019 12:39

Quote:

Originally Posted by KaktoR (Post 479362)
Open Settings.iss and add this to somewhere

Code:

#define Value ReadIni(SourcePath + "\Settings.ini", "INISettings", "Value", "")
Open Settings.ini and add this to [INISettings] section
Code:

Value=yourname
Because you don't have a type-in field in compact mode.

it worked now thanks :)

Quote:

Originally Posted by Titeuf (Post 479363)
Hello KaktoR,
Is it me who forgot something but in normal mode the input field is not displayed!
hmm maybe i'm so tired! lol

i was going to say this to because i didn't see it as well when I converted that compact one i did to a normal one. I'll check with your Post to test.

KaktoR 07-02-2019 12:59

1 Attachment(s)
Need some translations

Code:

Hebrew.EnterPlayerName=Enter your player name:

French.EnterPlayerName=Enter your player name:

German.EnterPlayerName=Enter your player name:

Italian.EnterPlayerName=Enter your player name:

Spanish.EnterPlayerName=Enter your player name:

Polish.EnterPlayerName=Enter your player name:

Russian.EnterPlayerName=Enter your player name:

PortugueseBrazil.EnterPlayerName=Enter your player name:


Titeuf 07-02-2019 22:41

Quote:

Originally Posted by KaktoR (Post 479375)
Need some translations

Code:

Hebrew.EnterPlayerName=Enter your player name:

French.EnterPlayerName=Enter your player name:

German.EnterPlayerName=Enter your player name:

Italian.EnterPlayerName=Enter your player name:

Spanish.EnterPlayerName=Enter your player name:

Polish.EnterPlayerName=Enter your player name:

Russian.EnterPlayerName=Enter your player name:

PortugueseBrazil.EnterPlayerName=Enter your player name:


Hi,

translated with google translation (except French)

Quote:

Hebrew.EnterPlayerName=הזן את שם הנגן שלך:

French.EnterPlayerName=Entrez votre nom de joueur:

German.EnterPlayerName=Geben Sie Ihren Spielernamen ein:

Italian.EnterPlayerName=Inserisci il nome del tuo giocatore:

Spanish.EnterPlayerName=Ingrese su nombre de jugador:

Polish.EnterPlayerName=Wpisz swoją nazwę gracza:

Russian.EnterPlayerName=Введите имя игрока:

PortugueseBrazil.EnterPlayerName=Digite o nome do seu jogador:

Titeuf 08-02-2019 06:47

hello,
here is the translation (Google translation, except for French) for "Create unistaller" in the file "CustomMessages"

Quote:

English.CreateUninstall=Create uninstaller
Hebrew.CreateUninstall=צור מסיר
French.CreateUninstall=Créer un programme de désinstallation
German.CreateUninstall=Deinstallationsprogramm erstellen
Italian.CreateUninstall=Crea un programma di disinstallazione
Spanish.CreateUninstall=Crear desinstalador
Polish.CreateUninstall=Stwórz dezinstalator
Russian.CreateUninstall=Создать деинсталлятор
PortugueseBrazil.CreateUninstall=Criar desinstalador

KaktoR 11-02-2019 03:53

1 Attachment(s)
Code:

beta6

- Fixed french translation for CRC check page (forgot some spaces)
- Fixed some other things
- Added RazorTools
  > ZSTD Precompressor
  > FIFA 19 Cas Decryption Tool + Precompressor
  > Project CARS 2 Bff Decryption Tool


Titeuf 11-02-2019 04:38

Quote:

Originally Posted by KaktoR (Post 479461)
Code:

beta6

- Fixed french translation for CRC check page (forgot some spaces)
- Fixed some other things
- Added RazorTools
  > ZSTD Precompressor
  > FIFA 19 Cas Decryption Tool + Precompressor
  > Project CARS 2 Bff Decryption Tool


Hello KaktoR,
Thank you for this new version.
Excellent work (as usual) !!
for the moment this version works very well.
Warmest looks

Titeuf 11-02-2019 05:22

Hi,
How to display the text: Elapsed & Remaining
https://i.imgur.com/PHEmyuY.jpg
Please, because the text is not displayed!
Thank

KaktoR 12-02-2019 06:02

Change
Code:

ElapsedLabel.Caption := Format('%s', [TicksToStr(CurTick - StartTick)]);
to
Code:

ElapsedLabel.Caption := ExpandConstant('{cm:ElapsedTime}') + ': ' + Format('%s', [TicksToStr(CurTick - StartTick)]);
For correct time remaining i have to pass pcoftotal to isarcextract and define it for each archive. It's not the way I want it because I want it without set a value for each archive in use. And that's why I have time remaining deactivated in current release (with current system you will get incorrect times). Will see if there is a other way to make without do it manually.

KaktoR 12-02-2019 13:42

1 Attachment(s)
New one for components (first test)

Code:

beta 6(2)

- Added components
  > With this you can unpack language archives
  > Set them in Settings.ini
  > You don't need to add them to Records.ini

With included archives it works well. I haven't tested it with any compression or more data but it should work anyways.

Schabik 12-02-2019 20:54

Quote:

Originally Posted by KaktoR (Post 479492)
New one for components (first test)

Code:

beta 6(2)

- Added components
  > With this you can unpack language archives
  > Set them in Settings.ini
  > You don't need to add them to Records.ini

With included archives it works well. I haven't tested it with any compression or more data but it should work anyways.

Will test it today, lately tomorrow :-)

LilKil 13-02-2019 10:39

Quote:

Originally Posted by KaktoR (Post 479492)
New one for components (first test)

Code:

beta 6(2)

- Added components
  > With this you can unpack language archives
  > Set them in Settings.ini
  > You don't need to add them to Records.ini

With included archives it works well. I haven't tested it with any compression or more data but it should work anyways.

Works good but there's a problem when you disable "Component" in "Settings.ini" and then try to run the script:

https://i.gyazo.com/4000d2d149cdf4a2...2a7b7cd858.png

Is there something I need to do or is that a bug?


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

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