blob: 7de58b00e9d9d95cd745a5f29f5f6b3d739cb52c (
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
|
/*
* A VDR index file generator (C++)
*
* (C) 2003-2006 Stefan Huelswitt <s.huelswitt@gmx.de>
* (C) 2016 Richard Farthing
*
* This code 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 2
* of the License, or (at your option) any later version.
*
* This code 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 this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* Or, point your browser to http://www.gnu.org/copyleft/gpl.html
*
*-------------------------------------------------------------------------------
* Revision History
* $Log: version.h,v $
* Revision 1.3 2016/10/01 13:36:07 richard
* Make header error non fatal
*
* Revision 1.2 2016/09/01 15:37:42 richard
* Extensively updated to V0.2 for EN 300 743 compliant subtitles
* added -b and -n flags
*
*-------------------------------------------------------------------------------
*/
#ifndef ___VERSION_H
#define ___VERSION_H
#define PRG_NAME "genindex"
#define PRG_VERSION "0.2.1"
#endif //___VERSION_H
// --------- $Id: version.h,v 1.3 2016/10/01 13:36:07 richard Exp $ ---------- END
|