1 | --- src/global.c Sun Aug 29 11:33:38 2004 |
---|
2 | +++ src/global.c Thu Oct 7 05:06:01 2004 |
---|
3 | @@ -525,12 +525,20 @@ |
---|
4 | return MEDIA_AUDIO; |
---|
5 | else if (!g_strcasecmp(suffix, "au")) |
---|
6 | return MEDIA_AUDIO; |
---|
7 | + else if (!g_strcasecmp(suffix, "aiff")) |
---|
8 | + return MEDIA_AUDIO; |
---|
9 | else if (!g_strcasecmp(suffix, "ogg")) |
---|
10 | #ifdef HAVE_OGG |
---|
11 | return MEDIA_MP3; |
---|
12 | #else |
---|
13 | return MEDIA_AUDIO; |
---|
14 | #endif |
---|
15 | + else if (!g_strcasecmp(suffix, "flac")) |
---|
16 | + return MEDIA_MP3; |
---|
17 | + else if (!g_strcasecmp(suffix, "m4a")) |
---|
18 | + return MEDIA_MP3; |
---|
19 | + else if (!g_strcasecmp(suffix, "wma")) |
---|
20 | + return MEDIA_MP3; |
---|
21 | else if (!g_strcasecmp(suffix, "mpg")) |
---|
22 | return MEDIA_VIDEO; |
---|
23 | else if (!g_strcasecmp(suffix, "mpeg")) |
---|
24 | @@ -547,6 +555,8 @@ |
---|
25 | return MEDIA_VIDEO; |
---|
26 | else if (!g_strcasecmp(suffix, "wmf")) |
---|
27 | return MEDIA_VIDEO; |
---|
28 | + else if (!g_strcasecmp(suffix, "wmv")) |
---|
29 | + return MEDIA_VIDEO; |
---|
30 | else if (!g_strcasecmp(suffix, "bmp")) |
---|
31 | return MEDIA_IMAGE; |
---|
32 | else if (!g_strcasecmp(suffix, "png")) |
---|
33 | @@ -591,6 +601,18 @@ |
---|
34 | return MEDIA_APPLICATION; |
---|
35 | else if (!g_strcasecmp(suffix, "rpm")) |
---|
36 | return MEDIA_APPLICATION; |
---|
37 | + else if (!g_strcasecmp(suffix, "hqx")) |
---|
38 | + return MEDIA_APPLICATION; |
---|
39 | + else if (!g_strcasecmp(suffix, "sit")) |
---|
40 | + return MEDIA_APPLICATION; |
---|
41 | + else if (!g_strcasecmp(suffix, "sitx")) |
---|
42 | + return MEDIA_APPLICATION; |
---|
43 | + else if (!g_strcasecmp(suffix, "dmg")) |
---|
44 | + return MEDIA_APPLICATION; |
---|
45 | + else if (!g_strcasecmp(suffix, "img")) |
---|
46 | + return MEDIA_APPLICATION; |
---|
47 | + else if (!g_strcasecmp(suffix, "toast")) |
---|
48 | + return MEDIA_APPLICATION; |
---|
49 | else |
---|
50 | return MEDIA_NONE; |
---|
51 | } |
---|
52 | @@ -3462,7 +3484,7 @@ |
---|
53 | global.options.resume_timeout = 60; |
---|
54 | global.options.check_lib_for_download = 1; |
---|
55 | global.options.time_display = 0; |
---|
56 | - global.options.browser = g_strdup("dillo %s"); |
---|
57 | + global.options.browser = g_strdup("launch -l '%s'"); |
---|
58 | global.options.filetips = 1; |
---|
59 | |
---|
60 | global.options.down_speed[0] = SPEED_RED; |
---|
61 | @@ -3545,7 +3567,7 @@ |
---|
62 | global.allowed_ports = NULL; |
---|
63 | |
---|
64 | global.auto_save = NULL; |
---|
65 | - global.ping_command = g_strdup("/bin/ping -c 3 $IP"); |
---|
66 | + global.ping_command = g_strdup("/sbin/ping -c 3 $IP"); |
---|
67 | |
---|
68 | global.browse_width[0] = 369; |
---|
69 | global.browse_width[1] = 80; |
---|