Seite 4 von 9

AW: TAPtoDate Toolkit

Verfasst: Do 23. Sep 2010, 21:34
von FireBird
Bei jeder Installation sollen die User-Settings "verschwinden"? Oder meinst Du bei INI-Versionsänderungen?

AW: TAPtoDate Toolkit

Verfasst: Do 23. Sep 2010, 21:51
von xyzzyx
Ja, natürlich nur bei INI-Versionsänderungen, die so wesentlich sind, dass manuelle Überarbeitung nötig ist.
Und sie sollen ja nicht verschwinden, sondern in oldini umbenannt werden :D

AW: TAPtoDate Toolkit

Verfasst: Do 23. Sep 2010, 21:55
von FireBird
Dafür brauche ich keine extra Option, das kann man dann ja immer machen (bei einem Versionwechsel).

AW: TAPtoDate Toolkit

Verfasst: Do 23. Sep 2010, 22:18
von xyzzyx
Ok, das wäre ja prima.
Hat der Versionswechsel an einer Settings-Datei bisher schon etwas anders bewirkt?

Ok, die Settings-Kennzeichnung wird wahrscheinlich bei der Deinstallation (Settings erhalten) berücksichtigt, richtig?

AW: TAPtoDate Toolkit

Verfasst: Do 23. Sep 2010, 22:24
von FireBird
xyzzyx hat geschrieben:Hat der Versionswechsel an einer Settings-Datei bisher schon etwas anders bewirkt?

Sie wird von der mitgelieferten Datei überschrieben. Das Umbenennen ist kein Problem. Die einzige Konsequenz wäre, dass solche Dateien bei einer Deinstallation nicht gelöscht werden (falls ich nicht noch eine Idee dazu habe).
Ok, die Settings-Kennzeichnung wird wahrscheinlich bei der Deinstallation (Settings erhalten) berücksichtigt, richtig?
Yepp.

AW: TAPtoDate Toolkit

Verfasst: Fr 8. Okt 2010, 11:31
von deangelj
Hello, the kangaroos here :) - is there any English version of the document on how to use the toolkit?

AW: TAPtoDate Toolkit

Verfasst: Fr 8. Okt 2010, 11:44
von Twilight
good question, i don't know in which language paul97 has written the manual....and as i know it's not finished yet.

twilight

AW: TAPtoDate Toolkit

Verfasst: Fr 8. Okt 2010, 19:42
von FireBird
I had some question and answer sessions with Jeff and he promised to write a short English HOWTO. But it may take some days.

AW: TAPtoDate Toolkit

Verfasst: Fr 8. Okt 2010, 21:44
von xyzzyx
Yes, he told that down under too. :D :

AW: TAPtoDate Toolkit

Verfasst: Sa 9. Okt 2010, 02:29
von deangelj
thanks guys

AW: TAPtoDate Toolkit

Verfasst: So 17. Okt 2010, 22:41
von deangelj
Hi - I am still trying to get this to work but am having a problem - hopefully someone here can help me?

When I create the package I get a 1KB tgz file which is invalid. I'm running Windows 7 64 bit and some folders are locked down (it's a corporate laptop). I'm wondering whether its a permissions issue when running tar? Does anyone know what the commands are that T2D toolkit runs to create the tgz?

Thanks,
John

AW: TAPtoDate Toolkit

Verfasst: Mo 18. Okt 2010, 03:54
von deangelj
Mmm, I can create a package manually by doing the following, so permission looks ok?

set PATH=%PATH%;c:\cygwin\bin;C:\cygwin\opt\crosstool\bin
cd C:\user\Personal\tv\Topfield\MyStuff\2400Stuff\TAPtoDate\SourceFiles\TMSCommander
tar -czf 8001FFFF-20101016-230751.tgz *

But now, on new versions I don't get any tgz at all!

AW: TAPtoDate Toolkit

Verfasst: Mo 18. Okt 2010, 06:28
von xyzzyx
Is cygwin correctly installed on your laptop?
Sorry, but I do not know the commands that the Toolkit uses.

AW: TAPtoDate Toolkit

Verfasst: Mo 18. Okt 2010, 23:51
von deangelj
Hi xyzzyx - yes it is installed correctly. I use it to build TAPs. Do you need to run the toolkit from a cygwin window?

AW: TAPtoDate Toolkit

Verfasst: Di 19. Okt 2010, 06:54
von xyzzyx
No, it has just to be installed.
The toolkit is run normally under windows.
But I do not know whether there is something special to observe because you use Windows 7.
I use it on XP.

How did JaffaMan manage to put TMSTimer in TAPtoDate? Does he have Windows 7 too?

AW: TAPtoDate Toolkit

Verfasst: Di 19. Okt 2010, 08:08
von Gerti
Hi!

I use Windows 7 and it is working fine for me...

Best regards,
Michael

AW: TAPtoDate Toolkit

Verfasst: Di 19. Okt 2010, 08:33
von paul79
Here it works also fine on Windows 7. Sometimes I have seen problems with cygwin if there are spaces in the path or filenames. I don't know if this could be a problem with the toolkit. but this is something you can quickly check and test.

Greetings

AW: TAPtoDate Toolkit

Verfasst: Mo 25. Okt 2010, 11:30
von FireBird
The toolkit simply calls 3 Unix commands via the Windows command console. The path to cygwin\bin should be all it needs.

Code: Alles auswählen

tar --format=v7 --exclude-from=Exclude.txt -cf "<packagename>.tar"  *'
gzip "<packagename>.tar"
mv "<packagename>.tar.gz" "<packagename>.tgz"

AW: TAPtoDate Toolkit

Verfasst: Mi 27. Okt 2010, 03:40
von deangelj
Thanks Alex - if I execute this interactively I get the following problem: and the resulting tar file is invalid:

Code: Alles auswählen

Deangelj@WS069681 /cygdrive/C/user/Personal/tv/Topfield/MyStuff/2400Stuff/TAPtoDate/SourceFiles/TMSCommander
$ tar --format=v7  -cf "8001FFFF-20101027-012950.tar" *
tar: value 4294967295 out of gid_t range 0..2097151
tar: value 4294967295 out of gid_t range 0..2097151
tar: value 4294967295 out of gid_t range 0..2097151
tar: Exiting with failure status due to previous errors
I'll see if I need to update my cygwin tools - my version of tar is 1.12-1.

AW: TAPtoDate Toolkit

Verfasst: Mi 27. Okt 2010, 04:00
von deangelj
If I run it without the "--format=v7" it seems to work ok...

I updated to the latest cygwin - no difference...