From e1e07d5811360bec59d2fb63d8cedb96d4091301 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Sun, 14 Apr 2019 17:33:20 -0400 Subject: Set version via config --- examples/travelynx.conf | 1 + lib/Travelynx.pm | 2 -- lib/Travelynx/Controller/Static.pm | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/examples/travelynx.conf b/examples/travelynx.conf index ae61f7b..6e8c4e1 100644 --- a/examples/travelynx.conf +++ b/examples/travelynx.conf @@ -20,4 +20,5 @@ secrets => [ die("Changeme!"), ], + version => qx{git describe --dirty} // 'experimental', }; diff --git a/lib/Travelynx.pm b/lib/Travelynx.pm index 8da796d..01c90a0 100755 --- a/lib/Travelynx.pm +++ b/lib/Travelynx.pm @@ -15,8 +15,6 @@ use Travel::Status::DE::IRIS; use Travel::Status::DE::IRIS::Stations; use Travelynx::Helper::Sendmail; -our $VERSION = qx{git describe --dirty} || 'experimental'; - sub check_password { my ( $password, $hash ) = @_; diff --git a/lib/Travelynx/Controller/Static.pm b/lib/Travelynx/Controller/Static.pm index aa3428e..0144d83 100644 --- a/lib/Travelynx/Controller/Static.pm +++ b/lib/Travelynx/Controller/Static.pm @@ -6,7 +6,7 @@ my $travelynx_version = qx{git describe --dirty} || 'experimental'; sub about { my ($self) = @_; - $self->render( 'about', version => $travelynx_version ); + $self->render( 'about', version => $self->app->config->{version} // 'UNKNOWN' ); } sub imprint { -- cgit v1.2.3