TWebupdate Files not copied

I made a Progam to update my .exe File with TWebUpdate and all works fine.
Now i want to includ additional files to the Update and make this .inf File
WebUpdateSHWA.inf.txt (870 Bytes)

The Update of the Program works fine but no additional files wiil be copied.
See logfile:
WebUpdate.log (3.4 KB)

What i am doing wrong?

I see additional downloads happen:

13.10.2023 14:21:38 : [915] Download : xxxx.de is available for purchase - Sedo.com (Status:3) (Error:0)
13.10.2023 14:21:38 : [915] Download : xxxx.de is available for purchase - Sedo.com (Status:3) (Error:0)
13.10.2023 14:21:38 : [915] Download : xxxx.de is available for purchase - Sedo.com (Status:3) (Error:0)
13.10.2023 14:21:38 : [915] Download : xxxx.de is available for purchase - Sedo.com (Status:3) (Error:0)
13.10.2023 14:21:38 : [915] Download : xxxx.de is available for purchase - Sedo.com (Status:3) (Error:0)

but I assume these arrived in the temp folder rather than in the app folder?
Can you try to set the targetdir spec (not set currently in your .INF file) for these files?

Yes, the files are in the temp-Directory.
How and where should i set the Target-Dir (in the inf-file with targetdir=???)?
How to set the path to the AppDir where my .exe file is?

From the developers guide page 11

Details of files to update
[file%] (where % is number of the file starting at 1)
url=URL (HTTP), filename (FTP) or UNC (file based)
newversion=1,0,0,0 OR
newsize= OR
newchecksum= OR
date=
time=
localversion=application.exe
targetdir=path
descr=your description of the file
compressed=1
filesize=123456
mandatory=0 or 1
hidden=0 or 1

The path can be any path and can also contain prefixes : {APP}, {WIN}, {PF} or {TMP}.
{APP} = directory where the current application is running
{WIN} = Windows directory on machine
{PF} = Program Files directory on machine

Thank you
with TargetDir={APP} under [Files]
all works fine.

I used the dokumentation on Page 16 and this did not word.
Maybe you can change the Dokumentation from Target1={APP} to TargetDir={APP}

I updated the doc to avoid this confusion.
It will be included in the next release.