Stand-alone version shows outdated information

Issue #55 new
mezzodrinker created an issue

When executing the stand-alone version of MobTalkerScript, the header still states the following:

MobTalkerScript 3.0.1-beta Copyright (c) 2013-2014 Chimaine
This is free software licensed under the GNU Lesser General Public License version 3.
> 

However, the current version of MobTalkerScript is 3.0.6-beta, and the copyright is, assuming there will be another release this year, Copyright (c) 2013-2023 Chimaine, MobTalkerScript contributors.

The relevant parts can be found in MtsGlobals.java, lines 24 to 26…

public static final MtsString VERSION = MtsString.of( "3.0.1-beta" );
public static final int VERSION_MAJOR = 3;
public static final int VERSION_MINOR = 0;

…and MobTalkerScript.java, lines 38 to 41:

_G.out.println( "MobTalkerScript " //
                + MtsGlobals.VERSION.toJava()
                + " Copyright (c) 2013-2014 Chimaine" );
_G.out.println( "This is free software licensed under the GNU Lesser General Public License version 3." );

It might make sense to update these values using Gradle, for example with the AbstractCopyTask.expand function.

Comments (0)

  1. Log in to comment