aboutsummaryrefslogtreecommitdiff
path: root/lib/MasterServer/Core/Version.pm
blob: bf12f215a9261841288c5ea79a8392f3b8307473 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45

package MasterServer::Core::Version;

use strict;
use warnings;
use Exporter 'import';

our @EXPORT = qw| version |;


################################################################################
##
## Version information
##
################################################################################
sub version {
  my $self = shift;
  
  # version and author information
  #
  # You are not allowed to modify these variables without making (significant)
  # alterations to the source code of this master server program. Only changing
  # these fields does not count as a significant alteration.
  #
  # -- addition to the LICENCE, you are only allowed to modify these lines
  # if you send Darkelarious a postcard or (e)mail with your compliments.
  #

  # master type
  $self->{build_type}     = "333networks Masterserver-Perl pre-release";
  
  # version
  $self->{build_version}  = "2.2.4";
  
  # short version for uplinks
  $self->{short_version}  = "MS-perl $self->{build_version}";
  
  # date yyyy-mm-dd
  $self->{build_date}     = "2016-11-17";
  
  #author, email
  $self->{build_author}   = "Darkelarious, darkelarious\@333networks.com";
}

1;