TADS3 game: How can I influence the license info?

After compiling my little TADS3 game, I have the file GameInfo.txt. Among other things it contains these two lines:

LicenseType: Freeware
CopyingRules: Nominal cost only; compilations allowed

How can I influence this? (I want to apply the AGPL.)

are the defaults; you can edit the GameInfo.txt or add the license lines to the versionInfo e.g.

versionInfo: GameID
   [....]
   LicenseType = 'AGPL'
   CopyingRules = 'whatever affero has'
   [....]
;

HTH and
Best regards from Italy,
dott. Piergiorgio.

2 Likes