fix invoice preview (#1129)

This commit is contained in:
Kevin Papst
2019-09-20 16:00:03 +02:00
committed by GitHub
parent 5aa422dde1
commit e45e782e7d
9 changed files with 39 additions and 31 deletions

View File

@@ -10,32 +10,32 @@
namespace App;
/**
* Some very global constants for Kimai.
* Some "very" global constants for Kimai.
*/
class Constants
{
/**
* The current release version
*/
public const VERSION = '1.4';
/**
* The current release status, either "stable" or "dev"
*/
public const STATUS = 'dev';
/**
* The software name
*/
public const SOFTWARE = 'Kimai 2';
/**
* The current release version
*/
public const VERSION = '1.3';
/**
* The release name, will only change for new major version
*/
public const NAME = 'Ayumi';
/**
* The current release status, either "stable" or "dev"
*/
public const STATUS = 'stable';
/**
* Used in multiple views
*/
public const GITHUB = 'https://github.com/kevinpapst/kimai2/';
/**
* Used in multiple views
* Homepage, used in multiple views
*/
public const HOMEPAGE = 'https://www.kimai.org';
}