root/trunk/src/gg_versions.c

Revision 695, 2.0 kB (checked in by jajcus, 1 year ago)

- more GG versions recognized (thanks to arghil)

Line 
1 /* $Id: gg_versions.c,v 1.4 2004/06/11 07:31:04 smoku Exp $ */
2
3 /*
4  *  (C) Copyright 2002-2006 Jacek Konieczny [jajcus(a)jajcus,net]
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License Version 2 as
8  *  published by the Free Software Foundation.
9  *
10  *  This program 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 this program; if not, write to the Free Software
17  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18  */
19
20 #include <stdio.h>
21
22 /* Gadu-Gadu protocol=>version mapping (aproximations) */
23 char *gg_version[]={
24         NULL,NULL,NULL,NULL,NULL,NULL,NULL,     /* 0x00 - 0x06 */
25         NULL,NULL,NULL,                         /* 0x07 - 0x09 */
26         "(WPKontakt)",                          /* 0x0a */
27         "4.0.2x",                               /* 0x0b */
28         NULL,NULL,NULL,                         /* 0x0c - 0x0e */
29         "4.5.1x",                               /* 0x0f */
30         "4.5.2x",                               /* 0x10 */
31         "4.6.x",                                /* 0x11 */
32         NULL,NULL,                              /* 0x12 - 0x13 */
33         "4.8.x",                                /* 0x14 */
34         "4.8.9",                                /* 0x15 */
35         "4.9.1",                                /* 0x16 */
36         "4.9.2",                                /* 0x17 */
37         "4.9.3-5.0.1",                          /* 0x18 */
38         "5.0.3",                                /* 0x19 */
39         "5.0.4",                                /* 0x1a */
40         "5.0.5",                                /* 0x1b */
41         "5.7 beta",                             /* 0x1c */
42         NULL,                                   /* 0x1d */
43         "5.7 beta (build 121)",                 /* 0x1e */
44         NULL,                                   /* 0x1f */
45         "6.0",                                  /* 0x20 */
46         "6.0 (build 133)",                      /* 0x21 */
47         "6.0 (build 136,142)",                  /* 0x22 */
48         NULL,                                   /* 0x23 */
49         "6.0 (build 155)",                      /* 0x24 */
50         "7.0 (build 1)",                        /* 0x25 */
51         "7.0 (build 20)",                       /* 0x26 */
52         "7.0 (build 22)",                       /* 0x27 */
53         "7.5.0 (build 2201)",                   /* 0x28 */
54         "7.6 (build 1688)",                     /* 0x29 */
55         "7.7 (build 3315)",                     /* 0x2a */
56         NULL,                                   /* 0x2b */
57         NULL,NULL,NULL,NULL,                    /* 0x2c - 0x2f */
58         NULL,NULL,NULL,NULL,                    /* 0x30 - 0x33 */
59         NULL,NULL,NULL,NULL,                    /* 0x34 - 0x37 */
60         NULL,NULL,NULL,NULL,                    /* 0x38 - 0x3b */
61         NULL,NULL,NULL,NULL,                    /* 0x3a - 0x3f */
62 };
Note: See TracBrowser for help on using the browser.