1 //////////////////////////////////////////////////////////////////////
2 //
3 // BeeBEEP Copyright (C) 2010-2021 Marco Mastroddi
4 //
5 // BeeBEEP is free software: you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published
7 // by the Free Software Foundation, either version 3 of the License,
8 // or (at your option) any later version.
9 //
10 // BeeBEEP is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 // GNU General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with BeeBEEP. If not, see <http://www.gnu.org/licenses/>.
17 //
18 // Author: Marco Mastroddi <marco.mastroddi(AT)gmail.com>
19 //
20 // $Id: Version.h 1476 2021-01-07 10:43:54Z mastroddi $
21 //
22 //////////////////////////////////////////////////////////////////////
23 
24 #ifndef BEEBEEP_VERSION_H
25 #define BEEBEEP_VERSION_H
26 
27 const char BEEBEEP_NAME[] = "BeeBEEP";
28 const char BEEBEEP_ORGANIZATION[] = "MarcoMastroddiSW";
29 const char BEEBEEP_ORGANIZATION_DOMAIN[] = "beebeep.net";
30 const char BEEBEEP_DNS_RECORD[] = "_beebeep._tcp";
31 const char BEEBEEP_WEBSITE[] = "https://www.beebeep.net/";
32 const char BEEBEEP_DOWNLOAD_WEBSITE[] = "download";
33 const char BEEBEEP_DONATE_WEBSITE[] = "donate";
34 const char BEEBEEP_HELP_WEBSITE[] = "help";
35 const char BEEBEEP_LANGUAGE_WEBSITE[] = "language";
36 const char BEEBEEP_NEWS_WEBSITE[] = "news";
37 const char BEEBEEP_CHECK_VERSION_WEBSITE[] = "check_version.php";
38 const char BEEBEEP_LAST_VERSION_FILE[] = "last_version.php";
39 const char BEEBEEP_FACT_WEBSITE[] = "fact";
40 const char BEEBEEP_TIPS_WEBSITE[] = "tips";
41 const char BEEBEEP_FAQ_WEBSITE[] = "faq";
42 const char BEEBEEP_GA_TRACKING_ID[] = "UA-57878696-4";
43 const char BEEBEEP_GA_URL[] = "https://www.google-analytics.com/collect";
44 const char BEEBEEP_GA_EVENT_VERSION[] = "1";
45 const char HUNSPELL_VERSION[] = "1.7.0";
46 const char BEEBEEP_VERSION[] = "5.8.4";
47 const int BEEBEEP_PROTO_VERSION = 90;
48 const int BEEBEEP_SETTINGS_VERSION = 18;
49 const int BEEBEEP_BUILD = 1476;
50 
51 #endif // BEEBEEP_VERSION_H
52 
53