X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=src%2Fconstants.cpp;h=a9bfb0b395ec6fbdfb5d345aa4b83987e2be138e;hb=HEAD;hp=cabca3ab984e0aa5dfb8b515b0253b925566dcd1;hpb=7b529d6a918efe39ca6d63201fcdb954a3c881b4;p=minitube diff --git a/src/constants.cpp b/src/constants.cpp index cabca3a..a9bfb0b 100644 --- a/src/constants.cpp +++ b/src/constants.cpp @@ -1,11 +1,32 @@ +/* $BEGIN_LICENSE + +This file is part of Minitube. +Copyright 2009, Flavio Tordini + +Minitube is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +Minitube is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with Minitube. If not, see . + +$END_LICENSE */ + #include "constants.h" #define STR(x) #x #define STRINGIFY(x) STR(x) const char *Constants::VERSION = STRINGIFY(APP_VERSION); -const char *Constants::APP_NAME = "Minitube"; +const char *Constants::NAME = STRINGIFY(APP_NAME); +const char *Constants::UNIX_NAME = STRINGIFY(APP_UNIX_NAME); const char *Constants::ORG_NAME = "Flavio Tordini"; const char *Constants::ORG_DOMAIN = "flavio.tordini.org"; -const char *Constants::WEBSITE = "http://flavio.tordini.org/minitube"; +const char *Constants::WEBSITE = "https://flavio.tordini.org/minitube"; const char *Constants::EMAIL = "flavio.tordini@gmail.com";