aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/db/extractor/mysql_extractor.php
blob: 34e309c19e05d90eb74affe7ce1174cd0933b95e (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
<?php
/**
*
* This file is part of the phpBB Forum Software package.
*
* @copyright (c) phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
* For full copyright and license information, please see
* the docs/CREDITS.txt file.
*
*/

namespace phpbb\db\extractor;

use phpbb\db\extractor\exception\extractor_not_initialized_exception;

class mysql_extractor extends base_extractor
{
	/**
	* {@inheritdoc}
	*/
	public function write_start($table_prefix)
	{
		if (!$this->is_initialized)
		{
			throw new extractor_not_initialized_exception();
		}

		$sql_data = "#\n";
		$sql_data .= "# phpBB Backup Script\n";
		$sql_data .= "# Dump of tables for $table_prefix\n";
		$sql_data .= "# DATE : " . gmdate("d-m-Y H:i:s", $this->time) . " GMT\n";
		$sql_data .= "#\n";
		$this->flush($sql_data);
	}

	/**
	* {@inheritdoc}
	*/
	public function write_table($table_name)
	{
		static $new_extract;

		if (!$this->is_initialized)
		{
			throw new extractor_not_initialized_exception();
		}

		if ($new_extract === null)
		{
			if ($this->db->get_sql_layer() === 'mysqli' || version_compare($this->db->sql_server_info(true), '3.23.20', '>='))
			{
				$new_extract = true;
			}
			else
			{
				$new_extract = false;
			}
		}

		if ($new_extract)
		{
			$this->new_write_table($table_name);
		}
		else
		{
			$this->old_write_table($table_name);
		}
	}

	/**
	* {@inheritdoc}
	*/
	public function write_data($table_name)
	{
		if (!$this->is_initialized)
		{
			throw new extractor_not_initialized_exception();
		}

		if ($this->db->get_sql_layer() === 'mysqli')
		{
			$this->write_data_mysqli($table_name);
		}
		else
		{
			$this->write_data_mysql($table_name);
		}
	}

	/**
	* Extracts data from database table (for MySQLi driver)
	*
	* @param	string	$table_name	name of the database table
	* @return null
	* @throws \phpbb\db\extractor\exception\extractor_not_initialized_exception when calling this function before init_extractor()
	*/
	protected function write_data_mysqli($table_name)
	{
		if (!$this->is_initialized)
		{
			throw new extractor_not_initialized_exception();
		}

		$sql = "SELECT *
			FROM $table_name";
		$result = mysqli_query($this->db->get_db_connect_id(), $sql, MYSQLI_USE_RESULT);
		if ($result != false)
		{
			$fields_cnt = mysqli_num_fields($result);

			// Get field information
			$field = mysqli_fetch_fields($result);
			$field_set = array();

			for ($j = 0; $j < $fields_cnt; $j++)
			{
				$field_set[] = $field[$j]->name;
			}

			$search			= array("\\", "'", "\x00", "\x0a", "\x0d", "\x1a", '"');
			$replace		= array("\\\\", "\\'", '\0', '\n', '\r', '\Z', '\\"');
			$fields			= implode(', ', $field_set);
			$sql_data		= 'INSERT INTO ' . $table_name . ' (' . $fields . ') VALUES ';
			$first_set		= true;
			$query_len		= 0;
			$max_len		= get_usable_memory();

			while ($row = mysqli_fetch_row($result))
			{
				$values	= array();
				if ($first_set)
				{
					$query = $sql_data . '(';
				}
				else
				{
					$query  .= ',(';
				}

				for ($j = 0; $j < $fields_cnt; $j++)
				{
					if (!isset($row[$j]) || is_null($row[$j]))
					{
						$values[$j] = 'NULL';
					}
					else if (($field[$j]->flags & 32768) && !($field[$j]->flags & 1024))
					{
						$values[$j] = $row[$j];
					}
					else
					{
						$values[$j] = "'" . str_replace($search, $replace, $row[$j]) . "'";
					}
				}
				$query .= implode(', ', $values) . ')';

				$query_len += strlen($query);
				if ($query_len > $max_len)
				{
					$this->flush($query . ";\n\n");
					$query = '';
					$query_len = 0;
					$first_set = true;
				}
				else
				{
					$first_set = false;
				}
			}
			mysqli_free_result($result);

			// check to make sure we have nothing left to flush
			if (!$first_set && $query)
			{
				$this->flush($query . ";\n\n");
			}
		}
	}

	/**
	* Extracts data from database table (for MySQL driver)
	*
	* @param	string	$table_name	name of the database table
	* @return null
	* @throws \phpbb\db\extractor\exception\extractor_not_initialized_exception when calling this function before init_extractor()
	*/
	protected function write_data_mysql($table_name)
	{
		if (!$this->is_initialized)
		{
			throw new extractor_not_initialized_exception();
		}

		$sql = "SELECT *
			FROM $table_name";
		$result = mysql_unbuffered_query($sql, $this->db->get_db_connect_id());

		if ($result != false)
		{
			$fields_cnt = mysql_num_fields($result);

			// Get field information
			$field = array();
			for ($i = 0; $i < $fields_cnt; $i++)
			{
				$field[] = mysql_fetch_field($result, $i);
			}
			$field_set = array();

			for ($j = 0; $j < $fields_cnt; $j++)
			{
				$field_set[] = $field[$j]->name;
			}

			$search			= array("\\", "'", "\x00", "\x0a", "\x0d", "\x1a", '"');
			$replace		= array("\\\\", "\\'", '\0', '\n', '\r', '\Z', '\\"');
			$fields			= implode(', ', $field_set);
			$sql_data		= 'INSERT INTO ' . $table_name . ' (' . $fields . ') VALUES ';
			$first_set		= true;
			$query_len		= 0;
			$max_len		= get_usable_memory();

			while ($row = mysql_fetch_row($result))
			{
				$values = array();
				if ($first_set)
				{
					$query = $sql_data . '(';
				}
				else
				{
					$query  .= ',(';
				}

				for ($j = 0; $j < $fields_cnt; $j++)
				{
					if (!isset($row[$j]) || is_null($row[$j]))
					{
						$values[$j] = 'NULL';
					}
					else if ($field[$j]->numeric && ($field[$j]->type !== 'timestamp'))
					{
						$values[$j] = $row[$j];
					}
					else
					{
						$values[$j] = "'" . str_replace($search, $replace, $row[$j]) . "'";
					}
				}
				$query .= implode(', ', $values) . ')';

				$query_len += strlen($query);
				if ($query_len > $max_len)
				{
					$this->flush($query . ";\n\n");
					$query = '';
					$query_len = 0;
					$first_set = true;
				}
				else
				{
					$first_set = false;
				}
			}
			mysql_free_result($result);

			// check to make sure we have nothing left to flush
			if (!$first_set && $query)
			{
				$this->flush($query . ";\n\n");
			}
		}
	}

	/**
	* Extracts database table structure (for MySQLi or MySQL 3.23.20+)
	*
	* @param	string	$table_name	name of the database table
	* @return null
	* @throws \phpbb\db\extractor\exception\extractor_not_initialized_exception when calling this function before init_extractor()
	*/
	protected function new_write_table($table_name)
	{
		if (!$this->is_initialized)
		{
			throw new extractor_not_initialized_exception();
		}

		$sql = 'SHOW CREATE TABLE ' . $table_name;
		$result = $this->db->sql_query($sql);
		$row = $this->db->sql_fetchrow($result);

		$sql_data = '# Table: ' . $table_name . "\n";
		$sql_data .= "DROP TABLE IF EXISTS $table_name;\n";
		$this->flush($sql_data . $row['Create Table'] . ";\n\n");

		$this->db->sql_freeresult($result);
	}

	/**
	* Extracts database table structure (for MySQL verisons older than 3.23.20)
	*
	* @param	string	$table_name	name of the database table
	* @return null
	* @throws \phpbb\db\extractor\exception\extractor_not_initialized_exception when calling this function before init_extractor()
	*/
	protected function old_write_table($table_name)
	{
		if (!$this->is_initialized)
		{
			throw new extractor_not_initialized_exception();
		}

		$sql_data = '# Table: ' . $table_name . "\n";
		$sql_data .= "DROP TABLE IF EXISTS $table_name;\n";
		$sql_data .= "CREATE TABLE $table_name(\n";
		$rows = array();

		$sql = "SHOW FIELDS
			FROM $table_name";
		$result = $this->db->sql_query($sql);

		while ($row = $this->db->sql_fetchrow($result))
		{
			$line = '   ' . $row['Field'] . ' ' . $row['Type'];

			if (!is_null($row['Default']))
			{
				$line .= " DEFAULT '{$row['Default']}'";
			}

			if ($row['Null'] != 'YES')
			{
				$line .= ' NOT NULL';
			}

			if ($row['Extra'] != '')
			{
				$line .= ' ' . $row['Extra'];
			}

			$rows[] = $line;
		}
		$this->db->sql_freeresult($result);

		$sql = "SHOW KEYS
			FROM $table_name";

		$result = $this->db->sql_query($sql);

		$index = array();
		while ($row = $this->db->sql_fetchrow($result))
		{
			$kname = $row['Key_name'];

			if ($kname != 'PRIMARY')
			{
				if ($row['Non_unique'] == 0)
				{
					$kname = "UNIQUE|$kname";
				}
			}

			if ($row['Sub_part'])
			{
				$row['Column_name'] .= '(' . $row['Sub_part'] . ')';
			}
			$index[$kname][] = $row['Column_name'];
		}
		$this->db->sql_freeresult($result);

		foreach ($index as $key => $columns)
		{
			$line = '   ';

			if ($key == 'PRIMARY')
			{
				$line .= 'PRIMARY KEY (' . implode(', ', $columns) . ')';
			}
			else if (strpos($key, 'UNIQUE') === 0)
			{
				$line .= 'UNIQUE ' . substr($key, 7) . ' (' . implode(', ', $columns) . ')';
			}
			else if (strpos($key, 'FULLTEXT') === 0)
			{
				$line .= 'FULLTEXT ' . substr($key, 9) . ' (' . implode(', ', $columns) . ')';
			}
			else
			{
				$line .= "KEY $key (" . implode(', ', $columns) . ')';
			}

			$rows[] = $line;
		}

		$sql_data .= implode(",\n", $rows);
		$sql_data .= "\n);\n\n";

		$this->flush($sql_data);
	}
}
iv class='add'>+2007-04-03 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * ChangeLog: Generated by svn2cl the Fri 28 Sep 2007 09:57:33 AM
- PDT
+ Fix Other empty menu entry under KDE
-2007-09-28 16:57 adamw
+2007-04-02 blino <blino@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * desktop/free/register.desktop.in,
- desktop/one/register.desktop.in,
- desktop/powerpack/register.desktop.in: adjust default icons:
- change 'register' icon to point to my.mandriva.com, remove 'buy
- it' icon (#34238, #34235)
+ Generated by svn2cl the lun 02 avr 2007 12:20:29 CEST
-2007-09-28 16:53 Frederic Crozat <fcrozat at mandriva.com>
+ use fbrun for fluxbox (#30076)
- * ChangeLog: Generated by svn2cl the Fri 28 Sep 2007 06:53:51 PM
- CEST
+ do not hardcode xterm menu entry for fluxbox (#30076)
-2007-09-28 16:49 Frederic Crozat <fcrozat at mandriva.com>
+2007-03-30 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * desktop/free/register.desktop.in,
- desktop/free/subscribe.desktop.in,
- desktop/one/register.desktop.in,
- desktop/one/subscribe.desktop.in,
- desktop/powerpack/register.desktop.in,
- desktop/powerpack/subscribe.desktop.in: Rename subscribe into
- register
+ Generated by svn2cl the Fri 30 Mar 2007 06:50:29 PM CEST
-2007-09-28 16:48 Frederic Crozat <fcrozat at mandriva.com>
+ Generated by svn2cl the Fri 30 Mar 2007 06:50:22 PM CEST
- * desktop/free/buyit.desktop.in, desktop/free/subscribe.desktop.in,
- desktop/one/buyit.desktop.in, desktop/one/subscribe.desktop.in,
- desktop/powerpack/subscribe.desktop.in: Fix last minute changed
- asked by marketing
+ Add old version of categories, since they are still in spec
-2007-09-28 16:49 Frederic Crozat <fcrozat at mandriva.com>
+ Fix typo
- * desktop/free/register.desktop.in,
- desktop/free/subscribe.desktop.in,
- desktop/one/register.desktop.in,
- desktop/one/subscribe.desktop.in,
- desktop/powerpack/register.desktop.in,
- desktop/powerpack/subscribe.desktop.in: Rename subscribe into
- register
+ Generated by svn2cl the Fri 30 Mar 2007 06:34:57 PM CEST
-2007-09-28 16:48 Frederic Crozat <fcrozat at mandriva.com>
+ - Hide more applications in discovery menu - Move accessilibity apps from System to More Applications in Discovery menu
- * desktop/free/buyit.desktop.in, desktop/free/subscribe.desktop.in,
- desktop/one/buyit.desktop.in, desktop/one/subscribe.desktop.in,
- desktop/powerpack/subscribe.desktop.in: Fix last minute changed
- asked by marketing
+2007-03-30 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-09-27 14:04 Frederic Crozat <fcrozat at mandriva.com>
+ Remove duplicate entries
- * ChangeLog: Generated by svn2cl the Thu 27 Sep 2007 04:04:13 PM
- CEST
+2007-03-27 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-09-27 13:58 Frederic Crozat <fcrozat at mandriva.com>
+ Generated by svn2cl the Tue 27 Mar 2007 03:19:34 PM CEST
- * menu/applications.menu.in: Tune menu to put .desktop with only
- main categories at top level
+ Fix naming for some bookmarks
-2007-09-27 13:55 Frederic Crozat <fcrozat at mandriva.com>
+ Don't output error if no session file is present
- * Makefile: Fix tarball generation
+2007-03-22 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-09-27 13:58 Frederic Crozat <fcrozat at mandriva.com>
+ Fix Discovery menu again
- * menu/applications.menu.in: Tune menu to put .desktop with only
- main categories at top level
+ Generated by svn2cl the Thu 22 Mar 2007 05:43:30 PM CET
-2007-09-27 13:55 Frederic Crozat <fcrozat at mandriva.com>
+ Update menu entries for One/Discovery
- * Makefile: Fix tarball generation
+2007-03-21 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-09-26 17:04 Frederic Crozat <fcrozat at mandriva.com>
+ Generated by svn2cl the Wed 21 Mar 2007 06:55:10 PM CET
- * menu/applications.menu.in: - Add support for OOo 64bits .desktop
- file
- - Fix typo in ParallelComputing
+ Updated bookmarks
-2007-09-26 16:19 Frederic Crozat <fcrozat at mandriva.com>
+2007-03-20 mrl <mrl@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * menu/applications.menu.in: - Printing and PackageManager are no
- longer desktop dependant (Mdv bug #33766, #33436)
- - hide Emulator / HardwareSettings from Tools/More (Mdv bug
- #33765, #33906)
+ - Adds lock system to avoid recursive calls between xdg-open and www-browser. Closes: #29599
-2007-09-24 16:25 Frederic Crozat <fcrozat at mandriva.com>
+2007-03-15 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * desktop/free/subscribe.desktop.in,
- desktop/one/subscribe.desktop.in,
- desktop/powerpack/subscribe.desktop.in,
- menu/icons/hicolor/128x128/apps/register-mdv.png,
- menu/icons/hicolor/16x16/apps/register-mdv.png,
- menu/icons/hicolor/22x22/apps/register-mdv.png,
- menu/icons/hicolor/32x32/apps/register-mdv.png,
- menu/icons/hicolor/48x48/apps/register-mdv.png,
- menu/icons/hicolor/64x64/apps/register-mdv.png: Add new icon for
- Register launcher
+ Generated by svn2cl the Thu 15 Mar 2007 07:40:16 PM CET
-2007-09-19 16:39 Frederic Crozat <fcrozat at mandriva.com>
+ Hide GNOME Configuration subtree, it is displayed elsewhere
- * ChangeLog: Generated by svn2cl the Wed 19 Sep 2007 06:39:57 PM
- CEST
-
-2007-09-19 16:39 Frederic Crozat <fcrozat at mandriva.com>
-
- * ChangeLog: Generated by svn2cl the Wed 19 Sep 2007 06:39:47 PM
- CEST
+ Re-import old icons
-2007-09-19 15:55 Frederic Crozat <fcrozat at mandriva.com>
+ Add icons for store / club
- * menu/icons/hicolor, menu/icons/hicolor/128x128,
- menu/icons/hicolor/128x128/apps,
- menu/icons/hicolor/128x128/apps/buyit-mdv.png,
- menu/icons/hicolor/128x128/apps/subscribe-mdv.png,
- menu/icons/hicolor/16x16, menu/icons/hicolor/16x16/apps,
- menu/icons/hicolor/16x16/apps/buyit-mdv.png,
- menu/icons/hicolor/16x16/apps/subscribe-mdv.png,
- menu/icons/hicolor/22x22, menu/icons/hicolor/22x22/apps,
- menu/icons/hicolor/22x22/apps/buyit-mdv.png,
- menu/icons/hicolor/22x22/apps/subscribe-mdv.png,
- menu/icons/hicolor/32x32, menu/icons/hicolor/32x32/apps,
- menu/icons/hicolor/32x32/apps/buyit-mdv.png,
- menu/icons/hicolor/32x32/apps/subscribe-mdv.png,
- menu/icons/hicolor/48x48, menu/icons/hicolor/48x48/apps,
- menu/icons/hicolor/48x48/apps/buyit-mdv.png,
- menu/icons/hicolor/48x48/apps/subscribe-mdv.png,
- menu/icons/hicolor/64x64, menu/icons/hicolor/64x64/apps,
- menu/icons/hicolor/64x64/apps/buyit-mdv.png,
- menu/icons/hicolor/64x64/apps/subscribe-mdv.png: Add
- buyit/subscribe icons
+ Add desktop file for Store and Club
-2007-09-19 15:43 Frederic Crozat <fcrozat at mandriva.com>
+2007-03-14 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * Makefile: Fix localcopy cleanup
+ Fix url/name
-2007-09-19 15:12 Frederic Crozat <fcrozat at mandriva.com>
+ Add wengo
- * menu/applications.menu.in: -Group kcontrol and MCC in SystemTools
- -hide rpmdrake in SystemTools
+2007-03-13 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-09-19 16:39 Frederic Crozat <fcrozat at mandriva.com>
+ Add icons for wengo/jamendo
- * ChangeLog: Generated by svn2cl the Wed 19 Sep 2007 06:39:47 PM
- CEST
+2007-03-13 mrl <mrl@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-09-19 15:55 Frederic Crozat <fcrozat at mandriva.com>
+ - Adds support for newer KDE's - Adds support for xdg-utils: if an argument is provided, it will be passed through directly to xdg-open
- * menu/icons/hicolor, menu/icons/hicolor/128x128,
- menu/icons/hicolor/128x128/apps,
- menu/icons/hicolor/128x128/apps/buyit-mdv.png,
- menu/icons/hicolor/128x128/apps/subscribe-mdv.png,
- menu/icons/hicolor/16x16, menu/icons/hicolor/16x16/apps,
- menu/icons/hicolor/16x16/apps/buyit-mdv.png,
- menu/icons/hicolor/16x16/apps/subscribe-mdv.png,
- menu/icons/hicolor/22x22, menu/icons/hicolor/22x22/apps,
- menu/icons/hicolor/22x22/apps/buyit-mdv.png,
- menu/icons/hicolor/22x22/apps/subscribe-mdv.png,
- menu/icons/hicolor/32x32, menu/icons/hicolor/32x32/apps,
- menu/icons/hicolor/32x32/apps/buyit-mdv.png,
- menu/icons/hicolor/32x32/apps/subscribe-mdv.png,
- menu/icons/hicolor/48x48, menu/icons/hicolor/48x48/apps,
- menu/icons/hicolor/48x48/apps/buyit-mdv.png,
- menu/icons/hicolor/48x48/apps/subscribe-mdv.png,
- menu/icons/hicolor/64x64, menu/icons/hicolor/64x64/apps,
- menu/icons/hicolor/64x64/apps/buyit-mdv.png,
- menu/icons/hicolor/64x64/apps/subscribe-mdv.png: Add
- buyit/subscribe icons
+2007-03-09 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-09-19 15:43 Frederic Crozat <fcrozat at mandriva.com>
+ Fix corrupted CVS import
- * Makefile: Fix localcopy cleanup
+2007-03-07 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-09-19 15:12 Frederic Crozat <fcrozat at mandriva.com>
+ Not necessary
- * menu/applications.menu.in: -Group kcontrol and MCC in SystemTools
- -hide rpmdrake in SystemTools
+2007-03-06 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-09-19 14:15 Frederic Crozat <fcrozat at mandriva.com>
+ Fix bookmarks
- * dm/mdk-gdm.xml, dm/mdk-kde.xml: Fix mouseover text color
+2007-03-05 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-09-19 15:55 Frederic Crozat <fcrozat at mandriva.com>
+ Fix bookmarks
- * menu/icons/hicolor, menu/icons/hicolor/128x128,
- menu/icons/hicolor/128x128/apps,
- menu/icons/hicolor/128x128/apps/buyit-mdv.png,
- menu/icons/hicolor/128x128/apps/subscribe-mdv.png,
- menu/icons/hicolor/16x16, menu/icons/hicolor/16x16/apps,
- menu/icons/hicolor/16x16/apps/buyit-mdv.png,
- menu/icons/hicolor/16x16/apps/subscribe-mdv.png,
- menu/icons/hicolor/22x22, menu/icons/hicolor/22x22/apps,
- menu/icons/hicolor/22x22/apps/buyit-mdv.png,
- menu/icons/hicolor/22x22/apps/subscribe-mdv.png,
- menu/icons/hicolor/32x32, menu/icons/hicolor/32x32/apps,
- menu/icons/hicolor/32x32/apps/buyit-mdv.png,
- menu/icons/hicolor/32x32/apps/subscribe-mdv.png,
- menu/icons/hicolor/48x48, menu/icons/hicolor/48x48/apps,
- menu/icons/hicolor/48x48/apps/buyit-mdv.png,
- menu/icons/hicolor/48x48/apps/subscribe-mdv.png,
- menu/icons/hicolor/64x64, menu/icons/hicolor/64x64/apps,
- menu/icons/hicolor/64x64/apps/buyit-mdv.png,
- menu/icons/hicolor/64x64/apps/subscribe-mdv.png: Add
- buyit/subscribe icons
+2007-03-02 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-09-19 15:43 Frederic Crozat <fcrozat at mandriva.com>
+ Update bookmarks
- * Makefile: Fix localcopy cleanup
+2007-02-21 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-09-19 15:12 Frederic Crozat <fcrozat at mandriva.com>
+ New version of Mandriva star
- * menu/applications.menu.in: -Group kcontrol and MCC in SystemTools
- -hide rpmdrake in SystemTools
+2007-02-16 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-09-19 14:15 Frederic Crozat <fcrozat at mandriva.com>
+ Fix dist target
- * dm/mdk-gdm.xml, dm/mdk-kde.xml: Fix mouseover text color
+ Fix menus to use freedesktop.org official categories
-2007-09-17 17:43 Frederic Crozat <fcrozat at mandriva.com>
+ Force umask
- * ChangeLog: Generated by svn2cl the Mon 17 Sep 2007 07:43:30 PM
- CEST
+ Fix target since specfile is moved in SVN
-2007-09-17 17:43 Frederic Crozat <fcrozat at mandriva.com>
+2007-02-16 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * ChangeLog: Generated by svn2cl the Mon 17 Sep 2007 07:43:19 PM
- CEST
+ Remove not necessary entries
-2007-09-17 17:43 Frederic Crozat <fcrozat at mandriva.com>
+ Byebye
- * dm/mdk-gdm.xml, dm/reboot.png, dm/system.png: Rename reboot.png
- to system.png and fix gdm theme accordingly
+2007-02-14 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-09-17 17:42 Frederic Crozat <fcrozat at mandriva.com>
+ Remove Kiosk entry
- * menu/applications.menu.in: Add draw.desktop to openoffice.org
- layout
+2007-02-12 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-09-17 17:43 Frederic Crozat <fcrozat at mandriva.com>
+ Move to SVN
- * ChangeLog: Generated by svn2cl the Mon 17 Sep 2007 07:43:19 PM
- CEST
+2006-12-09 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-09-17 17:43 Frederic Crozat <fcrozat at mandriva.com>
+ converted to UTF-8
- * dm/mdk-gdm.xml, dm/reboot.png, dm/system.png: Rename reboot.png
- to system.png and fix gdm theme accordingly
+2006-11-16 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-09-17 17:42 Frederic Crozat <fcrozat at mandriva.com>
+ Generated by cvs2cl the 16_Nov
- * menu/applications.menu.in: Add draw.desktop to openoffice.org
- layout
+ Fix incorrect category for wordprocessors in discovery menu (Mdv bug #27084)
-2007-09-17 17:43 Frederic Crozat <fcrozat at mandriva.com>
+2006-10-26 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * dm/mdk-gdm.xml, dm/reboot.png, dm/system.png: Rename reboot.png
- to system.png and fix gdm theme accordingly
+ Generated by cvs2cl the 26_Oct
-2007-09-17 17:42 Frederic Crozat <fcrozat at mandriva.com>
+ - Fix update-menus script to not output empty line - Re-add menu file stamp to prevent restarting update-menus for each graphical login
- * menu/applications.menu.in: Add draw.desktop to openoffice.org
- layout
+2006-10-02 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-09-14 16:38 Frederic Crozat <fcrozat at mandriva.com>
+ Generated by cvs2cl the 02_Oct
- * ChangeLog: Generated by svn2cl the Fri 14 Sep 2007 06:38:47 PM
- CEST
+ - Rename root node from Mandriva Linux to Applications (Mdv bug #25389) - Add missing .directory for various entries (Mdv bug #26273)
-2007-09-14 16:38 Frederic Crozat <fcrozat at mandriva.com>
+2006-09-25 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * Makefile: Run changelog before dist
+ Generated by cvs2cl the 25_Sep
-2007-09-14 16:38 Frederic Crozat <fcrozat at mandriva.com>
+ - Add missing Emulator category to menu files (Mdv bug #26148)
- * ChangeLog: Generated by svn2cl the Fri 14 Sep 2007 06:38:14 PM
- CEST
+2006-09-21 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-09-14 16:34 Frederic Crozat <fcrozat at mandriva.com>
+ Generated by cvs2cl the 21_Sep
- * menu/applications.menu.in: Remove special casing for drakconf, it
- has its .desktop fixed
+ - Hide more applications in one products - Increase version for Conflicts (Mdv bug #26043)
-2007-09-14 16:33 Frederic Crozat <fcrozat at mandriva.com>
+2006-09-19 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * dm/GdmGreeterTheme.desktop, dm/KdmGreeterTheme.desktop,
- dm/languages.png, dm/mdk-gdm.xml, dm/mdk-kde.xml, dm/reboot.png,
- dm/sessions.png, dm/star.png, dm/system.png: Import new 2008
- theme and port it to gdm
+ Generated by cvs2cl the 19_Sep
-2007-09-14 16:38 Frederic Crozat <fcrozat at mandriva.com>
+ - Fix error in upstream category in main menu - add mandriva-discovery.menu additional menu file to hide / sort applications for Discovery / One products
- * Makefile: Run changelog before dist
+2006-09-18 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-09-14 16:38 Frederic Crozat <fcrozat at mandriva.com>
+ Generated by cvs2cl the 18_Sep
- * ChangeLog: Generated by svn2cl the Fri 14 Sep 2007 06:38:14 PM
- CEST
+ - Rebuild with fixed mdk-menu-message to get all translations (Mdv bug #25895)
-2007-09-14 16:34 Frederic Crozat <fcrozat at mandriva.com>
+2006-09-15 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * menu/applications.menu.in: Remove special casing for drakconf, it
- has its .desktop fixed
+ Fix kaspersky icons
-2007-09-14 16:33 Frederic Crozat <fcrozat at mandriva.com>
+ Fix crossover favicon
- * dm/GdmGreeterTheme.desktop, dm/KdmGreeterTheme.desktop,
- dm/languages.png, dm/mdk-gdm.xml, dm/mdk-kde.xml, dm/reboot.png,
- dm/sessions.png, dm/star.png, dm/system.png: Import new 2008
- theme and port it to gdm
+ Add partners directory
-2007-09-14 16:34 Frederic Crozat <fcrozat at mandriva.com>
+ Fix bookmarks url
- * menu/applications.menu.in: Remove special casing for drakconf, it
- has its .desktop fixed
+2006-09-13 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-09-14 16:33 Frederic Crozat <fcrozat at mandriva.com>
+ - Don't show GNOME configuration in standard menu, moved in preferences menu
- * dm/GdmGreeterTheme.desktop, dm/KdmGreeterTheme.desktop,
- dm/languages.png, dm/mdk-gdm.xml, dm/mdk-kde.xml, dm/reboot.png,
- dm/sessions.png, dm/star.png, dm/system.png: Import new 2008
- theme and port it to gdm
+ - Update with new bookmarks
-2007-09-14 14:23 Frederic Crozat <fcrozat at mandriva.com>
+2006-09-13 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * sounds/genesis_take2.wav, sounds/ia_ora-startup.wav: use genesis
- take2 as startup for now
+ Fix bookmarks for power*
-2007-09-14 14:20 Frederic Crozat <fcrozat at mandriva.com>
+ Fix download bookmarks
- * sounds, sounds/echokalimba.wav, sounds/endtroduction.wav,
- sounds/filmish.wav, sounds/genesis_take1.wav,
- sounds/genesis_take2.wav, sounds/genesis_take3.wav,
- sounds/heavybreather.wav, sounds/ia_ora-error.wav,
- sounds/ia_ora-notification.wav, sounds/ia_ora-shutdown.wav,
- sounds/introduction.wav, sounds/spacebird.wav: Add sound samples
- done by Helio Chissini de Castro
+ Fix discovery bookmarks
-2007-09-14 11:51 Frederic Crozat <fcrozat at mandriva.com>
+2006-09-08 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * desktop/free/upgrade.desktop.in, desktop/one,
- desktop/one/subscribe.desktop.in, desktop/one/upgrade.desktop.in:
- one is free for launchers
+ Generated by cvs2cl the 08_Sep
-2007-09-14 11:48 Frederic Crozat <fcrozat at mandriva.com>
+ - Update profile scripts to remove invalid dependencies - move defaults bookmarks from kde and firefox to this package
- * desktop/free/subscribe.desktop.in, desktop/subscribe.desktop.in:
- Move subcribe to free
+2006-09-08 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-09-14 11:48 Frederic Crozat <fcrozat at mandriva.com>
+ Move konqueror bookmarks
- * desktop/buyit.desktop.in, desktop/free,
- desktop/free/buyit.desktop.in, desktop/powerpack,
- desktop/powerpack/subscribe.desktop.in,
- desktop/subscribe.desktop.in: Change default launchers for
- various products
+2006-09-04 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-09-13 08:52 Frederic Crozat <fcrozat at mandriva.com>
+ Generated by cvs2cl the 04_Sep
- * menu/applications.menu.in: Use new .desktop name for OO.o layout
+ - Improve gdm/kdm theme with new backgrounds - Don't create default desktop directories for root (Mdv bug #19711)
-2007-09-10 17:55 Frederic Crozat <fcrozat at mandriva.com>
+2006-09-04 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * ChangeLog: Generated by svn2cl the Mon 10 Sep 2007 07:55:53 PM
- CEST
+ Fix caps lock error
-2007-09-10 17:55 Frederic Crozat <fcrozat at mandriva.com>
+ Change design as requested by design team
- * menu/applications.menu.in: Fix missing some GNOME entries in
- system tools
+2006-08-31 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-09-10 17:55 Frederic Crozat <fcrozat at mandriva.com>
+ Use kmenuedit menu file if it's generated.
- * menu/applications.menu.in: Fix missing some GNOME entries in
- system tools
+ Fix upgrade from 2006
-2007-09-10 12:12 Frederic Crozat <fcrozat at mandriva.com>
+2006-08-30 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * menu/xdg_menu: Fix path for gnomesu (SUSE)
+ Generated by cvs2cl the 30_Aug
-2007-09-07 17:28 Frederic Crozat <fcrozat at mandriva.com>
+ - update-menus doesn't do anything if DURING_INSTALL is set to 1
- * ChangeLog: Generated by svn2cl the Fri 07 Sep 2007 07:28:35 PM
- CEST
+ Generated by cvs2cl the 30_Aug
-2007-09-07 17:28 Frederic Crozat <fcrozat at mandriva.com>
+ - Add missing directory file for adventure (Mdv bug #24829) - Add empty menu nodes for KDE in discovery menu - Remove old X-MandrakeLinux* categories for main menu, all entries must now use X-MandrivaLinux - fix default directories creation if translation contains spaces (Mdv bug #24677)
- * menu/applications.menu.in,
- menu/desktop-directories/mandriva-system-configuration-gnome-advanced.directory.in:
- - restore gnome/advanced entry (needed for GNOME panel)
- - add X-MandrivaLinux-More keyword
- - add inlining for More entries
+2006-08-17 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-09-07 17:28 Frederic Crozat <fcrozat at mandriva.com>
+ Generated by cvs2cl the 17_Aug
- * menu/applications.menu.in,
- menu/desktop-directories/mandriva-system-configuration-gnome-advanced.directory.in:
- - restore gnome/advanced entry (needed for GNOME panel)
- - add X-MandrivaLinux-More keyword
- - add inlining for More entries
+ - Add discovery menu and script to support MDV_MENU_STYLE
-2007-09-03 20:54 helio
+2006-08-17 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * dm/mdk-kde.xml: - Start kde changes
+ Change requires to mandriva-theme
-2007-08-30 16:08 Frederic Crozat <fcrozat at mandriva.com>
+2006-08-09 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * menu/applications.menu.in: Fix renaming of rpmdrake .desktop
+ Update release
-2007-08-30 16:02 Frederic Crozat <fcrozat at mandriva.com>
+ Fix typo. (fix oowriter menu entry)
- * menu/applications.menu.in: Exclude Emulator from SystemTools (Mdv
- bug #32940)
+2006-08-07 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-08-30 15:50 Frederic Crozat <fcrozat at mandriva.com>
+ Fix mdk bug #24103 (add kmenuedit.menu file)
- * menu/desktop-directories/mandriva-graphics-more.directory.in: Add
- missing .directory (Mdv bug #32839)
+2006-07-20 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-08-30 13:20 Frederic Crozat <fcrozat at mandriva.com>
+ Generated by cvs2cl the 20_Jul
- * bookmarks/konqueror/bookmarks-discovery.xml,
- bookmarks/konqueror/bookmarks-download.xml,
- bookmarks/konqueror/bookmarks-one.xml,
- bookmarks/konqueror/bookmarks-powerpack.xml,
- bookmarks/konqueror/bookmarks-powerpackplus.xml,
- bookmarks/mozilla/mozilla-discovery.html,
- bookmarks/mozilla/mozilla-download.html,
- bookmarks/mozilla/mozilla-one.html,
- bookmarks/mozilla/mozilla-powerpack.html,
- bookmarks/mozilla/mozilla-powerpackplus.html: Bookmarks for
- 2008.0
+ - Add .directory for Archiving/Other (Mdv bug #23845)
-2007-08-28 09:23 Pixel <pixel at mandriva.com>
+ Generated by cvs2cl the 20_Jul
- * menu/xdg_menu: don't call "kde-config --path xdgdata-apps" when
- running as root, since we
- don't want to modify /root. as for /usr/share/applications that's
- also
- returned in @kde_xdgdata, it is transformed to /usr/share which
- is already
- hardcoded and so unneeded.
-
- this gets rid of /.kde created during install (where HOME=/)
+ - Ignore "Development" keyword, it is too broad atm (Mdv bug #23826)
-2007-08-27 12:04 Pixel <pixel at mandriva.com>
+ Generated by cvs2cl the 20_Jul
- * menu/xdg_menu: (really) use /var/lib/menu/.xdg_menu_cache when
- running as root (#32847)
+ - Fix some typo (Andrej) (Mdk bug #23842)
-2007-08-27 10:42 Pixel <pixel at mandriva.com>
+2006-07-17 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * menu/xdg_menu: use /var/lib/menu/.xdg_menu_cache when running as
- root (#32847)
+ Generated by cvs2cl the 17_Jul
-2007-08-24 17:55 Frederic Crozat <fcrozat at mandriva.com>
+ final switch to XDG menu
- * menu/applications.menu.in: Many fixes for GNOME and KDE menus
+ Final switch to XDG menu
-2007-08-24 17:55 Frederic Crozat <fcrozat at mandriva.com>
+2006-07-11 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * menu/menu.dtd: Add menu spec DTD
-
-2007-08-24 17:55 Frederic Crozat <fcrozat at mandriva.com>
-
- * Makefile: Validate menu files
-
-2007-08-24 17:54 Frederic Crozat <fcrozat at mandriva.com>
-
- * menu/desktop-directories/mandriva-moreapplications-communications.directory.in,
- menu/desktop-directories/mandriva-moreapplications-editors.directory.in,
- menu/desktop-directories/mandriva-moreapplications-finances.directory.in,
- menu/desktop-directories/mandriva-moreapplications-other.directory.in,
- menu/desktop-directories/mandriva-soundvideo-more.directory.in,
- menu/desktop-directories/mandriva-system-configuration-gnome-accessibility.directory.in,
- menu/desktop-directories/mandriva-system-configuration-gnome-advanced.directory.in,
- menu/desktop-directories/mandriva-system-configuration-kde.directory.in:
- -Remove old .directory file
- -Replace some Other with More
-
-2007-08-23 18:16 Frederic Crozat <fcrozat at mandriva.com>
-
- * menu/applications.menu.in: Additional fixes
-
-2007-08-23 18:15 Frederic Crozat <fcrozat at mandriva.com>
-
- * Makefile: Don't put generated files in tarball
-
-2007-08-23 17:53 Frederic Crozat <fcrozat at mandriva.com>
-
- * Makefile, menu/applications.menu.in,
- menu/desktop-directories/mandriva-soundvideo-more.directory.in,
- menu/desktop-directories/mandriva-soundvideo-other.directory.in,
- menu/desktop-directories/mandriva-tools-more.directory.in,
- menu/desktop-directories/mandriva-tools-other.directory.in: Fix
- missing title / icons
-
-2007-08-23 17:33 Frederic Crozat <fcrozat at mandriva.com>
-
- * menu/menustyle.csh, menu/menustyle.sh: discovery menu is dead
-
-2007-08-23 17:26 Frederic Crozat <fcrozat at mandriva.com>
-
- * Makefile: Add dependency to build menus for tarball
-
-2007-08-23 17:25 Frederic Crozat <fcrozat at mandriva.com>
-
- * Makefile, menu/applications-discovery.menu,
- menu/applications-mdk.menu, menu/applications.menu.in,
- menu/defaultlayout-simplified.menu, menu/defaultlayout.menu,
- menu/desktop-common-data,
- menu/desktop-directories/mandriva-accessibility.directory.in,
- menu/desktop-directories/mandriva-development-databases.directory.in,
- menu/desktop-directories/mandriva-development-developmentenvironments.directory.in,
- menu/desktop-directories/mandriva-development-tools.directory.in,
- menu/desktop-directories/mandriva-development-webdevelopment.directory.in,
- menu/desktop-directories/mandriva-development.directory.in,
- menu/desktop-directories/mandriva-documentation.directory.in,
- menu/desktop-directories/mandriva-education-economy.directory.in,
- menu/desktop-directories/mandriva-education-geography.directory.in,
- menu/desktop-directories/mandriva-education-history.directory.in,
- menu/desktop-directories/mandriva-education-languages.directory.in,
- menu/desktop-directories/mandriva-education-literature.directory.in,
- menu/desktop-directories/mandriva-education-other.directory.in,
- menu/desktop-directories/mandriva-education-sciences.directory.in,
- menu/desktop-directories/mandriva-education-sports.directory.in,
- menu/desktop-directories/mandriva-education.directory.in,
- menu/desktop-directories/mandriva-emulators.directory.in,
- menu/desktop-directories/mandriva-games-adventure.directory.in,
- menu/desktop-directories/mandriva-games-arcade.directory.in,
- menu/desktop-directories/mandriva-games-boards.directory.in,
- menu/desktop-directories/mandriva-games-cards.directory.in,
- menu/desktop-directories/mandriva-games-other.directory.in,
- menu/desktop-directories/mandriva-games-puzzles.directory.in,
- menu/desktop-directories/mandriva-games-sports.directory.in,
- menu/desktop-directories/mandriva-games-strategy.directory.in,
- menu/desktop-directories/mandriva-games-toys.directory.in,
- menu/desktop-directories/mandriva-games.directory.in,
- menu/desktop-directories/mandriva-graphics.directory.in,
- menu/desktop-directories/mandriva-internet-chat.directory.in,
- menu/desktop-directories/mandriva-internet-filetransfer.directory.in,
- menu/desktop-directories/mandriva-internet-instantmessaging.directory.in,
- menu/desktop-directories/mandriva-internet-mail.directory.in,
- menu/desktop-directories/mandriva-internet-more.directory.in,
- menu/desktop-directories/mandriva-internet-news.directory.in,
- menu/desktop-directories/mandriva-internet-other.directory.in,
- menu/desktop-directories/mandriva-internet-remoteaccess.directory.in,
- menu/desktop-directories/mandriva-internet-videoconference.directory.in,
- menu/desktop-directories/mandriva-internet-webbrowsers.directory.in,
- menu/desktop-directories/mandriva-internet-webeditors.directory.in,
- menu/desktop-directories/mandriva-moreapplications-accessibility.directory.in,
- menu/desktop-directories/mandriva-moreapplications-databases.directory.in,
- menu/desktop-directories/mandriva-moreapplications-development-developmentenvironments.directory.in,
- menu/desktop-directories/mandriva-moreapplications-development-interpreters.directory.in,
- menu/desktop-directories/mandriva-moreapplications-development-other.directory.in,
- menu/desktop-directories/mandriva-moreapplications-development-tools.directory.in,
- menu/desktop-directories/mandriva-moreapplications-development.directory.in,
- menu/desktop-directories/mandriva-moreapplications-documentation.directory.in,
- menu/desktop-directories/mandriva-moreapplications-education-economy.directory.in,
- menu/desktop-directories/mandriva-moreapplications-education-geography.directory.in,
- menu/desktop-directories/mandriva-moreapplications-education-history.directory.in,
- menu/desktop-directories/mandriva-moreapplications-education-languages.directory.in,
- menu/desktop-directories/mandriva-moreapplications-education-literature.directory.in,
- menu/desktop-directories/mandriva-moreapplications-education-other.directory.in,
- menu/desktop-directories/mandriva-moreapplications-education-sciences.directory.in,
- menu/desktop-directories/mandriva-moreapplications-education-sports.directory.in,
- menu/desktop-directories/mandriva-moreapplications-education.directory.in,
- menu/desktop-directories/mandriva-moreapplications-emulators.directory.in,
- menu/desktop-directories/mandriva-moreapplications-games-adventure.directory.in,
- menu/desktop-directories/mandriva-moreapplications-games-arcade.directory.in,
- menu/desktop-directories/mandriva-moreapplications-games-boards.directory.in,
- menu/desktop-directories/mandriva-moreapplications-games-cards.directory.in,
- menu/desktop-directories/mandriva-moreapplications-games-other.directory.in,
- menu/desktop-directories/mandriva-moreapplications-games-puzzles.directory.in,
- menu/desktop-directories/mandriva-moreapplications-games-sports.directory.in,
- menu/desktop-directories/mandriva-moreapplications-games-strategy.directory.in,
- menu/desktop-directories/mandriva-moreapplications-games-toys.directory.in,
- menu/desktop-directories/mandriva-moreapplications-games.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-artificialintelligence.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-astronomy.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-biology.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-chemistry.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-computerscience.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-datavisualization.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-electricity.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-geosciences.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-imageprocessing.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-mathematics.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-numericanalysis.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-other.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-parallelcomputing.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-physics.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-robotics.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences.directory.in,
- menu/desktop-directories/mandriva-multimedia-graphics.directory.in,
- menu/desktop-directories/mandriva-multimedia-other.directory.in,
- menu/desktop-directories/mandriva-multimedia-sound.directory.in,
- menu/desktop-directories/mandriva-multimedia-video.directory.in,
- menu/desktop-directories/mandriva-multimedia.directory.in,
- menu/desktop-directories/mandriva-office-accessories.directory.in,
- menu/desktop-directories/mandriva-office-addressbooks.directory.in,
- menu/desktop-directories/mandriva-office-communications-fax.directory.in,
- menu/desktop-directories/mandriva-office-communications-other.directory.in,
- menu/desktop-directories/mandriva-office-communications-pda.directory.in,
- menu/desktop-directories/mandriva-office-communications-phone.directory.in,
- menu/desktop-directories/mandriva-office-communications.directory.in,
- menu/desktop-directories/mandriva-office-drawing.directory.in,
- menu/desktop-directories/mandriva-office-graphs.directory.in,
- menu/desktop-directories/mandriva-office-more.directory.in,
- menu/desktop-directories/mandriva-office-other.directory.in,
- menu/desktop-directories/mandriva-office-presentations.directory.in,
- menu/desktop-directories/mandriva-office-publishing.directory.in,
- menu/desktop-directories/mandriva-office-spreadsheets.directory.in,
- menu/desktop-directories/mandriva-office-tasksmanagement.directory.in,
- menu/desktop-directories/mandriva-office-timemanagement.directory.in,
- menu/desktop-directories/mandriva-office-wordprocessors.directory.in,
- menu/desktop-directories/mandriva-sciences-artificialintelligence.directory.in,
- menu/desktop-directories/mandriva-sciences-astronomy.directory.in,
- menu/desktop-directories/mandriva-sciences-biology.directory.in,
- menu/desktop-directories/mandriva-sciences-chemistry.directory.in,
- menu/desktop-directories/mandriva-sciences-computerscience.directory.in,
- menu/desktop-directories/mandriva-sciences-datavisualization.directory.in,
- menu/desktop-directories/mandriva-sciences-electricity.directory.in,
- menu/desktop-directories/mandriva-sciences-geosciences.directory.in,
- menu/desktop-directories/mandriva-sciences-imageprocessing.directory.in,
- menu/desktop-directories/mandriva-sciences-mathematics.directory.in,
- menu/desktop-directories/mandriva-sciences-numericanalysis.directory.in,
- menu/desktop-directories/mandriva-sciences-other.directory.in,
- menu/desktop-directories/mandriva-sciences-parallelcomputing.directory.in,
- menu/desktop-directories/mandriva-sciences-physics.directory.in,
- menu/desktop-directories/mandriva-sciences-robotics.directory.in,
- menu/desktop-directories/mandriva-sciences.directory.in,
- menu/desktop-directories/mandriva-soundvideo-other.directory.in,
- menu/desktop-directories/mandriva-soundvideo.directory.in,
- menu/desktop-directories/mandriva-system-archiving-backup.directory.in,
- menu/desktop-directories/mandriva-system-archiving-cdburning.directory.in,
- menu/desktop-directories/mandriva-system-archiving-compression.directory.in,
- menu/desktop-directories/mandriva-system-archiving-other.directory.in,
- menu/desktop-directories/mandriva-system-archiving.directory.in,
- menu/desktop-directories/mandriva-system-configuration-bootandinit.directory.in,
- menu/desktop-directories/mandriva-system-configuration-hardware.directory.in,
- menu/desktop-directories/mandriva-system-configuration-networking.directory.in,
- menu/desktop-directories/mandriva-system-configuration-other.directory.in,
- menu/desktop-directories/mandriva-system-configuration-packaging.directory.in,
- menu/desktop-directories/mandriva-system-configuration-printing.directory.in,
- menu/desktop-directories/mandriva-system-configuration.directory.in,
- menu/desktop-directories/mandriva-system-filetools.directory.in,
- menu/desktop-directories/mandriva-system-monitoring.directory.in,
- menu/desktop-directories/mandriva-system-terminals.directory.in,
- menu/desktop-directories/mandriva-system-texttools.directory.in,
- menu/desktop-directories/mandriva-system.directory.in,
- menu/desktop-directories/mandriva-systemtools.directory.in,
- menu/desktop-directories/mandriva-tools-other.directory.in,
- menu/desktop-directories/mandriva-tools.directory.in,
- menu/mandrake_desk-9.2, menu/mandriva-discovery.menu, menu/menu,
- menu/menu-simplified, menu/translate_menus,
- menu/translate_menus-simplified: New menu
-
-2007-08-06 16:21 Frederic Crozat <fcrozat at mandriva.com>
-
- * xinit.d/desktop-directories: Die mdk-folders, die
-
-2007-07-11 11:04 Frederic Crozat <fcrozat at mandriva.com>
-
- * xinit.d/desktop-directories: - Remove "hidden=true" statement
- (Mdv bug 23181) from .directory files
-
-2007-05-11 16:00 Frederic Crozat <fcrozat at mandriva.com>
-
- * dm/mdk-gdm.xml: Add support for gdm 2.19.x background attribute
-
-2007-05-11 15:57 Frederic Crozat <fcrozat at mandriva.com>
-
- * xinit.d/desktop-directories: Fix handling for zh locales (Mdv bug
- #30215)
-
-2007-05-02 16:34 mrl
-
- * bin/www-browser: - Replace $@ with $*. Closes: #30522
-
-2007-04-02 09:56 Olivier Blin <oblin at mandriva.com>
-
- * soft/desktop-common-data/trunk/menu/xdg_menu: use fbrun for
- fluxbox (#30076)
+ - Add missing .directory (Mdv bug #23614) - fix translations for some .directories (Mdv bug #23641)
-2007-04-02 09:55 Olivier Blin <oblin at mandriva.com>
+2006-07-10 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * soft/desktop-common-data/trunk/menu/xdg_menu: do not hardcode
- xterm menu entry for fluxbox (#30076)
+ Add missing directory file
-2007-03-30 16:50 Frederic Crozat <fcrozat at mandriva.com>
+2006-07-07 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * soft/desktop-common-data/trunk/ChangeLog: Generated by svn2cl the
- Fri 30 Mar 2007 06:50:29 PM CEST
+ Generated by cvs2cl the 07_Jul
-2007-03-30 16:50 Frederic Crozat <fcrozat at mandriva.com>
+ - add missing .directory - rebuild with fixed intltool
- * soft/desktop-common-data/trunk/ChangeLog: Generated by svn2cl the
- Fri 30 Mar 2007 06:50:22 PM CEST
+2006-07-07 prigaux <prigaux@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-03-30 16:49 Frederic Crozat <fcrozat at mandriva.com>
+ Generated by cvs2cl the 07_Jul
- * soft/desktop-common-data/trunk/menu/applications-mdk.menu: Add
- old version of categories, since they are still in spec
+ - fix generating icewm menu from XDG - replace broken link explaining mandriva cvs usage
-2007-03-30 16:47 Frederic Crozat <fcrozat at mandriva.com>
+ fix generating icewm menu
- * soft/desktop-common-data/trunk/menu/applications-discovery.menu:
- Fix typo
+2006-06-19 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-03-30 16:34 Frederic Crozat <fcrozat at mandriva.com>
+ Generated by cvs2cl the 19_Jun
- * soft/desktop-common-data/trunk/ChangeLog: Generated by svn2cl the
- Fri 30 Mar 2007 06:34:57 PM CEST
+ - Add missing .directory files and fix videoconference one
-2007-03-30 16:34 Frederic Crozat <fcrozat at mandriva.com>
+2006-06-15 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * soft/desktop-common-data/trunk/menu/applications-discovery.menu,
- soft/desktop-common-data/trunk/menu/mandriva-discovery.menu: -
- Hide more applications in discovery menu
- - Move accessilibity apps from System to More Applications in
- Discovery menu
+ Switch to X-MandrivaLinux
-2007-03-30 16:50 Frederic Crozat <fcrozat at mandriva.com>
+2006-05-29 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * ChangeLog: Generated by svn2cl the Fri 30 Mar 2007 06:50:22 PM
- CEST
+ Generated by cvs2cl the 29_May
-2007-03-30 16:49 Frederic Crozat <fcrozat at mandriva.com>
+ - Add legacy directories and default merge directory
- * menu/applications-mdk.menu: Add old version of categories, since
- they are still in spec
+ Add back legacy directories
-2007-03-30 16:47 Frederic Crozat <fcrozat at mandriva.com>
+2006-05-17 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * menu/applications-discovery.menu: Fix typo
+ Fix errors in install script
-2007-03-30 16:34 Frederic Crozat <fcrozat at mandriva.com>
+ Generated by cvs2cl the 17_May
- * ChangeLog: Generated by svn2cl the Fri 30 Mar 2007 06:34:57 PM
- CEST
+ - ship our own .directory files now - use kde .directory files when possible - add more upstream categories
-2007-03-30 16:34 Frederic Crozat <fcrozat at mandriva.com>
+ -use our own .directory files -use more official categories -use kde .directory when available
- * menu/applications-discovery.menu, menu/mandriva-discovery.menu: -
- Hide more applications in discovery menu
- - Move accessilibity apps from System to More Applications in
- Discovery menu
+ Add untranslated directory files
-2007-03-30 16:49 Frederic Crozat <fcrozat at mandriva.com>
+2006-05-12 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * menu/applications-mdk.menu: Add old version of categories, since
- they are still in spec
+ Fix for missing entry
-2007-03-30 16:47 Frederic Crozat <fcrozat at mandriva.com>
+ Fix missing entry reported by Nicolas Chipaux
- * menu/applications-discovery.menu: Fix typo
+2006-05-12 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-03-30 16:34 Frederic Crozat <fcrozat at mandriva.com>
+ Generated by cvs2cl the 12_May
- * ChangeLog: Generated by svn2cl the Fri 30 Mar 2007 06:34:57 PM
- CEST
+ Readd screensaver files
-2007-03-30 16:34 Frederic Crozat <fcrozat at mandriva.com>
+2006-05-11 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * menu/applications-discovery.menu, menu/mandriva-discovery.menu: -
- Hide more applications in discovery menu
- - Move accessilibity apps from System to More Applications in
- Discovery menu
+ Generated by cvs2cl the 11_May
-2007-03-30 16:34 Frederic Crozat <fcrozat at mandriva.com>
+ Use new filenames for kde .desktop file
- * menu/applications-discovery.menu, menu/mandriva-discovery.menu: -
- Hide more applications in discovery menu
- - Move accessilibity apps from System to More Applications in
- Discovery menu
+ use new name for kde .desktop file
-2007-03-30 10:11 Laurent Montel <lmontel at mandriva.com>
+2006-05-10 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * menu/applications-mdk.menu: Remove duplicate entries
+ Generated by cvs2cl the 10_May
-2007-03-27 13:19 Frederic Crozat <fcrozat at mandriva.com>
+ Add missing categories (laurent)
- * ChangeLog: Generated by svn2cl the Tue 27 Mar 2007 03:19:34 PM
- CEST
+2006-05-10 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-03-27 13:18 Frederic Crozat <fcrozat at mandriva.com>
+ Fix missing menu entry (fix kcontrol)
- * bookmarks/konqueror/bookmarks-powerpack.xml,
- bookmarks/konqueror/bookmarks-powerpackplus.xml: Fix naming for
- some bookmarks
+2006-05-04 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-03-27 12:49 Frederic Crozat <fcrozat at mandriva.com>
+ Generated by cvs2cl the 04_May
- * sbin/fndSession: Don't output error if no session file is present
+ fix typo
-2007-03-27 13:18 Frederic Crozat <fcrozat at mandriva.com>
+ Generated by cvs2cl the 04_May
- * bookmarks/konqueror/bookmarks-powerpack.xml,
- bookmarks/konqueror/bookmarks-powerpackplus.xml: Fix naming for
- some bookmarks
+ Fix menu location
-2007-03-27 12:49 Frederic Crozat <fcrozat at mandriva.com>
+ - Add applications-mdk.menu file for XDG menu system - Add xdg_menu script from SUSE to support old WM - Don't ship defaultlayout.menu anymore, it is merged into main menu - Fix typo in old menu file
- * sbin/fndSession: Don't output error if no session file is present
+ Add support for mkrel
-2007-03-22 19:36 Frederic Crozat <fcrozat at mandriva.com>
+2005-09-26 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * menu/mandriva-discovery.menu: Fix Discovery menu again
+ Generated by cvs2cl the 26_Sep
-2007-03-22 16:46 Frederic Crozat <fcrozat at mandriva.com>
+ - Fix desktop-directory script (UTF encoded URL, hidden .directory file) Mdk bug #18853
- * ChangeLog: Generated by svn2cl the Thu 22 Mar 2007 05:43:30 PM
- CET
+ -create .directory as hidden file -encode url in UTF8
-2007-03-22 16:46 Frederic Crozat <fcrozat at mandriva.com>
+2005-09-23 flepied <flepied@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * menu/applications-discovery.menu, menu/mandriva-discovery.menu:
- Update menu entries for One/Discovery
+ Generated by cvs2cl the 23_Sep
-2007-03-22 16:46 Frederic Crozat <fcrozat at mandriva.com>
+ 2006-1mdk
- * menu/applications-discovery.menu, menu/mandriva-discovery.menu:
- Update menu entries for One/Discovery
+ Generated by cvs2cl the 23_Sep
-2007-03-21 17:58 Frederic Crozat <fcrozat at mandriva.com>
+ fixed Read Documentation entry
- * ChangeLog: Generated by svn2cl the Wed 21 Mar 2007 06:55:10 PM
- CET
+ fix documentation menu tuxracer => ppracer
-2007-03-21 15:43 Frederic Crozat <fcrozat at mandriva.com>
+ fix doc fix default web browser to be firefox
- * bookmarks/konqueror/bookmarks-discovery.xml,
- bookmarks/konqueror/bookmarks-download.xml,
- bookmarks/konqueror/bookmarks-powerpack.xml,
- bookmarks/konqueror/bookmarks-powerpackplus.xml,
- bookmarks/mozilla/mozilla-discovery.html,
- bookmarks/mozilla/mozilla-download.html,
- bookmarks/mozilla/mozilla-powerpack.html,
- bookmarks/mozilla/mozilla-powerpackplus.html: Updated bookmarks
+2005-09-21 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-03-21 15:43 Frederic Crozat <fcrozat at mandriva.com>
+ Fix doc url
- * bookmarks/konqueror/bookmarks-discovery.xml,
- bookmarks/konqueror/bookmarks-download.xml,
- bookmarks/konqueror/bookmarks-powerpack.xml,
- bookmarks/konqueror/bookmarks-powerpackplus.xml,
- bookmarks/mozilla/mozilla-discovery.html,
- bookmarks/mozilla/mozilla-download.html,
- bookmarks/mozilla/mozilla-powerpack.html,
- bookmarks/mozilla/mozilla-powerpackplus.html: Updated bookmarks
+2005-09-19 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-03-20 14:29 mrl
+ Fix menu entry
- * bin/www-browser: - Adds lock system to avoid recursive calls
- between xdg-open and www-browser.
- Closes: #29599
+2005-09-19 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-03-15 18:43 Frederic Crozat <fcrozat at mandriva.com>
+ Generated by cvs2cl the 19_Sep
- * ChangeLog: Generated by svn2cl the Thu 15 Mar 2007 07:40:16 PM
- CET
+ Fix previous commit
-2007-03-15 18:01 Frederic Crozat <fcrozat at mandriva.com>
+ Generated by cvs2cl the 19_Sep
- * menu/desktop-directories/mandriva-system-configuration-gnome.directory.in:
- Hide GNOME Configuration subtree, it is displayed elsewhere
+ - Fix loop in www-browser (patch from Andrey Borzenkov)
-2007-03-15 17:53 Frederic Crozat <fcrozat at mandriva.com>
+2005-09-12 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * faces/default.png, kde, kde/kdm-mdk-logo.png: Re-import old icons
+ Generated by cvs2cl the 12_Sep
-2007-03-15 17:52 Frederic Crozat <fcrozat at mandriva.com>
+ use gimp-remote, not gimp-remote-2.2
- * menu/icons/buyit-mdv.png, menu/icons/large/buyit-mdv.png,
- menu/icons/large/subscribe-mdv.png,
- menu/icons/mini/buyit-mdv.png, menu/icons/mini/subscribe-mdv.png,
- menu/icons/subscribe-mdv.png: Add icons for store / club
+ Generated by cvs2cl the 12_Sep
-2007-03-15 17:50 Frederic Crozat <fcrozat at mandriva.com>
+ - Fix package name and command for gimp in simplified menu (Mdk bug #17627)
- * desktop, desktop/buyit.desktop.in, desktop/subscribe.desktop.in:
- Add desktop file for Store and Club
+2005-09-08 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-03-15 18:01 Frederic Crozat <fcrozat at mandriva.com>
+ Add separator in simplified menu
- * menu/desktop-directories/mandriva-system-configuration-gnome.directory.in:
- Hide GNOME Configuration subtree, it is displayed elsewhere
+2005-08-29 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-03-15 17:53 Frederic Crozat <fcrozat at mandriva.com>
+ Generated by cvs2cl the 29_Aug
- * faces/default.png, kde, kde/kdm-mdk-logo.png: Re-import old icons
+ Fix default directories when no translation is available
-2007-03-15 17:52 Frederic Crozat <fcrozat at mandriva.com>
+ Fix when no translation is available
- * menu/icons/buyit-mdv.png, menu/icons/large/buyit-mdv.png,
- menu/icons/large/subscribe-mdv.png,
- menu/icons/mini/buyit-mdv.png, menu/icons/mini/subscribe-mdv.png,
- menu/icons/subscribe-mdv.png: Add icons for store / club
+2005-08-26 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-03-15 17:50 Frederic Crozat <fcrozat at mandriva.com>
+ Generated by cvs2cl the 26_Aug
- * desktop, desktop/buyit.desktop.in, desktop/subscribe.desktop.in:
- Add desktop file for Store and Club
+ Remove desktop special case, it is no longer created
-2007-03-14 11:04 Laurent Montel <lmontel at mandriva.com>
+ Generated by cvs2cl the 26_Aug
- * bookmarks/konqueror/bookmarks-discovery.xml,
- bookmarks/konqueror/bookmarks-download.xml,
- bookmarks/konqueror/bookmarks-powerpack.xml,
- bookmarks/konqueror/bookmarks-powerpackplus.xml: Fix url/name
+ New scheme for default directories
-2007-03-14 09:41 Laurent Montel <lmontel at mandriva.com>
+2005-08-24 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * bookmarks/konqueror/bookmarks-powerpackplus.xml: Add wengo
+ Generated by cvs2cl the 24_Aug
-2007-03-13 18:19 Laurent Montel <lmontel at mandriva.com>
+ installing scripts works better
- * bookmarks/konqueror/bookmarks-discovery.xml,
- bookmarks/konqueror/bookmarks-download.xml,
- bookmarks/konqueror/bookmarks-powerpack.xml: Add icons for
- wengo/jamendo
+ Generated by cvs2cl the 24_Aug
-2007-03-13 15:08 mrl
+ - Add default directories xinit.d script
- * bin/www-browser: - Adds support for newer KDE's
- - Adds support for xdg-utils: if an argument is provided, it will
- be passed
- through directly to xdg-open
+ Rename .desktop.in into .desktop.template add gtk-bookmarks support
-2007-03-09 13:09 Frederic Crozat <fcrozat at mandriva.com>
+2005-08-23 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * backgrounds/flower.jpg, backgrounds/nature.jpg,
- faces/default.png, faces/ic-bird.png, faces/ic-bird2.png,
- faces/ic-cat.png, faces/ic-dog.png, faces/ic-fish.png,
- faces/ic-flower1.png, faces/ic-flower2.png, faces/ic-flower3.png,
- faces/ic-flower4.png, faces/ic-flower5.png, faces/ic-nature1.png,
- faces/ic-nature2.png, faces/ic-nature3.png, faces/ic-nature4.png,
- faces/ic-nature5.png, kde, screensavers: Fix corrupted CVS import
+ Update spec file
-2007-03-07 09:27 Laurent Montel <lmontel at mandriva.com>
+2005-08-12 fwang <fwang@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * kdelnk: Not necessary
+ s/Mandrake/Mandriva/
-2007-03-06 14:56 Laurent Montel <lmontel at mandriva.com>
+ s/Mandrake/Mandriva.
- * bookmarks/konqueror/bookmarks-discovery.xml,
- bookmarks/konqueror/bookmarks-download.xml,
- bookmarks/konqueror/bookmarks-powerpack.xml: Fix bookmarks
+2005-08-10 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-03-05 09:57 Laurent Montel <lmontel at mandriva.com>
+ Generate .desktop from templates and copy them to $HOME at login
- * bookmarks/konqueror/bookmarks-discovery.xml,
- bookmarks/konqueror/bookmarks-download.xml,
- bookmarks/konqueror/bookmarks-powerpack.xml: Fix bookmarks
+2005-06-06 flepied <flepied@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-03-02 13:29 Laurent Montel <lmontel at mandriva.com>
+ Generated by cvs2cl the 06_Jun
- * bookmarks/konqueror/bookmarks-discovery.xml,
- bookmarks/konqueror/bookmarks-download.xml,
- bookmarks/konqueror/bookmarks-powerpack.xml,
- bookmarks/konqueror/bookmarks-powerpackplus.xml: Update bookmarks
+ 10.3.1-1mdk
-2007-02-21 11:35 Frederic Crozat <fcrozat at mandriva.com>
+2005-05-30 flepied <flepied@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * menu/icons/large/mandrake.png, menu/icons/mandrake.png,
- menu/icons/mini/mandrake.png: New version of Mandriva star
+ Generated by cvs2cl the 30_May
-2007-02-16 16:50 Frederic Crozat <fcrozat at mandriva.com>
+ no more used
- * Makefile: Fix dist target
+ 10.3-1mdk
-2007-02-16 16:48 Frederic Crozat <fcrozat at mandriva.com>
+ use the new framework in /etc/X11/dm.d.
- * menu/applications-discovery.menu, menu/applications-mdk.menu: Fix
- menus to use freedesktop.org official categories
+2005-05-13 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-02-16 16:48 Frederic Crozat <fcrozat at mandriva.com>
+ Generated by cvs2cl the 13_May
- * sbin/fndSession: Force umask
+ - change package name - xvt : fix typo (bug #15836) - fix typo in translation-map - remove screensaver images, moved in theme package
-2007-02-16 16:48 Frederic Crozat <fcrozat at mandriva.com>
+2005-03-29 flepied <flepied@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * Makefile: Fix target since specfile is moved in SVN
+ Generated by cvs2cl the 29_Mar
-2007-02-16 14:25 Laurent Montel <lmontel at mandriva.com>
+ Generated by cvs2cl the 29_Mar
- * bookmarks/konqueror/bookmarks-powerpack.xml,
- bookmarks/konqueror/bookmarks-powerpackplus.xml: Remove not
- necessary entries
+ 10.2-4mdk
-2007-02-16 14:23 Laurent Montel <lmontel at mandriva.com>
+ test if the $BROWSER variable is set to something valid (bug #14903).
- * desktop-common-data.spec: Byebye
+2005-03-23 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2007-02-14 20:50 Laurent Montel <lmontel at mandriva.com>
+ Generated by cvs2cl the 23_Mar
- * bookmarks/konqueror/bookmarks-discovery.xml,
- bookmarks/konqueror/bookmarks-download.xml,
- bookmarks/konqueror/bookmarks-powerpack.xml,
- bookmarks/konqueror/bookmarks-powerpackplus.xml: Remove Kiosk
- entry
+ Forgot simplified menu
-2007-02-12 15:18 Frederic Crozat <fcrozat at mandriva.com>
+ - don't use .desktop files for order directive
- * Makefile: Move to SVN
+2005-03-09 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2006-12-09 02:32 Pablo Saratxaga <pablo at mandriva.com>
+ Generated by cvs2cl the 09_Mar
- * man/C/chksession.8, man/cs/chksession.8, man/et/chksession.8,
- man/eu/chksession.8, man/fr/chksession.8, man/it/chksession.8,
- man/ru/chksession.8, man/uk/chksession.8: converted to UTF-8
+ fix stripping value from GNOME
-2006-11-16 17:00 Frederic Crozat <fcrozat at mandriva.com>
+ Generated by cvs2cl the 09_Mar
- * ChangeLog: Generated by cvs2cl the 16_Nov
+ - change www-browser to use BROWSER variable if set or use running environment settings if set. - xvt script to replace alternative : choose programs to start based on running environment
-2006-11-16 16:42 Frederic Crozat <fcrozat at mandriva.com>
+2005-03-09 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * desktop-common-data.spec, menu/applications-discovery.menu: Fix
- incorrect category for wordprocessors in discovery menu (Mdv bug
- #27084)
+ Remove alias_inline
-2006-10-26 16:04 Frederic Crozat <fcrozat at mandriva.com>
+2005-03-02 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * ChangeLog: Generated by cvs2cl the 26_Oct
+ Fix order into simplified menu
-2006-10-26 16:04 Frederic Crozat <fcrozat at mandriva.com>
+2005-03-01 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * desktop-common-data.spec, menu/update-menus, xinit.d/menu: - Fix
- update-menus script to not output empty line
- - Re-add menu file stamp to prevent restarting update-menus for
- each
- graphical login
+ Fix menu order for Menuname with id
-2006-10-02 17:28 Frederic Crozat <fcrozat at mandriva.com>
+ Recreate order as in 10.1
- * ChangeLog: Generated by cvs2cl the 02_Oct
+ Add kdm theme
-2006-10-02 17:28 Frederic Crozat <fcrozat at mandriva.com>
+2005-02-28 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * desktop-common-data.spec, menu/applications-discovery.menu,
- menu/applications-mdk.menu,
- menu/desktop-directories/mandriva-moreapplications-development-interpreters.directory.in,
- menu/desktop-directories/mandriva-moreapplications-development-other.directory.in,
- menu/desktop-directories/mandriva-moreapplications-education-economy.directory.in,
- menu/desktop-directories/mandriva-moreapplications-education-geography.directory.in,
- menu/desktop-directories/mandriva-moreapplications-education-history.directory.in,
- menu/desktop-directories/mandriva-moreapplications-education-literature.directory.in,
- menu/desktop-directories/mandriva-moreapplications-education-sports.directory.in,
- menu/desktop-directories/mandriva-moreapplications-other.directory.in,
- menu/desktop-directories/mandriva-multimedia-other.directory.in,
- menu/desktop-directories/mandriva-office-communications-other.directory.in,
- menu/desktop-directories/mandriva-office-other.directory.in,
- menu/desktop-directories/mandriva-other.directory.in,
- menu/desktop-directories/mandriva-system-archiving-backup.directory.in,
- menu/desktop-directories/mandrivalinux.directory.in: - Rename
- root node from Mandriva Linux to Applications (Mdv bug #25389)
- - Add missing .directory for various entries (Mdv bug #26273)
+ Add shared theme for GDM/KDM
-2006-09-25 12:33 Frederic Crozat <fcrozat at mandriva.com>
+2005-02-23 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * ChangeLog: Generated by cvs2cl the 25_Sep
+ converted to UTF-8
-2006-09-25 12:33 Frederic Crozat <fcrozat at mandriva.com>
+2005-01-25 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * desktop-common-data.spec, menu/applications-discovery.menu,
- menu/applications-mdk.menu,
- menu/desktop-directories/mandriva-moreapplications-emulators.directory.in:
- - Add missing Emulator category to menu files (Mdv bug #26148)
+ Generated by cvs2cl the 25_Jan
-2006-09-21 10:20 Frederic Crozat <fcrozat at mandriva.com>
+ Fix small errors in default layout menu files
- * ChangeLog: Generated by cvs2cl the 21_Sep
+2004-12-14 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2006-09-21 10:20 Frederic Crozat <fcrozat at mandriva.com>
+ Generated by cvs2cl the 14_Dec
- * desktop-common-data.spec, menu/mandriva-discovery.menu: - Hide
- more applications in one products
- - Increase version for Conflicts (Mdv bug #26043)
+ Move all menu informations (layout/icons) from menu to mandrake_desk package
-2006-09-19 18:08 Frederic Crozat <fcrozat at mandriva.com>
+2004-09-29 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * ChangeLog: Generated by cvs2cl the 19_Sep
+ Fix "Listen to Music Files" menu entry
-2006-09-19 18:08 Frederic Crozat <fcrozat at mandriva.com>
+ Update
- * desktop-common-data.spec, menu/applications-discovery.menu,
- menu/applications-mdk.menu, menu/mandriva-discovery.menu: - Fix
- error in upstream category in main menu
- - add mandriva-discovery.menu additional menu file to hide / sort
- applications
- for Discovery / One products
+ Add missing menu entry for french mandrakelinux documentation
-2006-09-18 14:26 Frederic Crozat <fcrozat at mandriva.com>
+ Update
- * ChangeLog: Generated by cvs2cl the 18_Sep
+ Fix import and sort your photos
-2006-09-18 14:25 Frederic Crozat <fcrozat at mandriva.com>
+2004-09-10 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * desktop-common-data.spec: - Rebuild with fixed mdk-menu-message
- to get all translations (Mdv bug #25895)
+ Add Mandrakelinux documentation
-2006-09-15 07:59 Laurent Montel <lmontel at mandriva.com>
+2004-09-09 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * bookmarks/konqueror/bookmarks-powerpack.xml,
- bookmarks/konqueror/bookmarks-powerpackplus.xml: Fix kaspersky
- icons
+ Remove all longtitle
-2006-09-15 07:53 Laurent Montel <lmontel at mandriva.com>
+2004-09-09 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * bookmarks/konqueror/bookmarks-powerpack.xml,
- bookmarks/konqueror/bookmarks-powerpackplus.xml: Fix crossover
- favicon
+ Update last changes
-2006-09-15 06:48 Laurent Montel <lmontel at mandriva.com>
+2004-09-09 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * bookmarks/konqueror/bookmarks-powerpack.xml,
- bookmarks/konqueror/bookmarks-powerpackplus.xml: Add partners
- directory
+ Remove non task oriented description for KPhone
-2006-09-15 06:33 Laurent Montel <lmontel at mandriva.com>
+2004-09-07 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * bookmarks/konqueror/bookmarks-discovery.xml,
- bookmarks/konqueror/bookmarks-download.xml,
- bookmarks/konqueror/bookmarks-powerpack.xml,
- bookmarks/konqueror/bookmarks-powerpackplus.xml: Fix bookmarks
- url
+ Added Italian Man page
-2006-09-13 18:05 Frederic Crozat <fcrozat at mandriva.com>
+2004-09-01 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * desktop-common-data.spec, menu/applications-mdk.menu: - Don't
- show GNOME configuration in standard menu, moved in preferences
- menu
+ Update menu Fix capitalization
-2006-09-13 14:19 Frederic Crozat <fcrozat at mandriva.com>
+2004-08-31 flepied <flepied@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * bookmarks/mozilla/mozilla-discovery-download.html,
- bookmarks/mozilla/mozilla-discovery.html,
- bookmarks/mozilla/mozilla-download.html,
- bookmarks/mozilla/mozilla-powerpack.html,
- bookmarks/mozilla/mozilla-powerpackplus.html,
- desktop-common-data.spec: - Update with new bookmarks
+ Generated by cvs2cl the 31_Aug
-2006-09-13 07:46 Laurent Montel <lmontel at mandriva.com>
+ 10.1-6mdk
- * bookmarks/konqueror/bookmarks-powerpack.xml,
- bookmarks/konqueror/bookmarks-powerpackplus.xml: Fix bookmarks
- for power*
+ first version
-2006-09-13 06:58 Laurent Montel <lmontel at mandriva.com>
+ added standard rules to build packages
- * bookmarks/konqueror/bookmarks-download.xml: Fix download
- bookmarks
+2004-08-27 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2006-09-13 06:56 Laurent Montel <lmontel at mandriva.com>
+ Fix typo in gnome-cd entry
- * bookmarks/konqueror/bookmarks-discovery.xml: Fix discovery
- bookmarks
+2004-08-16 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2006-09-08 17:11 Frederic Crozat <fcrozat at mandriva.com>
+ Fix "Play Games" entry
- * ChangeLog: Generated by cvs2cl the 08_Sep
+ Fix "Play Games" entry
-2006-09-08 17:11 Frederic Crozat <fcrozat at mandriva.com>
+2004-08-11 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * bookmarks/mozilla,
- bookmarks/mozilla/mozilla-discovery-download.html,
- bookmarks/mozilla/mozilla-powerpack.html,
- bookmarks/mozilla/mozilla-powerpackplus.html,
- desktop-common-data.spec, menu/menustyle.csh, menu/menustyle.sh:
- - Update profile scripts to remove invalid dependencies
- - move defaults bookmarks from kde and firefox to this package
+ - Add GNOME version of task oriented menu - Fix capitalisations in task oriented menu
-2006-09-08 12:19 Laurent Montel <lmontel at mandriva.com>
+2004-08-05 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * bookmarks, bookmarks/konqueror,
- bookmarks/konqueror/bookmarks-discovery.xml,
- bookmarks/konqueror/bookmarks-download.xml,
- bookmarks/konqueror/bookmarks-powerpack.xml,
- bookmarks/konqueror/bookmarks-powerpackplus.xml: Move konqueror
- bookmarks
+ Fix typo
-2006-09-04 16:32 Frederic Crozat <fcrozat at mandriva.com>
+ Update
- * ChangeLog: Generated by cvs2cl the 04_Sep
+ Add "Make a phone call" (using kphone at present time)
-2006-09-04 16:32 Frederic Crozat <fcrozat at mandriva.com>
+ Update task oriented menu
- * desktop-common-data.spec, dm/mdk-gdm.xml, dm/mdk-kde.xml,
- xinit.d/desktop-directories: - Improve gdm/kdm theme with new
- backgrounds
- - Don't create default desktop directories for root (Mdv bug
- #19711)
+2004-08-04 prigaux <prigaux@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2006-09-04 09:46 Laurent Montel <lmontel at mandriva.com>
+ fix descriptions (use Mandrakelinux instead of simply Mandrake)
- * dm/mdk-kde.xml: Fix caps lock error
+ add "chksession -L" used by DrakX to configure ~/.dmrc
-2006-09-04 08:29 Laurent Montel <lmontel at mandriva.com>
+ - don't generate /etc/X11/dm/Sessions/Default.desktop (otherwise gdm gives 2 "default" entries) - cleanup
- * dm/mdk-kde.xml: Change design as requested by design team
+2004-03-02 flepied <flepied@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2006-08-31 15:46 Laurent Montel <lmontel at mandriva.com>
+ 10.0-10mdk
- * desktop-common-data.spec, menu/applications-discovery.menu: Use
- kmenuedit menu file if it's generated.
+ don't pass /etc/X11/xdm/Xsession in Exec field for the KDE sessions
-2006-08-31 15:33 Laurent Montel <lmontel at mandriva.com>
+2004-02-27 flepied <flepied@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * desktop-common-data.spec: Fix upgrade from 2006
+ call fndSession in %post
-2006-08-30 16:54 Frederic Crozat <fcrozat at mandriva.com>
+ use simply chksession -k for kdm
- * ChangeLog: Generated by cvs2cl the 30_Aug
+ do not generate Default session for kdm remove files before generating the sessions
-2006-08-30 16:54 Frederic Crozat <fcrozat at mandriva.com>
+ 10.0-9mdk
- * desktop-common-data.spec, menu/update-menus: - update-menus
- doesn't do anything if DURING_INSTALL is set to 1
+ use rpm -ta to build an rpm
-2006-08-30 16:01 Frederic Crozat <fcrozat at mandriva.com>
+ fix KDE sessions
- * ChangeLog: Generated by cvs2cl the 30_Aug
+2004-02-27 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2006-08-30 16:01 Frederic Crozat <fcrozat at mandriva.com>
+ Update
- * desktop-common-data.spec, menu/applications-discovery.menu,
- menu/applications-mdk.menu,
- menu/desktop-directories/mandriva-moreapplications-games-adventure.directory.in,
- menu/menustyle.csh, menu/menustyle.sh,
- xinit.d/desktop-directories: - Add missing directory file for
- adventure (Mdv bug #24829)
- - Add empty menu nodes for KDE in discovery menu
- - Remove old X-MandrakeLinux* categories for main menu, all
- entries
- must now use X-MandrivaLinux
- - fix default directories creation if translation contains spaces
- (Mdv bug #24677)
+ s/ORC/OCR
-2006-08-17 17:56 Frederic Crozat <fcrozat at mandriva.com>
+2004-02-24 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * ChangeLog: Generated by cvs2cl the 17_Aug
+ Update
-2006-08-17 17:56 Frederic Crozat <fcrozat at mandriva.com>
+2004-02-24 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * desktop-common-data.spec, menu/applications-discovery.menu,
- menu/menustyle.csh, menu/menustyle.sh: - Add discovery menu and
- script to support MDV_MENU_STYLE
+ Update
-2006-08-17 11:45 Laurent Montel <lmontel at mandriva.com>
+2004-02-24 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * desktop-common-data.spec: Change requires to mandriva-theme
+ Fix icons
-2006-08-09 09:56 Laurent Montel <lmontel at mandriva.com>
+2004-02-05 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * desktop-common-data.spec: Update release
+ Fix simplified menu
-2006-08-09 09:46 Laurent Montel <lmontel at mandriva.com>
+ Fix title of "Organize your time" in simplified menu
- * menu/applications-mdk.menu: Fix typo. (fix oowriter menu entry)
+ Fix typos
-2006-08-07 09:49 Laurent Montel <lmontel at mandriva.com>
+2004-01-29 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * desktop-common-data.spec, menu/applications-mdk.menu: Fix mdk bug
- #24103
- (add kmenuedit.menu file)
+ Update
-2006-07-20 16:33 Frederic Crozat <fcrozat at mandriva.com>
+ Update
- * ChangeLog: Generated by cvs2cl the 20_Jul
+ Update
-2006-07-20 16:33 Frederic Crozat <fcrozat at mandriva.com>
+ Remove old images
- * desktop-common-data.spec,
- menu/desktop-directories/mandriva-system-archiving-other.directory.in:
- - Add .directory for Archiving/Other (Mdv bug #23845)
+ Remove old files
-2006-07-20 16:30 Frederic Crozat <fcrozat at mandriva.com>
+ Remove old images
- * ChangeLog: Generated by cvs2cl the 20_Jul
+2004-01-19 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2006-07-20 16:29 Frederic Crozat <fcrozat at mandriva.com>
+ Add "kontact" entry
- * desktop-common-data.spec, menu/applications-mdk.menu: - Ignore
- "Development" keyword, it is too broad atm (Mdv bug #23826)
+2004-01-13 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2006-07-20 15:47 Frederic Crozat <fcrozat at mandriva.com>
+ Update
- * ChangeLog: Generated by cvs2cl the 20_Jul
+ Fix drakbackup menu entry
-2006-07-20 15:47 Frederic Crozat <fcrozat at mandriva.com>
+ Update new simplified menu
- * desktop-common-data.spec, menu/applications-mdk.menu: - Fix some
- typo (Andrej) (Mdk bug #23842)
+ Save old version
-2006-07-17 16:23 Frederic Crozat <fcrozat at mandriva.com>
+2003-09-10 gc <gc@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * ChangeLog: Generated by cvs2cl the 17_Jul
+ xfdrake-test-card needs to be in .png format since we don't have have the jpeg pixbug loader during install
-2006-07-17 16:23 Frederic Crozat <fcrozat at mandriva.com>
+2003-09-10 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * desktop-common-data.spec, menu/applications-mdk.menu,
- xinit.d/menu: final switch to XDG menu
+ Update
-2006-07-17 09:01 Frederic Crozat <fcrozat at mandriva.com>
+2003-09-06 alus <alus@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * desktop-common-data.spec, xinit.d/menu: Final switch to XDG menu
+ TYPO fix
-2006-07-11 11:35 Frederic Crozat <fcrozat at mandriva.com>
+2003-09-05 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * desktop-common-data.spec: - Add missing .directory (Mdv bug
- #23614)
- - fix translations for some .directories (Mdv bug #23641)
+ Update
-2006-07-10 13:29 Frederic Crozat <fcrozat at mandriva.com>
+2003-09-01 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * menu/desktop-directories/mandriva-moreapplications-games-strategy.directory.in:
- Add missing directory file
+ Remove Record sound entry
-2006-07-07 13:44 Frederic Crozat <fcrozat at mandriva.com>
+2003-08-28 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * ChangeLog: Generated by cvs2cl the 07_Jul
+ Update
-2006-07-07 13:44 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec,
- menu/desktop-directories/mandriva-moreapplications-games-sports.directory.in:
- - add missing .directory
- - rebuild with fixed intltool
-
-2006-07-07 10:07 Pixel <pixel at mandriva.com>
-
- * ChangeLog: Generated by cvs2cl the 07_Jul
-
-2006-07-07 10:07 Pixel <pixel at mandriva.com>
-
- * desktop-common-data.spec: - fix generating icewm menu from XDG
- - replace broken link explaining mandriva cvs usage
+ Update
-2006-07-07 10:06 Pixel <pixel at mandriva.com>
-
- * menu/xdg_menu: fix generating icewm menu
-
-2006-06-19 16:55 Frederic Crozat <fcrozat at mandriva.com>
-
- * ChangeLog: Generated by cvs2cl the 19_Jun
-
-2006-06-19 16:51 Frederic Crozat <fcrozat at mandriva.com>
+ Update
- * desktop-common-data.spec, menu/applications-mdk.menu,
- menu/desktop-directories/mandriva-hidden.directory.in,
- menu/desktop-directories/mandriva-internet-chat.directory.in,
- menu/desktop-directories/mandriva-internet-filetransfer.directory.in,
- menu/desktop-directories/mandriva-internet-instantmessaging.directory.in,
- menu/desktop-directories/mandriva-internet-mail.directory.in,
- menu/desktop-directories/mandriva-internet-news.directory.in,
- menu/desktop-directories/mandriva-internet-other.directory.in,
- menu/desktop-directories/mandriva-internet-remoteaccess.directory.in,
- menu/desktop-directories/mandriva-internet-videoconference.directory.in,
- menu/desktop-directories/mandriva-internet-webbrowsers.directory.in,
- menu/desktop-directories/mandriva-internet-webeditors.directory.in,
- menu/desktop-directories/mandriva-internet.directory.in,
- menu/desktop-directories/mandriva-moreapplications-accessibility.directory.in,
- menu/desktop-directories/mandriva-moreapplications-communications.directory.in,
- menu/desktop-directories/mandriva-moreapplications-databases.directory.in,
- menu/desktop-directories/mandriva-moreapplications-development-developmentenvironments.directory.in,
- menu/desktop-directories/mandriva-moreapplications-development-tools.directory.in,
- menu/desktop-directories/mandriva-moreapplications-development.directory.in,
- menu/desktop-directories/mandriva-moreapplications-documentation.directory.in,
- menu/desktop-directories/mandriva-moreapplications-editors.directory.in,
- menu/desktop-directories/mandriva-moreapplications-education-languages.directory.in,
- menu/desktop-directories/mandriva-moreapplications-education-other.directory.in,
- menu/desktop-directories/mandriva-moreapplications-education-sciences.directory.in,
- menu/desktop-directories/mandriva-moreapplications-education.directory.in,
- menu/desktop-directories/mandriva-moreapplications-finances.directory.in,
- menu/desktop-directories/mandriva-moreapplications-games-arcade.directory.in,
- menu/desktop-directories/mandriva-moreapplications-games-boards.directory.in,
- menu/desktop-directories/mandriva-moreapplications-games-cards.directory.in,
- menu/desktop-directories/mandriva-moreapplications-games-other.directory.in,
- menu/desktop-directories/mandriva-moreapplications-games-puzzles.directory.in,
- menu/desktop-directories/mandriva-moreapplications-games-toys.directory.in,
- menu/desktop-directories/mandriva-moreapplications-games.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-artificialintelligence.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-astronomy.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-biology.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-chemistry.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-computerscience.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-datavisualization.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-electricity.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-geosciences.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-imageprocessing.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-mathematics.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-numericanalysis.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-other.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-parallelcomputing.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-physics.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-robotics.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences.directory.in,
- menu/desktop-directories/mandriva-moreapplications.directory.in,
- menu/desktop-directories/mandriva-multimedia-graphics.directory.in,
- menu/desktop-directories/mandriva-multimedia-sound.directory.in,
- menu/desktop-directories/mandriva-multimedia-video.directory.in,
- menu/desktop-directories/mandriva-multimedia.directory.in,
- menu/desktop-directories/mandriva-office-accessories.directory.in,
- menu/desktop-directories/mandriva-office-addressbooks.directory.in,
- menu/desktop-directories/mandriva-office-communications-fax.directory.in,
- menu/desktop-directories/mandriva-office-communications-pda.directory.in,
- menu/desktop-directories/mandriva-office-communications-phone.directory.in,
- menu/desktop-directories/mandriva-office-communications.directory.in,
- menu/desktop-directories/mandriva-office-drawing.directory.in,
- menu/desktop-directories/mandriva-office-graphs.directory.in,
- menu/desktop-directories/mandriva-office-presentations.directory.in,
- menu/desktop-directories/mandriva-office-publishing.directory.in,
- menu/desktop-directories/mandriva-office-spreadsheets.directory.in,
- menu/desktop-directories/mandriva-office-tasksmanagement.directory.in,
- menu/desktop-directories/mandriva-office-timemanagement.directory.in,
- menu/desktop-directories/mandriva-office-wordprocessors.directory.in,
- menu/desktop-directories/mandriva-office.directory.in,
- menu/desktop-directories/mandriva-system-archiving-cdburning.directory.in,
- menu/desktop-directories/mandriva-system-archiving-compression.directory.in,
- menu/desktop-directories/mandriva-system-archiving.directory.in,
- menu/desktop-directories/mandriva-system-configuration-bootandinit.directory.in,
- menu/desktop-directories/mandriva-system-configuration-gnome.directory.in,
- menu/desktop-directories/mandriva-system-configuration-hardware.directory.in,
- menu/desktop-directories/mandriva-system-configuration-kde.directory.in,
- menu/desktop-directories/mandriva-system-configuration-networking.directory.in,
- menu/desktop-directories/mandriva-system-configuration-other.directory.in,
- menu/desktop-directories/mandriva-system-configuration-packaging.directory.in,
- menu/desktop-directories/mandriva-system-configuration-printing.directory.in,
- menu/desktop-directories/mandriva-system-configuration.directory.in,
- menu/desktop-directories/mandriva-system-filetools.directory.in,
- menu/desktop-directories/mandriva-system-monitoring.directory.in,
- menu/desktop-directories/mandriva-system-terminals.directory.in,
- menu/desktop-directories/mandriva-system-texttools.directory.in,
- menu/desktop-directories/mandriva-system.directory.in: - Add
- missing .directory files and fix videoconference one
-
-2006-06-15 13:47 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec, menu/applications-mdk.menu: Switch to
- X-MandrivaLinux
-
-2006-05-29 12:07 Frederic Crozat <fcrozat at mandriva.com>
-
- * ChangeLog: Generated by cvs2cl the 29_May
-
-2006-05-29 12:07 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec: - Add legacy directories and default
- merge directory
-
-2006-05-29 12:06 Frederic Crozat <fcrozat at mandriva.com>
-
- * menu/applications-mdk.menu: Add back legacy directories
-
-2006-05-17 17:09 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec: Fix errors in install script
-
-2006-05-17 17:01 Frederic Crozat <fcrozat at mandriva.com>
-
- * ChangeLog: Generated by cvs2cl the 17_May
-
-2006-05-17 17:01 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec: - ship our own .directory files now
- - use kde .directory files when possible
- - add more upstream categories
-
-2006-05-17 16:35 Frederic Crozat <fcrozat at mandriva.com>
-
- * menu/applications-mdk.menu: -use our own .directory files
- -use more official categories
- -use kde .directory when available
-
-2006-05-17 16:31 Frederic Crozat <fcrozat at mandriva.com>
-
- * menu/desktop-directories,
- menu/desktop-directories/mandriva-hidden.directory.in,
- menu/desktop-directories/mandriva-internet-chat.directory.in,
- menu/desktop-directories/mandriva-internet-filetransfer.directory.in,
- menu/desktop-directories/mandriva-internet-instantmessaging.directory.in,
- menu/desktop-directories/mandriva-internet-mail.directory.in,
- menu/desktop-directories/mandriva-internet-news.directory.in,
- menu/desktop-directories/mandriva-internet-other.directory.in,
- menu/desktop-directories/mandriva-internet-remoteaccess.directory.in,
- menu/desktop-directories/mandriva-internet-videoconference.directory.in,
- menu/desktop-directories/mandriva-internet-webbrowsers.directory.in,
- menu/desktop-directories/mandriva-internet-webeditors.directory.in,
- menu/desktop-directories/mandriva-internet.directory.in,
- menu/desktop-directories/mandriva-moreapplications-accessibility.directory.in,
- menu/desktop-directories/mandriva-moreapplications-communications.directory.in,
- menu/desktop-directories/mandriva-moreapplications-databases.directory.in,
- menu/desktop-directories/mandriva-moreapplications-development-developmentenvironments.directory.in,
- menu/desktop-directories/mandriva-moreapplications-development-tools.directory.in,
- menu/desktop-directories/mandriva-moreapplications-development.directory.in,
- menu/desktop-directories/mandriva-moreapplications-documentation.directory.in,
- menu/desktop-directories/mandriva-moreapplications-editors.directory.in,
- menu/desktop-directories/mandriva-moreapplications-education-languages.directory.in,
- menu/desktop-directories/mandriva-moreapplications-education-other.directory.in,
- menu/desktop-directories/mandriva-moreapplications-education-sciences.directory.in,
- menu/desktop-directories/mandriva-moreapplications-education.directory.in,
- menu/desktop-directories/mandriva-moreapplications-finances.directory.in,
- menu/desktop-directories/mandriva-moreapplications-games-arcade.directory.in,
- menu/desktop-directories/mandriva-moreapplications-games-boards.directory.in,
- menu/desktop-directories/mandriva-moreapplications-games-cards.directory.in,
- menu/desktop-directories/mandriva-moreapplications-games-other.directory.in,
- menu/desktop-directories/mandriva-moreapplications-games-puzzles.directory.in,
- menu/desktop-directories/mandriva-moreapplications-games-toys.directory.in,
- menu/desktop-directories/mandriva-moreapplications-games.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-mathematics.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences.directory.in,
- menu/desktop-directories/mandriva-moreapplications.directory.in,
- menu/desktop-directories/mandriva-multimedia-graphics.directory.in,
- menu/desktop-directories/mandriva-multimedia-sound.directory.in,
- menu/desktop-directories/mandriva-multimedia-video.directory.in,
- menu/desktop-directories/mandriva-multimedia.directory.in,
- menu/desktop-directories/mandriva-networking.directory.in,
- menu/desktop-directories/mandriva-office-accessories.directory.in,
- menu/desktop-directories/mandriva-office-addressbooks.directory.in,
- menu/desktop-directories/mandriva-office-communications-fax.directory.in,
- menu/desktop-directories/mandriva-office-communications-pda.directory.in,
- menu/desktop-directories/mandriva-office-communications-phone.directory.in,
- menu/desktop-directories/mandriva-office-communications.directory.in,
- menu/desktop-directories/mandriva-office-drawing.directory.in,
- menu/desktop-directories/mandriva-office-graphs.directory.in,
- menu/desktop-directories/mandriva-office-presentations.directory.in,
- menu/desktop-directories/mandriva-office-publishing.directory.in,
- menu/desktop-directories/mandriva-office-spreadsheets.directory.in,
- menu/desktop-directories/mandriva-office-tasksmanagement.directory.in,
- menu/desktop-directories/mandriva-office-timemanagement.directory.in,
- menu/desktop-directories/mandriva-office-wordprocessors.directory.in,
- menu/desktop-directories/mandriva-office.directory.in,
- menu/desktop-directories/mandriva-system-archiving-cdburning.directory.in,
- menu/desktop-directories/mandriva-system-archiving-compression.directory.in,
- menu/desktop-directories/mandriva-system-archiving.directory.in,
- menu/desktop-directories/mandriva-system-configuration-bootandinit.directory.in,
- menu/desktop-directories/mandriva-system-configuration-gnome-accessibility.directory.in,
- menu/desktop-directories/mandriva-system-configuration-gnome-advanced.directory.in,
- menu/desktop-directories/mandriva-system-configuration-gnome.directory.in,
- menu/desktop-directories/mandriva-system-configuration-hardware.directory.in,
- menu/desktop-directories/mandriva-system-configuration-kde.directory.in,
- menu/desktop-directories/mandriva-system-configuration-networking.directory.in,
- menu/desktop-directories/mandriva-system-configuration-other.directory.in,
- menu/desktop-directories/mandriva-system-configuration-packaging.directory.in,
- menu/desktop-directories/mandriva-system-configuration-printing.directory.in,
- menu/desktop-directories/mandriva-system-configuration.directory.in,
- menu/desktop-directories/mandriva-system-filetools.directory.in,
- menu/desktop-directories/mandriva-system-monitoring.directory.in,
- menu/desktop-directories/mandriva-system-terminals.directory.in,
- menu/desktop-directories/mandriva-system-texttools.directory.in,
- menu/desktop-directories/mandriva-system.directory.in: Add
- untranslated directory files
+ Update
-2006-05-12 15:34 Laurent Montel <lmontel at mandriva.com>
+2003-08-27 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * desktop-common-data.spec: Fix for missing entry
+ Fix kmix entry
-2006-05-12 15:30 Laurent Montel <lmontel at mandriva.com>
+ Fix bad end of lines
- * menu/applications-mdk.menu: Fix missing entry reported by Nicolas
- Chipaux
+ Begin to update
-2006-05-12 09:24 Frederic Crozat <fcrozat at mandriva.com>
+2003-08-27 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * ChangeLog: Generated by cvs2cl the 12_May
+ Fix bug 4572 (bad path for gdm session in fndSession)
-2006-05-12 09:24 Frederic Crozat <fcrozat at mandriva.com>
+2003-08-26 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * screensavers, screensavers/01.png, screensavers/02.png,
- screensavers/03.png, screensavers/04.png, screensavers/05.png,
- screensavers/06.png, screensavers/07.png, screensavers/08.png,
- screensavers/09.png, screensavers/1.png, screensavers/10.png,
- screensavers/11.png, screensavers/12.png, screensavers/13.png,
- screensavers/14.png, screensavers/15.png, screensavers/16.png,
- screensavers/17.png, screensavers/18.png, screensavers/19.png,
- screensavers/2.png, screensavers/20.png, screensavers/21.png,
- screensavers/22.png, screensavers/23.png, screensavers/24.png,
- screensavers/25.png, screensavers/26.png, screensavers/27.png,
- screensavers/3.png, screensavers/4.png, screensavers/5.png,
- screensavers/6.png, screensavers/7.png, screensavers/8.png,
- screensavers/9.png: Readd screensaver files
+ Update
-2006-05-11 16:09 Frederic Crozat <fcrozat at mandriva.com>
+2003-08-26 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * ChangeLog: Generated by cvs2cl the 11_May
+ Release 9.2-3mdk
-2006-05-11 16:08 Frederic Crozat <fcrozat at mandriva.com>
+ Add default session for GDM
- * desktop-common-data.spec: Use new filenames for kde .desktop file
+2003-08-26 flepied <flepied@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2006-05-11 16:07 Frederic Crozat <fcrozat at mandriva.com>
+ Corrections by Bernard Lang
- * menu/applications-mdk.menu: use new name for kde .desktop file
+2003-08-22 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2006-05-10 09:17 Frederic Crozat <fcrozat at mandriva.com>
+ Update
- * ChangeLog: Generated by cvs2cl the 10_May
+ New images for 9.2
-2006-05-10 09:17 Frederic Crozat <fcrozat at mandriva.com>
+2003-08-22 flepied <flepied@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * desktop-common-data.spec: Add missing categories (laurent)
+ corrections by Bernard Lang
-2006-05-10 09:04 Laurent Montel <lmontel at mandriva.com>
+2003-07-30 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * menu/applications-mdk.menu: Fix missing menu entry (fix kcontrol)
+ Fix %post (thanks to Pixel)
-2006-05-04 16:26 Frederic Crozat <fcrozat at mandriva.com>
+2003-06-13 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * ChangeLog: Generated by cvs2cl the 04_May
+ gdm session format has changed, fix chksession
-2006-05-04 16:26 Frederic Crozat <fcrozat at mandriva.com>
+2003-06-04 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * Makefile: fix typo
+ Add version in %changelog
-2006-05-04 16:25 Frederic Crozat <fcrozat at mandriva.com>
+ Create a link to allow users to access to Mandrake's backgrounds from KDE
- * ChangeLog: Generated by cvs2cl the 04_May
+2003-05-08 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2006-05-04 16:23 Frederic Crozat <fcrozat at mandriva.com>
+ Added Ukrainian file
- * Makefile, desktop-common-data.spec: Fix menu location
+2003-03-14 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2006-05-04 16:19 Frederic Crozat <fcrozat at mandriva.com>
+ Update
- * desktop-common-data.spec, menu/applications-mdk.menu, menu/menu,
- menu/update-menus, menu/xdg_menu: - Add applications-mdk.menu
- file for XDG menu system
- - Add xdg_menu script from SUSE to support old WM
- - Don't ship defaultlayout.menu anymore, it is merged into main
- menu
- - Fix typo in old menu file
+ Update for 9.1
-2006-05-04 16:18 Frederic Crozat <fcrozat at mandriva.com>
+2003-03-12 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * Makefile: Add support for mkrel
+ Update
-2005-09-26 13:13 Frederic Crozat <fcrozat at mandriva.com>
+ Remove old icon
- * ChangeLog: Generated by cvs2cl the 26_Sep
+ Update icons Remove one old obsolete thing
-2005-09-26 13:13 Frederic Crozat <fcrozat at mandriva.com>
+2003-02-14 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * desktop-common-data.spec: - Fix desktop-directory script (UTF
- encoded URL, hidden .directory file)
- Mdk bug #18853
+ New default bacground for MDK 9.1
-2005-09-26 13:12 Frederic Crozat <fcrozat at mandriva.com>
+2003-01-31 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * xinit.d/desktop-directories: -create .directory as hidden file
- -encode url in UTF8
+ Added Estonian man page
-2005-09-23 14:36 Frederic Lepied <flepied at mandriva.com>
+2002-09-06 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * ChangeLog: Generated by cvs2cl the 23_Sep
+ Update spec Add mandrake-club icon
-2005-09-23 14:36 Frederic Lepied <flepied at mandriva.com>
+2002-09-02 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * desktop-common-data.spec: 2006-1mdk
+ Update spec file
-2005-09-23 14:35 Frederic Lepied <flepied at mandriva.com>
+ Fix drakconf menu entry
- * ChangeLog: Generated by cvs2cl the 23_Sep
+2002-08-29 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2005-09-23 14:33 Frederic Lepied <flepied at mandriva.com>
+ Update
- * menu/menu-simplified: fixed Read Documentation entry
+ New tux family
-2005-09-23 12:35 Frederic Lepied <flepied at mandriva.com>
+ Remove
- * menu/menu-simplified: fix documentation menu
- tuxracer => ppracer
+ Update
-2005-09-23 12:34 Frederic Lepied <flepied at mandriva.com>
+ Update
- * menu/desktop-common-data: fix doc
- fix default web browser to be firefox
+ Tux family is back
-2005-09-21 11:45 Laurent Montel <lmontel at mandriva.com>
+2002-08-27 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * menu/desktop-common-data: Fix doc url
+ Update
-2005-09-19 17:43 Laurent Montel <lmontel at mandriva.com>
+ Update
- * desktop-common-data.spec, menu/menu: Fix menu entry
+2002-08-26 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2005-09-19 10:07 Frederic Crozat <fcrozat at mandriva.com>
+ Added Czech and Russian man pages
- * ChangeLog: Generated by cvs2cl the 19_Sep
+2002-08-23 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2005-09-19 10:07 Frederic Crozat <fcrozat at mandriva.com>
+ Update
- * bin/www-browser, desktop-common-data.spec: Fix previous commit
+ Update
-2005-09-19 08:57 Frederic Crozat <fcrozat at mandriva.com>
+2002-08-22 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * ChangeLog: Generated by cvs2cl the 19_Sep
+ Update
-2005-09-19 08:48 Frederic Crozat <fcrozat at mandriva.com>
+ Update for 9.0
- * bin/www-browser, desktop-common-data.spec: - Fix loop in
- www-browser (patch from Andrey Borzenkov)
+ Update
-2005-09-12 14:43 Frederic Crozat <fcrozat at mandriva.com>
+ Update
- * ChangeLog: Generated by cvs2cl the 12_Sep
+ Update
-2005-09-12 14:43 Frederic Crozat <fcrozat at mandriva.com>
+2002-08-02 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * menu/desktop-common-data: use gimp-remote, not gimp-remote-2.2
+ Update
-2005-09-12 14:14 Frederic Crozat <fcrozat at mandriva.com>
+ Update
- * ChangeLog: Generated by cvs2cl the 12_Sep
+2002-08-01 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2005-09-12 14:14 Frederic Crozat <fcrozat at mandriva.com>
+ Update
- * desktop-common-data.spec, menu/desktop-common-data: - Fix package
- name and command for gimp in simplified menu (Mdk bug #17627)
+ Add icons
-2005-09-08 13:46 Laurent Montel <lmontel at mandriva.com>
+2002-08-01 alus <alus@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * desktop-common-data.spec, menu/menu-simplified: Add separator in
- simplified menu
+ polish translator added
-2005-08-29 09:57 Frederic Crozat <fcrozat at mandriva.com>
+2002-07-31 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * ChangeLog: Generated by cvs2cl the 29_Aug
+ Update
-2005-08-29 09:57 Frederic Crozat <fcrozat at mandriva.com>
+ Update
- * desktop-common-data.spec: Fix default directories when no
- translation is available
+ Add kdm logo
-2005-08-29 09:56 Frederic Crozat <fcrozat at mandriva.com>
+ Update
- * xinit.d/desktop-directories: Fix when no translation is available
+ Add new backgrounds
-2005-08-26 17:34 Frederic Crozat <fcrozat at mandriva.com>
+ Update
- * ChangeLog: Generated by cvs2cl the 26_Aug
+ Remove old xml-i18n stuff
-2005-08-26 17:34 Frederic Crozat <fcrozat at mandriva.com>
+ Remove old po
- * xinit.d/desktop-directories: Remove desktop special case, it is
- no longer created
+ Update
-2005-08-26 17:20 Frederic Crozat <fcrozat at mandriva.com>
+ Update
- * ChangeLog: Generated by cvs2cl the 26_Aug
+ Update
-2005-08-26 17:20 Frederic Crozat <fcrozat at mandriva.com>
+ Fix typo
- * desktop-common-data.spec, xinit.d/desktop-directories: New scheme
- for default directories
+ Rename xfdrake test card
-2005-08-24 18:02 Frederic Crozat <fcrozat at mandriva.com>
+ Add default background for root
- * ChangeLog: Generated by cvs2cl the 24_Aug
+ New default background
-2005-08-24 18:01 Frederic Crozat <fcrozat at mandriva.com>
+ Update
- * desktop-common-data.spec: installing scripts works better
+ Remove images
-2005-08-24 17:48 Frederic Crozat <fcrozat at mandriva.com>
+ Add/remove images
- * ChangeLog: Generated by cvs2cl the 24_Aug
+ Add/remove images
-2005-08-24 17:48 Frederic Crozat <fcrozat at mandriva.com>
+ Remove
- * desktop-common-data.spec: - Add default directories xinit.d
- script
+ Remove krootwarning & krozat stuff. Moved in their own modules
-2005-08-24 17:29 Frederic Crozat <fcrozat at mandriva.com>
+ Remove gtk-theme (moved in its own module)
- * xinit.d/desktop-directories: Rename .desktop.in into
- .desktop.template
- add gtk-bookmarks support
+ Remove old badgrouds
-2005-08-23 16:56 Laurent Montel <lmontel at mandriva.com>
+2002-07-31 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * desktop-common-data.spec: Update spec file
+ -Fix GNOME entry for Crux theme applet - Fix menu entries for simplified menu
-2005-08-12 17:58 Funda Wang <fundawang at linux.net.cn>
+2002-07-30 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * sbin/chksession, sbin/convertsession, sbin/kdeDesktopCleanup:
- s/Mandrake/Mandriva/
+ Update spec
-2005-08-12 17:57 Funda Wang <fundawang at linux.net.cn>
+ Upload Laurent Montel's spec file
- * dm/GdmGreeterTheme.desktop, dm/KdmGreeterTheme.desktop:
- s/Mandrake/Mandriva.
+ New defalt user image
-2005-08-10 05:51 Frederic Crozat <fcrozat at mandriva.com>
+2002-07-23 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * xinit.d, xinit.d/desktop-directories: Generate .desktop from
- templates and copy them to $HOME at login
+ Update spec
-2005-06-06 04:45 Frederic Lepied <flepied at mandriva.com>
+2002-07-18 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * ChangeLog: Generated by cvs2cl the 06_Jun
+ Add new users images for 9.0 beta 1
-2005-06-06 04:44 Frederic Lepied <flepied at mandriva.com>
+ Remove old users icons
- * desktop-common-data.spec: 10.3.1-1mdk
+2002-06-28 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2005-05-30 02:43 Frederic Lepied <flepied at mandriva.com>
+ Png icons
- * ChangeLog: Generated by cvs2cl the 30_May
+ GNOME 2 adaption (by Goetz Waschk)
-2005-05-30 02:42 Frederic Lepied <flepied at mandriva.com>
+2002-05-28 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * mandrake_desk.spec: no more used
+ Fix compile with qt3
-2005-05-30 02:41 Frederic Lepied <flepied at mandriva.com>
+2002-03-15 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * desktop-common-data.spec: 10.3-1mdk
+ Fix default gtk theme
-2005-05-30 02:41 Frederic Lepied <flepied at mandriva.com>
+2002-03-07 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * sbin/fndSession: use the new framework in /etc/X11/dm.d.
+ fix root icons (remove it)
-2005-05-13 07:19 Frederic Crozat <fcrozat at mandriva.com>
+2002-03-07 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * ChangeLog: Generated by cvs2cl the 13_May
+ Add new faces
-2005-05-13 07:12 Frederic Crozat <fcrozat at mandriva.com>
+2002-03-07 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * Makefile, bin/xvt, desktop-common-data.spec,
- menu/desktop-common-data, menu/mandrake_desk,
- menu/translate_menus, menu/translate_menus-simplified: - change
- package name
- - xvt : fix typo (bug #15836)
- - fix typo in translation-map
- - remove screensaver images, moved in theme package
+ Release 8.2-12mdk
-2005-03-29 16:30 Frederic Lepied <flepied at mandriva.com>
+2002-03-05 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * ChangeLog: Generated by cvs2cl the 29_Mar
+ *** empty log message ***
-2005-03-29 16:29 Frederic Lepied <flepied at mandriva.com>
+ Remove obsoletes faces
- * ChangeLog: Generated by cvs2cl the 29_Mar
+ Remove old faces
-2005-03-29 16:29 Frederic Lepied <flepied at mandriva.com>
+ Remove obsolete faces
- * mandrake_desk.spec: 10.2-4mdk
+2002-03-01 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2005-03-29 16:26 Frederic Lepied <flepied at mandriva.com>
+ *** empty log message ***
- * bin/www-browser: test if the $BROWSER variable is set to
- something valid (bug #14903).
+2002-02-28 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2005-03-23 16:44 Frederic Crozat <fcrozat at mandriva.com>
+ *** empty log message ***
- * ChangeLog: Generated by cvs2cl the 23_Mar
+2002-02-26 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2005-03-23 16:44 Frederic Crozat <fcrozat at mandriva.com>
+ Fix default GTK theme
- * menu/menu-simplified: Forgot simplified menu
+ Change Mandrake Control Center to Control Center in GNOME
-2005-03-23 15:48 Frederic Crozat <fcrozat at mandriva.com>
+2002-02-26 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * mandrake_desk.spec, menu/menu: - don't use .desktop files for
- order directive
+ *** empty log message ***
-2005-03-09 14:04 Frederic Crozat <fcrozat at mandriva.com>
+ *** empty log message ***
- * ChangeLog: Generated by cvs2cl the 09_Mar
+ Install png icons instead xpm in /usr/share/pixmaps/mdk/
-2005-03-09 14:04 Frederic Crozat <fcrozat at mandriva.com>
+ *** empty log message ***
- * bin/www-browser: fix stripping value from GNOME
+ *** empty log message ***
-2005-03-09 13:44 Frederic Crozat <fcrozat at mandriva.com>
+2002-02-25 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * ChangeLog: Generated by cvs2cl the 09_Mar
+ Generated by cvs2cl the 25_f�v
-2005-03-09 13:43 Frederic Crozat <fcrozat at mandriva.com>
+ Fix default mdk theme with evolution
- * bin/www-browser, bin/xvt, mandrake_desk.spec: - change
- www-browser to use BROWSER variable if set or use running
- environment
- settings if set.
- - xvt script to replace alternative : choose programs to start
- based on
- running environment
+2002-02-22 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2005-03-09 13:37 Laurent Montel <lmontel at mandriva.com>
+ Added Basque file
- * mandrake_desk.spec, menu/menu, menu/menu-simplified: Remove
- alias_inline
+2002-02-20 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2005-03-02 09:57 Laurent Montel <lmontel at mandriva.com>
+ Fix tagging
- * mandrake_desk.spec, menu/menu-simplified: Fix order into
- simplified menu
+ Generated by cvs2cl the 20_f�v
-2005-03-01 16:20 Laurent Montel <lmontel at mandriva.com>
+ Really fix mdk-eazel-engine-capplet location
- * mandrake_desk.spec, menu/menu: Fix menu order for Menuname with
- id
+ Generated by cvs2cl the 20_f�v
-2005-03-01 15:18 Laurent Montel <lmontel at mandriva.com>
+ Fix location of mdk-eazel-engine capplet
- * mandrake_desk.spec, menu/menu: Recreate order as in 10.1
+ Generated by cvs2cl the 20_f�v
-2005-03-01 08:43 Laurent Montel <lmontel at mandriva.com>
+ Fix build
- * dm/KdmGreeterTheme.desktop, dm/mdk-kde.xml: Add kdm theme
+ Fix english strings and makefile
-2005-02-28 17:08 Frederic Crozat <fcrozat at mandriva.com>
+ Generated by cvs2cl the 20_f�v
- * dm, dm/GdmGreeterTheme.desktop, dm/disconnect.png,
- dm/languages.png, dm/mdk-gdm.xml, dm/reboot.png,
- dm/screenshot.png, dm/sessions.png, dm/star.png, dm/system.png,
- mandrake_desk.spec: Add shared theme for GDM/KDM
+2002-02-18 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2005-02-23 17:55 Pablo Saratxaga <pablo at mandriva.com>
-
- * ChangeLog: converted to UTF-8
-
-2005-01-25 18:16 Frederic Crozat <fcrozat at mandriva.com>
-
- * ChangeLog: Generated by cvs2cl the 25_Jan
-
-2005-01-25 18:16 Frederic Crozat <fcrozat at mandriva.com>
-
- * mandrake_desk.spec, menu/defaultlayout-simplified.menu,
- menu/defaultlayout.menu: Fix small errors in default layout menu
- files
-
-2004-12-14 15:01 Frederic Crozat <fcrozat at mandriva.com>
-
- * ChangeLog: Generated by cvs2cl the 14_Dec
-
-2004-12-14 15:01 Frederic Crozat <fcrozat at mandriva.com>
-
- * mandrake_desk.spec, menu/defaultlayout-simplified.menu,
- menu/defaultlayout.menu, menu/icons,
- menu/icons/accessibility_section.png,
- menu/icons/addressbook_section.png,
- menu/icons/adventure_section.png,
- menu/icons/amusement_section.png,
- menu/icons/applications_section.png,
- menu/icons/arcade_section.png, menu/icons/archiving_section.png,
- menu/icons/artificial_intelligence_section.png,
- menu/icons/astronomy_section.png, menu/icons/backup_section.png,
- menu/icons/biology_section.png, menu/icons/boards_section.png,
- menu/icons/boot_init_section.png, menu/icons/cards_section.png,
- menu/icons/cd_burning_section.png, menu/icons/chat_section.png,
- menu/icons/chemistry_section.png, menu/icons/chinese_section.png,
- menu/icons/code_generator_section.png,
- menu/icons/communications_fax_section.png,
- menu/icons/communications_other_section.png,
- menu/icons/communications_phone_section.png,
- menu/icons/communications_section.png,
- menu/icons/compression_section.png,
- menu/icons/computer_science_section.png,
- menu/icons/configuration_section.png,
- menu/icons/data_visualization_section.png,
- menu/icons/databases_section.png,
- menu/icons/development_environment_section.png,
- menu/icons/development_section.png,
- menu/icons/development_tools_section.png,
- menu/icons/documentation_section.png,
- menu/icons/editors_section.png,
- menu/icons/education_economy_section.png,
- menu/icons/education_geography_section.png,
- menu/icons/education_history_section.png,
- menu/icons/education_languages_section.png,
- menu/icons/education_literature_section.png,
- menu/icons/education_mathematics.png,
- menu/icons/education_other_section.png,
- menu/icons/education_sciences.png,
- menu/icons/education_section.png,
- menu/icons/education_sport_section.png,
- menu/icons/education_tool.png,
- menu/icons/electricity_section.png,
- menu/icons/emulators_section.png,
- menu/icons/file_tools_section.png,
- menu/icons/file_transfer_section.png,
- menu/icons/finances_section.png,
- menu/icons/geosciences_section.png, menu/icons/gnome_section.png,
- menu/icons/graphics_section.png, menu/icons/graphs_section.png,
- menu/icons/hardware_configuration_section.png,
- menu/icons/hardware_section.png,
- menu/icons/image_processing_section.png,
- menu/icons/instant_messaging_section.png,
- menu/icons/internet_section.png,
- menu/icons/interpreters_section.png, menu/icons/irc_section.png,
- menu/icons/kde_section.png, menu/icons/large,
- menu/icons/large/accessibility_section.png,
- menu/icons/large/addressbook_section.png,
- menu/icons/large/adventure_section.png,
- menu/icons/large/amusement_section.png,
- menu/icons/large/applications_section.png,
- menu/icons/large/arcade_section.png,
- menu/icons/large/archiving_section.png,
- menu/icons/large/artificial_intelligence_section.png,
- menu/icons/large/astronomy_section.png,
- menu/icons/large/backup_section.png,
- menu/icons/large/biology_section.png,
- menu/icons/large/boards_section.png,
- menu/icons/large/boot_init_section.png,
- menu/icons/large/cards_section.png,
- menu/icons/large/cd_burning_section.png,
- menu/icons/large/chat_section.png,
- menu/icons/large/chemistry_section.png,
- menu/icons/large/chinese_section.png,
- menu/icons/large/code_generator_section.png,
- menu/icons/large/communications_fax_section.png,
- menu/icons/large/communications_other_section.png,
- menu/icons/large/communications_phone_section.png,
- menu/icons/large/communications_section.png,
- menu/icons/large/compression_section.png,
- menu/icons/large/computer_science_section.png,
- menu/icons/large/configuration_section.png,
- menu/icons/large/data_visualization_section.png,
- menu/icons/large/databases_section.png,
- menu/icons/large/development_environment_section.png,
- menu/icons/large/development_section.png,
- menu/icons/large/development_tools_section.png,
- menu/icons/large/documentation_section.png,
- menu/icons/large/editors_section.png,
- menu/icons/large/education_economy_section.png,
- menu/icons/large/education_geography_section.png,
- menu/icons/large/education_history_section.png,
- menu/icons/large/education_languages_section.png,
- menu/icons/large/education_literature_section.png,
- menu/icons/large/education_mathematics.png,
- menu/icons/large/education_other_section.png,
- menu/icons/large/education_sciences.png,
- menu/icons/large/education_section.png,
- menu/icons/large/education_sport_section.png,
- menu/icons/large/education_tool.png,
- menu/icons/large/electricity_section.png,
- menu/icons/large/emulators_section.png,
- menu/icons/large/file_tools_section.png,
- menu/icons/large/file_transfer_section.png,
- menu/icons/large/finances_section.png,
- menu/icons/large/geosciences_section.png,
- menu/icons/large/gnome_section.png,
- menu/icons/large/graphics_section.png,
- menu/icons/large/graphs_section.png,
- menu/icons/large/hardware_configuration_section.png,
- menu/icons/large/hardware_section.png,
- menu/icons/large/image_processing_section.png,
- menu/icons/large/instant_messaging_section.png,
- menu/icons/large/internet_section.png,
- menu/icons/large/interpreters_section.png,
- menu/icons/large/irc_section.png,
- menu/icons/large/kde_section.png,
- menu/icons/large/mail_section.png, menu/icons/large/mandrake.png,
- menu/icons/large/mathematics_section.png,
- menu/icons/large/monitoring_section.png,
- menu/icons/large/more_applications_other_section.png,
- menu/icons/large/more_applications_section.png,
- menu/icons/large/multimedia_section.png,
- menu/icons/large/networking_configuration_section.png,
- menu/icons/large/networking_section.png,
- menu/icons/large/networking_www_section.png,
- menu/icons/large/news_section.png,
- menu/icons/large/numerical_analysis_section.png,
- menu/icons/large/office_accessories_section.png,
- menu/icons/large/office_drawing_section.png,
- menu/icons/large/office_section.png,
- menu/icons/large/other_amusement.png,
- menu/icons/large/other_archiving.png,
- menu/icons/large/other_configuration.png,
- menu/icons/large/other_networking.png,
- menu/icons/large/other_sciences.png,
- menu/icons/large/packaging_section.png,
- menu/icons/large/parallel_computing_section.png,
- menu/icons/large/pda_section.png,
- menu/icons/large/physics_section.png,
- menu/icons/large/presentation_section.png,
- menu/icons/large/printing_section.png,
- menu/icons/large/publishing_section.png,
- menu/icons/large/puzzle_section.png,
- menu/icons/large/remote_access_section.png,
- menu/icons/large/robotics_section.png,
- menu/icons/large/sciences_section.png,
- menu/icons/large/shells_section.png,
- menu/icons/large/sound_section.png,
- menu/icons/large/sport_section.png,
- menu/icons/large/spreadsheet_section.png,
- menu/icons/large/strategy_section.png,
- menu/icons/large/system_other_section.png,
- menu/icons/large/system_section.png,
- menu/icons/large/taskmanagement_section.png,
- menu/icons/large/terminals_section.png,
- menu/icons/large/text_tools_section.png,
- menu/icons/large/timemanagement_section.png,
- menu/icons/large/toys_section.png,
- menu/icons/large/video_conferences_section.png,
- menu/icons/large/video_section.png,
- menu/icons/large/web_browser_section.png,
- menu/icons/large/web_editors_section.png,
- menu/icons/large/windowmanager_section.png,
- menu/icons/large/wordprocessor_section.png,
- menu/icons/mail_section.png, menu/icons/mandrake.png,
- menu/icons/mathematics_section.png, menu/icons/mini,
- menu/icons/mini/accessibility_section.png,
- menu/icons/mini/addressbook_section.png,
- menu/icons/mini/adventure_section.png,
- menu/icons/mini/amusement_section.png,
- menu/icons/mini/applications_section.png,
- menu/icons/mini/arcade_section.png,
- menu/icons/mini/archiving_section.png,
- menu/icons/mini/artificial_intelligence_section.png,
- menu/icons/mini/astronomy_section.png,
- menu/icons/mini/backup_section.png,
- menu/icons/mini/biology_section.png,
- menu/icons/mini/boards_section.png,
- menu/icons/mini/boot_init_section.png,
- menu/icons/mini/cards_section.png,
- menu/icons/mini/cd_burning_section.png,
- menu/icons/mini/chat_section.png,
- menu/icons/mini/chemistry_section.png,
- menu/icons/mini/chinese_section.png,
- menu/icons/mini/code_generator_section.png,
- menu/icons/mini/communications_fax_section.png,
- menu/icons/mini/communications_other_section.png,
- menu/icons/mini/communications_phone_section.png,
- menu/icons/mini/communications_section.png,
- menu/icons/mini/compression_section.png,
- menu/icons/mini/computer_science_section.png,
- menu/icons/mini/configuration_section.png,
- menu/icons/mini/data_visualization_section.png,
- menu/icons/mini/databases_section.png,
- menu/icons/mini/development_environment_section.png,
- menu/icons/mini/development_section.png,
- menu/icons/mini/development_tools_section.png,
- menu/icons/mini/documentation_section.png,
- menu/icons/mini/editors_section.png,
- menu/icons/mini/education_economy_section.png,
- menu/icons/mini/education_geography_section.png,
- menu/icons/mini/education_history_section.png,
- menu/icons/mini/education_languages_section.png,
- menu/icons/mini/education_literature_section.png,
- menu/icons/mini/education_mathematics.png,
- menu/icons/mini/education_other_section.png,
- menu/icons/mini/education_sciences.png,
- menu/icons/mini/education_section.png,
- menu/icons/mini/education_sport_section.png,
- menu/icons/mini/education_tool.png,
- menu/icons/mini/electricity_section.png,
- menu/icons/mini/emulators_section.png,
- menu/icons/mini/file_tools_section.png,
- menu/icons/mini/file_transfer_section.png,
- menu/icons/mini/finances_section.png,
- menu/icons/mini/geosciences_section.png,
- menu/icons/mini/gnome_section.png,
- menu/icons/mini/graphics_section.png,
- menu/icons/mini/graphs_section.png,
- menu/icons/mini/hardware_configuration_section.png,
- menu/icons/mini/hardware_section.png,
- menu/icons/mini/image_processing_section.png,
- menu/icons/mini/instant_messaging_section.png,
- menu/icons/mini/internet_section.png,
- menu/icons/mini/interpreters_section.png,
- menu/icons/mini/irc_section.png, menu/icons/mini/kde_section.png,
- menu/icons/mini/mail_section.png, menu/icons/mini/mandrake.png,
- menu/icons/mini/mathematics_section.png,
- menu/icons/mini/monitoring_section.png,
- menu/icons/mini/more_applications_other_section.png,
- menu/icons/mini/more_applications_section.png,
- menu/icons/mini/multimedia_section.png,
- menu/icons/mini/networking_configuration_section.png,
- menu/icons/mini/networking_section.png,
- menu/icons/mini/networking_www_section.png,
- menu/icons/mini/news_section.png,
- menu/icons/mini/numerical_analysis_section.png,
- menu/icons/mini/office_accessories_section.png,
- menu/icons/mini/office_drawing_section.png,
- menu/icons/mini/office_section.png,
- menu/icons/mini/other_amusement.png,
- menu/icons/mini/other_archiving.png,
- menu/icons/mini/other_configuration.png,
- menu/icons/mini/other_networking.png,
- menu/icons/mini/other_sciences.png,
- menu/icons/mini/packaging_section.png,
- menu/icons/mini/parallel_computing_section.png,
- menu/icons/mini/pda_section.png,
- menu/icons/mini/physics_section.png,
- menu/icons/mini/presentation_section.png,
- menu/icons/mini/printing_section.png,
- menu/icons/mini/publishing_section.png,
- menu/icons/mini/puzzle_section.png,
- menu/icons/mini/remote_access_section.png,
- menu/icons/mini/robotics_section.png,
- menu/icons/mini/sciences_section.png,
- menu/icons/mini/shells_section.png,
- menu/icons/mini/sound_section.png,
- menu/icons/mini/sport_section.png,
- menu/icons/mini/spreadsheet_section.png,
- menu/icons/mini/strategy_section.png,
- menu/icons/mini/system_other_section.png,
- menu/icons/mini/system_section.png,
- menu/icons/mini/taskmanagement_section.png,
- menu/icons/mini/terminals_section.png,
- menu/icons/mini/text_tools_section.png,
- menu/icons/mini/timemanagement_section.png,
- menu/icons/mini/toys_section.png,
- menu/icons/mini/video_conferences_section.png,
- menu/icons/mini/video_section.png,
- menu/icons/mini/web_browser_section.png,
- menu/icons/mini/web_editors_section.png,
- menu/icons/mini/windowmanager_section.png,
- menu/icons/mini/wordprocessor_section.png,
- menu/icons/monitoring_section.png,
- menu/icons/more_applications_other_section.png,
- menu/icons/more_applications_section.png,
- menu/icons/multimedia_section.png,
- menu/icons/networking_configuration_section.png,
- menu/icons/networking_section.png,
- menu/icons/networking_www_section.png,
- menu/icons/news_section.png,
- menu/icons/numerical_analysis_section.png,
- menu/icons/office_accessories_section.png,
- menu/icons/office_drawing_section.png,
- menu/icons/office_section.png, menu/icons/other_amusement.png,
- menu/icons/other_archiving.png,
- menu/icons/other_configuration.png,
- menu/icons/other_networking.png, menu/icons/other_sciences.png,
- menu/icons/packaging_section.png,
- menu/icons/parallel_computing_section.png,
- menu/icons/pda_section.png, menu/icons/physics_section.png,
- menu/icons/presentation_section.png,
- menu/icons/printing_section.png,
- menu/icons/publishing_section.png, menu/icons/puzzle_section.png,
- menu/icons/remote_access_section.png,
- menu/icons/robotics_section.png, menu/icons/sciences_section.png,
- menu/icons/shells_section.png, menu/icons/sound_section.png,
- menu/icons/sport_section.png, menu/icons/spreadsheet_section.png,
- menu/icons/strategy_section.png,
- menu/icons/system_other_section.png,
- menu/icons/system_section.png,
- menu/icons/taskmanagement_section.png,
- menu/icons/terminals_section.png,
- menu/icons/text_tools_section.png,
- menu/icons/timemanagement_section.png,
- menu/icons/toys_section.png,
- menu/icons/video_conferences_section.png,
- menu/icons/video_section.png, menu/icons/web_browser_section.png,
- menu/icons/web_editors_section.png,
- menu/icons/windowmanager_section.png,
- menu/icons/wordprocessor_section.png, menu/menu,
- menu/menu-simplified, menu/translate_menus,
- menu/translate_menus-simplified: Move all menu informations
- (layout/icons) from menu to mandrake_desk package
-
-2004-09-29 09:51 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec, menu/mandrake_desk: Fix "Listen to Music
- Files" menu entry
-
-2004-09-29 08:08 David Baudens <baudens at mandriva.com>
+ Fix and update spec
- * mandrake_desk.spec: Update
+ Various fix for simplified menu (fix typos, icons, remove duplicate entries with kdebase, etc.)
-2004-09-29 08:08 David Baudens <baudens at mandriva.com>
+ Fix icon for howto (simplified menu)
- * menu/mandrake_desk: Add missing menu entry for french
- mandrakelinux documentation
+2002-02-12 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2004-09-29 07:25 David Baudens <baudens at mandriva.com>
+ Fix simplified menu
- * mandrake_desk.spec: Update
+2002-02-10 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2004-09-29 07:24 David Baudens <baudens at mandriva.com>
+ updated Basque file
- * menu/mandrake_desk: Fix import and sort your photos
+2002-01-29 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2004-09-10 06:48 David Baudens <baudens at mandriva.com>
+ Add menu entry for Mdk Eazel engine Fix menu entry for Simplified menu
- * mandrake_desk.spec, menu/mandrake_desk: Add Mandrakelinux
- documentation
+2002-01-28 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2004-09-09 10:35 David Baudens <baudens at mandriva.com>
+ Fix icons for GNOME Desktop
- * mandrake_desk.spec, menu/mandrake_desk: Remove all longtitle
+ Release 8.2-3mdk
-2004-09-09 10:27 Laurent Montel <lmontel at mandriva.com>
+ Release 8.2-2mdk
- * mandrake_desk.spec, menu/mandrake_desk: Update last changes
+2002-01-26 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2004-09-09 10:19 David Baudens <baudens at mandriva.com>
+ - Fix some menu entries - Use new default png icons when it is needed
- * menu/mandrake_desk: Remove non task oriented description for
- KPhone
+2002-01-24 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2004-09-07 08:40 Pablo Saratxaga <pablo at mandriva.com>
+ Fix path for images
- * man/it, man/it/chksession.8: Added Italian Man page
+2002-01-14 chmouel <chmouel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2004-09-01 06:31 Laurent Montel <lmontel at mandriva.com>
+ Remove space in name.
- * menu/mandrake_desk: Update menu Fix capitalization
+2002-01-11 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2004-08-31 07:38 Frederic Lepied <flepied at mandriva.com>
+ Resync with package Remove generated files Fix screensaver images
- * ChangeLog: Generated by cvs2cl the 31_Aug
+2001-12-04 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2004-08-31 07:37 Frederic Lepied <flepied at mandriva.com>
+ updated Arabic file
- * mandrake_desk.spec: 10.1-6mdk
+2001-11-21 tvignaud <tvignaud@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2004-08-31 07:36 Frederic Lepied <flepied at mandriva.com>
+ update
- * ChangeLog, bin/www-browser: first version
+2001-10-25 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2004-08-31 07:35 Frederic Lepied <flepied at mandriva.com>
+ updated Georgian file
- * Makefile: added standard rules to build packages
+2001-10-08 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2004-08-27 09:51 Frederic Crozat <fcrozat at mandriva.com>
+ updated Arabic file
- * mandrake_desk.spec, menu/mandrake_desk: Fix typo in gnome-cd
- entry
+2001-10-02 siegel <siegel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2004-08-16 02:18 Laurent Montel <lmontel at mandriva.com>
+ fixed URL
- * mandrake_desk.spec: Fix "Play Games" entry
+ fixed link for bug reports
-2004-08-16 02:12 Laurent Montel <lmontel at mandriva.com>
+2001-09-20 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * menu/mandrake_desk: Fix "Play Games" entry
+ updated Swedish and Dutch files
-2004-08-11 10:31 Frederic Crozat <fcrozat at mandriva.com>
+2001-09-20 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * mandrake_desk.spec, menu/mandrake_desk: - Add GNOME version of
- task oriented menu
- - Fix capitalisations in task oriented menu
+ Add support for simplified menu
-2004-08-05 09:21 David Baudens <baudens at mandriva.com>
+2001-09-20 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * menu/mandrake_desk: Fix typo
+ Clean cvs
-2004-08-05 07:24 David Baudens <baudens at mandriva.com>
+2001-09-19 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * mandrake_desk.spec: Update
+ Remove generated files, fix package generation add mdk-eazel-engine-capplet package
-2004-08-05 07:23 David Baudens <baudens at mandriva.com>
+2001-09-19 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * menu/mandrake_desk: Add "Make a phone call" (using kphone at
- present time)
+ Fix icons to allow clean display on a white background
-2004-08-05 06:41 David Baudens <baudens at mandriva.com>
+ Update spec file
- * menu/mandrake_desk: Update task oriented menu
+ Add gnome-mandrake-news.desktop gnome-mandrakenews.xpm
-2004-08-04 07:52 Pixel <pixel at mandriva.com>
+2001-09-18 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * mandrake_desk.spec: fix descriptions (use Mandrakelinux instead
- of simply Mandrake)
+ Remove some old faces (LN)
-2004-08-04 07:49 Pixel <pixel at mandriva.com>
+ Update spec
- * mandrake_desk.spec, sbin/chksession: add "chksession -L" used by
- DrakX to configure ~/.dmrc
+ Update spec
-2004-08-04 07:39 Pixel <pixel at mandriva.com>
+ mv man.png aman.png to display it by default in DrakX
- * sbin/chksession: - don't generate
- /etc/X11/dm/Sessions/Default.desktop (otherwise gdm gives 2
- "default" entries)
- - cleanup
+2001-09-18 fcrozat <fcrozat@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2004-03-02 08:43 Frederic Lepied <flepied at mandriva.com>
+ Use spec compliant desktop file
- * mandrake_desk.spec: 10.0-10mdk
+2001-09-18 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2004-03-02 08:42 Frederic Lepied <flepied at mandriva.com>
+ Never show Netscape on Desktop
- * sbin/chksession: don't pass /etc/X11/xdm/Xsession in Exec field
- for the KDE sessions
+ Sync
-2004-02-27 17:28 Frederic Lepied <flepied at mandriva.com>
+2001-09-17 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * mandrake_desk.spec: call fndSession in %post
+ *** empty log message ***
-2004-02-27 17:26 Frederic Lepied <flepied at mandriva.com>
+ Add icons
- * sbin/fndSession: use simply chksession -k for kdm
+ Add gnome-mandrake-store.desktop
-2004-02-27 17:24 Frederic Lepied <flepied at mandriva.com>
+ *** empty log message ***
- * sbin/chksession: do not generate Default session for kdm
- remove files before generating the sessions
+ Remove hard coded icon PATH
-2004-02-27 17:00 Frederic Lepied <flepied at mandriva.com>
+2001-09-17 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * mandrake_desk.spec: 10.0-9mdk
+ Fix makefile error
-2004-02-27 16:59 Frederic Lepied <flepied at mandriva.com>
+ *** empty log message ***
- * Makefile: use rpm -ta to build an rpm
+2001-09-17 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2004-02-27 16:56 Frederic Lepied <flepied at mandriva.com>
+ Update mandrake.links.sh
- * sbin/chksession: fix KDE sessions
+ Update mandrake.links.sh
-2004-02-27 16:20 Laurent Montel <lmontel at mandriva.com>
+2001-09-14 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * mandrake_desk.spec: Update
+ Add gnome-mandrakestore.xpm and updaet gnome-mandrakecampus.xpm and gnome-mandrakeexpert.xpm
-2004-02-27 08:44 Laurent Montel <lmontel at mandriva.com>
+2001-09-13 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * menu/mandrake_desk: s/ORC/OCR
+ updated Irish file
-2004-02-24 10:14 Laurent Montel <lmontel at mandriva.com>
+2001-09-13 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * mandrake_desk.spec: Update
+ Update spec
-2004-02-24 10:09 David Baudens <baudens at mandriva.com>
+ Re-add mandrakecampus & mandrakeexpert icons
- * mandrake_desk.spec: Update
+ Update Makefile
-2004-02-24 10:05 Laurent Montel <lmontel at mandriva.com>
+ Add mandrake-store icons
- * menu/mandrake_desk: Fix icons
+ Add new xkill icon
-2004-02-05 14:54 David Baudens <baudens at mandriva.com>
+ Remove old icons
- * menu/mandrake_desk: Fix simplified menu
+ Update spec
-2004-02-05 13:49 David Baudens <baudens at mandriva.com>
+ *** empty log message ***
- * menu/mandrake_desk: Fix title of "Organize your time" in
- simplified menu
+2001-09-12 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2004-02-05 13:26 David Baudens <baudens at mandriva.com>
+ Remove gnome-software-manager from Desktop
- * menu/mandrake_desk: Fix typos
+ Remove xpm faces
-2004-01-29 17:21 David Baudens <baudens at mandriva.com>
+ Remove old backgrounds
- * mandrake_desk.spec: Update
+ Remove blue frame
-2004-01-29 16:29 David Baudens <baudens at mandriva.com>
+2001-09-06 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * mandrake_desk.spec: Update
+ updated Irish file
-2004-01-29 16:29 David Baudens <baudens at mandriva.com>
+2001-09-04 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * mandrake_desk.spec: Update
+ Update Makefile, remove login/loging100.png and krozat/config.cache
-2004-01-29 16:27 David Baudens <baudens at mandriva.com>
+ Update spec
- * icons: Remove old images
+ Remove all files from Special directory (which is no longer needed)
-2004-01-29 16:22 David Baudens <baudens at mandriva.com>
+ Remove some old images
- * gnome: Remove old files
+ Remove a lot of old icons
-2004-01-29 16:11 David Baudens <baudens at mandriva.com>
+ *** empty log message ***
- * backgrounds/default-9.1.png, backgrounds/default-root-9.1.png,
- backgrounds/default-root.png, backgrounds/default.png,
- backgrounds/discovery-1280x1024.png,
- backgrounds/discovery-root-1280x1024.png,
- backgrounds/discovery-root.png, backgrounds/discovery.png,
- backgrounds/download-1280x1024.png,
- backgrounds/download-root-1280x1024.png,
- backgrounds/download-root.png, backgrounds/download.png,
- backgrounds/pwp-ps-1280x1024.png,
- backgrounds/pwp-ps-root-1280x1024.png,
- backgrounds/pwp-ps-root.png, backgrounds/pwp-ps.png: Remove old
- images
+ Update spec
-2004-01-19 15:39 Laurent Montel <lmontel at mandriva.com>
+2001-09-03 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * menu/mandrake_desk: Add "kontact" entry
+ Forgot to update
-2004-01-13 17:43 Laurent Montel <lmontel at mandriva.com>
+ Fix autostart
- * mandrake_desk.spec: Update
+2001-09-03 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2004-01-13 17:29 Laurent Montel <lmontel at mandriva.com>
+ added French man page to the spec file
- * menu/mandrake_desk: Fix drakbackup menu entry
+ Added French man page, moved English page to its own directory
-2004-01-13 16:48 Laurent Montel <lmontel at mandriva.com>
+2001-09-01 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * menu/mandrake_desk: Update new simplified menu
+ Autostart
-2004-01-13 13:07 Laurent Montel <lmontel at mandriva.com>
+ Autostart krootwarning
- * menu/mandrake_desk-9.2: Save old version
+2001-08-27 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2003-09-10 15:11 Guillaume Cottenceau
+ Update spec
- * Makefile, backgrounds/xfdrake-test-card.jpg,
- backgrounds/xfdrake-test-card.png, mandrake_desk.spec:
- xfdrake-test-card needs to be in .png format since we don't
- have have the jpeg pixbug loader during install
+ Update spec
-2003-09-10 15:09 David Baudens <baudens at mandriva.com>
+ Update spec
- * mandrake_desk.spec, menu/mandrake_desk: Update
+2001-08-25 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2003-09-06 13:29 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+ Now krootwarning is xinerama compliante
- * README: TYPO fix
+2001-08-24 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2003-09-05 15:53 David Baudens <baudens at mandriva.com>
+ Add some MandrakeSoft employees :o)
- * menu/mandrake_desk: Update
+2001-08-24 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2003-09-01 14:40 David Baudens <baudens at mandriva.com>
+ Remove
- * mandrake_desk.spec, menu/mandrake_desk: Remove Record sound entry
+2001-08-24 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2003-08-28 20:33 David Baudens <baudens at mandriva.com>
+ Update spec file
- * mandrake_desk.spec, menu/mandrake_desk: Update
+2001-08-24 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2003-08-28 17:23 David Baudens <baudens at mandriva.com>
+ Remove
- * menu/mandrake_desk: Update
+2001-08-24 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2003-08-28 15:54 David Baudens <baudens at mandriva.com>
+ Final primary Krozat commit (yes, Chef, your are really honor
- * menu/mandrake_desk: Update
+ An other part in our Chef honoring
-2003-08-28 09:54 David Baudens <baudens at mandriva.com>
+ A new part of Krozat (in honour of our dear Chef ;)
- * menu/mandrake_desk: Update
+ Add krozat directory (Mandrake Linux screensaver)
-2003-08-27 17:15 David Baudens <baudens at mandriva.com>
+2001-08-22 lmontel <lmontel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * menu/mandrake_desk: Fix kmix entry
+ Not necessary in this directory
-2003-08-27 16:49 David Baudens <baudens at mandriva.com>
+2001-08-21 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * menu/mandrake_desk: Fix bad end of lines
+ updated Afrikaans strings
-2003-08-27 16:23 David Baudens <baudens at mandriva.com>
+2001-08-15 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * menu/mandrake_desk: Begin to update
+ updated Latvian file
-2003-08-27 15:15 Frederic Crozat <fcrozat at mandriva.com>
+2001-08-13 chmouel <chmouel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * mandrake_desk.spec, sbin/fndSession: Fix bug 4572 (bad path for
- gdm session in fndSession)
+ Fix path of kdmrc.
-2003-08-26 16:21 David Baudens <baudens at mandriva.com>
+ Generated by cvs2cl the 13_Aug
- * mandrake_desk.spec: Update
+2001-08-12 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2003-08-26 16:13 Frederic Crozat <fcrozat at mandriva.com>
+ updated Hungarian file
- * mandrake_desk.spec: Release 9.2-3mdk
+2001-08-08 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2003-08-26 16:09 Frederic Crozat <fcrozat at mandriva.com>
+ Initial revision
- * sbin/chksession: Add default session for GDM
+ Add krootwarning (KDE)
-2003-08-26 15:46 Frederic Lepied <flepied at mandriva.com>
+2001-08-07 vincent <vincent@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * sbin/chksession: Corrections by Bernard Lang
+ - Move face in /usr/share/mdk/faces
-2003-08-22 13:02 David Baudens <baudens at mandriva.com>
+2001-07-31 chmouel <chmouel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * mandrake_desk.spec: Update
+ Ignore backup files. Cleanup codes.
-2003-08-22 12:04 David Baudens <baudens at mandriva.com>
+2001-07-31 flepied <flepied@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * backgrounds/default-9.1.png, backgrounds/default-root-9.1.png,
- backgrounds/discovery-1280x1024.png,
- backgrounds/discovery-root-1280x1024.png,
- backgrounds/discovery-root.png, backgrounds/discovery.png,
- backgrounds/download-1280x1024.png,
- backgrounds/download-root-1280x1024.png,
- backgrounds/download-root.png, backgrounds/download.png,
- backgrounds/pwp-ps-1280x1024.png,
- backgrounds/pwp-ps-root-1280x1024.png,
- backgrounds/pwp-ps-root.png, backgrounds/pwp-ps.png: New images
- for 9.2
+ Generated by cvs2cl the 31_Jul
-2003-08-22 07:25 Frederic Lepied <flepied at mandriva.com>
+ no need to run autoconf!
- * man/C/chksession.8: corrections by Bernard Lang
+ Generated by cvs2cl the 31_Jul
-2003-07-30 15:31 David Baudens <baudens at mandriva.com>
+ 8.1-1mdk
- * mandrake_desk.spec: Fix %post (thanks to Pixel)
+ put back my change to the Xsession path that was reverted by the resync.
-2003-06-13 16:52 Frederic Crozat <fcrozat at mandriva.com>
+ added rules to build test and distrib rpm.
- * mandrake_desk.spec, sbin/chksession: gdm session format has
- changed, fix chksession
+ resync with 8.0-12mdk
-2003-06-04 10:09 David Baudens <baudens at mandriva.com>
+ resync with 8.0-12mdk
- * mandrake_desk.spec: Add version in %changelog
+ resync with 8.0-12mdk
-2003-06-04 10:08 David Baudens <baudens at mandriva.com>
+ Initial revision
- * mandrake_desk.spec: Create a link to allow users to access to
- Mandrake's backgrounds from KDE
+2001-07-26 flepied <flepied@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2003-05-08 09:42 Pablo Saratxaga <pablo at mandriva.com>
+ use /etc/X11/xdm/Xsession instead of /etc/X11/Xsession for gdm sessions.
- * man/uk, man/uk/chksession.8: Added Ukrainian file
+2001-07-23 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2003-03-14 11:37 David Baudens <baudens at mandriva.com>
+ updated Hungarian and slovak files
- * mandrake_desk.spec: Update
+2001-07-12 tvignaud <tvignaud@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2003-03-14 11:36 David Baudens <baudens at mandriva.com>
+ 99% translated (1 missed)
- * menu/mandrake_desk: Update for 9.1
+2001-07-12 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2003-03-12 14:46 David Baudens <baudens at mandriva.com>
+ updated Greek file
- * icons/mini/mandrake-club.png, mandrake_desk.spec: Update
+ updated Tajik file
-2003-03-12 13:59 David Baudens <baudens at mandriva.com>
+2001-07-09 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * icons/mini/mandrake-store.xpm: Remove old icon
+ Added Tajik file
-2003-03-12 13:53 David Baudens <baudens at mandriva.com>
+2001-06-25 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * icons/cd-mdk.png, icons/documentation-mdk.png,
- icons/floppy-mdk.png, icons/home-mdk.png,
- icons/internet-configuration-mdk.png, icons/internet-mdk.png,
- icons/large/cd-mdk.png, icons/large/documentation-mdk.png,
- icons/large/floppy-mdk.png, icons/large/home-mdk.png,
- icons/large/internet-configuration-mdk.png,
- icons/large/internet-mdk.png, icons/large/mandrake-club.png,
- icons/large/mandrake-expert-mdk.png,
- icons/large/mandrake-store-mdk.png, icons/large/mcc-mdk.png,
- icons/large/zip-mdk.png, icons/mandrake-club.png,
- icons/mandrake-expert-mdk.png, icons/mandrake-store-mdk.png,
- icons/mcc-mdk.png, icons/mini/cd-mdk.png,
- icons/mini/documentation-mdk.png, icons/mini/floppy-mdk.png,
- icons/mini/home-mdk.png,
- icons/mini/internet-configuration-mdk.png,
- icons/mini/internet-mdk.png, icons/mini/mandrake-expert-mdk.png,
- icons/mini/mandrake-store-mdk.png, icons/mini/mcc-mdk.png,
- icons/mini/xkill-mdk.xpm, icons/mini/zip-mdk.png,
- icons/zip-mdk.png: Update icons
- Remove one old obsolete thing
+ updated basque and indonesian files
-2003-02-14 10:43 David Baudens <baudens at mandriva.com>
+2001-06-18 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * backgrounds/default-root.png, backgrounds/default.png,
- mandrake_desk.spec: New default bacground for MDK 9.1
+ Added Bosnian file
-2003-01-31 12:07 Pablo Saratxaga <pablo at mandriva.com>
+2001-06-13 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * man/et, man/et/chksession.8: Added Estonian man page
+ updated Chinese file
-2002-09-06 13:16 David Baudens <baudens at mandriva.com>
+2001-06-06 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * icons/large/mandrake-club.png, icons/mandrake-club.png,
- icons/mini/mandrake-club.png, mandrake_desk.spec: Update spec
- Add mandrake-club icon
+ updated Chinese and Russian files
-2002-09-02 11:36 Laurent Montel <lmontel at mandriva.com>
+2001-05-28 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * mandrake_desk.spec: Update spec file
+ updated Esperanto file
-2002-09-02 11:25 Laurent Montel <lmontel at mandriva.com>
+2001-05-20 fabman <fabman@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * menu/mandrake_desk: Fix drakconf menu entry
+ updated spanish .po file
-2002-08-29 16:24 David Baudens <baudens at mandriva.com>
+2001-05-15 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * mandrake_desk.spec: Update
+ updated vietnamese file
-2002-08-29 16:22 David Baudens <baudens at mandriva.com>
+2001-05-06 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * faces/ic-tux1.png, faces/ic-tux2.png, faces/ic-tux3.png,
- faces/ic-tux4.png, faces/ic-tux5.png, faces/ic-tuxgeneric.png:
- New tux family
+ Updated Chinese file
-2002-08-29 16:21 David Baudens <baudens at mandriva.com>
+2001-04-25 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * faces/ic-util-tux1.png, faces/ic-util-tux2.png,
- faces/ic-util-tux2bis.png, faces/ic-util-tux3.png,
- faces/ic-util-tux4.png, faces/ic-util-tuxgeneric.png: Remove
+ Updated Japanese, Brazilian and Turkish files
-2002-08-29 15:38 David Baudens <baudens at mandriva.com>
+2001-04-16 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * mandrake_desk.spec: Update
+ Updated slovanian file
-2002-08-29 09:58 David Baudens <baudens at mandriva.com>
+2001-04-13 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * mandrake_desk.spec: Update
+ Updated Polish file
-2002-08-29 09:58 David Baudens <baudens at mandriva.com>
+2001-04-12 daouda <daouda@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * faces/ic-util-tux1.png, faces/ic-util-tux2.png,
- faces/ic-util-tux2bis.png, faces/ic-util-tux3.png,
- faces/ic-util-tux4.png, faces/ic-util-tuxgeneric.png: Tux family
- is back
+ cleanups
-2002-08-27 13:32 David Baudens <baudens at mandriva.com>
+ remove kdelnk dir
- * mandrake_desk.spec: Update
+ macros bis
-2002-08-27 13:29 David Baudens <baudens at mandriva.com>
+ macros to ease rpm build from cvs
- * mandrake_desk.spec: Update
+ fix typo in var RPM
-2002-08-26 15:29 Pablo Saratxaga <pablo at mandriva.com>
+ add define tags
- * man/cs, man/cs/chksession.8, man/ru, man/ru/chksession.8: Added
- Czech and Russian man pages
+ define RPM var
-2002-08-23 14:49 David Baudens <baudens at mandriva.com>
+ commented kdelnk related stuffs
- * mandrake_desk.spec: Update
+ add eazel themes + gtkrc for rpm build
-2002-08-23 14:13 David Baudens <baudens at mandriva.com>
+ new gtkrc :resync with spec
- * backgrounds/xfdrake-test-card.jpg, mandrake_desk.spec: Update
+ commit
-2002-08-22 15:16 David Baudens <baudens at mandriva.com>
+2001-04-12 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * mandrake_desk.spec: Update
+ *** empty log message ***
-2002-08-22 15:12 David Baudens <baudens at mandriva.com>
+ *** empty log message ***
- * backgrounds/xfdrake-test-card.jpg: Update for 9.0
+ Remove uneeded KDE files
-2002-08-22 09:11 David Baudens <baudens at mandriva.com>
+ Remove uneeded KDE files (provided by kdebase)
- * mandrake_desk.spec: Update
+2001-04-12 daouda <daouda@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2002-08-22 09:11 David Baudens <baudens at mandriva.com>
+ resync specs with cvs
- * mandrake_desk.spec: Update
+2001-04-11 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2002-08-22 09:10 David Baudens <baudens at mandriva.com>
+ Updated Azeri file
- * mandrake_desk.spec: Update
+ Updated azeri file
-2002-08-02 12:04 David Baudens <baudens at mandriva.com>
+ Updated Italian file
- * mandrake_desk.spec: Update
+2001-04-09 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2002-08-02 12:03 David Baudens <baudens at mandriva.com>
+ Updated Danish strings
- * mandrake_desk.spec: Update
+2001-04-05 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2002-08-01 15:57 David Baudens <baudens at mandriva.com>
+ Updated Croatian file
- * mandrake_desk.spec: Update
+2001-04-05 kjx <kjx@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2002-08-01 10:17 David Baudens <baudens at mandriva.com>
+ translate
- * icons/gnome.xpm, icons/kde.xpm: Add icons
+2001-04-02 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2002-08-01 10:12 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
+ Updated Catalan and Portuguese files
- * TRANSLATORS: polish translator added
+ Updated hungarian file
-2002-07-31 16:06 David Baudens <baudens at mandriva.com>
+2001-04-01 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * mandrake_desk.spec: Update
+ Updated Czech and Swedish files
-2002-07-31 15:54 David Baudens <baudens at mandriva.com>
+ Updated Estonian file; added Vietnamese file
- * mandrake_desk.spec: Update
+2001-03-31 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2002-07-31 15:50 David Baudens <baudens at mandriva.com>
+ Updated Finnish and Catalan files fixed the name of the pot file (so the links on the translations web page aren't broken)
- * kde, kde/kdm-mdk-logo.png: Add kdm logo
+2001-03-30 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2002-07-31 15:16 David Baudens <baudens at mandriva.com>
+ Updated Azeri, Croatian, Korean, Norwegian and Albanian files
- * mandrake_desk.spec: Update
+2001-03-29 siegel <siegel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2002-07-31 15:12 David Baudens <baudens at mandriva.com>
+ new german version
- * backgrounds/flower.jpg, backgrounds/nature.jpg: Add new
- backgrounds
+2001-03-29 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2002-07-31 14:46 David Baudens <baudens at mandriva.com>
+ Addition of old files (to keep useful i18n strings in case they are needed in the future)
- * mandrake_desk.spec: Update
+ Made Bulgarian file unattributed (email of mantainer bounces)
-2002-07-31 14:02 David Baudens <baudens at mandriva.com>
+ Updated Walloon file
- * xml-i18n-extract.in, xml-i18n-merge.in, xml-i18n-update.in:
- Remove old xml-i18n stuff
+ Now uses xml-i18n-tools to handle i18n
-2002-07-31 14:01 David Baudens <baudens at mandriva.com>
+2001-03-24 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * po: Remove old po
+ Updated Korean strings
-2002-07-31 13:58 David Baudens <baudens at mandriva.com>
+2001-03-21 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * Makefile, mandrake_desk.spec: Update
+ Updated Portuguese strings
-2002-07-31 13:20 David Baudens <baudens at mandriva.com>
+2001-03-19 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * mandrake_desk.spec: Update
+ updated Galician strings
-2002-07-31 13:13 David Baudens <baudens at mandriva.com>
+2001-03-17 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * bin/DrakWM, bin/createbackground.sh, mandrake_desk.spec: Update
+ updated the Portuguese strings
-2002-07-31 12:55 David Baudens <baudens at mandriva.com>
+2001-03-06 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * backgrounds/XFdrake-test-card.jpg,
- backgrounds/xfdrake-test-card.jpg: Fix typo
+ updated Indonesian strings
-2002-07-31 12:53 David Baudens <baudens at mandriva.com>
+2001-03-02 chmouel <chmouel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * backgrounds/XFdrake-image-test.jpg,
- backgrounds/XFdrake-test-card.jpg: Rename xfdrake test card
+ Call xvt.
-2002-07-31 12:49 David Baudens <baudens at mandriva.com>
+2001-01-30 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * backgrounds/default-root.png: Add default background for root
+ updated Estonian strings
-2002-07-31 12:42 David Baudens <baudens at mandriva.com>
+2001-01-26 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * backgrounds/default.png: New default background
+ updated Esperanto strings
-2002-07-31 12:41 David Baudens <baudens at mandriva.com>
+2001-01-07 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * ChangeLog, README.CVS, mandrake_desk.spec: Update
+ updated Basque strings
-2002-07-31 12:26 David Baudens <baudens at mandriva.com>
+2000-12-29 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * icons/cd-mount-mdk.png, icons/floppy-mount-mdk.png,
- icons/zip-mount-mdk.png: Remove images
+ Converted tyo utf-8 and fixed Chinese locales naming
-2002-07-31 12:24 David Baudens <baudens at mandriva.com>
+ Converted files to UTF-8
- * icons/large/cd-mdk.png, icons/large/documentation-mdk.png,
- icons/large/floppy-mdk.png, icons/large/home-mdk.png,
- icons/large/internet-configuration-mdk.png,
- icons/large/internet-mdk.png,
- icons/large/mandrake-expert-mdk.png,
- icons/large/mandrake-online-mdk.png,
- icons/large/mandrake-store-mdk.png,
- icons/large/mandrake-store.xpm, icons/large/mandrakecampus.xpm,
- icons/large/mandrakecdcom.png, icons/large/mandrakeexpert.xpm,
- icons/large/mcc-mdk.png, icons/large/xkill-mdk.xpm,
- icons/large/zip-mdk.png, icons/mini/cd-mdk.png,
- icons/mini/documentation-mdk.png, icons/mini/floppy-mdk.png,
- icons/mini/home-mdk.png,
- icons/mini/internet-configuration-mdk.png,
- icons/mini/internet-mdk.png, icons/mini/mandrake-expert-mdk.png,
- icons/mini/mandrake-online-mdk.png,
- icons/mini/mandrake-store-mdk.png, icons/mini/mcc-mdk.png,
- icons/mini/zip-mdk.png: Add/remove images
+2000-12-11 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2002-07-31 12:14 David Baudens <baudens at mandriva.com>
+ updated Croatian strings
- * icons/cd-mdk.png, icons/cd-mount-mdk.png,
- icons/documentation-mdk.png, icons/floppy-mdk.png,
- icons/floppy-mount-mdk.png, icons/home-mdk.png,
- icons/internet-configuration-mdk.png, icons/internet-mdk.png,
- icons/mandrake-expert-mdk.png, icons/mandrake-online-mdk.png,
- icons/mandrake-store-mdk.png, icons/mandrakecdcom.png,
- icons/mcc-mdk.png, icons/xkill-mdk.png, icons/zip-mdk.png,
- icons/zip-mount-mdk.png: Add/remove images
+2000-12-05 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2002-07-31 12:07 David Baudens <baudens at mandriva.com>
+ small fix for Russian string
- * icons/gimp.xpm, icons/gnome.xpm, icons/kde.xpm,
- icons/mandrakedoc.png, icons/mandrakeexpert.png,
- icons/mandrakenews.png, icons/mandrakeonline.png,
- icons/mandrakestore.png: Remove
+2000-11-24 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2002-07-31 11:19 David Baudens <baudens at mandriva.com>
+ updated Swedish files
- * gtkrc, krootwarning/AUTHORS, krootwarning/COPYING,
- krootwarning/ChangeLog, krootwarning/INSTALL,
- krootwarning/Makefile.am, krootwarning/Makefile.dist,
- krootwarning/README, krootwarning/TODO, krootwarning/admin,
- krootwarning/configure.files, krootwarning/configure.in,
- krootwarning/configure.in.in, krootwarning/doc,
- krootwarning/krootwarning, krootwarning/krootwarning-api,
- krootwarning/krootwarning.kdevprj,
- krootwarning/krootwarning.kdevses, krootwarning/krootwarning.lsm,
- krootwarning/messages.log, krootwarning/po, krootwarning/subdirs,
- krozat: Remove krootwarning & krozat stuff. Moved in their own
- modules
+2000-11-17 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2002-07-31 09:17 David Baudens <baudens at mandriva.com>
+ Added Georgian strings
- * eazel-engine: Remove gtk-theme (moved in its own module)
+2000-10-28 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2002-07-31 09:14 David Baudens <baudens at mandriva.com>
+ updated Brazilian strings
- * backgrounds/ICE-1024.png, backgrounds/ICE-1280.png,
- backgrounds/ICE-1600.png, backgrounds/ICE-640.png,
- backgrounds/ICE-800.png: Remove old badgrouds
+2000-10-26 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2002-07-31 09:03 Frederic Crozat <fcrozat at mandriva.com>
+ updated Ukrainian strings
- * mandrake_desk.spec, menu/mandrake_desk: -Fix GNOME entry for Crux
- theme applet
- - Fix menu entries for simplified menu
+2000-10-18 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2002-07-30 08:01 David Baudens <baudens at mandriva.com>
+ updated Turkish files
- * mandrake_desk.spec: Update spec
+2000-10-17 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2002-07-30 07:59 David Baudens <baudens at mandriva.com>
+ updated Azeri strings
- * mandrake_desk.spec: Upload Laurent Montel's spec file
+2000-10-16 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2002-07-30 07:52 David Baudens <baudens at mandriva.com>
+ updated Brazilian strings
- * faces/default.png: New defalt user image
+2000-09-26 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2002-07-23 12:52 David Baudens <baudens at mandriva.com>
+ updated Slovak strings
- * mandrake_desk.spec: Update spec
+2000-09-19 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2002-07-18 15:56 David Baudens <baudens at mandriva.com>
+ updated Azeri strings
- * faces, faces/default.png, faces/ic-bird.png, faces/ic-bird2.png,
- faces/ic-cat.png, faces/ic-dog.png, faces/ic-fish.png,
- faces/ic-flower1.png, faces/ic-flower2.png, faces/ic-flower3.png,
- faces/ic-flower4.png, faces/ic-flower5.png, faces/ic-nature1.png,
- faces/ic-nature2.png, faces/ic-nature3.png, faces/ic-nature4.png,
- faces/ic-nature5.png: Add new users images for 9.0 beta 1
+2000-09-18 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2002-07-18 15:52 David Baudens <baudens at mandriva.com>
+ updated Polish strings
- * faces: Remove old users icons
+2000-09-17 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2002-06-28 09:28 Frederic Crozat <fcrozat at mandriva.com>
+ updated Slovenian strings
- * menu/mandrake_desk: Png icons
+2000-09-13 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2002-06-28 08:33 Frederic Crozat <fcrozat at mandriva.com>
+ updated Afrikaans strings
- * menu/mandrake_desk: GNOME 2 adaption (by Goetz Waschk)
+ corrected email address
-2002-05-28 07:51 Laurent Montel <lmontel at mandriva.com>
+ Added Azeri strings
- * krootwarning/admin/ChangeLog, krootwarning/admin/Makefile.common,
- krootwarning/admin/acinclude.m4.in, krootwarning/admin/am_edit,
- krootwarning/admin/conf.change.pl,
- krootwarning/admin/config.guess, krootwarning/admin/config.pl,
- krootwarning/admin/config.sub,
- krootwarning/admin/configure.in.min,
- krootwarning/admin/debianrules, krootwarning/admin/depcomp,
- krootwarning/admin/libtool.m4.in, krootwarning/admin/ltconfig,
- krootwarning/admin/ltmain.sh, krootwarning/admin/missing,
- krootwarning/admin/mkinstalldirs,
- krootwarning/admin/old-libtool.m4.in,
- krootwarning/admin/old-ltcf-c.sh,
- krootwarning/admin/old-ltcf-cxx.sh,
- krootwarning/admin/old-ltcf-gcj.sh,
- krootwarning/admin/old-ltconfig,
- krootwarning/admin/old-ltmain.sh, krootwarning/admin/ylwrap,
- krozat/admin/ChangeLog, krozat/admin/Makefile.common,
- krozat/admin/acinclude.m4.in, krozat/admin/am_edit,
- krozat/admin/conf.change.pl, krozat/admin/config.guess,
- krozat/admin/config.pl, krozat/admin/config.sub,
- krozat/admin/configure.in.min, krozat/admin/debianrules,
- krozat/admin/depcomp, krozat/admin/libtool.m4.in,
- krozat/admin/ltconfig, krozat/admin/ltmain.sh,
- krozat/admin/missing, krozat/admin/mkinstalldirs,
- krozat/admin/old-libtool.m4.in, krozat/admin/old-ltcf-c.sh,
- krozat/admin/old-ltcf-cxx.sh, krozat/admin/old-ltcf-gcj.sh,
- krozat/admin/old-ltconfig, krozat/admin/old-ltmain.sh,
- krozat/admin/ylwrap: Fix compile with qt3
+2000-09-10 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2002-03-15 14:10 Frederic Crozat <fcrozat at mandriva.com>
+ updated Russian strings
- * gtkrc, mandrake_desk.spec: Fix default gtk theme
+2000-09-09 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2002-03-07 14:50 Frederic Crozat <fcrozat at mandriva.com>
+ updated Polish strings
- * faces/root, mandrake_desk.spec: fix root icons (remove it)
+2000-09-05 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2002-03-07 14:32 David Baudens <baudens at mandriva.com>
+ updated Polish strings
- * faces/aman.png, faces/woman.png: Add new faces
+2000-08-31 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2002-03-07 14:21 Frederic Crozat <fcrozat at mandriva.com>
+ *** empty log message ***
- * mandrake_desk.spec: Release 8.2-12mdk
+ *** empty log message ***
-2002-03-05 18:38 David Baudens <baudens at mandriva.com>
+ Re add a BuildRoot :(
- * faces/avn-rat.png, faces/cinderella.png, faces/dadou-fish.png,
- faces/dear-chief-moon.png, faces/dog.png, faces/donuts.png,
- faces/fish.png, faces/gwegwe-rat.png, faces/lmonspread-dog.png,
- faces/ln-cendrillon.png, faces/moon.png, faces/mouse.png,
- faces/mouse2.png, faces/renaud-sun.png, faces/roller.png,
- faces/sun.png, faces/vince-donut.png, faces/warly-roller.png,
- faces/woman.png: *** empty log message ***
+ Update mandrake_desk.spec
-2002-03-05 18:23 David Baudens <baudens at mandriva.com>
+ Update mandrake_desk.spec
- * faces/aman.png: Remove obsoletes faces
+ Update Changelog
-2002-03-05 17:42 David Baudens <baudens at mandriva.com>
+2000-08-31 chmouel <chmouel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * faces/user-curly-mdk.png, faces/user-girl-mdk.png,
- faces/user-hat-mdk.png, faces/utildame.png, faces/utilmons.png:
- Remove old faces
+ Avoid opendir use csh internal globing...
-2002-03-05 17:35 David Baudens <baudens at mandriva.com>
+2000-08-30 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * faces/tux.png, faces/tuxbaby.png, faces/tuxbox.png,
- faces/tuxcoocker.png, faces/tuxdad.png, faces/tuxgirl.png,
- faces/tuxhead1.png, faces/tuxhead2.png, faces/tuxmam.png,
- faces/tuxmecano.png: Remove obsolete faces
+ updated Czech strings
-2002-03-01 15:35 David Baudens <baudens at mandriva.com>
+2000-08-24 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * menu/mandrake_desk: *** empty log message ***
+ Update Spec
-2002-02-28 03:19 David Baudens <baudens at mandriva.com>
+ Update Makefile (for .desktop)
- * icons/large/mandrakecdcom.png, icons/mandrakecdcom.png,
- mandrake_desk.spec: *** empty log message ***
+ Update Spec
-2002-02-26 15:28 Frederic Crozat <fcrozat at mandriva.com>
+ Update Changelog
- * gtkrc, mandrake_desk.spec: Fix default GTK theme
+ Remove old .desktop
-2002-02-26 13:43 Frederic Crozat <fcrozat at mandriva.com>
+ *** empty log message ***
- * gnome/gnome-mandrake-control-center.desktop, mandrake_desk.spec:
- Change Mandrake Control Center to Control Center in GNOME
+ Update Spec and Makefile
-2002-02-26 02:20 David Baudens <baudens at mandriva.com>
+ Add a "root" link to make GDM happy
- * mandrake_desk.spec: *** empty log message ***
+2000-08-23 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2002-02-26 02:05 David Baudens <baudens at mandriva.com>
+ Update Makefile and spec file
- * mandrake_desk.spec: *** empty log message ***
+ Add link default.png and root.png to make KDM happy
-2002-02-26 01:54 David Baudens <baudens at mandriva.com>
+ Removed unneeded files
- * Makefile: Install png icons instead xpm in
- /usr/share/pixmaps/mdk/
+ Convert faces/*.xpm to faces/*.png
-2002-02-26 01:49 David Baudens <baudens at mandriva.com>
+ *** empty log message ***
- * mandrake_desk.spec: *** empty log message ***
+2000-08-22 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2002-02-26 01:36 David Baudens <baudens at mandriva.com>
+ Re fix spec
- * icons/mandrake-store.xpm, icons/mandrakecampus.xpm,
- icons/mandrakedoc.png, icons/mandrakeexpert.png,
- icons/mandrakeexpert.xpm, icons/mandrakenews.png,
- icons/mandrakeonline.png, icons/mandrakestore.png,
- icons/xkill-mdk.png, icons/xkill-mdk.xpm: *** empty log message
- ***
+ Fix Makefile and spec
-2002-02-25 16:09 Frederic Crozat <fcrozat at mandriva.com>
+ *** empty log message ***
- * ChangeLog: Generated by cvs2cl the 25_f�v
+ Move users icons in /usr/share/faces
-2002-02-25 16:09 Frederic Crozat <fcrozat at mandriva.com>
+ *** empty log message ***
- * gtkrc, mandrake_desk.spec: Fix default mdk theme with evolution
+ *** empty log message ***
-2002-02-22 20:13 Pablo Saratxaga <pablo at mandriva.com>
+2000-08-19 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * man/eu, man/eu/chksession.8: Added Basque file
+ Added Belarussian strings
-2002-02-20 18:20 Frederic Crozat <fcrozat at mandriva.com>
+2000-08-17 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * Makefile: Fix tagging
+ updated Estonian strings
-2002-02-20 18:20 Frederic Crozat <fcrozat at mandriva.com>
+2000-08-15 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * ChangeLog: Generated by cvs2cl the 20_f�v
+ updated Ukrainian strings
-2002-02-20 18:12 Frederic Crozat <fcrozat at mandriva.com>
+2000-08-14 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * mandrake_desk.spec: Really fix mdk-eazel-engine-capplet location
+ updated Chinese strings
-2002-02-20 18:12 Frederic Crozat <fcrozat at mandriva.com>
+ updated Bulgarian strings
- * ChangeLog: Generated by cvs2cl the 20_f�v
+2000-08-14 siegel <siegel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2002-02-20 18:06 Frederic Crozat <fcrozat at mandriva.com>
+ *** empty log message ***
- * Makefile, mandrake_desk.spec: Fix location of mdk-eazel-engine
- capplet
+2000-08-13 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2002-02-20 18:06 Frederic Crozat <fcrozat at mandriva.com>
+ updated Greek strings
- * ChangeLog: Generated by cvs2cl the 20_f�v
+2000-08-12 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2002-02-20 13:36 Frederic Crozat <fcrozat at mandriva.com>
+ updated Serbian strings
- * mandrake_desk.spec: Fix build
+ updated Catalan strings
-2002-02-20 13:31 Frederic Crozat <fcrozat at mandriva.com>
+ fixed an email address
- * mandrake_desk.spec, menu/mandrake_desk: Fix english strings and
- makefile
+2000-08-10 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2002-02-20 13:30 Frederic Crozat <fcrozat at mandriva.com>
+ small update
- * ChangeLog: Generated by cvs2cl the 20_f�v
+2000-08-07 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2002-02-18 21:51 David Baudens <baudens at mandriva.com>
+ updated Lithuanian strings
- * mandrake_desk.spec: Fix and update spec
+2000-07-22 chmouel <chmouel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2002-02-18 04:26 David Baudens <baudens at mandriva.com>
+ BM.
- * menu/mandrake_desk: Various fix for simplified menu (fix typos,
- icons, remove duplicate entries with
- kdebase, etc.)
+2000-07-18 chmouel <chmouel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2002-02-18 04:12 David Baudens <baudens at mandriva.com>
+ * sbin/chksession: Set support for KDE2 by default when generating session.
- * menu/mandrake_desk: Fix icon for howto (simplified menu)
+ window-managers no longer needed.
-2002-02-12 17:16 Frederic Crozat <fcrozat at mandriva.com>
+ window-managers is no longer needed.
- * mandrake_desk.spec, menu/mandrake_desk: Fix simplified menu
+ * bin/DrakWM: Add -i options to launch with xinit. add -a option to provide alias for bash.
-2002-02-10 04:50 Pablo Saratxaga <pablo at mandriva.com>
+2000-07-17 damien <damien@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * po/eu.po: updated Basque file
+ new release
-2002-01-29 15:14 Frederic Crozat <fcrozat at mandriva.com>
+2000-07-16 damien <damien@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * mandrake_desk.spec, menu/mandrake_desk: Add menu entry for Mdk
- Eazel engine
- Fix menu entry for Simplified menu
+ updated
-2002-01-28 16:38 Frederic Crozat <fcrozat at mandriva.com>
+ sawmill -> sawfish
- * gnome/gnome-Documentation-de.desktop,
- gnome/gnome-Documentation-en.desktop,
- gnome/gnome-Documentation-es.desktop,
- gnome/gnome-Documentation-fr.desktop,
- gnome/gnome-Documentation-it.desktop,
- gnome/gnome-Internet.desktop, gnome/gnome-documentation.png,
- gnome/gnome-internet.png, gnome/gnome-mandrake-campus.desktop,
- gnome/gnome-mandrake-control-center.desktop,
- gnome/gnome-mandrake-expert.desktop,
- gnome/gnome-mandrake-news.desktop,
- gnome/gnome-mandrake-store.desktop,
- gnome/gnome-mandrakeexpert.png, gnome/gnome-mandrakenews.png,
- gnome/gnome-mandrakeonline.png, gnome/gnome-mandrakestore.png,
- gnome/gnome-mcc.png, mandrake_desk.spec: Fix icons for GNOME
- Desktop
+2000-07-11 chmouel <chmouel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2002-01-28 13:00 Frederic Crozat <fcrozat at mandriva.com>
+ A new greatest hit.
- * mandrake_desk.spec: Release 8.2-3mdk
+ sbin/chksession: make window-managers file dynamic by simple entry in /etc/X11/wmsession.d/ sbin/convertsession: a new greatest hit. mandrake_desk.spec: %post with convertsession
-2002-01-28 12:59 Frederic Crozat <fcrozat at mandriva.com>
+2000-07-07 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * mandrake_desk.spec: Release 8.2-2mdk
+ updated Spanish strings
-2002-01-26 20:50 David Baudens <baudens at mandriva.com>
+2000-07-06 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * menu/mandrake_desk: - Fix some menu entries
- - Use new default png icons when it is needed
+ updated French strings
-2002-01-24 09:01 Frederic Crozat <fcrozat at mandriva.com>
+2000-07-03 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * krozat/krozat/krozat.cpp: Fix path for images
+ updated Czech and Latvian strings
-2002-01-14 10:37 Chmouel Boudjnah
+2000-06-30 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * sbin/chksession: Remove space in name.
+ updated Norwegia nstrings
-2002-01-11 17:04 Frederic Crozat <fcrozat at mandriva.com>
+2000-06-28 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * Makefile, gnome/gnome-Internet.desktop,
- gnome/gnome-mandrake-expert.desktop,
- gnome/gnome-mandrake-store.desktop, gnome/mandrake.links.sh,
- krozat/Makefile, krozat/Makefile.in, krozat/aclocal.m4,
- krozat/config.h, krozat/config.log, krozat/configure.in,
- krozat/krozat/Makefile, krozat/krozat/Makefile.in,
- krozat/krozat/pics/1-boot&init.png,
- krozat/krozat/pics/10-service.png,
- krozat/krozat/pics/11-support.png,
- krozat/krozat/pics/12-Xdrake.png,
- krozat/krozat/pics/13-filetools.png,
- krozat/krozat/pics/14-filetransfert.png,
- krozat/krozat/pics/15-tux.png, krozat/krozat/pics/16-chess.png,
- krozat/krozat/pics/17-floppy.png, krozat/krozat/pics/18-disc.png,
- krozat/krozat/pics/2-hardware.png,
- krozat/krozat/pics/3-rouage.png,
- krozat/krozat/pics/4-rpmsecu.png, krozat/krozat/pics/5-carte.png,
- krozat/krozat/pics/6-shell.png, krozat/krozat/pics/7-bugfix.png,
- krozat/krozat/pics/8-bureau.png, krozat/krozat/pics/9-docu.png,
- krozat/krozat/pics/Makefile, krozat/krozat/pics/Makefile.am,
- krozat/krozat/pics/Makefile.in, krozat/krozat/templates,
- krozat/libtool, man/C/chksession.8, mandrake_desk.spec,
- menu/mandrake_desk: Resync with package
- Remove generated files
- Fix screensaver images
+ updated Hungarian string
-2001-12-04 12:49 Pablo Saratxaga <pablo at mandriva.com>
+2000-06-26 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * po/ar.po: updated Arabic file
+ added Arabic strings
-2001-11-21 19:22 Thierry Vignaud <tvignaud at mandriva.com>
+2000-06-11 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * po/fr.po: update
+ updated Czech strings
-2001-10-25 13:34 Pablo Saratxaga <pablo at mandriva.com>
+2000-06-07 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * po/ka.po: updated Georgian file
+ Added Korean strings
-2001-10-08 14:46 Pablo Saratxaga <pablo at mandriva.com>
+2000-06-05 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * po/ar.po: updated Arabic file
+ Updated Esperanto strings
-2001-10-02 08:32 Stefan Siegel <siegel at linux-mandrake.com>
+2000-05-29 damien <damien@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * README.CVS: fixed URL
+ see changelog
-2001-10-02 08:29 Stefan Siegel <siegel at linux-mandrake.com>
+2000-05-27 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * man/C/chksession.8, man/fr/chksession.8: fixed link for bug
- reports
+ Updated Serbian strings
-2001-09-20 18:27 Pablo Saratxaga <pablo at mandriva.com>
+2000-05-19 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * po/nl.po, po/sv.po: updated Swedish and Dutch files
+ Added Afrikaans strings
-2001-09-20 10:08 David Baudens <baudens at mandriva.com>
+2000-05-17 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * menu, menu/mandrake_desk: Add support for simplified menu
+ Updated slovakian strings fixed a lot of things in mandrake.links* files (when editing those files please use an 8bit aware editor !)
-2001-09-20 08:02 Frederic Crozat <fcrozat at mandriva.com>
+2000-05-13 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * ., .cvsignore, krootwarning, krootwarning/.cvsignore,
- krootwarning/krootwarning, krootwarning/krootwarning/.cvsignore,
- krootwarning/krootwarning/pics,
- krootwarning/krootwarning/pics/.cvsignore: Clean cvs
+ updated strings
-2001-09-19 18:34 Frederic Crozat <fcrozat at mandriva.com>
+ Updated French strings
- * gnome/mandrake.links.desktop.in, krootwarning/Makefile.in,
- krootwarning/acinclude.m4, krootwarning/aclocal.m4,
- krootwarning/config.h.in, krootwarning/configure,
- krootwarning/doc/Makefile, krootwarning/doc/Makefile.in,
- krootwarning/doc/en/Makefile, krootwarning/doc/en/Makefile.in,
- krootwarning/krootwarning/Makefile.in,
- krootwarning/krootwarning/pics/Makefile.in,
- krootwarning/po/Makefile.in, krootwarning/stamp-h.in,
- mandrake_desk.spec: Remove generated files, fix package
- generation add mdk-eazel-engine-capplet package
+2000-05-12 flepied <flepied@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2001-09-19 11:25 David Baudens <baudens at mandriva.com>
+ * use /etc/X11/Xsession for gnome sessions.
- * faces/aman.png, faces/avn-rat.png, faces/dadou-fish.png,
- faces/dear-chief-moon.png, faces/gwegwe-rat.png,
- faces/lmonspread-dog.png, faces/ln-cendrillon.png,
- faces/renaud-sun.png, faces/vince-donut.png,
- faces/warly-roller.png, faces/woman.png: Fix icons to allow clean
- display on a white background
+ * 1.0.3-21mdk
-2001-09-19 09:16 David Baudens <baudens at mandriva.com>
+2000-05-12 damien <damien@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * mandrake_desk.spec: Update spec file
+ removed mandrakeupdate
-2001-09-19 09:14 David Baudens <baudens at mandriva.com>
+ corrected mdkupdate entry
- * gnome/gnome-mandrake-news.desktop, gnome/gnome-mandrakenews.xpm:
- Add gnome-mandrake-news.desktop gnome-mandrakenews.xpm
+ new mdk rel ; added gnome desktop entries
-2001-09-18 16:08 David Baudens <baudens at mandriva.com>
+2000-05-09 damien <damien@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * faces/tuxegg.png, faces/user-brunette-mdk.png,
- faces/user-default-mdk.png, faces/user-tie-mdk.png,
- faces/user-woman-blond-mdk.png: Remove some old faces (LN)
+ mdk release
-2001-09-18 14:37 David Baudens <baudens at mandriva.com>
+ buuug
- * mandrake_desk.spec: Update spec
+ corrected bug
-2001-09-18 14:36 David Baudens <baudens at mandriva.com>
+ netscape on desktop
- * mandrake_desk.spec: Update spec
+ updated for netscape on desktop
-2001-09-18 14:35 David Baudens <baudens at mandriva.com>
+ new release
- * faces/aman.png, faces/man.png: mv man.png aman.png to display it
- by default in DrakX
+ no comment
-2001-09-18 13:59 Frederic Crozat <fcrozat at mandriva.com>
+2000-05-09 prigaux <prigaux@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * gnome/gnome-mandrake-campus.desktop,
- gnome/gnome-mandrake-expert.desktop,
- gnome/gnome-mandrake-store.desktop: Use spec compliant desktop
- file
+ *** empty log message ***
-2001-09-18 13:57 David Baudens <baudens at mandriva.com>
+2000-05-09 damien <damien@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * gnome/mandrake.links.sh: Never show Netscape on Desktop
+ added netscape on the desktop
-2001-09-18 10:33 David Baudens <baudens at mandriva.com>
+ no more netscape.desktop
- * gnome/gnome-Internet.desktop, gnome/mandrake.links.sh,
- krootwarning/po/fr.po: Sync
+ removed netscape.desktop copy
-2001-09-17 16:02 David Baudens <baudens at mandriva.com>
+ removed gnome desktop icons...
- * gnome/gnome-mandrakestore.xpm: *** empty log message ***
+ bug fix
-2001-09-17 15:51 David Baudens <baudens at mandriva.com>
+ netscape desktop
- * gnome/gnome-mandrake-store.desktop,
- gnome/gnome-mandrakestore.xpm: Add icons
+ see changelog. new release, cosmetic fix.
-2001-09-17 14:56 David Baudens <baudens at mandriva.com>
+2000-05-08 damien <damien@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * gnome/gnome-mandrake-store.desktop: Add
- gnome-mandrake-store.desktop
+ cosmetic fix
-2001-09-17 14:54 David Baudens <baudens at mandriva.com>
+2000-05-06 chmouel <chmouel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * gnome/gnome-mandrake-control-center.desktop: *** empty log
- message ***
+ * sbin/chksession: if icewm is not here by default launch twm.
-2001-09-17 13:39 David Baudens <baudens at mandriva.com>
+2000-05-05 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * gnome/gnome-Documentation-de.desktop,
- gnome/gnome-Documentation-en.desktop,
- gnome/gnome-Documentation-fr.desktop,
- gnome/gnome-Documentation-it.desktop,
- gnome/gnome-Internet.desktop, gnome/mandrake.links.sh: Remove
- hard coded icon PATH
+ Updated Galician strings
-2001-09-17 13:27 Laurent Montel <lmontel at mandriva.com>
+2000-05-05 prigaux <prigaux@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * krootwarning/Makefile.am: Fix makefile error
+ no_comment
-2001-09-17 13:26 Laurent Montel <lmontel at mandriva.com>
+2000-05-04 damien <damien@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * krootwarning/po/krootwarning.pot: *** empty log message ***
+ mandrake_desk.spec gnome/mandrake.links :cleaned gnome desktop
-2001-09-17 12:53 David Baudens <baudens at mandriva.com>
+2000-05-02 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * gnome/mandrake.links.sh: Update mandrake.links.sh
+ Updated Romanian strings
-2001-09-17 12:46 David Baudens <baudens at mandriva.com>
+2000-04-30 siegel <siegel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * gnome/mandrake.links.sh: Update mandrake.links.sh
+ - icon adaption
-2001-09-14 11:55 David Baudens <baudens at mandriva.com>
+ - icons cleanup
- * gnome/gnome-mandrakecampus.xpm, gnome/gnome-mandrakeexpert.xpm,
- gnome/gnome-mandrakestore.xpm, mandrake_desk.spec: Add
- gnome-mandrakestore.xpm and updaet gnome-mandrakecampus.xpm and
- gnome-mandrakeexpert.xpm
+ - cleanup icons
-2001-09-13 21:08 Pablo Saratxaga <pablo at mandriva.com>
+2000-04-30 damien <damien@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * po/ga.po: updated Irish file
+ mandrake_desk.spec :bad date
-2001-09-13 17:32 David Baudens <baudens at mandriva.com>
+ mandrake_desk.spec :bad release
- * mandrake_desk.spec: Update spec
+ ChangeLog mandrake_desk.spec :see Changelog
-2001-09-13 16:54 David Baudens <baudens at mandriva.com>
+ XKill.kdelnk : re added to allow newbie to kill without -9
- * icons/large/mandrakecampus.xpm, icons/large/mandrakeexpert.xpm,
- icons/mandrakecampus.xpm, icons/mandrakeexpert.xpm: Re-add
- mandrakecampus & mandrakeexpert icons
+2000-04-30 siegel <siegel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2001-09-13 15:04 David Baudens <baudens at mandriva.com>
+ - updated german translations
- * Makefile: Update Makefile
+2000-04-29 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2001-09-13 14:53 David Baudens <baudens at mandriva.com>
+ Updated Britton, Esperanto and Estonian strings
- * icons/large/mandrake-store.xpm, icons/mandrake-store.xpm,
- icons/mini/mandrake-store.xpm: Add mandrake-store icons
+2000-04-28 siegel <siegel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2001-09-13 14:43 David Baudens <baudens at mandriva.com>
+ - add cdwriter_supermount.xpm - correct TRANSLATOR address - use kdecolors in icons
- * icons/large, icons/large/xkill-mdk.xpm, icons/mini,
- icons/mini/xkill-mdk.xpm, icons/xkill-mdk.xpm: Add new xkill icon
+2000-04-28 damien <damien@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2001-09-13 14:41 David Baudens <baudens at mandriva.com>
+ ChangeLog mandrake_desk.spec :corrected xfce entry in windowmanagers.
- * icons/3floppy_supermount.xpm, icons/5floppy_supermount.xpm,
- icons/cdrom_supermount.xpm, icons/cdwriter_supermount.xpm,
- icons/large, icons/magneto-optical_supermount.xpm,
- icons/mandrakecampus.png, icons/mandrakecampus.xpm,
- icons/mandrakeexpert.png, icons/mandrakeexpert.xpm, icons/mini,
- icons/netscape.xpm, icons/news-mdk.xpm, icons/zip_supermount.xpm:
- Remove old icons
+ ChangeLog mandrake_desk.spec window-managers : recovering old files
-2001-09-13 14:00 David Baudens <baudens at mandriva.com>
+ mandrake_desk.spec :fixed bad date
- * mandrake_desk.spec: Update spec
+ ChangeLog mandrake_desk.spec window-managers :corrected xfce entry
-2001-09-13 13:52 David Baudens <baudens at mandriva.com>
+2000-04-27 damien <damien@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * Makefile, mandrake_desk.spec: *** empty log message ***
+ mandrake_desk.spec : bad date
-2001-09-12 15:44 David Baudens <baudens at mandriva.com>
+ ChangeLog mandrake_desk.spec window-managers :corrected wmaker entry kdelnk/Updates.kdelnk :unfortunally removed, so re-added
- * gnome/gnome-sofware-manager.desktop: Remove
- gnome-software-manager from Desktop
+2000-04-26 damien <damien@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2001-09-12 15:42 David Baudens <baudens at mandriva.com>
+ ChangeLog :updated
- * faces/tux.xpm, faces/tuxbaby.xpm, faces/tuxbox.xpm,
- faces/tuxcoocker.xpm, faces/tuxdad.xpm, faces/tuxegg.xpm,
- faces/tuxgirl.xpm, faces/tuxhead1.xpm, faces/tuxhead2.xpm,
- faces/tuxmam.xpm, faces/tuxmecano.xpm,
- faces/user-brunette-mdk.xpm, faces/user-curly-mdk.xpm,
- faces/user-default-mdk.xpm, faces/user-girl-mdk.xpm,
- faces/user-hat-mdk.xpm, faces/user-tie-mdk.xpm,
- faces/user-woman-blond-mdk.xpm, faces/utildame.xpm,
- faces/utilmons.xpm: Remove xpm faces
+ icons/gnome-mandrake.png :new graphic charter icons/applnk.xpm icons/x11amp.xpm :useless
-2001-09-12 15:31 David Baudens <baudens at mandriva.com>
+2000-04-22 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * backgrounds/DKP1-1024.png, backgrounds/DKP1-1280.png,
- backgrounds/DKP1-1600.png, backgrounds/DKP1-640.png,
- backgrounds/DKP1-800.png, backgrounds/DKP2-1024.png,
- backgrounds/DKP2-1280.png, backgrounds/DKP2-640.png,
- backgrounds/DKP2-800.png, backgrounds/DKP3-1024.png,
- backgrounds/DKP3-1280.png, backgrounds/DKP3-1600.png,
- backgrounds/DKP3-640.png, backgrounds/DKP3-800.png,
- backgrounds/DKP4-1024.png, backgrounds/DKP4-1280.png,
- backgrounds/DKP4-1600.png, backgrounds/DKP4-640.png,
- backgrounds/DKP4-800.png, backgrounds/PP1-1024.png,
- backgrounds/PP1-1280.png, backgrounds/PP1-1600.png,
- backgrounds/PP1-640.png, backgrounds/PP1-800.png,
- backgrounds/PP2-1024.png, backgrounds/PP2-1280.png,
- backgrounds/PP2-1600.png, backgrounds/PP2-640.png,
- backgrounds/PP2-800.png, backgrounds/PP3-1024.png,
- backgrounds/PP3-1280.png, backgrounds/PP3-1600.png,
- backgrounds/PP3-640.png, backgrounds/PP3-800.png,
- backgrounds/PP4-1024.png, backgrounds/PP4-1280.png,
- backgrounds/PP4-1600.png, backgrounds/PP4-640.png,
- backgrounds/PP4-800.png, backgrounds/default_background.jpg,
- backgrounds/logoMDK1-1024.png, backgrounds/logoMDK1-1280.png,
- backgrounds/logoMDK1-1600.png, backgrounds/logoMDK1-800.png,
- backgrounds/mandrake_background1_1024.jpg,
- backgrounds/mandrake_background2_1024.jpg,
- backgrounds/mandrake_background3_1024.jpg,
- backgrounds/mandrake_background4_1024.jpg,
- backgrounds/mandrake_background_blue_1024.jpg,
- backgrounds/nature-1024.png, backgrounds/nature-1280.png,
- backgrounds/nature-1600.png, backgrounds/nature-640.png,
- backgrounds/nature-800.png: Remove old backgrounds
+ added Esperanto strings
-2001-09-12 14:37 David Baudens <baudens at mandriva.com>
+2000-04-21 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * krozat/krozat/pics/2-hardware.png: Remove blue frame
+ Upload (see ChangeLog)
-2001-09-06 00:58 Pablo Saratxaga <pablo at mandriva.com>
+ Update .spec
- * po/ga.po: updated Irish file
+ Update doc icons
-2001-09-04 15:43 David Baudens <baudens at mandriva.com>
+2000-04-20 fpons <fpons@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * Makefile, krozat/config.cache, login: Update Makefile, remove
- login/loging100.png and krozat/config.cache
+ *** empty log message ***
-2001-09-04 15:35 David Baudens <baudens at mandriva.com>
+2000-04-20 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * mandrake_desk.spec: Update spec
+ Updated Icelandic strings
-2001-09-04 15:21 David Baudens <baudens at mandriva.com>
+2000-04-20 fpons <fpons@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * special: Remove all files from Special directory (which is no
- longer needed)
+ *** empty log message ***
-2001-09-04 15:18 David Baudens <baudens at mandriva.com>
+2000-04-18 damien <damien@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * default_background.jpg, default_logo.jpg, mandrake-small.xpm:
- Remove some old images
+ mandrake_desk.spec :corrected bad version number
-2001-09-04 15:16 David Baudens <baudens at mandriva.com>
+ Makefile :updated for new mdk relese
- * icons/DrakConf.xpm, icons/default_background.jpg,
- icons/doc-mdk.xpm, icons/gnome-mandrake.png, icons/icq.xpm,
- icons/large/DrakConf.xpm, icons/large/doc-mdk.xpm,
- icons/large/drake.xpm, icons/large/mandrake-logo.xpm,
- icons/large/news-mdk.xpm, icons/large/rpmdrake.xpm,
- icons/large/updates-mdk.xpm, icons/large/xkill-mdk.xpm,
- icons/mandrake-logo-48.xpm, icons/mandrake-logo-64.xpm,
- icons/mandrake-logo.xpm, icons/maxwell.xpm,
- icons/mini/DrakConf.xpm, icons/mini/applk.xpm,
- icons/mini/doc-mdk.xpm, icons/mini/icq.xpm,
- icons/mini/linuxconf.xpm, icons/mini/mandrake-logo.xpm,
- icons/mini/news-mdk.xpm, icons/mini/rpmdrake.xpm,
- icons/mini/updates-mdk.xpm, icons/rpmdrake.xpm,
- icons/updates-mdk.xpm, icons/xkill-mdk.xpm: Remove a lot of old
- icons
+ ChangeLog mandrake_desk.spec : new mdk release
-2001-09-04 15:10 David Baudens <baudens at mandriva.com>
+ window-managers : minor correction gnome/RpmDrake.desktop kdelnk/Gimp.kdelnk kdelnk/RpmDrake.kdelnk kdelnk/Updates.kdelnk kdelnk/XKill.kdelnk : desktops needed to be cleaned
- * icons/default_logo.jpg: *** empty log message ***
+2000-04-18 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2001-09-04 14:58 David Baudens <baudens at mandriva.com>
+ Added Welsh strings
- * mandrake_desk.spec: Update spec
+ Updated Irish entries
-2001-09-03 12:31 Laurent Montel <lmontel at mandriva.com>
+2000-04-17 damien <damien@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * krootwarning/krootwarning/krootwarning.cpp: Forgot to update
+ Modified Files: mandrake_desk.spec updated
-2001-09-03 12:22 Laurent Montel <lmontel at mandriva.com>
+ Modified Files: ChangeLog updated Removed Files: kdelnk/KAppFinder.kdelnk KAppFinder is obsolete now, due to the new menu gestion
- * krootwarning/krootwarning/Makefile.am,
- krootwarning/krootwarning/krootwarning.desktop,
- krootwarning/krootwarning/krootwarningrc: Fix autostart
+ Modified Files: ChangeLog updated changes from .spec to Changelog
-2001-09-03 01:10 Pablo Saratxaga <pablo at mandriva.com>
+ Added Files: icons/default_background.jpg icons/default_logo.jpg Files added to fit with new look of kdm and gdm.
- * mandrake_desk.spec: added French man page to the spec file
+2000-04-17 chmouel <chmouel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2001-09-03 01:02 Pablo Saratxaga <pablo at mandriva.com>
+ Various fix.
- * Makefile, man/C, man/C/chksession.8, man/chksession.8, man/fr,
- man/fr/chksession.8: Added French man page, moved English page to
- its own directory
+ Add /usr/bin
-2001-09-01 14:01 Laurent Montel <lmontel at mandriva.com>
+ DrakWM a new greatest hit.
- * krootwarning/Makefile.in, krootwarning/krootwarning/Makefile.am,
- krootwarning/krootwarning/Makefile.in: Autostart
+ Add file.
-2001-09-01 13:46 Laurent Montel <lmontel at mandriva.com>
+2000-04-16 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * krootwarning/ChangeLog,
- krootwarning/krootwarning/krootwarning.desktop: Autostart
- krootwarning
+ Added Greek strings
-2001-08-27 12:06 David Baudens <baudens at mandriva.com>
+ Updated Croatian strings
- * mandrake_desk.spec: Update spec
+ Added Finnsih strings
-2001-08-27 10:51 David Baudens <baudens at mandriva.com>
+2000-04-12 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * mandrake_desk.spec: Update spec
+ Updated Danish strings
-2001-08-27 10:40 David Baudens <baudens at mandriva.com>
+2000-04-11 damien <damien@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * mandrake_desk.spec: Update spec
+ Modified Files: mandrake_desk.spec added ref for /usr/share/icons/*.jpg
-2001-08-25 09:05 Laurent Montel <lmontel at mandriva.com>
+ Modified Files: default_logo.jpg final logo
- * krootwarning/krootwarning/krootwarning.cpp: Now krootwarning is
- xinerama compliante
+ Added Files: default_background.jpg default_logo.jpg needed for new release of gdm/kdm
-2001-08-24 17:11 David Baudens <baudens at mandriva.com>
+ updated icons
- * faces/avn-rat.png, faces/dadou-fish.png,
- faces/dear-chief-moon.png, faces/gwegwe-rat.png,
- faces/lmonspread-dog.png, faces/ln-cendrillon.png, faces/man.png,
- faces/renaud-sun.png, faces/vince-donut.png,
- faces/warly-roller.png, faces/woman.png: Add some MandrakeSoft
- employees :o)
+2000-04-10 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2001-08-24 17:10 Laurent Montel <lmontel at mandriva.com>
+ updated German strings
- * krozat/krozat/krozat.kss, krozat/krozat/krozat.moc,
- krozat/krozat/krozat.o, krozat/krozat/krozat_kss_meta_unload.cpp,
- krozat/krozat/krozat_kss_meta_unload.o: Remove
+ updated Lithuanian strings
-2001-08-24 16:39 David Baudens <baudens at mandriva.com>
+ Updated Galician and Hungarian strings
- * mandrake_desk.spec: Update spec file
+2000-04-09 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2001-08-24 16:12 Laurent Montel <lmontel at mandriva.com>
+ Added Swedish strings
- * krozat/krozat/Makefile.am~, krozat/krozat/krozat.cpp~: Remove
+2000-04-07 chmouel <chmouel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2001-08-24 16:08 David Baudens <baudens at mandriva.com>
+ "Seethechangelog"
- * krozat/krozat, krozat/krozat/Krozat.desktop,
- krozat/krozat/Makefile, krozat/krozat/Makefile.am,
- krozat/krozat/Makefile.am~, krozat/krozat/Makefile.in,
- krozat/krozat/krozat.cpp, krozat/krozat/krozat.cpp~,
- krozat/krozat/krozat.h, krozat/krozat/krozat.kss,
- krozat/krozat/krozat.moc, krozat/krozat/krozat.o,
- krozat/krozat/krozat_kss_meta_unload.cpp,
- krozat/krozat/krozat_kss_meta_unload.o, krozat/krozat/pics,
- krozat/krozat/pics/1-boot&init.png,
- krozat/krozat/pics/10-service.png,
- krozat/krozat/pics/11-support.png,
- krozat/krozat/pics/12-Xdrake.png,
- krozat/krozat/pics/13-filetools.png,
- krozat/krozat/pics/14-filetransfert.png,
- krozat/krozat/pics/15-tux.png, krozat/krozat/pics/16-chess.png,
- krozat/krozat/pics/17-floppy.png, krozat/krozat/pics/18-disc.png,
- krozat/krozat/pics/2-hardware.png,
- krozat/krozat/pics/3-rouage.png,
- krozat/krozat/pics/4-rpmsecu.png, krozat/krozat/pics/5-carte.png,
- krozat/krozat/pics/6-shell.png, krozat/krozat/pics/7-bugfix.png,
- krozat/krozat/pics/8-bureau.png, krozat/krozat/pics/9-docu.png,
- krozat/krozat/pics/Makefile, krozat/krozat/pics/Makefile.am,
- krozat/krozat/pics/Makefile.in, krozat/krozat/templates,
- krozat/krozat/templates/cpp_template,
- krozat/krozat/templates/header_template, krozat/po,
- krozat/po/Makefile, krozat/po/Makefile.am, krozat/po/Makefile.in:
- Final primary Krozat commit (yes, Chef, your are really honor
-
-2001-08-24 16:04 David Baudens <baudens at mandriva.com>
-
- * krozat/doc, krozat/doc/Makefile, krozat/doc/Makefile.am,
- krozat/doc/Makefile.in, krozat/doc/en, krozat/doc/en/Makefile,
- krozat/doc/en/Makefile.am, krozat/doc/en/Makefile.in,
- krozat/doc/en/index.cache.bz2, krozat/doc/en/index.docbook: An
- other part in our Chef honoring
-
-2001-08-24 16:01 David Baudens <baudens at mandriva.com>
-
- * krozat/admin, krozat/admin/ChangeLog,
- krozat/admin/Makefile.common, krozat/admin/acinclude.m4.in,
- krozat/admin/am_edit, krozat/admin/am_edit.py,
- krozat/admin/conf.change.pl, krozat/admin/config.guess,
- krozat/admin/config.pl, krozat/admin/config.sub,
- krozat/admin/configure.in.min, krozat/admin/debianrules,
- krozat/admin/depcomp, krozat/admin/install-sh,
- krozat/admin/libtool.m4.in, krozat/admin/ltcf-c.sh,
- krozat/admin/ltcf-cxx.sh, krozat/admin/ltcf-gcj.sh,
- krozat/admin/ltconfig, krozat/admin/ltmain.sh,
- krozat/admin/missing, krozat/admin/mkinstalldirs,
- krozat/admin/ylwrap: A new part of Krozat (in honour of our dear
- Chef ;)
-
-2001-08-24 15:59 David Baudens <baudens at mandriva.com>
-
- * krozat, krozat/AUTHORS, krozat/COPYING, krozat/ChangeLog,
- krozat/INSTALL, krozat/Makefile, krozat/Makefile.am,
- krozat/Makefile.dist, krozat/Makefile.in, krozat/README,
- krozat/TODO, krozat/acinclude.m4, krozat/aclocal.m4,
- krozat/config.cache, krozat/config.h, krozat/config.h.in,
- krozat/config.log, krozat/config.status, krozat/configure,
- krozat/configure.files, krozat/configure.in,
- krozat/configure.in.in, krozat/krozat.kdevprj,
- krozat/krozat.kdevses, krozat/krozat.lsm, krozat/libtool,
- krozat/messages.log, krozat/stamp-h, krozat/stamp-h.in,
- krozat/subdirs: Add krozat directory (Mandrake Linux screensaver)
-
-2001-08-22 13:43 Laurent Montel <lmontel at mandriva.com>
-
- * krootwarning/krootwarning/ic-attention-64.png: Not necessary in
- this directory
-
-2001-08-21 12:32 Pablo Saratxaga <pablo at mandriva.com>
-
- * po/af.po: updated Afrikaans strings
-
-2001-08-15 05:05 Pablo Saratxaga <pablo at mandriva.com>
-
- * po/lv.po: updated Latvian file
-
-2001-08-13 13:20 Chmouel Boudjnah
-
- * sbin/fndSession: Fix path of kdmrc.
-
-2001-08-13 09:41 Chmouel Boudjnah
-
- * ChangeLog: Generated by cvs2cl the 13_Aug
-
-2001-08-12 20:00 Pablo Saratxaga <pablo at mandriva.com>
-
- * po/hu.po: updated Hungarian file
-
-2001-08-08 13:49 David Baudens <baudens at mandriva.com>
-
- * krootwarning/admin, krootwarning/admin/ChangeLog,
- krootwarning/admin/Makefile.common,
- krootwarning/admin/acinclude.m4.in, krootwarning/admin/am_edit,
- krootwarning/admin/am_edit.py, krootwarning/admin/conf.change.pl,
- krootwarning/admin/config.guess, krootwarning/admin/config.pl,
- krootwarning/admin/config.sub,
- krootwarning/admin/configure.in.min,
- krootwarning/admin/debianrules, krootwarning/admin/depcomp,
- krootwarning/admin/install-sh, krootwarning/admin/libtool.m4.in,
- krootwarning/admin/ltcf-c.sh, krootwarning/admin/ltcf-cxx.sh,
- krootwarning/admin/ltcf-gcj.sh, krootwarning/admin/ltconfig,
- krootwarning/admin/ltmain.sh, krootwarning/admin/missing,
- krootwarning/admin/mkinstalldirs, krootwarning/admin/ylwrap,
- krootwarning/doc, krootwarning/doc/Makefile,
- krootwarning/doc/Makefile.am, krootwarning/doc/Makefile.in,
- krootwarning/doc/en, krootwarning/doc/en/Makefile,
- krootwarning/doc/en/Makefile.am, krootwarning/doc/en/Makefile.in,
- krootwarning/krootwarning, krootwarning/krootwarning-api,
- krootwarning/krootwarning-api/kdoc-reference,
- krootwarning/krootwarning-api/kdoc-reference/Krootwarning.html,
- krootwarning/krootwarning-api/kdoc-reference/all-globals.html,
- krootwarning/krootwarning-api/kdoc-reference/full-list-Krootwarning.html,
- krootwarning/krootwarning-api/kdoc-reference/header-list.html,
- krootwarning/krootwarning-api/kdoc-reference/hier.html,
- krootwarning/krootwarning-api/kdoc-reference/index-long.html,
- krootwarning/krootwarning-api/kdoc-reference/index.html,
- krootwarning/krootwarning-api/kdoc-reference/krootwarning_h.html,
- krootwarning/krootwarning/Makefile.am,
- krootwarning/krootwarning/Makefile.in,
- krootwarning/krootwarning/ic-attention-64.png,
- krootwarning/krootwarning/krootwarning.cpp,
- krootwarning/krootwarning/krootwarning.desktop,
- krootwarning/krootwarning/krootwarning.h,
- krootwarning/krootwarning/lo16-app-krootwarning.png,
- krootwarning/krootwarning/lo32-app-krootwarning.png,
- krootwarning/krootwarning/main.cpp,
- krootwarning/krootwarning/pics,
- krootwarning/krootwarning/pics/Makefile.am,
- krootwarning/krootwarning/pics/Makefile.in,
- krootwarning/krootwarning/pics/ic-attention-64.png,
- krootwarning/krootwarning/templates,
- krootwarning/krootwarning/templates/cpp_template,
- krootwarning/krootwarning/templates/header_template,
- krootwarning/po, krootwarning/po/Makefile.am,
- krootwarning/po/Makefile.in: Initial revision
-
-2001-08-08 13:19 David Baudens <baudens at mandriva.com>
-
- * krootwarning, krootwarning/AUTHORS, krootwarning/COPYING,
- krootwarning/ChangeLog, krootwarning/INSTALL,
- krootwarning/Makefile.am, krootwarning/Makefile.dist,
- krootwarning/Makefile.in, krootwarning/README, krootwarning/TODO,
- krootwarning/acinclude.m4, krootwarning/aclocal.m4,
- krootwarning/config.h.in, krootwarning/configure,
- krootwarning/configure.files, krootwarning/configure.in,
- krootwarning/configure.in.in, krootwarning/krootwarning.kdevprj,
- krootwarning/krootwarning.kdevses, krootwarning/krootwarning.lsm,
- krootwarning/messages.log, krootwarning/stamp-h.in,
- krootwarning/subdirs: Add krootwarning (KDE)
-
-2001-08-07 17:17 vincent
-
- * mandrake_desk.spec: - Move face in /usr/share/mdk/faces
-
-2001-07-31 13:29 Chmouel Boudjnah
-
- * sbin/chksession: Ignore backup files. Cleanup codes.
-
-2001-07-31 07:25 Frederic Lepied <flepied at mandriva.com>
-
- * ChangeLog: Generated by cvs2cl the 31_Jul
-
-2001-07-31 07:21 Frederic Lepied <flepied at mandriva.com>
-
- * Makefile: no need to run autoconf!
-
-2001-07-31 07:19 Frederic Lepied <flepied at mandriva.com>
-
- * ChangeLog: Generated by cvs2cl the 31_Jul
-
-2001-07-31 07:19 Frederic Lepied <flepied at mandriva.com>
-
- * mandrake_desk.spec: 8.1-1mdk
-
-2001-07-31 07:17 Frederic Lepied <flepied at mandriva.com>
-
- * sbin/chksession: put back my change to the Xsession path that was
- reverted by the resync.
-
-2001-07-31 07:16 Frederic Lepied <flepied at mandriva.com>
-
- * Makefile: added rules to build test and distrib rpm.
-
-2001-07-31 07:15 Frederic Lepied <flepied at mandriva.com>
-
- * mandrake-small.xpm: resync with 8.0-12mdk
-
-2001-07-31 06:00 Frederic Lepied <flepied at mandriva.com>
-
- * gnome/gnome-Documentation-de.desktop,
- gnome/gnome-Documentation-en.desktop,
- gnome/gnome-Documentation-es.desktop,
- gnome/gnome-Documentation-fr.desktop,
- gnome/gnome-Documentation-it.desktop,
- gnome/gnome-Internet.desktop,
- gnome/gnome-mandrake-campus.desktop,
- gnome/gnome-mandrake-control-center.desktop,
- gnome/gnome-mandrake-expert.desktop,
- gnome/gnome-mandrakecampus.xpm, gnome/gnome-mandrakeexpert.xpm,
- gnome/gnome-sofware-manager.desktop, gnome/gnomedesktop-network,
- gtkrc: resync with 8.0-12mdk
-
-2001-07-31 05:52 Frederic Lepied <flepied at mandriva.com>
-
- * ChangeLog, Makefile, TRANSLATORS, backgrounds/DKP1-1024.png,
- backgrounds/DKP1-1280.png, backgrounds/DKP1-1600.png,
- backgrounds/DKP1-640.png, backgrounds/DKP1-800.png,
- backgrounds/DKP2-1024.png, backgrounds/DKP2-1280.png,
- backgrounds/DKP2-640.png, backgrounds/DKP2-800.png,
- backgrounds/DKP3-1024.png, backgrounds/DKP3-1280.png,
- backgrounds/DKP3-1600.png, backgrounds/DKP3-640.png,
- backgrounds/DKP3-800.png, backgrounds/DKP4-1024.png,
- backgrounds/DKP4-1280.png, backgrounds/DKP4-1600.png,
- backgrounds/DKP4-640.png, backgrounds/DKP4-800.png,
- backgrounds/ICE-1024.png, backgrounds/ICE-1280.png,
- backgrounds/ICE-1600.png, backgrounds/ICE-640.png,
- backgrounds/ICE-800.png, backgrounds/PP1-1024.png,
- backgrounds/PP1-1280.png, backgrounds/PP1-1600.png,
- backgrounds/PP1-640.png, backgrounds/PP1-800.png,
- backgrounds/PP2-1024.png, backgrounds/PP2-1280.png,
- backgrounds/PP2-1600.png, backgrounds/PP2-640.png,
- backgrounds/PP2-800.png, backgrounds/PP3-1024.png,
- backgrounds/PP3-1280.png, backgrounds/PP3-1600.png,
- backgrounds/PP3-640.png, backgrounds/PP3-800.png,
- backgrounds/PP4-1024.png, backgrounds/PP4-1280.png,
- backgrounds/PP4-1600.png, backgrounds/PP4-640.png,
- backgrounds/PP4-800.png, backgrounds/XFdrake-image-test.jpg,
- backgrounds/logoMDK1-1024.png, backgrounds/logoMDK1-1280.png,
- backgrounds/logoMDK1-1600.png, backgrounds/logoMDK1-800.png,
- backgrounds/nature-1024.png, backgrounds/nature-1280.png,
- backgrounds/nature-1600.png, backgrounds/nature-640.png,
- backgrounds/nature-800.png, bin/DrakWM, bin/createbackground.sh,
- bin/print-cups.sh, gnome/mandrake.links.sh, icons/DrakConf.xpm,
- icons/gnome.xpm, icons/kde.xpm, icons/large/DrakConf.xpm,
- icons/large/mandrakecampus.png, icons/large/mandrakecampus.xpm,
- icons/large/mandrakeexpert.png, icons/large/mandrakeexpert.xpm,
- icons/large/news-mdk.xpm, icons/mandrakecampus.png,
- icons/mandrakecampus.xpm, icons/mandrakeexpert.png,
- icons/mandrakeexpert.xpm, icons/mini/DrakConf.xpm,
- icons/mini/news-mdk.xpm, icons/news-mdk.xpm, login,
- login/loging100.png, mandrake_desk.spec, sbin/chksession,
- special/Gnome_and_X: resync with 8.0-12mdk
-
-2001-07-31 05:30 Frederic Lepied <flepied at mandriva.com>
-
- * eazel-engine, eazel-engine/AUTHORS, eazel-engine/COPYING,
- eazel-engine/ChangeLog, eazel-engine/Crux,
- eazel-engine/Crux/Makefile.am, eazel-engine/Crux/Makefile.in,
- eazel-engine/Crux/README, eazel-engine/Crux/gtk,
- eazel-engine/Crux/gtk/Makefile.am,
- eazel-engine/Crux/gtk/Makefile.in, eazel-engine/INSTALL,
- eazel-engine/Makefile.am, eazel-engine/Makefile.in,
- eazel-engine/NEWS, eazel-engine/README, eazel-engine/THANKS,
- eazel-engine/TODO, eazel-engine/aclocal.m4, eazel-engine/capplet,
- eazel-engine/capplet/Makefile.am,
- eazel-engine/capplet/Makefile.in,
- eazel-engine/capplet/eazel-engine-capplet.c,
- eazel-engine/capplet/eazel-engine-properties.desktop,
- eazel-engine/check-data.sh, eazel-engine/config.guess,
- eazel-engine/config.h.in, eazel-engine/config.sub,
- eazel-engine/configure, eazel-engine/configure.in,
- eazel-engine/data, eazel-engine/data/Makefile.am,
- eazel-engine/data/Makefile.in,
- eazel-engine/data/arrow_down-spinner.png,
- eazel-engine/data/arrow_down.png,
- eazel-engine/data/arrow_left.png,
- eazel-engine/data/arrow_right.png,
- eazel-engine/data/arrow_up-spinner.png,
- eazel-engine/data/arrow_up.png,
- eazel-engine/data/check-active-default-focus.png,
- eazel-engine/data/check-active-default.png,
- eazel-engine/data/check-active-hilight-focus.png,
- eazel-engine/data/check-active-hilight.png,
- eazel-engine/data/check-active-insensitive.png,
- eazel-engine/data/check-active-pressed-focus.png,
- eazel-engine/data/check-active-pressed.png,
- eazel-engine/data/check-default-focus.png,
- eazel-engine/data/check-default.png,
- eazel-engine/data/check-hilight-focus.png,
- eazel-engine/data/check-hilight.png,
- eazel-engine/data/check-insensitive.png,
- eazel-engine/data/check-pressed-focus.png,
- eazel-engine/data/check-pressed.png,
- eazel-engine/data/progressbar-left.png,
- eazel-engine/data/progressbar-right.png,
- eazel-engine/data/progressbar.png,
- eazel-engine/data/progressbar_trough.png,
- eazel-engine/data/radio-active-default-focus.png,
- eazel-engine/data/radio-active-default.png,
- eazel-engine/data/radio-active-hilight-focus.png,
- eazel-engine/data/radio-active-hilight.png,
- eazel-engine/data/radio-active-insensitive.png,
- eazel-engine/data/radio-active-pressed-focus.png,
- eazel-engine/data/radio-active-pressed.png,
- eazel-engine/data/radio-default-focus.png,
- eazel-engine/data/radio-default.png,
- eazel-engine/data/radio-hilight-focus.png,
- eazel-engine/data/radio-hilight.png,
- eazel-engine/data/radio-insensitive.png,
- eazel-engine/data/radio-pressed-focus.png,
- eazel-engine/data/radio-pressed.png,
- eazel-engine/data/scroller-arrow-down-hilight.png,
- eazel-engine/data/scroller-arrow-down-pressed.png,
- eazel-engine/data/scroller-arrow-down.png,
- eazel-engine/data/scroller-arrow-left-hilight.png,
- eazel-engine/data/scroller-arrow-left-pressed.png,
- eazel-engine/data/scroller-arrow-left.png,
- eazel-engine/data/scroller-arrow-right-hilight.png,
- eazel-engine/data/scroller-arrow-right-pressed.png,
- eazel-engine/data/scroller-arrow-right.png,
- eazel-engine/data/scroller-arrow-up-hilight.png,
- eazel-engine/data/scroller-arrow-up-pressed.png,
- eazel-engine/data/scroller-arrow-up.png,
- eazel-engine/data/scroller-h-hilight.png,
- eazel-engine/data/scroller-h-thumb-hilight.png,
- eazel-engine/data/scroller-h-thumb.png,
- eazel-engine/data/scroller-h-trough.png,
- eazel-engine/data/scroller-h.png,
- eazel-engine/data/scroller-v-hilight.png,
- eazel-engine/data/scroller-v-thumb-hilight.png,
- eazel-engine/data/scroller-v-thumb.png,
- eazel-engine/data/scroller-v-trough.png,
- eazel-engine/data/scroller-v.png,
- eazel-engine/data/slider_h_thumb.png,
- eazel-engine/data/slider_h_trough.png,
- eazel-engine/data/slider_h_trough_focus.png,
- eazel-engine/data/slider_v_thumb.png,
- eazel-engine/data/slider_v_trough.png,
- eazel-engine/data/slider_v_trough_focus.png,
- eazel-engine/data/tab_left-unsel.png,
- eazel-engine/data/tab_left.png, eazel-engine/data/tab_right.png,
- eazel-engine/data/tab_sel-bottom.png,
- eazel-engine/data/tab_sel.png,
- eazel-engine/data/tab_usel-bottom-left.png,
- eazel-engine/data/tab_usel-bottom.png,
- eazel-engine/data/tab_usel-left.png,
- eazel-engine/data/tab_usel.png, eazel-engine/eazel-engine.spec,
- eazel-engine/eazel-engine.spec.in, eazel-engine/gtkrc.in,
- eazel-engine/install-sh, eazel-engine/ltconfig,
- eazel-engine/ltmain.sh, eazel-engine/make-gtkrc.pl,
- eazel-engine/missing, eazel-engine/mkinstalldirs,
- eazel-engine/src, eazel-engine/src/Makefile.am,
- eazel-engine/src/Makefile.in,
- eazel-engine/src/eazel-theme-draw.c,
- eazel-engine/src/eazel-theme-draw.c.dim,
- eazel-engine/src/eazel-theme-gradient.c,
- eazel-engine/src/eazel-theme-hacks.c,
- eazel-engine/src/eazel-theme-main.c,
- eazel-engine/src/eazel-theme-pixmaps.c,
- eazel-engine/src/eazel-theme.h, eazel-engine/stamp-h.in,
- eazel-engine/test.c, eazel-engine/test.glade: Initial revision
-
-2001-07-26 09:35 Frederic Lepied <flepied at mandriva.com>
+2000-04-05 chmouel <chmouel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * sbin/chksession: use /etc/X11/xdm/Xsession instead of
- /etc/X11/Xsession for gdm sessions.
+ "Seethechangelog"
-2001-07-23 20:16 Pablo Saratxaga <pablo at mandriva.com>
+ "Seethechangelog"
- * po/hu.po, po/sk.po: updated Hungarian and slovak files
+ "Seethechangelog"
-2001-07-12 15:56 Thierry Vignaud <tvignaud at mandriva.com>
+ "Seethechangelog"
- * po/br.po: 99% translated (1 missed)
+ "Seethechangelog"
-2001-07-12 15:43 Pablo Saratxaga <pablo at mandriva.com>
+2000-04-04 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * po/el.po: updated Greek file
+ updated Latvian strings
-2001-07-12 12:23 Pablo Saratxaga <pablo at mandriva.com>
+2000-04-04 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * po/tg.po: updated Tajik file
+ Add default background
-2001-07-09 11:10 Pablo Saratxaga <pablo at mandriva.com>
+ Add backgrounds
- * po/tg.po: Added Tajik file
+ Add & remove backgrounds
-2001-06-25 07:58 Pablo Saratxaga <pablo at mandriva.com>
+2000-03-31 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * po/eu.po, po/id.po: updated basque and indonesian files
+ updated Lithuanian strings
-2001-06-18 19:00 Pablo Saratxaga <pablo at mandriva.com>
+2000-03-30 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * po/bs.po: Added Bosnian file
+ completed Catalan strings
-2001-06-13 17:23 Pablo Saratxaga <pablo at mandriva.com>
+2000-03-26 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * po/zh_TW.po: updated Chinese file
+ Added Slovenian strings
-2001-06-06 19:12 Pablo Saratxaga <pablo at mandriva.com>
+2000-03-24 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * po/ca.po, po/es.po, po/no.po, po/ru.po, po/wa.po, po/zh_TW.po:
- updated Chinese and Russian files
+ updated translators list
-2001-05-28 05:09 Pablo Saratxaga <pablo at mandriva.com>
+ Slovakian and Norwegian updates
- * po/eo.po: updated Esperanto file
+2000-03-20 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2001-05-19 22:39 Fabian Mandelbaum <fabman at mandriva.com>
+ Finished spanish descriptions
- * po/es.po: updated spanish .po file
+2000-03-18 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2001-05-15 11:23 Pablo Saratxaga <pablo at mandriva.com>
+ little locale naming fix
- * po/vi.po: updated vietnamese file
+2000-03-17 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2001-05-06 17:20 Pablo Saratxaga <pablo at mandriva.com>
+ Updated Danish descriptions
- * TRANSLATORS, po/zh_TW.po: Updated Chinese file
+2000-03-08 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2001-04-25 17:40 Pablo Saratxaga <pablo at mandriva.com>
+ Updated Dutch entries
- * po/ja.po, po/pt_BR.po, po/tr.po: Updated Japanese, Brazilian and
- Turkish files
+2000-03-06 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2001-04-16 15:58 Pablo Saratxaga <pablo at mandriva.com>
+ Added Chinese entries
- * po/sl.po: Updated slovanian file
+2000-03-03 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2001-04-13 02:44 Pablo Saratxaga <pablo at mandriva.com>
+ Removed empty and double Name= and Comment= lines
- * po/pl.po: Updated Polish file
+2000-02-02 chmouel <chmouel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2001-04-12 04:41 Daouda Lo <daouda at mandriva.com>
+ "See_The_Changelog"
- * mandrake_desk.spec: cleanups
+2000-01-27 chmouel <chmouel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2001-04-12 04:26 Daouda Lo <daouda at mandriva.com>
+ "Seethechangelog"
- * Makefile: remove kdelnk dir
+ "Seethechangelog"
-2001-04-12 04:25 Daouda Lo <daouda at mandriva.com>
+2000-01-20 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * mandrake_desk.spec: macros bis
+ updated Peter email address
-2001-04-12 04:23 Daouda Lo <daouda at mandriva.com>
+2000-01-10 prigaux <prigaux@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * mandrake_desk.spec: macros to ease rpm build from cvs
+ no_comment
-2001-04-12 04:16 Daouda Lo <daouda at mandriva.com>
+2000-01-07 prigaux <prigaux@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * Makefile: fix typo in var RPM
+ no_comment
-2001-04-12 04:15 Daouda Lo <daouda at mandriva.com>
+2000-01-07 flepied <flepied@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * mandrake_desk.spec: add define tags
+ *** empty log message ***
-2001-04-12 04:14 Daouda Lo <daouda at mandriva.com>
+ * standard mandrake: none.
- * Makefile: define RPM var
+2000-01-07 prigaux <prigaux@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2001-04-12 04:11 Daouda Lo <daouda at mandriva.com>
+ no_comment
- * Makefile: commented kdelnk related stuffs
+2000-01-06 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2001-04-12 04:08 Daouda Lo <daouda at mandriva.com>
+ added Czech description for internet icon
- * Makefile: add eazel themes + gtkrc for rpm build
+2000-01-05 prigaux <prigaux@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2001-04-12 04:08 Daouda Lo <daouda at mandriva.com>
+ no_comment
- * gtkrc: new gtkrc :resync with spec
+2000-01-05 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2001-04-12 04:06 Daouda Lo <daouda at mandriva.com>
+ added Turkish entries
- * mandrake_desk.spec: commit
+ added Latvian entries
-2001-04-12 00:57 David Baudens <baudens at mandriva.com>
+2000-01-05 chmouel <chmouel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * faces/user-brunette-mdk.png, faces/user-curly-mdk.png,
- faces/user-default-mdk.png, faces/user-girl-mdk.png,
- faces/user-hat-mdk.png, faces/user-tie-mdk.png,
- faces/user-woman-blond-mdk.png: *** empty log message ***
+ "Seethechangelog"
-2001-04-12 00:57 David Baudens <baudens at mandriva.com>
+2000-01-04 chmouel <chmouel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * faces/root, faces/tux.png, faces/tux.xpm, faces/tuxbaby.png,
- faces/tuxbaby.xpm, faces/tuxbox.png, faces/tuxbox.xpm,
- faces/tuxcoocker.png, faces/tuxcoocker.xpm, faces/tuxdad.png,
- faces/tuxdad.xpm, faces/tuxegg.png, faces/tuxegg.xpm,
- faces/tuxgirl.png, faces/tuxgirl.xpm, faces/tuxhead1.png,
- faces/tuxhead1.xpm, faces/tuxhead2.png, faces/tuxhead2.xpm,
- faces/tuxmam.png, faces/tuxmam.xpm, faces/tuxmecano.png,
- faces/tuxmecano.xpm, faces/user-brunette-mdk.png,
- faces/user-brunette-mdk.xpm, faces/user-curly-mdk.png,
- faces/user-curly-mdk.xpm, faces/user-default-mdk.png,
- faces/user-default-mdk.xpm, faces/user-girl-mdk.png,
- faces/user-girl-mdk.xpm, faces/user-hat-mdk.png,
- faces/user-hat-mdk.xpm, faces/user-tie-mdk.png,
- faces/user-tie-mdk.xpm, faces/user-woman-blond-mdk.png,
- faces/user-woman-blond-mdk.xpm, faces/utildame.png,
- faces/utildame.xpm, faces/utilmons.png, faces/utilmons.xpm: ***
- empty log message ***
+ "Seethechangelog"
-2001-04-12 00:22 David Baudens <baudens at mandriva.com>
+2000-01-04 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * old: Remove uneeded KDE files
+ Use BBDrake & WMDrake for BlackBox & Window Maker
-2001-04-12 00:20 David Baudens <baudens at mandriva.com>
+2000-01-03 chmouel <chmouel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * kde, kdelnk/Doc.kdelnk, kdelnk/Doc.kdelnk.in,
- kdelnk/DrakConf.kdelnk, kdelnk/DrakConf.kdelnk.in,
- kdelnk/Home.kdelnk, kdelnk/Home.kdelnk.in,
- kdelnk/Internet.kdelnk, kdelnk/Internet.kdelnk.in,
- kdelnk/Netscape.kdelnk, kdelnk/Netscape.kdelnk.in,
- kdelnk/News.kdelnk, kdelnk/News.kdelnk.in, kdelnk/Printer.kdelnk,
- kdelnk/Printer.kdelnk.in, kdelnk/Updates.kdelnk,
- kdelnk/Updates.kdelnk.in, kdelnk/XKill.kdelnk,
- kdelnk/XKill.kdelnk.in: Remove uneeded KDE files (provided by
- kdebase)
+ "Seethechangelog"
-2001-04-11 22:53 Daouda Lo <daouda at mandriva.com>
+1999-12-31 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * mandrake_desk.spec: resync specs with cvs
+ added German name for PPP icon
-2001-04-11 17:21 Pablo Saratxaga <pablo at mandriva.com>
+1999-12-31 prigaux <prigaux@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * po/az.po, po/it.po: Updated Azeri file
+ no_comment
-2001-04-11 17:18 Pablo Saratxaga <pablo at mandriva.com>
+1999-12-31 chmouel <chmouel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * po/az.po: Updated azeri file
+ "Seethechangelog"
-2001-04-10 22:35 Pablo Saratxaga <pablo at mandriva.com>
+1999-12-31 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * po/it.po: Updated Italian file
+ Cut some fr name
-2001-04-09 13:06 Pablo Saratxaga <pablo at mandriva.com>
+1999-12-29 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * kde/Desktop/CD-ROM, kde/Desktop/Floppy, kde/Desktop/Printer,
- kde/Desktop/Templates/Device, kde/Desktop/Templates/Ftpurl,
- kde/Desktop/Templates/MimeType, kde/Desktop/Templates/Program,
- kde/Desktop/Templates/URL, kde/Desktop/Templates/WWWUrl,
- kdelnk/Doc.kdelnk, kdelnk/DrakConf.kdelnk, kdelnk/Home.kdelnk,
- kdelnk/Internet.kdelnk, kdelnk/Netscape.kdelnk,
- kdelnk/News.kdelnk, kdelnk/Printer.kdelnk, kdelnk/Updates.kdelnk,
- kdelnk/XKill.kdelnk, old/CD-ROM, old/Device, old/Doc.kdelnk,
- old/DrakConf.kdelnk, old/Floppy, old/Ftpurl, old/Home.kdelnk,
- old/Internet.kdelnk, old/MimeType, old/Netscape.kdelnk,
- old/News.kdelnk, old/Printer, old/Printer.kdelnk, old/Program,
- old/URL, old/Updates.kdelnk, old/WWWUrl, old/XKill.kdelnk,
- old/mandrake.links, po/da.po, special/Gnome_and_X.desktop:
- Updated Danish strings
+ added icelandic
-2001-04-05 15:10 Pablo Saratxaga <pablo at mandriva.com>
+1999-12-28 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * po/ar.po, po/az.po, po/be.po, po/bg.po, po/de.po, po/el.po,
- po/eo.po, po/hr.po, po/hu.po, po/ka.po, po/ko.po, po/ru.po,
- po/sp.po, po/uk.po, po/vi.po, po/wa.po: Updated Croatian file
+ added the Gnome menu entries to the spec file
-2001-04-05 14:36 kjx
+1999-12-28 chmouel <chmouel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * po/zh_CN.po: translate
+ "Seethechangelog"
-2001-04-02 14:56 Pablo Saratxaga <pablo at mandriva.com>
-
- * po/ca.po, po/pt.po: Updated Catalan and Portuguese files
-
-2001-04-02 02:47 Pablo Saratxaga <pablo at mandriva.com>
-
- * po/hu.po: Updated hungarian file
-
-2001-04-01 19:35 Pablo Saratxaga <pablo at mandriva.com>
-
- * po/cs.po, po/sv.po: Updated Czech and Swedish files
-
-2001-04-01 16:18 Pablo Saratxaga <pablo at mandriva.com>
-
- * po/et.po, po/vi.po: Updated Estonian file; added Vietnamese file
-
-2001-03-30 22:48 Pablo Saratxaga <pablo at mandriva.com>
-
- * kde/Desktop/CD-ROM, kde/Desktop/Floppy, kde/Desktop/Printer,
- kde/Desktop/Templates/Device, kde/Desktop/Templates/Ftpurl,
- kde/Desktop/Templates/MimeType, kde/Desktop/Templates/Program,
- kde/Desktop/Templates/URL, kde/Desktop/Templates/WWWUrl,
- kdelnk/Doc.kdelnk, kdelnk/DrakConf.kdelnk, kdelnk/Home.kdelnk,
- kdelnk/Internet.kdelnk, kdelnk/News.kdelnk,
- kdelnk/Printer.kdelnk, kdelnk/Updates.kdelnk,
- kdelnk/XKill.kdelnk, old/CD-ROM, old/Device, old/Doc.kdelnk,
- old/DrakConf.kdelnk, old/Floppy, old/Ftpurl, old/Home.kdelnk,
- old/Internet.kdelnk, old/MimeType, old/News.kdelnk, old/Printer,
- old/Printer.kdelnk, old/Program, old/URL, old/Updates.kdelnk,
- old/WWWUrl, old/XKill.kdelnk, old/mandrake.links, po/ca.po,
- po/fi.po, po/mandrake_desk.pot, po/mandrake_desktop.pot,
- special/Gnome_and_X.desktop: Updated Finnish and Catalan files
- fixed the name of the pot file (so the links on the translations
- web page aren't broken)
-
-2001-03-30 13:52 Pablo Saratxaga <pablo at mandriva.com>
-
- * po/az.po, po/hr.po, po/ko.po, po/no.po, po/sq.po: Updated Azeri,
- Croatian, Korean, Norwegian and Albanian files
-
-2001-03-29 20:34 Stefan Siegel <siegel at linux-mandrake.com>
-
- * po/de.po: new german version
-
-2001-03-29 08:34 Pablo Saratxaga <pablo at mandriva.com>
-
- * old, old/CD-ROM, old/CD-ROM.noext.kdelnk.in, old/Device,
- old/Device.noext.kdelnk.in, old/Doc.kdelnk, old/Doc.kdelnk.in,
- old/DrakConf.kdelnk, old/DrakConf.kdelnk.in, old/Floppy,
- old/Floppy.noext.kdelnk.in, old/Ftpurl,
- old/Ftpurl.noext.kdelnk.in, old/Home.kdelnk, old/Home.kdelnk.in,
- old/Internet.kdelnk, old/Internet.kdelnk.in, old/MimeType,
- old/MimeType.noext.kdelnk.in, old/Netscape.kdelnk,
- old/Netscape.kdelnk.in, old/News.kdelnk, old/News.kdelnk.in,
- old/Printer, old/Printer.kdelnk, old/Printer.kdelnk.in,
- old/Printer.noext.kdelnk.in, old/Program,
- old/Program.noext.kdelnk.in, old/URL, old/URL.noext.kdelnk.in,
- old/Updates.kdelnk, old/Updates.kdelnk.in, old/WWWUrl,
- old/WWWUrl.noext.kdelnk.in, old/XKill.kdelnk,
- old/XKill.kdelnk.in, old/mandrake.links,
- old/mandrake.links.desktop.in, special/Gnome_and_X.desktop.in:
- Addition of old files (to keep useful i18n strings in case they
- are needed
- in the future)
-
-2001-03-29 08:24 Pablo Saratxaga <pablo at mandriva.com>
-
- * po/bg.po: Made Bulgarian file unattributed (email of mantainer
- bounces)
-
-2001-03-29 08:22 Pablo Saratxaga <pablo at mandriva.com>
-
- * po/af.po, po/ar.po, po/az.po, po/be.po, po/bg.po, po/br.po,
- po/ca.po, po/cs.po, po/cy.po, po/da.po, po/de.po, po/el.po,
- po/eo.po, po/es.po, po/et.po, po/eu.po, po/fi.po, po/fr.po,
- po/ga.po, po/gl.po, po/hr.po, po/hu.po, po/id.po, po/is.po,
- po/it.po, po/ja.po, po/ka.po, po/ko.po, po/lt.po, po/lv.po,
- po/mk.po, po/nl.po, po/no.po, po/pl.po, po/pt.po, po/pt_BR.po,
- po/ro.po, po/ru.po, po/sk.po, po/sl.po, po/sp.po, po/sq.po,
- po/sv.po, po/th.po, po/tr.po, po/uk.po, po/wa.po, po/zh_CN.po,
- po/zh_TW.po: Updated Walloon file
-
-2001-03-29 08:14 Pablo Saratxaga <pablo at mandriva.com>
-
- * ChangeLog, Makefile, README, TRANSLATORS,
- gnome/mandrake.links.desktop.in, kde/Desktop/CD-ROM,
- kde/Desktop/CD-ROM.noext.kdelnk.in, kde/Desktop/Floppy,
- kde/Desktop/Floppy.noext.kdelnk.in, kde/Desktop/Printer,
- kde/Desktop/Printer.noext.kdelnk.in,
- kde/Desktop/Templates/Device,
- kde/Desktop/Templates/Device.noext.kdelnk.in,
- kde/Desktop/Templates/Ftpurl.noext.kdelnk.in,
- kde/Desktop/Templates/MimeType.noext.kdelnk.in,
- kde/Desktop/Templates/Program.noext.kdelnk.in,
- kde/Desktop/Templates/URL,
- kde/Desktop/Templates/URL.noext.kdelnk.in,
- kde/Desktop/Templates/WWWUrl,
- kde/Desktop/Templates/WWWUrl.noext.kdelnk.in, kdelnk/Doc.kdelnk,
- kdelnk/Doc.kdelnk.in, kdelnk/DrakConf.kdelnk,
- kdelnk/DrakConf.kdelnk.in, kdelnk/Home.kdelnk,
- kdelnk/Home.kdelnk.in, kdelnk/Internet.kdelnk,
- kdelnk/Internet.kdelnk.in, kdelnk/Netscape.kdelnk,
- kdelnk/Netscape.kdelnk.in, kdelnk/News.kdelnk,
- kdelnk/News.kdelnk.in, kdelnk/Printer.kdelnk,
- kdelnk/Printer.kdelnk.in, kdelnk/Updates.kdelnk,
- kdelnk/Updates.kdelnk.in, kdelnk/XKill.kdelnk,
- kdelnk/XKill.kdelnk.in, po, po/POTFILES.in, po/af.po, po/ar.po,
- po/az.po, po/be.po, po/bg.po, po/br.po, po/ca.po, po/cs.po,
- po/cy.po, po/da.po, po/de.po, po/el.po, po/eo.po, po/es.po,
- po/et.po, po/eu.po, po/fi.po, po/fr.po, po/ga.po, po/gl.po,
- po/hr.po, po/hu.po, po/id.po, po/is.po, po/it.po, po/ja.po,
- po/ka.po, po/ko.po, po/lt.po, po/lv.po, po/mandrake_desktop.pot,
- po/mk.po, po/nl.po, po/no.po, po/pl.po, po/pt.po, po/pt_BR.po,
- po/ro.po, po/ru.po, po/sk.po, po/sl.po, po/sp.po, po/sq.po,
- po/sv.po, po/th.po, po/tr.po, po/uk.po, po/wa.po, po/zh_CN.po,
- po/zh_TW.po, special/Gnome_and_X, special/Gnome_and_X.desktop,
- xml-i18n-extract.in, xml-i18n-merge.in, xml-i18n-update.in: Now
- uses xml-i18n-tools to handle i18n
-
-2001-03-24 12:29 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS, kdelnk/DrakConf.kdelnk, kdelnk/Netscape.kdelnk,
- kdelnk/Printer.kdelnk, kdelnk/XKill.kdelnk, special/Gnome_and_X:
- Updated Korean strings
-
-2001-03-21 18:33 Pablo Saratxaga <pablo at mandriva.com>
-
- * kdelnk/Internet.kdelnk, kdelnk/XKill.kdelnk: Updated Portuguese
- strings
-
-2001-03-19 01:38 Pablo Saratxaga <pablo at mandriva.com>
+ "Seethechangelog"
- * kdelnk/DrakConf.kdelnk, kdelnk/Home.kdelnk,
- kdelnk/Internet.kdelnk, special/Gnome_and_X: updated Galician
- strings
+ "Seethechangelog"
-2001-03-17 16:09 Pablo Saratxaga <pablo at mandriva.com>
+1999-12-27 chmouel <chmouel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * TRANSLATORS, kdelnk/Doc.kdelnk, kdelnk/DrakConf.kdelnk,
- kdelnk/Home.kdelnk, kdelnk/Internet.kdelnk,
- kdelnk/Netscape.kdelnk, kdelnk/News.kdelnk,
- kdelnk/Printer.kdelnk, kdelnk/Updates.kdelnk,
- kdelnk/XKill.kdelnk, special/Gnome_and_X: updated the Portuguese
- strings
-
-2001-03-06 03:12 Pablo Saratxaga <pablo at mandriva.com>
-
- * kdelnk/DrakConf.kdelnk, kdelnk/Home.kdelnk,
- kdelnk/Netscape.kdelnk, kdelnk/News.kdelnk,
- kdelnk/Printer.kdelnk, kdelnk/Updates.kdelnk,
- kdelnk/XKill.kdelnk, special/Gnome_and_X: updated Indonesian
- strings
+ "Seethechangelog"
-2001-03-02 19:45 Chmouel Boudjnah
+1999-12-27 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * bin/DrakWM: Call xvt.
+ corrected icons names
-2001-01-30 10:51 Pablo Saratxaga <pablo at mandriva.com>
+1999-12-27 chmouel <chmouel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * kdelnk/DrakConf.kdelnk: updated Estonian strings
+ "Seethechangelog"
-2001-01-25 23:20 Pablo Saratxaga <pablo at mandriva.com>
+ "Seethechangelog"
- * kdelnk/DrakConf.kdelnk: updated Esperanto strings
+ "Seethechangelog"
-2001-01-07 06:23 Pablo Saratxaga <pablo at mandriva.com>
+ "Seethechangelog"
- * TRANSLATORS, kdelnk/Doc.kdelnk, kdelnk/DrakConf.kdelnk,
- kdelnk/Home.kdelnk, kdelnk/Internet.kdelnk,
- kdelnk/Netscape.kdelnk, kdelnk/News.kdelnk,
- kdelnk/Printer.kdelnk, kdelnk/Updates.kdelnk,
- kdelnk/XKill.kdelnk, special/Gnome_and_X: updated Basque strings
+ "Seethechangelog"
-2000-12-29 15:17 Pablo Saratxaga <pablo at mandriva.com>
+ "Seethechangelog"
- * ChangeLog, kde/Desktop/Printer, kdelnk/Doc.kdelnk,
- kdelnk/DrakConf.kdelnk, kdelnk/Home.kdelnk,
- kdelnk/Internet.kdelnk, kdelnk/Netscape.kdelnk,
- kdelnk/News.kdelnk, kdelnk/Printer.kdelnk, kdelnk/Updates.kdelnk,
- kdelnk/XKill.kdelnk, special/Gnome_and_X: Converted tyo utf-8 and
- fixed Chinese locales naming
+1999-12-26 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2000-12-29 02:36 Pablo Saratxaga <pablo at mandriva.com>
+ added catalan entry
- * kde/Desktop/CD-ROM, kde/Desktop/Floppy, kde/Desktop/Printer,
- kde/Desktop/Templates/Device, kde/Desktop/Templates/Ftpurl,
- kde/Desktop/Templates/MimeType, kde/Desktop/Templates/Program,
- kde/Desktop/Templates/URL, kde/Desktop/Templates/WWWUrl,
- kdelnk/Doc.kdelnk, kdelnk/DrakConf.kdelnk, kdelnk/Home.kdelnk,
- kdelnk/Internet.kdelnk, kdelnk/Netscape.kdelnk,
- kdelnk/News.kdelnk, kdelnk/Printer.kdelnk, kdelnk/Updates.kdelnk,
- kdelnk/XKill.kdelnk: Converted files to UTF-8
+1999-12-25 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2000-12-11 11:23 Pablo Saratxaga <pablo at mandriva.com>
+ added menu entries for Gnome
- * kdelnk/DrakConf.kdelnk, kdelnk/XKill.kdelnk: updated Croatian
- strings
+1999-12-25 chmouel <chmouel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2000-12-05 19:15 Pablo Saratxaga <pablo at mandriva.com>
+ "Seethechangelog"
- * kdelnk/Doc.kdelnk: small fix for Russian string
+ "Seethechangelog"
-2000-11-24 15:33 Pablo Saratxaga <pablo at mandriva.com>
+ "Seethechangelog"
- * kdelnk/DrakConf.kdelnk, kdelnk/XKill.kdelnk, special/Gnome_and_X:
- updated Swedish files
+1999-12-24 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2000-11-17 13:31 Pablo Saratxaga <pablo at mandriva.com>
+ added romanian entry
- * TRANSLATORS, gnome/mandrake.links.sh, kdelnk/Doc.kdelnk,
- kdelnk/DrakConf.kdelnk, kdelnk/Home.kdelnk,
- kdelnk/Internet.kdelnk, kdelnk/Netscape.kdelnk,
- kdelnk/News.kdelnk, kdelnk/Printer.kdelnk, kdelnk/Updates.kdelnk,
- kdelnk/XKill.kdelnk, special/Gnome_and_X: Added Georgian strings
+ added galician description to internet icon
-2000-10-28 12:13 Pablo Saratxaga <pablo at mandriva.com>
+1999-12-24 prigaux <prigaux@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * special/Gnome_and_X: updated Brazilian strings
+ no_comment
-2000-10-26 14:42 Pablo Saratxaga <pablo at mandriva.com>
+1999-12-24 chmouel <chmouel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * kdelnk/DrakConf.kdelnk, kdelnk/Netscape.kdelnk: updated Ukrainian
- strings
+ "Seethechangelog"
-2000-10-18 02:44 Pablo Saratxaga <pablo at mandriva.com>
+ "Seethechangelog"
- * kdelnk/Doc.kdelnk, kdelnk/DrakConf.kdelnk,
- kdelnk/Netscape.kdelnk, kdelnk/Printer.kdelnk,
- kdelnk/XKill.kdelnk: updated Turkish files
+1999-12-24 prigaux <prigaux@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2000-10-17 15:46 Pablo Saratxaga <pablo at mandriva.com>
+ no_comment
- * kdelnk/DrakConf.kdelnk, kdelnk/Netscape.kdelnk,
- kdelnk/News.kdelnk: updated Azeri strings
+1999-12-23 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2000-10-16 00:01 Pablo Saratxaga <pablo at mandriva.com>
+ added Gnome desktop icons previously done in gmc package
- * TRANSLATORS, kdelnk/Doc.kdelnk, kdelnk/DrakConf.kdelnk,
- kdelnk/Home.kdelnk, kdelnk/Internet.kdelnk,
- kdelnk/Netscape.kdelnk, kdelnk/News.kdelnk,
- kdelnk/Printer.kdelnk, kdelnk/Updates.kdelnk,
- kdelnk/XKill.kdelnk, special/Gnome_and_X: updated Brazilian
- strings
+ added italian entry
-2000-09-26 13:52 Pablo Saratxaga <pablo at mandriva.com>
+ added some other languages
- * kdelnk/DrakConf.kdelnk: updated Slovak strings
+ added Bulgarian description
-2000-09-18 22:05 Pablo Saratxaga <pablo at mandriva.com>
+ added HR description of kppp
- * kdelnk/Printer.kdelnk, kdelnk/Updates.kdelnk: updated Azeri
- strings
+ added some languages
-2000-09-18 04:15 Pablo Saratxaga <pablo at mandriva.com>
+ update
- * kdelnk/DrakConf.kdelnk, kdelnk/Netscape.kdelnk: updated Polish
- strings
+1999-12-23 chmouel <chmouel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
-2000-09-17 18:56 Pablo Saratxaga <pablo at mandriva.com>
+ "Seethechangelog"
- * kdelnk/DrakConf.kdelnk, kdelnk/Home.kdelnk,
- kdelnk/Printer.kdelnk: updated Slovenian strings
+ "Seethechangelog"
-2000-09-13 19:31 Pablo Saratxaga <pablo at mandriva.com>
+1999-12-23 pablo <pablo@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * kdelnk/DrakConf.kdelnk: updated Afrikaans strings
+ added Bulgarian entries
-2000-09-13 19:19 Pablo Saratxaga <pablo at mandriva.com>
+1999-12-22 prigaux <prigaux@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * TRANSLATORS: corrected email address
+ no_comment
-2000-09-13 10:55 Pablo Saratxaga <pablo at mandriva.com>
+1999-12-22 chmouel <chmouel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * TRANSLATORS, gnome/mandrake.links.sh, kdelnk/Doc.kdelnk,
- kdelnk/Home.kdelnk, kdelnk/Internet.kdelnk, kdelnk/News.kdelnk,
- kdelnk/Printer.kdelnk, kdelnk/Updates.kdelnk,
- kdelnk/XKill.kdelnk, special/Gnome_and_X: Added Azeri strings
+ "Seethechangelog"
-2000-09-09 23:18 Pablo Saratxaga <pablo at mandriva.com>
+ "Seethechangelog"
- * kdelnk/Doc.kdelnk, kdelnk/Home.kdelnk, kdelnk/News.kdelnk,
- kdelnk/Printer.kdelnk, kdelnk/Updates.kdelnk,
- kdelnk/XKill.kdelnk: updated Russian strings
+ "Seethechangelog"
-2000-09-09 00:31 Pablo Saratxaga <pablo at mandriva.com>
+1999-12-21 chmouel <chmouel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * kdelnk/Internet.kdelnk: updated Polish strings
+ "Seethechangelog"
-2000-09-05 20:48 Pablo Saratxaga <pablo at mandriva.com>
+1999-12-21 baudens <baudens@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * TRANSLATORS, gnome/mandrake.links.sh, kdelnk/Doc.kdelnk,
- kdelnk/Home.kdelnk, kdelnk/Internet.kdelnk, kdelnk/News.kdelnk,
- kdelnk/Printer.kdelnk, kdelnk/Updates.kdelnk,
- kdelnk/XKill.kdelnk: updated Polish strings
+ Add some WM. Sort in alphabetic order-
-2000-08-31 20:39 David Baudens <baudens at mandriva.com>
+1999-12-20 chmouel <chmouel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * kde/.kderc: *** empty log message ***
+ "Seethechangelog"
-2000-08-31 17:20 David Baudens <baudens at mandriva.com>
+1999-12-20 prigaux <prigaux@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * kde, kde/.kderc, kde/Desktop, kde/Desktop/CD-ROM,
- kde/Desktop/Floppy, kde/Desktop/Printer, kde/Desktop/Templates,
- kde/Desktop/Templates/Device, kde/Desktop/Templates/Ftpurl,
- kde/Desktop/Templates/MimeType, kde/Desktop/Templates/Program,
- kde/Desktop/Templates/URL, kde/Desktop/Templates/WWWUrl: ***
- empty log message ***
+ no_comment
-2000-08-31 10:31 David Baudens <baudens at mandriva.com>
+1999-12-19 chmouel <chmouel@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
- * mandrake_desk.spec: Re add a BuildRoot :(
+ "Seethechangelog"
-2000-08-31 10:26 David Baudens <baudens at mandriva.com>
+ "Seethechangelog"
- * mandrake_desk.spec: Update mandrake_desk.spec
+ "Seethechangelog"
-2000-08-31 10:25 David Baudens <baudens at mandriva.com>
+ "Seethechangelog"
- * mandrake_desk.spec: Update mandrake_desk.spec
+ "Seethechangelog"
-2000-08-31 10:22 David Baudens <baudens at mandriva.com>
+ Initial revision
- * ChangeLog: Update Changelog
-
-2000-08-31 01:51 Chmouel Boudjnah
-
- * sbin/chksession: Avoid opendir use csh internal globing...
-
-2000-08-30 16:44 Pablo Saratxaga <pablo at mandriva.com>
-
- * kdelnk/Printer.kdelnk, kdelnk/XKill.kdelnk: updated Czech strings
-
-2000-08-24 09:51 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update Spec
-
-2000-08-24 09:16 David Baudens <baudens at mandriva.com>
-
- * Makefile: Update Makefile (for .desktop)
-
-2000-08-24 09:10 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update Spec
-
-2000-08-24 09:07 David Baudens <baudens at mandriva.com>
-
- * ChangeLog: Update Changelog
-
-2000-08-24 09:06 David Baudens <baudens at mandriva.com>
-
- * gnome/DrakConf.desktop, gnome/Netscape.desktop: Remove old
- .desktop
-
-2000-08-24 09:04 David Baudens <baudens at mandriva.com>
-
- * faces/default.png, faces/root, faces/root.png: *** empty log
- message ***
-
-2000-08-24 08:11 David Baudens <baudens at mandriva.com>
-
- * ChangeLog, mandrake_desk.spec: Update Spec and Makefile
-
-2000-08-24 08:08 David Baudens <baudens at mandriva.com>
-
- * faces/root: Add a "root" link to make GDM happy
-
-2000-08-23 17:30 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update Makefile and spec file
-
-2000-08-23 17:28 David Baudens <baudens at mandriva.com>
-
- * faces/default.png, faces/root.png: Add link default.png and
- root.png to make KDM happy
-
-2000-08-23 08:44 David Baudens <baudens at mandriva.com>
-
- * faces/user-brunette-mdk.xpm, faces/user-curly-mdk.xpm,
- faces/user-default-mdk.xpm, faces/user-girl-mdk.xpm,
- faces/user-hat-mdk.xpm, faces/user-tie-mdk.xpm,
- faces/user-woman-blond-mdk.xpm: Removed unneeded files
-
-2000-08-23 08:40 David Baudens <baudens at mandriva.com>
-
- * faces/user-brunette-mdk.png, faces/user-curly-mdk.png,
- faces/user-default-mdk.png, faces/user-girl-mdk.png,
- faces/user-hat-mdk.png, faces/user-tie-mdk.png,
- faces/user-woman-blond-mdk.png: Convert faces/*.xpm to
- faces/*.png
-
-2000-08-23 08:39 David Baudens <baudens at mandriva.com>
-
- * ChangeLog, Makefile, README.CVS, TRANSLATORS,
- default_background.jpg, default_logo.jpg, mandrake_desk.spec: ***
- empty log message ***
-
-2000-08-22 17:10 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Re fix spec
-
-2000-08-22 17:06 David Baudens <baudens at mandriva.com>
-
- * Makefile, mandrake_desk.spec: Fix Makefile and spec
-
-2000-08-22 16:55 David Baudens <baudens at mandriva.com>
-
- * icons/3floppy_supermount.xpm, icons/5floppy_supermount.xpm,
- icons/DrakConf.xpm, icons/cdrom_supermount.xpm,
- icons/cdwriter_supermount.xpm, icons/default_background.jpg,
- icons/default_logo.jpg, icons/doc-mdk.xpm, icons/gimp.xpm,
- icons/gnome-mandrake.png, icons/icq.xpm,
- icons/magneto-optical_supermount.xpm, icons/mandrake-logo-48.xpm,
- icons/mandrake-logo-64.xpm, icons/mandrake-logo.xpm,
- icons/maxwell.xpm, icons/netscape.xpm, icons/news-mdk.xpm,
- icons/rpmdrake.xpm, icons/updates-mdk.xpm,
- icons/user-brunette-mdk.xpm, icons/user-curly-mdk.xpm,
- icons/user-default-mdk.xpm, icons/user-girl-mdk.xpm,
- icons/user-hat-mdk.xpm, icons/user-tie-mdk.xpm,
- icons/user-woman-blond-mdk.xpm, icons/xkill-mdk.xpm,
- icons/zip_supermount.xpm: *** empty log message ***
-
-2000-08-22 16:51 David Baudens <baudens at mandriva.com>
-
- * faces, faces/user-brunette-mdk.xpm, faces/user-curly-mdk.xpm,
- faces/user-default-mdk.xpm, faces/user-girl-mdk.xpm,
- faces/user-hat-mdk.xpm, faces/user-tie-mdk.xpm,
- faces/user-woman-blond-mdk.xpm: Move users icons in
- /usr/share/faces
-
-2000-08-22 16:46 David Baudens <baudens at mandriva.com>
-
- * ChangeLog, Makefile, mandrake_desk.spec: *** empty log message
- ***
-
-2000-08-22 16:46 David Baudens <baudens at mandriva.com>
-
- * ChangeLog, Makefile, README.CVS, TRANSLATORS,
- default_background.jpg, default_logo.jpg, mandrake_desk.spec: ***
- empty log message ***
-
-2000-08-19 09:28 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS, gnome/DrakConf.desktop, gnome/Netscape.desktop,
- gnome/mandrake.links.sh, kdelnk/Doc.kdelnk, kdelnk/Home.kdelnk,
- kdelnk/Internet.kdelnk, kdelnk/Netscape.kdelnk,
- kdelnk/News.kdelnk, kdelnk/Printer.kdelnk, kdelnk/Updates.kdelnk,
- kdelnk/XKill.kdelnk, special/Gnome_and_X: Added Belarussian
- strings
-
-2000-08-17 16:13 Pablo Saratxaga <pablo at mandriva.com>
-
- * gnome/DrakConf.desktop, kdelnk/Printer.kdelnk,
- kdelnk/XKill.kdelnk: updated Estonian strings
-
-2000-08-15 11:39 Pablo Saratxaga <pablo at mandriva.com>
-
- * gnome/DrakConf.desktop, kdelnk/XKill.kdelnk: updated Ukrainian
- strings
-
-2000-08-14 10:18 Pablo Saratxaga <pablo at mandriva.com>
-
- * gnome/DrakConf.desktop, kdelnk/Home.kdelnk,
- kdelnk/Printer.kdelnk: updated Chinese strings
-
-2000-08-14 09:22 Pablo Saratxaga <pablo at mandriva.com>
-
- * gnome/DrakConf.desktop, kdelnk/XKill.kdelnk: updated Bulgarian
- strings
-
-2000-08-14 07:33 Stefan Siegel <siegel at linux-mandrake.com>
-
- * gnome/DrakConf.desktop, kdelnk/DrakConf.kdelnk: *** empty log
- message ***
-
-2000-08-13 09:56 Pablo Saratxaga <pablo at mandriva.com>
-
- * gnome/DrakConf.desktop: updated Greek strings
-
-2000-08-12 15:09 Pablo Saratxaga <pablo at mandriva.com>
-
- * gnome/DrakConf.desktop: updated Serbian strings
-
-2000-08-12 14:25 Pablo Saratxaga <pablo at mandriva.com>
-
- * gnome/DrakConf.desktop, kdelnk/Doc.kdelnk,
- kdelnk/Internet.kdelnk, kdelnk/Printer.kdelnk: updated Catalan
- strings
-
-2000-08-12 09:47 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS: fixed an email address
-
-2000-08-10 18:58 Pablo Saratxaga <pablo at mandriva.com>
-
- * kdelnk/Doc.kdelnk, kdelnk/Internet.kdelnk: small update
-
-2000-08-07 13:15 Pablo Saratxaga <pablo at mandriva.com>
-
- * gnome/DrakConf.desktop: updated Lithuanian strings
-
-2000-07-22 19:28 Chmouel Boudjnah
-
- * ChangeLog, Makefile, mandrake_desk.spec: BM.
-
-2000-07-18 21:31 Chmouel Boudjnah
-
- * ChangeLog, mandrake_desk.spec, sbin/chksession: *
- sbin/chksession: Set support for KDE2 by default when generating
- session.
-
-2000-07-18 09:42 Chmouel Boudjnah
-
- * Makefile, mandrake_desk.spec: window-managers no longer needed.
-
-2000-07-18 09:41 Chmouel Boudjnah
-
- * window-managers: window-managers is no longer needed.
-
-2000-07-18 09:39 Chmouel Boudjnah
-
- * ChangeLog, bin/DrakWM, mandrake_desk.spec: * bin/DrakWM: Add -i
- options to launch with xinit.
- add -a option to provide alias for bash.
-
-2000-07-17 11:20 Dam's
-
- * mandrake_desk.spec: new release
-
-2000-07-16 12:23 Dam's
-
- * ChangeLog: updated
-
-2000-07-16 12:11 Dam's
-
- * ChangeLog, window-managers: sawmill -> sawfish
-
-2000-07-11 21:43 Chmouel Boudjnah
-
- * sbin/convertsession: A new greatest hit.
-
-2000-07-11 21:43 Chmouel Boudjnah
-
- * ChangeLog, mandrake_desk.spec, sbin/chksession: sbin/chksession:
- make window-managers file dynamic by simple entry in
- /etc/X11/wmsession.d/
- sbin/convertsession: a new greatest hit.
- mandrake_desk.spec: %post with convertsession
-
-2000-07-07 11:22 Pablo Saratxaga <pablo at mandriva.com>
-
- * gnome/DrakConf.desktop: updated Spanish strings
-
-2000-07-06 18:34 Pablo Saratxaga <pablo at mandriva.com>
-
- * gnome/DrakConf.desktop: updated French strings
-
-2000-07-03 17:34 Pablo Saratxaga <pablo at mandriva.com>
-
- * gnome/DrakConf.desktop, special/Gnome_and_X: updated Czech and
- Latvian strings
-
-2000-06-30 11:34 Pablo Saratxaga <pablo at mandriva.com>
-
- * gnome/DrakConf.desktop, kdelnk/Home.kdelnk: updated Norwegia
- nstrings
-
-2000-06-27 23:15 Pablo Saratxaga <pablo at mandriva.com>
-
- * gnome/DrakConf.desktop: updated Hungarian string
-
-2000-06-26 14:00 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS, gnome/DrakConf.desktop, gnome/Netscape.desktop,
- kdelnk/Doc.kdelnk, kdelnk/DrakConf.kdelnk, kdelnk/Home.kdelnk,
- kdelnk/Internet.kdelnk, kdelnk/Netscape.kdelnk,
- kdelnk/News.kdelnk, kdelnk/Printer.kdelnk, kdelnk/Updates.kdelnk,
- kdelnk/XKill.kdelnk, special/Gnome_and_X: added Arabic strings
-
-2000-06-11 19:59 Pablo Saratxaga <pablo at mandriva.com>
-
- * gnome/DrakConf.desktop, kdelnk/DrakConf.kdelnk,
- kdelnk/Netscape.kdelnk, kdelnk/Printer.kdelnk,
- kdelnk/XKill.kdelnk, special/Gnome_and_X: updated Czech strings
-
-2000-06-07 16:37 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS, gnome/DrakConf.desktop, gnome/mandrake.links.sh,
- kdelnk/Doc.kdelnk, kdelnk/DrakConf.kdelnk, kdelnk/Home.kdelnk,
- kdelnk/Internet.kdelnk, kdelnk/News.kdelnk,
- kdelnk/Printer.kdelnk, kdelnk/Updates.kdelnk,
- kdelnk/XKill.kdelnk, special/Gnome_and_X: Added Korean strings
-
-2000-06-04 22:44 Pablo Saratxaga <pablo at mandriva.com>
-
- * kdelnk/XKill.kdelnk: Updated Esperanto strings
-
-2000-05-29 11:23 Dam's
-
- * ChangeLog, mandrake_desk.spec: see changelog
-
-2000-05-27 19:42 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS, gnome/DrakConf.desktop, gnome/Netscape.desktop,
- gnome/mandrake.links.sh, kdelnk/Doc.kdelnk,
- kdelnk/DrakConf.kdelnk, kdelnk/Home.kdelnk,
- kdelnk/Internet.kdelnk, kdelnk/Netscape.kdelnk,
- kdelnk/News.kdelnk, kdelnk/Printer.kdelnk, kdelnk/Updates.kdelnk,
- kdelnk/XKill.kdelnk, special/Gnome_and_X: Updated Serbian strings
-
-2000-05-18 23:43 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS, gnome/DrakConf.desktop, gnome/Netscape.desktop,
- gnome/mandrake.links.sh, kdelnk/Doc.kdelnk,
- kdelnk/DrakConf.kdelnk, kdelnk/Home.kdelnk,
- kdelnk/Internet.kdelnk, kdelnk/Netscape.kdelnk,
- kdelnk/News.kdelnk, kdelnk/Printer.kdelnk, kdelnk/Updates.kdelnk,
- kdelnk/XKill.kdelnk, special/Gnome_and_X: Added Afrikaans strings
-
-2000-05-16 22:24 Pablo Saratxaga <pablo at mandriva.com>
-
- * gnome/mandrake.links.sh: Updated slovakian strings
- fixed a lot of things in mandrake.links* files (when editing
- those files
- please use an 8bit aware editor !)
-
-2000-05-13 09:37 Pablo Saratxaga <pablo at mandriva.com>
-
- * gnome/DrakConf.desktop, kdelnk/DrakConf.kdelnk,
- kdelnk/XKill.kdelnk: updated strings
-
-2000-05-13 09:34 Pablo Saratxaga <pablo at mandriva.com>
-
- * gnome/Netscape.desktop, kdelnk/Doc.kdelnk,
- kdelnk/Internet.kdelnk, kdelnk/News.kdelnk, kdelnk/XKill.kdelnk:
- Updated French strings
-
-2000-05-12 14:16 Frederic Lepied <flepied at mandriva.com>
-
- * sbin/chksession: * use /etc/X11/Xsession for gnome sessions.
-
-2000-05-12 14:16 Frederic Lepied <flepied at mandriva.com>
-
- * mandrake_desk.spec: * 1.0.3-21mdk
-
-2000-05-12 09:47 Dam's
-
- * gnome/mandrake.links.sh: removed mandrakeupdate
-
-2000-05-12 09:30 Dam's
-
- * gnome/mandrake.links.sh: corrected mdkupdate entry
-
-2000-05-12 09:21 Dam's
-
- * ChangeLog, mandrake_desk.spec: new mdk rel ; added gnome desktop
- entries
-
-2000-05-09 21:33 Dam's
-
- * mandrake_desk.spec: mdk release
-
-2000-05-09 21:24 Dam's
-
- * gnome/mandrake.links.sh: buuug
-
-2000-05-09 21:18 Dam's
-
- * gnome/mandrake.links.sh: corrected bug
-
-2000-05-09 18:28 Dam's
-
- * gnome/mandrake.links.sh: netscape on desktop
-
-2000-05-09 18:18 Dam's
-
- * gnome/mandrake.links.sh: updated for netscape on desktop
-
-2000-05-09 17:58 Dam's
-
- * mandrake_desk.spec: new release
-
-2000-05-09 17:57 Dam's
-
- * ChangeLog: no comment
-
-2000-05-09 17:54 Pixel <pixel at mandriva.com>
-
- * ChangeLog, sbin/kdeDesktopCleanup: *** empty log message ***
-
-2000-05-09 17:47 Dam's
-
- * gnome/mandrake.links.sh: added netscape on the desktop
-
-2000-05-09 17:38 Dam's
-
- * mandrake_desk.spec: no more netscape.desktop
-
-2000-05-09 17:38 Dam's
-
- * Makefile: removed netscape.desktop copy
-
-2000-05-09 15:00 Dam's
-
- * gnome/Netscape.desktop, gnome/mandrake.links.sh,
- mandrake_desk.spec: removed gnome desktop icons...
-
-2000-05-09 13:22 Dam's
-
- * gnome/mandrake.links.sh: bug fix
-
-2000-05-09 10:03 Dam's
-
- * gnome/mandrake.links.sh: netscape desktop
-
-2000-05-09 08:15 Dam's
-
- * ChangeLog, gnome/Netscape.desktop, mandrake_desk.spec: see
- changelog. new release, cosmetic fix.
-
-2000-05-08 21:24 Dam's
-
- * gnome/DrakConf.desktop: cosmetic fix
-
-2000-05-06 20:55 Chmouel Boudjnah
-
- * ChangeLog, mandrake_desk.spec, sbin/chksession: *
- sbin/chksession: if icewm is not here by default launch twm.
-
-2000-05-05 20:37 Pablo Saratxaga <pablo at mandriva.com>
-
- * kdelnk/Printer.kdelnk: Updated Galician strings
-
-2000-05-05 10:21 Pixel <pixel at mandriva.com>
-
- * ChangeLog, mandrake_desk.spec, sbin/kdeDesktopCleanup: no_comment
-
-2000-05-04 14:09 Dam's
-
- * mandrake_desk.spec: mandrake_desk.spec gnome/mandrake.links
- :cleaned gnome desktop
-
-2000-05-02 14:05 Pablo Saratxaga <pablo at mandriva.com>
-
- * gnome/DrakConf.desktop, gnome/Netscape.desktop,
- kdelnk/DrakConf.kdelnk, kdelnk/Netscape.kdelnk,
- kdelnk/Printer.kdelnk: Updated Romanian strings
-
-2000-04-30 18:14 Stefan Siegel <siegel at linux-mandrake.com>
-
- * icons/large/magneto-optical_supermount.xpm,
- icons/magneto-optical_supermount.xpm,
- icons/mini/magneto-optical_supermount.xpm: - icon adaption
-
-2000-04-30 17:44 Stefan Siegel <siegel at linux-mandrake.com>
-
- * ChangeLog: - icons cleanup
-
-2000-04-30 17:13 Stefan Siegel <siegel at linux-mandrake.com>
-
- * icons/3floppy_supermount.xpm, icons/5floppy_supermount.xpm,
- icons/large/mandrake-logo.xpm, icons/large/netscape.xpm,
- icons/large/rpm-mdk.xpm, icons/large/rpm_mdk.xpm,
- icons/large/xkill-mdk.xpm, icons/large/xkill.xpm,
- icons/mandrake-logo-mini.xpm, icons/mdk-doc.xpm,
- icons/mdk-updates.xpm, icons/mini/cdrom_supermount.xpm,
- icons/mini/mandrake-logo.xpm, icons/mini/netscape.xpm: - cleanup
- icons
-
-2000-04-30 15:28 Dam's
-
- * mandrake_desk.spec: mandrake_desk.spec :bad date
-
-2000-04-30 15:16 Dam's
-
- * mandrake_desk.spec: mandrake_desk.spec :bad release
-
-2000-04-30 15:15 Dam's
-
- * ChangeLog, mandrake_desk.spec: ChangeLog mandrake_desk.spec :see
- Changelog
-
-2000-04-30 14:58 Dam's
-
- * kdelnk/XKill.kdelnk: XKill.kdelnk : re added to allow newbie to
- kill without -9
-
-2000-04-30 11:44 Stefan Siegel <siegel at linux-mandrake.com>
-
- * kdelnk/Internet.kdelnk, kdelnk/Printer.kdelnk: - updated german
- translations
-
-2000-04-29 17:26 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS, gnome/DrakConf.desktop, gnome/Netscape.desktop,
- gnome/mandrake.links.sh, kdelnk/DrakConf.kdelnk,
- kdelnk/Internet.kdelnk, kdelnk/Netscape.kdelnk,
- kdelnk/Printer.kdelnk, kdelnk/Updates.kdelnk: Updated Britton,
- Esperanto and Estonian strings
-
-2000-04-28 14:40 Stefan Siegel <siegel at linux-mandrake.com>
-
- * ChangeLog, TRANSLATORS, icons/3floppy_supermount.xpm,
- icons/5floppy_supermount.xpm, icons/cdrom_supermount.xpm,
- icons/cdwriter_supermount.xpm,
- icons/large/cdwriter_supermount.xpm,
- icons/mini/3floppy_supermount.xpm,
- icons/mini/5floppy_supermount.xpm,
- icons/mini/cdrom_supermount.xpm,
- icons/mini/cdwriter_supermount.xpm, icons/mini/hd_mount.xpm,
- icons/mini/hd_unmount.xpm, icons/zip_supermount.xpm: - add
- cdwriter_supermount.xpm
- - correct TRANSLATOR address
- - use kdecolors in icons
-
-2000-04-28 12:40 Dam's
-
- * ChangeLog, mandrake_desk.spec: ChangeLog mandrake_desk.spec
- :corrected xfce entry in windowmanagers.
-
-2000-04-28 10:15 Dam's
-
- * ChangeLog, mandrake_desk.spec, window-managers: ChangeLog
- mandrake_desk.spec window-managers : recovering old files
-
-2000-04-28 08:27 Dam's
-
- * mandrake_desk.spec: mandrake_desk.spec :fixed bad date
-
-2000-04-28 08:15 Dam's
-
- * ChangeLog, mandrake_desk.spec, window-managers: ChangeLog
- mandrake_desk.spec window-managers :corrected xfce entry
-
-2000-04-27 13:57 Dam's
-
- * mandrake_desk.spec: mandrake_desk.spec : bad date
-
-2000-04-27 13:46 Dam's
-
- * ChangeLog, kdelnk/Updates.kdelnk, mandrake_desk.spec,
- window-managers: ChangeLog mandrake_desk.spec window-managers
- :corrected wmaker entry
- kdelnk/Updates.kdelnk :unfortunally removed, so re-added
-
-2000-04-26 14:26 Dam's
-
- * ChangeLog: ChangeLog :updated
-
-2000-04-26 14:24 Dam's
-
- * icons/applnk.xpm, icons/gnome-mandrake.png, icons/x11amp.xpm:
- icons/gnome-mandrake.png :new graphic charter
- icons/applnk.xpm icons/x11amp.xpm :useless
-
-2000-04-22 03:09 Pablo Saratxaga <pablo at mandriva.com>
-
- * gnome/DrakConf.desktop, gnome/Netscape.desktop,
- gnome/mandrake.links.sh, kdelnk/Doc.kdelnk,
- kdelnk/DrakConf.kdelnk, kdelnk/Home.kdelnk,
- kdelnk/Internet.kdelnk, kdelnk/Netscape.kdelnk,
- kdelnk/News.kdelnk, kdelnk/Printer.kdelnk, special/Gnome_and_X:
- added Esperanto strings
-
-2000-04-21 15:55 David Baudens <baudens at mandriva.com>
-
- * ChangeLog, mandrake_desk.spec, window-managers: Upload (see
- ChangeLog)
-
-2000-04-21 03:58 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update .spec
-
-2000-04-21 03:54 David Baudens <baudens at mandriva.com>
-
- * icons/doc-mdk.xpm, icons/large/doc-mdk.xpm,
- icons/mini/doc-mdk.xpm: Update doc icons
-
-2000-04-20 17:15 Fançois Pons
-
- * mandrake_desk.spec, window-managers: *** empty log message ***
-
-2000-04-20 15:13 Pablo Saratxaga <pablo at mandriva.com>
-
- * gnome/DrakConf.desktop, gnome/Netscape.desktop,
- kdelnk/DrakConf.kdelnk, kdelnk/Internet.kdelnk,
- kdelnk/Netscape.kdelnk, kdelnk/Printer.kdelnk: Updated Icelandic
- strings
-
-2000-04-20 14:48 Fançois Pons
-
- * mandrake_desk.spec, window-managers: *** empty log message ***
-
-2000-04-18 13:24 Dam's
-
- * mandrake_desk.spec: mandrake_desk.spec :corrected bad version
- number
-
-2000-04-18 13:21 Dam's
-
- * Makefile: Makefile :updated for new mdk relese
-
-2000-04-18 13:18 Dam's
-
- * ChangeLog, mandrake_desk.spec: ChangeLog mandrake_desk.spec : new
- mdk release
-
-2000-04-18 12:26 Dam's
-
- * gnome/RpmDrake.desktop, kdelnk/Gimp.kdelnk,
- kdelnk/RpmDrake.kdelnk, kdelnk/Updates.kdelnk,
- kdelnk/XKill.kdelnk, window-managers: window-managers : minor
- correction
- gnome/RpmDrake.desktop kdelnk/Gimp.kdelnk
- kdelnk/RpmDrake.kdelnk kdelnk/Updates.kdelnk
- kdelnk/XKill.kdelnk : desktops needed to be cleaned
-
-2000-04-18 09:20 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS, gnome/DrakConf.desktop, gnome/Netscape.desktop,
- gnome/mandrake.links.sh, kdelnk/Doc.kdelnk,
- kdelnk/DrakConf.kdelnk, kdelnk/Gimp.kdelnk, kdelnk/Home.kdelnk,
- kdelnk/Internet.kdelnk, kdelnk/Netscape.kdelnk,
- kdelnk/News.kdelnk, kdelnk/Printer.kdelnk,
- kdelnk/RpmDrake.kdelnk, kdelnk/Updates.kdelnk,
- kdelnk/XKill.kdelnk: Added Welsh strings
-
-2000-04-18 08:23 Pablo Saratxaga <pablo at mandriva.com>
-
- * gnome/DrakConf.desktop, gnome/Netscape.desktop,
- gnome/RpmDrake.desktop, gnome/mandrake.links.sh,
- kdelnk/DrakConf.kdelnk, kdelnk/Internet.kdelnk,
- kdelnk/Netscape.kdelnk, kdelnk/RpmDrake.kdelnk,
- kdelnk/XKill.kdelnk: Updated Irish entries
-
-2000-04-17 13:22 Dam's
-
- * mandrake_desk.spec: Modified Files:
- mandrake_desk.spec
- updated
-
-2000-04-17 13:21 Dam's
-
- * ChangeLog, kdelnk/KAppFinder.kdelnk: Modified Files:
- ChangeLog
- updated
- Removed Files:
- kdelnk/KAppFinder.kdelnk
- KAppFinder is obsolete now, due to the new menu gestion
-
-2000-04-17 08:28 Dam's
-
- * ChangeLog: Modified Files:
- ChangeLog
- updated changes from .spec to Changelog
-
-2000-04-17 08:26 Dam's
-
- * icons/default_background.jpg, icons/default_logo.jpg: Added
- Files:
- icons/default_background.jpg icons/default_logo.jpg
- Files added to fit with new look of kdm and gdm.
-
-2000-04-17 02:56 Chmouel Boudjnah
-
- * ChangeLog, window-managers: Various fix.
-
-2000-04-16 22:49 Chmouel Boudjnah
-
- * mandrake_desk.spec: Add /usr/bin
-
-2000-04-16 22:46 Chmouel Boudjnah
-
- * Makefile, mandrake_desk.spec: DrakWM a new greatest hit.
-
-2000-04-16 22:45 Chmouel Boudjnah
-
- * bin, bin/DrakWM: Add file.
-
-2000-04-16 19:37 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS, gnome/DrakConf.desktop, gnome/RpmDrake.desktop,
- gnome/mandrake.links.sh, kdelnk/Doc.kdelnk,
- kdelnk/DrakConf.kdelnk, kdelnk/Home.kdelnk,
- kdelnk/Internet.kdelnk, kdelnk/KAppFinder.kdelnk,
- kdelnk/Netscape.kdelnk, kdelnk/News.kdelnk,
- kdelnk/Printer.kdelnk, kdelnk/RpmDrake.kdelnk,
- kdelnk/Updates.kdelnk, kdelnk/XKill.kdelnk, special/Gnome_and_X:
- Added Greek strings
-
-2000-04-16 13:37 Pablo Saratxaga <pablo at mandriva.com>
-
- * gnome/DrakConf.desktop, gnome/RpmDrake.desktop,
- kdelnk/DrakConf.kdelnk, kdelnk/KAppFinder.kdelnk,
- kdelnk/Printer.kdelnk, kdelnk/RpmDrake.kdelnk,
- kdelnk/XKill.kdelnk: Updated Croatian strings
-
-2000-04-16 13:12 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS, gnome/DrakConf.desktop, gnome/RpmDrake.desktop,
- gnome/mandrake.links.sh, kdelnk/Doc.kdelnk,
- kdelnk/DrakConf.kdelnk, kdelnk/Home.kdelnk,
- kdelnk/Internet.kdelnk, kdelnk/KAppFinder.kdelnk,
- kdelnk/News.kdelnk, kdelnk/Printer.kdelnk,
- kdelnk/RpmDrake.kdelnk, kdelnk/Updates.kdelnk,
- kdelnk/XKill.kdelnk, special/Gnome_and_X: Added Finnsih strings
-
-2000-04-12 10:21 Pablo Saratxaga <pablo at mandriva.com>
-
- * kdelnk/Gimp.kdelnk, kdelnk/News.kdelnk, special/Gnome_and_X:
- Updated Danish strings
-
-2000-04-11 16:55 Dam's
-
- * mandrake_desk.spec: Modified Files:
- mandrake_desk.spec
- added ref for /usr/share/icons/*.jpg
-
-2000-04-11 16:21 Dam's
-
- * default_logo.jpg: Modified Files:
- default_logo.jpg
- final logo
-
-2000-04-11 15:46 Dam's
-
- * default_background.jpg, default_logo.jpg: Added Files:
- default_background.jpg default_logo.jpg
- needed for new release of gdm/kdm
-
-2000-04-11 15:43 Dam's
-
- * ChangeLog, Makefile, icons/large/rpmdrake.xpm,
- icons/large/updates-mdk.xpm, icons/mandrake-logo-48.xpm,
- icons/mandrake-logo-64.xpm, icons/mandrake-logo-mini.xpm,
- icons/mandrake-logo.xpm, icons/mdk-doc.xpm,
- icons/mdk-updates.xpm, icons/mini/rpmdrake.xpm,
- icons/mini/updates-mdk.xpm, icons/news-mdk.xpm,
- icons/rpmdrake.xpm, icons/updates-mdk.xpm,
- icons/user-hat-mdk.xpm, mandrake_desk.spec, special/Gnome_and_X,
- special/mandrake-small.xpm: updated icons
-
-2000-04-10 20:14 Pablo Saratxaga <pablo at mandriva.com>
-
- * gnome/DrakConf.desktop, gnome/RpmDrake.desktop,
- kdelnk/DrakConf.kdelnk, kdelnk/KAppFinder.kdelnk,
- kdelnk/RpmDrake.kdelnk, kdelnk/XKill.kdelnk: updated German
- strings
-
-2000-04-10 18:12 Pablo Saratxaga <pablo at mandriva.com>
-
- * kdelnk/Gimp.kdelnk: updated Lithuanian strings
-
-2000-04-10 13:49 Pablo Saratxaga <pablo at mandriva.com>
-
- * gnome/DrakConf.desktop, gnome/Netscape.desktop,
- gnome/RpmDrake.desktop, kdelnk/DrakConf.kdelnk,
- kdelnk/Home.kdelnk, kdelnk/KAppFinder.kdelnk,
- kdelnk/Netscape.kdelnk, kdelnk/News.kdelnk,
- kdelnk/Printer.kdelnk, kdelnk/RpmDrake.kdelnk,
- kdelnk/XKill.kdelnk: Updated Galician and Hungarian strings
-
-2000-04-08 23:42 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS, gnome/DrakConf.desktop, gnome/RpmDrake.desktop,
- gnome/mandrake.links.sh, kdelnk/Doc.kdelnk,
- kdelnk/DrakConf.kdelnk, kdelnk/Gimp.kdelnk, kdelnk/Home.kdelnk,
- kdelnk/Internet.kdelnk, kdelnk/KAppFinder.kdelnk,
- kdelnk/Netscape.kdelnk, kdelnk/News.kdelnk,
- kdelnk/Printer.kdelnk, kdelnk/RpmDrake.kdelnk,
- kdelnk/Updates.kdelnk, kdelnk/XKill.kdelnk, special/Gnome_and_X:
- Added Swedish strings
-
-2000-04-07 01:46 Chmouel Boudjnah
-
- * ChangeLog, window-managers: "Seethechangelog"
-
-2000-04-05 21:51 Chmouel Boudjnah
-
- * mandrake_desk.spec: "Seethechangelog"
-
-2000-04-05 21:51 Chmouel Boudjnah
-
- * ChangeLog, Makefile, mandrake_desk.spec: "Seethechangelog"
-
-2000-04-05 21:49 Chmouel Boudjnah
-
- * ChangeLog, mandrake_desk.spec: "Seethechangelog"
-
-2000-04-05 21:46 Chmouel Boudjnah
-
- * ChangeLog, Makefile, mandrake_desk.spec: "Seethechangelog"
-
-2000-04-05 21:38 Chmouel Boudjnah
-
- * ChangeLog, Makefile, mandrake_desk.spec, window-managers:
- "Seethechangelog"
-
-2000-04-04 21:27 Pablo Saratxaga <pablo at mandriva.com>
-
- * gnome/DrakConf.desktop, gnome/RpmDrake.desktop,
- kdelnk/DrakConf.kdelnk, kdelnk/KAppFinder.kdelnk,
- kdelnk/Printer.kdelnk, kdelnk/RpmDrake.kdelnk,
- kdelnk/XKill.kdelnk: updated Latvian strings
-
-2000-04-04 13:57 David Baudens <baudens at mandriva.com>
-
- * backgrounds/default_background.jpg: Add default background
-
-2000-04-04 13:55 David Baudens <baudens at mandriva.com>
-
- * backgrounds/mandrake_background3_1024.jpg,
- backgrounds/mandrake_background4_1024.jpg: Add backgrounds
-
-2000-04-04 13:53 David Baudens <baudens at mandriva.com>
-
- * backgrounds/mandrake_background1_1024.jpg,
- backgrounds/mandrake_background2_1024.jpg,
- backgrounds/mandrake_background_1024-1.jpg,
- backgrounds/mandrake_background_1024-2.jpg,
- backgrounds/mandrake_background_1024-3.jpg,
- backgrounds/mandrake_background_1024.jpg,
- backgrounds/mandrake_background_800.jpg,
- backgrounds/mandrake_background_blue_1024.jpg: Add & remove
- backgrounds
-
-2000-03-31 14:45 Pablo Saratxaga <pablo at mandriva.com>
-
- * gnome/DrakConf.desktop, gnome/Netscape.desktop,
- gnome/RpmDrake.desktop, gnome/mandrake.links.sh,
- kdelnk/DrakConf.kdelnk, kdelnk/Gimp.kdelnk,
- kdelnk/Internet.kdelnk, kdelnk/KAppFinder.kdelnk,
- kdelnk/Netscape.kdelnk, kdelnk/Printer.kdelnk,
- kdelnk/RpmDrake.kdelnk, kdelnk/XKill.kdelnk: updated Lithuanian
- strings
-
-2000-03-29 22:32 Pablo Saratxaga <pablo at mandriva.com>
-
- * gnome/DrakConf.desktop, gnome/RpmDrake.desktop,
- kdelnk/KAppFinder.kdelnk, kdelnk/RpmDrake.kdelnk,
- kdelnk/XKill.kdelnk: completed Catalan strings
-
-2000-03-26 18:00 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS, gnome/DrakConf.desktop, gnome/Netscape.desktop,
- gnome/RpmDrake.desktop, gnome/mandrake.links.sh,
- kdelnk/Doc.kdelnk, kdelnk/DrakConf.kdelnk, kdelnk/Gimp.kdelnk,
- kdelnk/Home.kdelnk, kdelnk/Internet.kdelnk,
- kdelnk/KAppFinder.kdelnk, kdelnk/Netscape.kdelnk,
- kdelnk/News.kdelnk, kdelnk/Printer.kdelnk,
- kdelnk/RpmDrake.kdelnk, kdelnk/Updates.kdelnk,
- kdelnk/XKill.kdelnk, special/Gnome_and_X: Added Slovenian strings
-
-2000-03-24 12:18 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS: updated translators list
-
-2000-03-24 12:18 Pablo Saratxaga <pablo at mandriva.com>
-
- * gnome/DrakConf.desktop, gnome/Netscape.desktop,
- gnome/RpmDrake.desktop, gnome/mandrake.links.sh,
- kdelnk/DrakConf.kdelnk, kdelnk/Internet.kdelnk,
- kdelnk/KAppFinder.kdelnk, kdelnk/Netscape.kdelnk,
- kdelnk/Printer.kdelnk, kdelnk/RpmDrake.kdelnk,
- kdelnk/XKill.kdelnk, special/Gnome_and_X: Slovakian and Norwegian
- updates
-
-2000-03-20 17:16 Pablo Saratxaga <pablo at mandriva.com>
-
- * kdelnk/Printer.kdelnk: Finished spanish descriptions
-
-2000-03-18 14:29 Pablo Saratxaga <pablo at mandriva.com>
-
- * special/Gnome_and_X: little locale naming fix
-
-2000-03-17 16:20 Pablo Saratxaga <pablo at mandriva.com>
-
- * gnome/DrakConf.desktop, gnome/RpmDrake.desktop,
- kdelnk/DrakConf.kdelnk, kdelnk/KAppFinder.kdelnk,
- kdelnk/RpmDrake.kdelnk, kdelnk/XKill.kdelnk: Updated Danish
- descriptions
-
-2000-03-08 15:55 Pablo Saratxaga <pablo at mandriva.com>
-
- * gnome/DrakConf.desktop, gnome/RpmDrake.desktop,
- gnome/mandrake.links.sh, kdelnk/DrakConf.kdelnk,
- kdelnk/Home.kdelnk, kdelnk/Internet.kdelnk,
- kdelnk/KAppFinder.kdelnk, kdelnk/Printer.kdelnk,
- kdelnk/RpmDrake.kdelnk, kdelnk/XKill.kdelnk, special/Gnome_and_X:
- Updated Dutch entries
-
-2000-03-06 10:08 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS, gnome/DrakConf.desktop, gnome/RpmDrake.desktop,
- gnome/mandrake.links.sh, kdelnk/Doc.kdelnk,
- kdelnk/DrakConf.kdelnk, kdelnk/Gimp.kdelnk, kdelnk/Home.kdelnk,
- kdelnk/Internet.kdelnk, kdelnk/KAppFinder.kdelnk,
- kdelnk/Netscape.kdelnk, kdelnk/News.kdelnk,
- kdelnk/Printer.kdelnk, kdelnk/RpmDrake.kdelnk,
- kdelnk/Updates.kdelnk, kdelnk/XKill.kdelnk, special/Gnome_and_X:
- Added Chinese entries
-
-2000-03-03 16:40 Pablo Saratxaga <pablo at mandriva.com>
-
- * kdelnk/Internet.kdelnk: Removed empty and double Name= and
- Comment= lines
-
-2000-02-02 04:51 Chmouel Boudjnah
-
- * ChangeLog, mandrake_desk.spec, window-managers:
- "See_The_Changelog"
-
-2000-01-27 14:50 Chmouel Boudjnah
-
- * ChangeLog, mandrake_desk.spec: "Seethechangelog"
-
-2000-01-27 14:44 Chmouel Boudjnah
-
- * backgrounds/mandrake_background_1024-1.jpg,
- backgrounds/mandrake_background_1024-2.jpg,
- backgrounds/mandrake_background_1024-3.jpg: "Seethechangelog"
-
-2000-01-20 10:18 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS: updated Peter email address
-
-2000-01-09 23:20 Pixel <pixel at mandriva.com>
-
- * ChangeLog, icons/mini/hd_umount.xpm, icons/mini/hd_unmount.xpm,
- mandrake_desk.spec: no_comment
-
-2000-01-07 09:59 Pixel <pixel at mandriva.com>
-
- * mandrake_desk.spec, window-managers: no_comment
-
-2000-01-07 09:23 Frederic Lepied <flepied at mandriva.com>
-
- * mandrake_desk.spec: *** empty log message ***
-
-2000-01-07 09:20 Frederic Lepied <flepied at mandriva.com>
-
- * ChangeLog, mandrake_desk.spec: * standard mandrake: none.
-
-2000-01-07 06:54 Pixel <pixel at mandriva.com>
-
- * ChangeLog, mandrake_desk.spec, sbin/chksession: no_comment
-
-2000-01-06 12:32 Pablo Saratxaga <pablo at mandriva.com>
-
- * gnome/mandrake.links.sh, kdelnk/Internet.kdelnk: added Czech
- description for internet icon
-
-2000-01-05 22:38 Pixel <pixel at mandriva.com>
-
- * ChangeLog, icons/3floppy_supermount.xpm,
- icons/5floppy_supermount.xpm, icons/DrakConf.xpm,
- icons/applnk.xpm, icons/cdrom_supermount.xpm, icons/doc-mdk.xpm,
- icons/gimp.xpm, icons/icq.xpm,
- icons/large/3floppy_supermount.xpm,
- icons/large/5floppy_supermount.xpm, icons/large/DrakConf.xpm,
- icons/large/cdrom_supermount.xpm, icons/large/doc-mdk.xpm,
- icons/large/drake.xpm, icons/large/news-mdk.xpm,
- icons/large/rpm-mdk.xpm, icons/large/rpm_mdk.xpm,
- icons/large/rpmdrake.xpm, icons/large/updates-mdk.xpm,
- icons/large/xkill.xpm, icons/large/zip_supermount.xpm,
- icons/mandrake-logo-64.xpm, icons/maxwell.xpm, icons/mdk-doc.xpm,
- icons/mdk-updates.xpm, icons/mini/3floppy_supermount.xpm,
- icons/mini/5floppy_supermount.xpm, icons/mini/DrakConf.xpm,
- icons/mini/applk.xpm, icons/mini/cdrom_supermount.xpm,
- icons/mini/doc-mdk.xpm, icons/mini/hd_mount.xpm,
- icons/mini/hd_umount.xpm, icons/mini/icq.xpm,
- icons/mini/linuxconf.xpm, icons/mini/news-mdk.xpm,
- icons/mini/rpmdrake.xpm, icons/mini/updates-mdk.xpm,
- icons/netscape.xpm, icons/news-mdk.xpm, icons/rpmdrake.xpm,
- icons/updates-mdk.xpm, icons/user-brunette-mdk.xpm,
- icons/user-curly-mdk.xpm, icons/user-default-mdk.xpm,
- icons/user-girl-mdk.xpm, icons/user-hat-mdk.xpm,
- icons/user-tie-mdk.xpm, icons/user-woman-blond-mdk.xpm,
- icons/x11amp.xpm, icons/xkill-mdk.xpm, icons/zip_supermount.xpm,
- kdelnk/Internet.kdelnk, kdelnk/Kppp.kdelnk, mandrake_desk.spec,
- sbin/kdeDesktopCleanup: no_comment
-
-2000-01-05 18:16 Pablo Saratxaga <pablo at mandriva.com>
-
- * ChangeLog, TRANSLATORS, gnome/Netscape.desktop,
- gnome/mandrake.links.sh, kdelnk/Cd-Rom.kdelnk, kdelnk/Doc.kdelnk,
- kdelnk/Gimp.kdelnk, kdelnk/Home.kdelnk, kdelnk/KAppFinder.kdelnk,
- kdelnk/Kppp.kdelnk, kdelnk/Netscape.kdelnk, kdelnk/News.kdelnk,
- kdelnk/Printer.kdelnk, kdelnk/Updates.kdelnk,
- kdelnk/XKill.kdelnk, kdelnk/floppy.kdelnk: added Turkish entries
-
-2000-01-05 16:03 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS, gnome/Netscape.desktop, gnome/mandrake.links.sh,
- kdelnk/Cd-Rom.kdelnk, kdelnk/Doc.kdelnk, kdelnk/DrakConf.kdelnk,
- kdelnk/Gimp.kdelnk, kdelnk/Home.kdelnk, kdelnk/KAppFinder.kdelnk,
- kdelnk/Kppp.kdelnk, kdelnk/Netscape.kdelnk, kdelnk/News.kdelnk,
- kdelnk/Printer.kdelnk, kdelnk/Updates.kdelnk,
- kdelnk/XKill.kdelnk, kdelnk/floppy.kdelnk: added Latvian entries
-
-2000-01-04 23:49 Chmouel Boudjnah
-
- * ChangeLog, Makefile, kdelnk/DrakConf.kdelnk, mandrake_desk.spec:
- "Seethechangelog"
-
-2000-01-04 22:57 Chmouel Boudjnah
-
- * gnome/DrakConf.desktop, gnome/mandrake.links.sh:
- "Seethechangelog"
-
-2000-01-04 12:24 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec, window-managers: Use BBDrake & WMDrake for
- BlackBox & Window Maker
-
-2000-01-03 01:36 Chmouel Boudjnah
-
- * ChangeLog, mandrake_desk.spec, window-managers: "Seethechangelog"
-
-1999-12-31 13:28 Pablo Saratxaga <pablo at mandriva.com>
-
- * gnome/mandrake.links.sh, kdelnk/Kppp.kdelnk: added German name
- for PPP icon
-
-1999-12-31 10:37 Pixel <pixel at mandriva.com>
-
- * kdelnk/Kppp.kdelnk: no_comment
-
-1999-12-31 02:28 Chmouel Boudjnah
-
- * Makefile: "Seethechangelog"
-
-1999-12-31 00:30 David Baudens <baudens at mandriva.com>
-
- * kdelnk/Doc.kdelnk, kdelnk/DrakConf.kdelnk, kdelnk/Gimp.kdelnk,
- kdelnk/Home.kdelnk, kdelnk/KAppFinder.kdelnk, kdelnk/Kppp.kdelnk,
- kdelnk/Netscape.kdelnk, kdelnk/News.kdelnk,
- kdelnk/Printer.kdelnk, kdelnk/Updates.kdelnk,
- kdelnk/XKill.kdelnk: Cut some fr name
-
-1999-12-29 18:31 Pablo Saratxaga <pablo at mandriva.com>
-
- * gnome/mandrake.links.sh, kdelnk/Kppp.kdelnk: added icelandic
-
-1999-12-28 22:45 Pablo Saratxaga <pablo at mandriva.com>
-
- * mandrake_desk.spec: added the Gnome menu entries to the spec file
-
-1999-12-28 16:29 Chmouel Boudjnah
-
- * ChangeLog, mandrake_desk.spec: "Seethechangelog"
-
-1999-12-28 16:27 Chmouel Boudjnah
-
- * ChangeLog, Makefile, mandrake_desk.spec, sbin/chksession:
- "Seethechangelog"
-
-1999-12-28 15:12 Chmouel Boudjnah
-
- * man, man/chksession.8: "Seethechangelog"
-
-1999-12-27 16:19 Chmouel Boudjnah
-
- * ChangeLog, Makefile, mandrake_desk.spec, sbin/chksession:
- "Seethechangelog"
-
-1999-12-27 12:56 Pablo Saratxaga <pablo at mandriva.com>
-
- * gnome/DrakConf.desktop, gnome/RpmDrake.desktop,
- gnome/mandrake.links.sh: corrected icons names
-
-1999-12-27 11:57 Chmouel Boudjnah
-
- * mandrake_desk.spec: "Seethechangelog"
-
-1999-12-27 11:56 Chmouel Boudjnah
-
- * kdelnk/Kppp.kdelnk, mandrake_desk.spec: "Seethechangelog"
-
-1999-12-27 11:21 Chmouel Boudjnah
-
- * bin: "Seethechangelog"
-
-1999-12-27 11:06 Chmouel Boudjnah
-
- * old: "Seethechangelog"
-
-1999-12-27 10:55 Chmouel Boudjnah
-
- * icons/linuxconf.xpm, icons/package2.xpm, kdelnk/Doc.kdelnk,
- kdelnk/News.kdelnk, kdelnk/Updates.kdelnk, kdelnk/XKill.kdelnk:
- "Seethechangelog"
-
-1999-12-27 10:46 Chmouel Boudjnah
-
- * icons/magic.xpm, icons/xkill-mdk.xpm, icons/xkill.xpm:
- "Seethechangelog"
-
-1999-12-26 00:59 Pablo Saratxaga <pablo at mandriva.com>
-
- * gnome/mandrake.links.sh, kdelnk/Kppp.kdelnk: added catalan entry
-
-1999-12-25 19:30 Pablo Saratxaga <pablo at mandriva.com>
-
- * ChangeLog, Makefile, gnome/DrakConf.desktop,
- gnome/RpmDrake.desktop, mandrake_desk.spec: added menu entries
- for Gnome
-
-1999-12-25 19:14 Chmouel Boudjnah
-
- * mandrake_desk.spec: "Seethechangelog"
-
-1999-12-25 19:13 Chmouel Boudjnah
-
- * mandrake_desk.spec, window-managers: "Seethechangelog"
-
-1999-12-25 17:27 Chmouel Boudjnah
-
- * ChangeLog, mandrake_desk.spec, sbin/kdeDesktopCleanup,
- window-managers: "Seethechangelog"
-
-1999-12-24 22:38 Pablo Saratxaga <pablo at mandriva.com>
-
- * gnome/mandrake.links.sh, kdelnk/Kppp.kdelnk: added romanian entry
-
-1999-12-24 14:11 Pablo Saratxaga <pablo at mandriva.com>
-
- * gnome/mandrake.links.sh, kdelnk/Kppp.kdelnk: added galician
- description to internet icon
-
-1999-12-24 12:00 Pixel <pixel at mandriva.com>
-
- * icons/user-curly-mdk.xpm, icons/util-curly.xpm,
- mandrake_desk.spec: no_comment
-
-1999-12-23 23:37 Chmouel Boudjnah
-
- * icons/user-brunette-mdk.xpm, icons/user-default-mdk.xpm,
- icons/user-girl-mdk.xpm, icons/user-hat-mdk.xpm,
- icons/user-tie-mdk.xpm, icons/user-woman-blond-mdk.xpm:
- "Seethechangelog"
-
-1999-12-23 23:29 Chmouel Boudjnah
-
- * icons/util-brunette.xpm, icons/util-default.xpm,
- icons/util-girl.xpm, icons/util-hat.xpm, icons/util-tie.xpm,
- icons/util-woman-blond.xpm: "Seethechangelog"
-
-1999-12-23 23:26 Pixel <pixel at mandriva.com>
-
- * icons/util-curly.xpm: no_comment
-
-1999-12-23 22:34 Pablo Saratxaga <pablo at mandriva.com>
-
- * ChangeLog, gnome/mandrake.links.sh, mandrake_desk.spec: added
- Gnome desktop icons previously done in gmc package
-
-1999-12-23 19:21 Pablo Saratxaga <pablo at mandriva.com>
-
- * kdelnk/Kppp.kdelnk: added italian entry
-
-1999-12-23 17:26 Pablo Saratxaga <pablo at mandriva.com>
-
- * kdelnk/Kppp.kdelnk: added some other languages
-
-1999-12-23 17:10 Pablo Saratxaga <pablo at mandriva.com>
-
- * kdelnk/Kppp.kdelnk: added Bulgarian description
-
-1999-12-23 16:21 Pablo Saratxaga <pablo at mandriva.com>
-
- * kdelnk/Kppp.kdelnk: added HR description of kppp
-
-1999-12-23 15:54 Pablo Saratxaga <pablo at mandriva.com>
-
- * kdelnk/Kppp.kdelnk: added some languages
-
-1999-12-23 02:02 Pablo Saratxaga <pablo at mandriva.com>
-
- * kdelnk/Kppp.kdelnk: update
-
-1999-12-23 00:45 Chmouel Boudjnah
-
- * ChangeLog, kdelnk/Kppp.kdelnk: "Seethechangelog"
-
-1999-12-23 00:38 Chmouel Boudjnah
-
- * mandrake_desk.spec: "Seethechangelog"
-
-1999-12-22 23:59 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS, gnome/Netscape.desktop, kdelnk/Cd-Rom.kdelnk,
- kdelnk/Doc.kdelnk, kdelnk/Gimp.kdelnk, kdelnk/Home.kdelnk,
- kdelnk/KAppFinder.kdelnk, kdelnk/Netscape.kdelnk,
- kdelnk/News.kdelnk, kdelnk/Printer.kdelnk, kdelnk/Updates.kdelnk,
- kdelnk/XKill.kdelnk, kdelnk/floppy.kdelnk: added Bulgarian
- entries
-
-1999-12-22 13:11 Pixel <pixel at mandriva.com>
-
- * ChangeLog, icons/util-brunette.xpm, icons/util-default.xpm,
- icons/util-girl.xpm, icons/util-hat.xpm, icons/util-tie.xpm,
- icons/util-woman-blond.xpm: no_comment
-
-1999-12-22 02:28 Chmouel Boudjnah
-
- * Makefile, icons/gnome-mandrake.jpg, icons/gnome-mandrake.png,
- mandrake_desk.spec: "Seethechangelog"
-
-1999-12-22 02:22 Chmouel Boudjnah
-
- * ChangeLog, Makefile, icons/gnome-mandrake.jpg,
- mandrake_desk.spec, sbin/chksession, sbin/fndSession,
- window-managers: "Seethechangelog"
-
-1999-12-22 02:08 Chmouel Boudjnah
-
- * bin/fndSession, sbin/Xsession: "Seethechangelog"
-
-1999-12-21 12:18 Chmouel Boudjnah
-
- * Makefile, icons/DrakConf.xpm, icons/doc-mdk.xpm,
- icons/large/DrakConf.xpm, icons/large/doc-mdk.xpm,
- icons/large/news-mdk.xpm, icons/large/rpm-mdk.xpm,
- icons/large/updates-mdk.xpm, icons/mini/DrakConf.xpm,
- icons/mini/doc-mdk.xpm, icons/mini/news-mdk.xpm,
- icons/mini/rpmdrake.xpm, icons/mini/updates-mdk.xpm,
- icons/news-mdk.xpm, icons/rpmdrake.xpm, icons/updates-mdk.xpm,
- kdelnk/Doc.kdelnk, kdelnk/News.kdelnk, kdelnk/Updates.kdelnk,
- mandrake_desk.spec: "Seethechangelog"
-
-1999-12-21 01:00 David Baudens <baudens at mandriva.com>
-
- * sbin/Xsession, sbin/fndSession: Add some WM.
- Sort in alphabetic order-
-
-1999-12-20 14:18 Chmouel Boudjnah
-
- * ChangeLog, icons/3floppy_supermount.xpm,
- icons/5floppy_supermount.xpm, icons/cdrom_supermount.xpm,
- icons/clavierq.xpm, icons/large/3floppy_supermount.xpm,
- icons/large/5floppy_supermount.xpm,
- icons/large/cdrom_supermount.xpm, icons/large/clavierq.xpm,
- icons/large/zip_supermount.xpm, icons/zip_supermount.xpm:
- "Seethechangelog"
-
-1999-12-20 13:59 Pixel <pixel at mandriva.com>
-
- * Makefile, icons/large/rpmdrake.xpm, mandrake_desk.spec:
- no_comment
-
-1999-12-19 18:55 Chmouel Boudjnah
-
- * bin/fndSession, mandrake_desk.spec: "Seethechangelog"
-
-1999-12-19 18:52 Chmouel Boudjnah
-
- * README.CVS, mandrake_desk.spec: "Seethechangelog"
-
-1999-12-19 18:51 Chmouel Boudjnah
-
- * Makefile, README.CVS, mandrake_desk.spec,
- special/mandrake-small.xpm: "Seethechangelog"
-
-1999-12-19 18:21 Chmouel Boudjnah
-
- * kdelnk/Cd-Rom.kdelnk, kdelnk/floppy.kdelnk: "Seethechangelog"
-
-1999-12-19 18:09 Chmouel Boudjnah
-
- * bin/fndSession, mandrake_desk.spec, sbin/fndSession:
- "Seethechangelog"
-
-1999-12-19 18:02 Chmouel Boudjnah
-
- * Makefile, TRANSLATORS, backgrounds,
- backgrounds/mandrake_background_1024.jpg,
- backgrounds/mandrake_background_800.jpg, bin,
- bin/linuxconf_kdesu, gnome, gnome/Netscape.desktop, icons,
- icons/3floppy_supermount.xpm, icons/5floppy_supermount.xpm,
- icons/DrakConf.xpm, icons/applnk.xpm, icons/cdrom_supermount.xpm,
- icons/clavierq.xpm, icons/gimp.xpm, icons/icq.xpm, icons/large,
- icons/large/DrakConf.xpm, icons/large/clavierq.xpm,
- icons/large/drake.xpm, icons/large/rpm_mdk.xpm,
- icons/large/rpmdrake.xpm, icons/large/xkill.xpm,
- icons/linuxconf.xpm, icons/magic.xpm, icons/mandrake-logo-48.xpm,
- icons/mandrake-logo-64.xpm, icons/mandrake-logo-mini.xpm,
- icons/mandrake-logo.xpm, icons/maxwell.xpm, icons/mdk-doc.xpm,
- icons/mdk-updates.xpm, icons/mini,
- icons/mini/3floppy_supermount.xpm,
- icons/mini/5floppy_supermount.xpm, icons/mini/applk.xpm,
- icons/mini/cdrom_supermount.xpm, icons/mini/hd_mount.xpm,
- icons/mini/hd_umount.xpm, icons/mini/icq.xpm,
- icons/mini/linuxconf.xpm, icons/mini/rpmdrake.xpm,
- icons/netscape.xpm, icons/package2.xpm, icons/rpmdrake.xpm,
- icons/x11amp.xpm, icons/xkill.xpm, icons/zip_supermount.xpm,
- kdelnk, kdelnk/Cd-Rom.kdelnk, kdelnk/Doc.kdelnk,
- kdelnk/DrakConf.kdelnk, kdelnk/Gimp.kdelnk, kdelnk/Home.kdelnk,
- kdelnk/KAppFinder.kdelnk, kdelnk/Netscape.kdelnk,
- kdelnk/News.kdelnk, kdelnk/Printer.kdelnk,
- kdelnk/RpmDrake.kdelnk, kdelnk/Updates.kdelnk,
- kdelnk/XKill.kdelnk, kdelnk/floppy.kdelnk, old, old/Dos_C.kdelnk,
- old/Hwiz.kdelnk, old/Linuxconf.kdelnk, old/rpm.kdelnk, sbin,
- sbin/kdeDesktopCleanup, special, special/Gnome_and_X,
- special/README, special/TODO: Initial revision
-
-1999-12-19 18:02
-
- * soft/desktop-common-data/branches, soft/desktop-common-data/tags,
- .: New repository initialized by cvs2svn.
-
-2006-11-16 17:42 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec, menu/applications-discovery.menu: Fix
- incorrect category for wordprocessors in discovery menu (Mdv bug
- #27084)
-
-2006-10-26 18:04 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec, menu/update-menus, xinit.d/menu: - Fix
- update-menus script to not output empty line - Re-add menu file
- stamp to prevent restarting update-menus for each graphical
- login
-
-2006-10-02 19:28 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec, menu/applications-discovery.menu,
- menu/applications-mdk.menu,
- menu/desktop-directories/mandriva-moreapplications-development-interpreters.directory.in,
- menu/desktop-directories/mandriva-moreapplications-development-other.directory.in,
- menu/desktop-directories/mandriva-moreapplications-education-economy.directory.in,
- menu/desktop-directories/mandriva-moreapplications-education-geography.directory.in,
- menu/desktop-directories/mandriva-moreapplications-education-history.directory.in,
- menu/desktop-directories/mandriva-moreapplications-education-literature.directory.in,
- menu/desktop-directories/mandriva-moreapplications-education-sports.directory.in,
- menu/desktop-directories/mandriva-moreapplications-other.directory.in,
- menu/desktop-directories/mandriva-multimedia-other.directory.in,
- menu/desktop-directories/mandriva-office-communications-other.directory.in,
- menu/desktop-directories/mandriva-office-other.directory.in,
- menu/desktop-directories/mandriva-other.directory.in,
- menu/desktop-directories/mandriva-system-archiving-backup.directory.in,
- menu/desktop-directories/mandrivalinux.directory.in: - Rename
- root node from Mandriva Linux to Applications (Mdv bug #25389) -
- Add missing .directory for various entries (Mdv bug #26273)
-
-2006-09-25 14:33 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec, menu/applications-discovery.menu,
- menu/applications-mdk.menu,
- menu/desktop-directories/mandriva-moreapplications-emulators.directory.in:
- - Add missing Emulator category to menu files (Mdv bug #26148)
-
-2006-09-21 12:20 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec, menu/mandriva-discovery.menu: - Hide
- more applications in one products - Increase version for
- Conflicts (Mdv bug #26043)
-
-2006-09-19 20:08 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec, menu/applications-discovery.menu,
- menu/applications-mdk.menu, menu/mandriva-discovery.menu: - Fix
- error in upstream category in main menu - add
- mandriva-discovery.menu additional menu file to hide / sort
- applications for Discovery / One products
-
-2006-09-18 16:25 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec: - Rebuild with fixed mdk-menu-message
- to get all translations (Mdv bug #25895)
-
-2006-09-15 09:59 Laurent Montel <lmontel at mandriva.com>
-
- * bookmarks/konqueror/: bookmarks-powerpack.xml,
- bookmarks-powerpackplus.xml: Fix kaspersky icons
-
-2006-09-15 09:53 Laurent Montel <lmontel at mandriva.com>
-
- * bookmarks/konqueror/: bookmarks-powerpack.xml,
- bookmarks-powerpackplus.xml: Fix crossover favicon
-
-2006-09-15 08:48 Laurent Montel <lmontel at mandriva.com>
-
- * bookmarks/konqueror/: bookmarks-powerpack.xml,
- bookmarks-powerpackplus.xml: Add partners directory
-
-2006-09-15 08:33 Laurent Montel <lmontel at mandriva.com>
-
- * bookmarks/konqueror/: bookmarks-discovery.xml,
- bookmarks-download.xml, bookmarks-powerpack.xml,
- bookmarks-powerpackplus.xml: Fix bookmarks url
-
-2006-09-13 20:05 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec, menu/applications-mdk.menu: - Don't
- show GNOME configuration in standard menu, moved in preferences
- menu
-
-2006-09-13 16:19 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec,
- bookmarks/mozilla/mozilla-discovery-download.html,
- bookmarks/mozilla/mozilla-discovery.html,
- bookmarks/mozilla/mozilla-download.html,
- bookmarks/mozilla/mozilla-powerpack.html,
- bookmarks/mozilla/mozilla-powerpackplus.html: - Update with new
- bookmarks
-
-2006-09-13 09:46 Laurent Montel <lmontel at mandriva.com>
-
- * bookmarks/konqueror/: bookmarks-powerpack.xml,
- bookmarks-powerpackplus.xml: Fix bookmarks for power*
-
-2006-09-13 08:58 Laurent Montel <lmontel at mandriva.com>
-
- * bookmarks/konqueror/bookmarks-download.xml: Fix download
- bookmarks
-
-2006-09-13 08:56 Laurent Montel <lmontel at mandriva.com>
-
- * bookmarks/konqueror/bookmarks-discovery.xml: Fix discovery
- bookmarks
-
-2006-09-08 19:11 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec,
- bookmarks/mozilla/mozilla-discovery-download.html,
- bookmarks/mozilla/mozilla-powerpack.html,
- bookmarks/mozilla/mozilla-powerpackplus.html, menu/menustyle.csh,
- menu/menustyle.sh: - Update profile scripts to remove invalid
- dependencies - move defaults bookmarks from kde and firefox to
- this package
-
-2006-09-08 14:19 Laurent Montel <lmontel at mandriva.com>
-
- * bookmarks/konqueror/: bookmarks-discovery.xml,
- bookmarks-download.xml, bookmarks-powerpack.xml,
- bookmarks-powerpackplus.xml: Move konqueror bookmarks
-
-2006-09-04 18:32 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec, dm/mdk-gdm.xml, dm/mdk-kde.xml,
- xinit.d/desktop-directories: - Improve gdm/kdm theme with new
- backgrounds - Don't create default desktop directories for root
- (Mdv bug #19711)
-
-2006-09-04 11:46 Laurent Montel <lmontel at mandriva.com>
-
- * dm/mdk-kde.xml: Fix caps lock error
-
-2006-09-04 10:29 Laurent Montel <lmontel at mandriva.com>
-
- * dm/mdk-kde.xml: Change design as requested by design team
-
-2006-08-31 17:46 Laurent Montel <lmontel at mandriva.com>
-
- * desktop-common-data.spec, menu/applications-discovery.menu: Use
- kmenuedit menu file if it's generated.
-
-2006-08-31 17:33 Laurent Montel <lmontel at mandriva.com>
-
- * desktop-common-data.spec: Fix upgrade from 2006
-
-2006-08-30 18:54 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec, menu/update-menus: - update-menus
- doesn't do anything if DURING_INSTALL is set to 1
-
-2006-08-30 18:01 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec, menu/applications-discovery.menu,
- menu/applications-mdk.menu, menu/menustyle.csh,
- menu/menustyle.sh,
- menu/desktop-directories/mandriva-moreapplications-games-adventure.directory.in,
- xinit.d/desktop-directories: - Add missing directory file for
- adventure (Mdv bug #24829) - Add empty menu nodes for KDE in
- discovery menu - Remove old X-MandrakeLinux* categories for main
- menu, all entries must now use X-MandrivaLinux - fix default
- directories creation if translation contains spaces (Mdv bug
- #24677)
-
-2006-08-17 19:56 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec, menu/applications-discovery.menu,
- menu/menustyle.csh, menu/menustyle.sh: - Add discovery menu and
- script to support MDV_MENU_STYLE
-
-2006-08-17 13:45 Laurent Montel <lmontel at mandriva.com>
-
- * desktop-common-data.spec: Change requires to mandriva-theme
-
-2006-08-09 11:56 Laurent Montel <lmontel at mandriva.com>
-
- * desktop-common-data.spec: Update release
-
-2006-08-09 11:46 Laurent Montel <lmontel at mandriva.com>
-
- * menu/applications-mdk.menu: Fix typo. (fix oowriter menu entry)
-
-2006-08-07 11:49 Laurent Montel <lmontel at mandriva.com>
-
- * desktop-common-data.spec, menu/applications-mdk.menu: Fix mdk bug
- #24103 (add kmenuedit.menu file)
-
-2006-07-20 18:33 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec,
- menu/desktop-directories/mandriva-system-archiving-other.directory.in:
- - Add .directory for Archiving/Other (Mdv bug #23845)
-
-2006-07-20 18:29 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec, menu/applications-mdk.menu: - Ignore
- "Development" keyword, it is too broad atm (Mdv bug #23826)
-
-2006-07-20 17:47 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec, menu/applications-mdk.menu: - Fix some
- typo (Andrej) (Mdk bug #23842)
-
-2006-07-17 18:23 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec, menu/applications-mdk.menu,
- xinit.d/menu: final switch to XDG menu
-
-2006-07-17 11:01 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec, xinit.d/menu: Final switch to XDG menu
-
-2006-07-11 13:35 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec: - Add missing .directory (Mdv bug
- #23614) - fix translations for some .directories (Mdv bug #23641)
-
-2006-07-10 15:29 Frederic Crozat <fcrozat at mandriva.com>
-
- *
- menu/desktop-directories/mandriva-moreapplications-games-strategy.directory.in:
- Add missing directory file
-
-2006-07-07 15:44 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec,
- menu/desktop-directories/mandriva-moreapplications-games-sports.directory.in:
- - add missing .directory - rebuild with fixed intltool
-
-2006-07-07 12:07 Pixel <pixel at mandriva.com>
-
- * desktop-common-data.spec: - fix generating icewm menu from XDG -
- replace broken link explaining mandriva cvs usage
-
-2006-07-07 12:06 Pixel <pixel at mandriva.com>
-
- * menu/xdg_menu: fix generating icewm menu
-
-2006-06-19 18:51 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec, menu/applications-mdk.menu,
- menu/desktop-directories/mandriva-hidden.directory.in,
- menu/desktop-directories/mandriva-internet-chat.directory.in,
- menu/desktop-directories/mandriva-internet-filetransfer.directory.in,
- menu/desktop-directories/mandriva-internet-instantmessaging.directory.in,
- menu/desktop-directories/mandriva-internet-mail.directory.in,
- menu/desktop-directories/mandriva-internet-news.directory.in,
- menu/desktop-directories/mandriva-internet-other.directory.in,
- menu/desktop-directories/mandriva-internet-remoteaccess.directory.in,
- menu/desktop-directories/mandriva-internet-videoconference.directory.in,
- menu/desktop-directories/mandriva-internet-webbrowsers.directory.in,
- menu/desktop-directories/mandriva-internet-webeditors.directory.in,
- menu/desktop-directories/mandriva-internet.directory.in,
- menu/desktop-directories/mandriva-moreapplications-accessibility.directory.in,
- menu/desktop-directories/mandriva-moreapplications-communications.directory.in,
- menu/desktop-directories/mandriva-moreapplications-databases.directory.in,
- menu/desktop-directories/mandriva-moreapplications-development-developmentenvironments.directory.in,
- menu/desktop-directories/mandriva-moreapplications-development-tools.directory.in,
- menu/desktop-directories/mandriva-moreapplications-development.directory.in,
- menu/desktop-directories/mandriva-moreapplications-documentation.directory.in,
- menu/desktop-directories/mandriva-moreapplications-editors.directory.in,
- menu/desktop-directories/mandriva-moreapplications-education-languages.directory.in,
- menu/desktop-directories/mandriva-moreapplications-education-other.directory.in,
- menu/desktop-directories/mandriva-moreapplications-education-sciences.directory.in,
- menu/desktop-directories/mandriva-moreapplications-education.directory.in,
- menu/desktop-directories/mandriva-moreapplications-finances.directory.in,
- menu/desktop-directories/mandriva-moreapplications-games-arcade.directory.in,
- menu/desktop-directories/mandriva-moreapplications-games-boards.directory.in,
- menu/desktop-directories/mandriva-moreapplications-games-cards.directory.in,
- menu/desktop-directories/mandriva-moreapplications-games-other.directory.in,
- menu/desktop-directories/mandriva-moreapplications-games-puzzles.directory.in,
- menu/desktop-directories/mandriva-moreapplications-games-toys.directory.in,
- menu/desktop-directories/mandriva-moreapplications-games.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-artificialintelligence.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-astronomy.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-biology.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-chemistry.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-computerscience.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-datavisualization.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-electricity.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-geosciences.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-imageprocessing.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-mathematics.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-numericanalysis.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-other.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-parallelcomputing.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-physics.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences-robotics.directory.in,
- menu/desktop-directories/mandriva-moreapplications-sciences.directory.in,
- menu/desktop-directories/mandriva-moreapplications.directory.in,
- menu/desktop-directories/mandriva-multimedia-graphics.directory.in,
- menu/desktop-directories/mandriva-multimedia-sound.directory.in,
- menu/desktop-directories/mandriva-multimedia-video.directory.in,
- menu/desktop-directories/mandriva-multimedia.directory.in,
- menu/desktop-directories/mandriva-office-accessories.directory.in,
- menu/desktop-directories/mandriva-office-addressbooks.directory.in,
- menu/desktop-directories/mandriva-office-communications-fax.directory.in,
- menu/desktop-directories/mandriva-office-communications-pda.directory.in,
- menu/desktop-directories/mandriva-office-communications-phone.directory.in,
- menu/desktop-directories/mandriva-office-communications.directory.in,
- menu/desktop-directories/mandriva-office-drawing.directory.in,
- menu/desktop-directories/mandriva-office-graphs.directory.in,
- menu/desktop-directories/mandriva-office-presentations.directory.in,
- menu/desktop-directories/mandriva-office-publishing.directory.in,
- menu/desktop-directories/mandriva-office-spreadsheets.directory.in,
- menu/desktop-directories/mandriva-office-tasksmanagement.directory.in,
- menu/desktop-directories/mandriva-office-timemanagement.directory.in,
- menu/desktop-directories/mandriva-office-wordprocessors.directory.in,
- menu/desktop-directories/mandriva-office.directory.in,
- menu/desktop-directories/mandriva-system-archiving-cdburning.directory.in,
- menu/desktop-directories/mandriva-system-archiving-compression.directory.in,
- menu/desktop-directories/mandriva-system-archiving.directory.in,
- menu/desktop-directories/mandriva-system-configuration-bootandinit.directory.in,
- menu/desktop-directories/mandriva-system-configuration-gnome.directory.in,
- menu/desktop-directories/mandriva-system-configuration-hardware.directory.in,
- menu/desktop-directories/mandriva-system-configuration-kde.directory.in,
- menu/desktop-directories/mandriva-system-configuration-networking.directory.in,
- menu/desktop-directories/mandriva-system-configuration-other.directory.in,
- menu/desktop-directories/mandriva-system-configuration-packaging.directory.in,
- menu/desktop-directories/mandriva-system-configuration-printing.directory.in,
- menu/desktop-directories/mandriva-system-configuration.directory.in,
- menu/desktop-directories/mandriva-system-filetools.directory.in,
- menu/desktop-directories/mandriva-system-monitoring.directory.in,
- menu/desktop-directories/mandriva-system-terminals.directory.in,
- menu/desktop-directories/mandriva-system-texttools.directory.in,
- menu/desktop-directories/mandriva-system.directory.in: - Add
- missing .directory files and fix videoconference one
-
-2006-06-15 15:47 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec, menu/applications-mdk.menu: Switch to
- X-MandrivaLinux
-
-2006-05-29 14:07 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec: - Add legacy directories and default
- merge directory
-
-2006-05-29 14:06 Frederic Crozat <fcrozat at mandriva.com>
-
- * menu/applications-mdk.menu: Add back legacy directories
-
-2006-05-17 19:09 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec: Fix errors in install script
-
-2006-05-17 19:01 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec: - ship our own .directory files now -
- use kde .directory files when possible - add more upstream
- categories
-
-2006-05-17 18:35 Frederic Crozat <fcrozat at mandriva.com>
-
- * menu/applications-mdk.menu: -use our own .directory files -use
- more official categories -use kde .directory when available
-
-2006-05-17 18:31 Frederic Crozat <fcrozat at mandriva.com>
-
- * menu/desktop-directories/: mandriva-hidden.directory.in,
- mandriva-internet-chat.directory.in,
- mandriva-internet-filetransfer.directory.in,
- mandriva-internet-instantmessaging.directory.in,
- mandriva-internet-mail.directory.in,
- mandriva-internet-news.directory.in,
- mandriva-internet-other.directory.in,
- mandriva-internet-remoteaccess.directory.in,
- mandriva-internet-videoconference.directory.in,
- mandriva-internet-webbrowsers.directory.in,
- mandriva-internet-webeditors.directory.in,
- mandriva-internet.directory.in,
- mandriva-moreapplications-accessibility.directory.in,
- mandriva-moreapplications-communications.directory.in,
- mandriva-moreapplications-databases.directory.in,
- mandriva-moreapplications-development-developmentenvironments.directory.in,
- mandriva-moreapplications-development-tools.directory.in,
- mandriva-moreapplications-development.directory.in,
- mandriva-moreapplications-documentation.directory.in,
- mandriva-moreapplications-editors.directory.in,
- mandriva-moreapplications-education-languages.directory.in,
- mandriva-moreapplications-education-other.directory.in,
- mandriva-moreapplications-education-sciences.directory.in,
- mandriva-moreapplications-education.directory.in,
- mandriva-moreapplications-finances.directory.in,
- mandriva-moreapplications-games-arcade.directory.in,
- mandriva-moreapplications-games-boards.directory.in,
- mandriva-moreapplications-games-cards.directory.in,
- mandriva-moreapplications-games-other.directory.in,
- mandriva-moreapplications-games-puzzles.directory.in,
- mandriva-moreapplications-games-toys.directory.in,
- mandriva-moreapplications-games.directory.in,
- mandriva-moreapplications-sciences-mathematics.directory.in,
- mandriva-moreapplications-sciences.directory.in,
- mandriva-moreapplications.directory.in,
- mandriva-multimedia-graphics.directory.in,
- mandriva-multimedia-sound.directory.in,
- mandriva-multimedia-video.directory.in,
- mandriva-multimedia.directory.in,
- mandriva-networking.directory.in,
- mandriva-office-accessories.directory.in,
- mandriva-office-addressbooks.directory.in,
- mandriva-office-communications-fax.directory.in,
- mandriva-office-communications-pda.directory.in,
- mandriva-office-communications-phone.directory.in,
- mandriva-office-communications.directory.in,
- mandriva-office-drawing.directory.in,
- mandriva-office-graphs.directory.in,
- mandriva-office-presentations.directory.in,
- mandriva-office-publishing.directory.in,
- mandriva-office-spreadsheets.directory.in,
- mandriva-office-tasksmanagement.directory.in,
- mandriva-office-timemanagement.directory.in,
- mandriva-office-wordprocessors.directory.in,
- mandriva-office.directory.in,
- mandriva-system-archiving-cdburning.directory.in,
- mandriva-system-archiving-compression.directory.in,
- mandriva-system-archiving.directory.in,
- mandriva-system-configuration-bootandinit.directory.in,
- mandriva-system-configuration-gnome-accessibility.directory.in,
- mandriva-system-configuration-gnome-advanced.directory.in,
- mandriva-system-configuration-gnome.directory.in,
- mandriva-system-configuration-hardware.directory.in,
- mandriva-system-configuration-kde.directory.in,
- mandriva-system-configuration-networking.directory.in,
- mandriva-system-configuration-other.directory.in,
- mandriva-system-configuration-packaging.directory.in,
- mandriva-system-configuration-printing.directory.in,
- mandriva-system-configuration.directory.in,
- mandriva-system-filetools.directory.in,
- mandriva-system-monitoring.directory.in,
- mandriva-system-terminals.directory.in,
- mandriva-system-texttools.directory.in,
- mandriva-system.directory.in: Add untranslated directory files
-
-2006-05-12 17:34 Laurent Montel <lmontel at mandriva.com>
-
- * desktop-common-data.spec: Fix for missing entry
-
-2006-05-12 17:30 Laurent Montel <lmontel at mandriva.com>
-
- * menu/applications-mdk.menu: Fix missing entry reported by Nicolas
- Chipaux
-
-2006-05-12 11:24 Frederic Crozat <fcrozat at mandriva.com>
-
- * screensavers/: 01.png, 02.png, 03.png, 04.png, 05.png, 06.png,
- 07.png, 08.png, 09.png, 1.png, 10.png, 11.png, 12.png, 13.png,
- 14.png, 15.png, 16.png, 17.png, 18.png, 19.png, 2.png, 20.png,
- 21.png, 22.png, 23.png, 24.png, 25.png, 26.png, 27.png, 3.png,
- 4.png, 5.png, 6.png, 7.png, 8.png, 9.png: Readd screensaver files
-
-2006-05-11 18:08 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec: Use new filenames for kde .desktop file
-
-2006-05-11 18:07 Frederic Crozat <fcrozat at mandriva.com>
-
- * menu/applications-mdk.menu: use new name for kde .desktop file
-
-2006-05-10 11:17 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec: Add missing categories (laurent)
-
-2006-05-10 11:04 Laurent Montel <lmontel at mandriva.com>
-
- * menu/applications-mdk.menu: Fix missing menu entry (fix kcontrol)
-
-2006-05-04 18:26 Frederic Crozat <fcrozat at mandriva.com>
-
- * Makefile: fix typo
-
-2006-05-04 18:23 Frederic Crozat <fcrozat at mandriva.com>
-
- * Makefile, desktop-common-data.spec: Fix menu location
-
-2006-05-04 18:19 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec, menu/applications-mdk.menu, menu/menu,
- menu/update-menus, menu/xdg_menu: - Add applications-mdk.menu
- file for XDG menu system - Add xdg_menu script from SUSE to
- support old WM - Don't ship defaultlayout.menu anymore, it is
- merged into main menu - Fix typo in old menu file
-
-2006-05-04 18:18 Frederic Crozat <fcrozat at mandriva.com>
-
- * Makefile: Add support for mkrel
-
-2005-09-26 15:13 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec: - Fix desktop-directory script (UTF
- encoded URL, hidden .directory file) Mdk bug #18853
-
-2005-09-26 15:12 Frederic Crozat <fcrozat at mandriva.com>
-
- * xinit.d/desktop-directories: -create .directory as hidden file
- -encode url in UTF8
-
-2005-09-23 16:36 Frederic Lepied <flepied at mandriva.com>
-
- * desktop-common-data.spec: 2006-1mdk
-
-2005-09-23 16:33 Frederic Lepied <flepied at mandriva.com>
-
- * menu/menu-simplified: fixed Read Documentation entry
-
-2005-09-23 14:35 Frederic Lepied <flepied at mandriva.com>
-
- * menu/menu-simplified: fix documentation menu tuxracer => ppracer
-
-2005-09-23 14:34 Frederic Lepied <flepied at mandriva.com>
-
- * menu/desktop-common-data: fix doc fix default web browser to be
- firefox
-
-2005-09-21 13:45 Laurent Montel <lmontel at mandriva.com>
-
- * menu/desktop-common-data: Fix doc url
-
-2005-09-19 19:43 Laurent Montel <lmontel at mandriva.com>
-
- * desktop-common-data.spec, menu/menu: Fix menu entry
-
-2005-09-19 12:07 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec, bin/www-browser: Fix previous commit
-
-2005-09-19 10:48 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec, bin/www-browser: - Fix loop in
- www-browser (patch from Andrey Borzenkov)
-
-2005-09-12 16:43 Frederic Crozat <fcrozat at mandriva.com>
-
- * menu/desktop-common-data: use gimp-remote, not gimp-remote-2.2
-
-2005-09-12 16:14 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec, menu/desktop-common-data: - Fix package
- name and command for gimp in simplified menu (Mdk bug #17627)
-
-2005-09-08 15:46 Laurent Montel <lmontel at mandriva.com>
-
- * desktop-common-data.spec, menu/menu-simplified: Add separator in
- simplified menu
-
-2005-08-29 11:57 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec: Fix default directories when no
- translation is available
-
-2005-08-29 11:56 Frederic Crozat <fcrozat at mandriva.com>
-
- * xinit.d/desktop-directories: Fix when no translation is available
-
-2005-08-26 19:34 Frederic Crozat <fcrozat at mandriva.com>
-
- * xinit.d/desktop-directories: Remove desktop special case, it is
- no longer created
-
-2005-08-26 19:19 Frederic Crozat <fcrozat at mandriva.com>
-
- * xinit.d/desktop-directories, desktop-common-data.spec: New scheme
- for default directories
-
-2005-08-24 20:01 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec: installing scripts works better
-
-2005-08-24 19:48 Frederic Crozat <fcrozat at mandriva.com>
-
- * desktop-common-data.spec: - Add default directories xinit.d
- script
-
-2005-08-24 19:29 Frederic Crozat <fcrozat at mandriva.com>
-
- * xinit.d/desktop-directories: Rename .desktop.in into
- .desktop.template add gtk-bookmarks support
-
-2005-08-23 18:56 Laurent Montel <lmontel at mandriva.com>
-
- * desktop-common-data.spec: Update spec file
-
-2005-08-12 19:58 Funda Wang <fundawang at linux.net.cn>
-
- * sbin/: chksession, convertsession, kdeDesktopCleanup:
- s/Mandrake/Mandriva/
-
-2005-08-12 19:57 Funda Wang <fundawang at linux.net.cn>
-
- * dm/: GdmGreeterTheme.desktop, KdmGreeterTheme.desktop:
- s/Mandrake/Mandriva.
-
-2005-08-10 07:51 Frederic Crozat <fcrozat at mandriva.com>
-
- * xinit.d/desktop-directories: Generate .desktop from templates and
- copy them to $HOME at login
-
-2005-06-06 06:44 Frederic Lepied <flepied at mandriva.com>
-
- * desktop-common-data.spec: 10.3.1-1mdk
-
-2005-05-30 04:42 Frederic Lepied <flepied at mandriva.com>
-
- * mandrake_desk.spec: no more used
-
-2005-05-30 04:41 Frederic Lepied <flepied at mandriva.com>
-
- * desktop-common-data.spec: 10.3-1mdk
-
-2005-05-30 04:41 Frederic Lepied <flepied at mandriva.com>
-
- * sbin/fndSession: use the new framework in /etc/X11/dm.d.
-
-2005-05-13 09:12 Frederic Crozat <fcrozat at mandriva.com>
-
- * Makefile, desktop-common-data.spec, bin/xvt,
- menu/desktop-common-data, menu/mandrake_desk,
- menu/translate_menus, menu/translate_menus-simplified: - change
- package name - xvt : fix typo (bug #15836) - fix typo in
- translation-map - remove screensaver images, moved in theme
- package
-
-2005-03-29 18:29 Frederic Lepied <flepied at mandriva.com>
-
- * mandrake_desk.spec: 10.2-4mdk
-
-2005-03-29 18:26 Frederic Lepied <flepied at mandriva.com>
-
- * bin/www-browser: test if the $BROWSER variable is set to
- something valid (bug #14903).
-
-2005-03-23 17:44 Frederic Crozat <fcrozat at mandriva.com>
-
- * menu/menu-simplified: Forgot simplified menu
-
-2005-03-23 16:48 Frederic Crozat <fcrozat at mandriva.com>
-
- * mandrake_desk.spec, menu/menu: - don't use .desktop files for
- order directive
-
-2005-03-09 15:04 Frederic Crozat <fcrozat at mandriva.com>
-
- * bin/www-browser: fix stripping value from GNOME
-
-2005-03-09 14:43 Frederic Crozat <fcrozat at mandriva.com>
-
- * mandrake_desk.spec, bin/www-browser, bin/xvt: - change
- www-browser to use BROWSER variable if set or use running
- environment settings if set. - xvt script to replace
- alternative : choose programs to start based on running
- environment
-
-2005-03-09 14:37 Laurent Montel <lmontel at mandriva.com>
-
- * mandrake_desk.spec, menu/menu, menu/menu-simplified: Remove
- alias_inline
-
-2005-03-02 10:57 Laurent Montel <lmontel at mandriva.com>
-
- * mandrake_desk.spec, menu/menu-simplified: Fix order into
- simplified menu
-
-2005-03-01 17:20 Laurent Montel <lmontel at mandriva.com>
-
- * mandrake_desk.spec, menu/menu: Fix menu order for Menuname with
- id
-
-2005-03-01 16:18 Laurent Montel <lmontel at mandriva.com>
-
- * mandrake_desk.spec, menu/menu: Recreate order as in 10.1
-
-2005-03-01 09:43 Laurent Montel <lmontel at mandriva.com>
-
- * dm/: KdmGreeterTheme.desktop, mdk-kde.xml: Add kdm theme
-
-2005-02-28 18:08 Frederic Crozat <fcrozat at mandriva.com>
-
- * mandrake_desk.spec, dm/GdmGreeterTheme.desktop,
- dm/disconnect.png, dm/languages.png, dm/mdk-gdm.xml,
- dm/reboot.png, dm/screenshot.png, dm/sessions.png, dm/star.png,
- dm/system.png: Add shared theme for GDM/KDM
-
-2005-01-25 19:16 Frederic Crozat <fcrozat at mandriva.com>
-
- * mandrake_desk.spec, menu/defaultlayout-simplified.menu,
- menu/defaultlayout.menu: Fix small errors in default layout menu
- files
-
-2004-12-14 16:01 Frederic Crozat <fcrozat at mandriva.com>
-
- * mandrake_desk.spec, menu/defaultlayout-simplified.menu,
- menu/defaultlayout.menu, menu/menu, menu/menu-simplified,
- menu/translate_menus, menu/translate_menus-simplified,
- menu/icons/accessibility_section.png,
- menu/icons/addressbook_section.png,
- menu/icons/adventure_section.png,
- menu/icons/amusement_section.png,
- menu/icons/applications_section.png,
- menu/icons/arcade_section.png, menu/icons/archiving_section.png,
- menu/icons/artificial_intelligence_section.png,
- menu/icons/astronomy_section.png, menu/icons/backup_section.png,
- menu/icons/biology_section.png, menu/icons/boards_section.png,
- menu/icons/boot_init_section.png, menu/icons/cards_section.png,
- menu/icons/cd_burning_section.png, menu/icons/chat_section.png,
- menu/icons/chemistry_section.png, menu/icons/chinese_section.png,
- menu/icons/code_generator_section.png,
- menu/icons/communications_fax_section.png,
- menu/icons/communications_other_section.png,
- menu/icons/communications_phone_section.png,
- menu/icons/communications_section.png,
- menu/icons/compression_section.png,
- menu/icons/computer_science_section.png,
- menu/icons/configuration_section.png,
- menu/icons/data_visualization_section.png,
- menu/icons/databases_section.png,
- menu/icons/development_environment_section.png,
- menu/icons/development_section.png,
- menu/icons/development_tools_section.png,
- menu/icons/documentation_section.png,
- menu/icons/editors_section.png,
- menu/icons/education_economy_section.png,
- menu/icons/education_geography_section.png,
- menu/icons/education_history_section.png,
- menu/icons/education_languages_section.png,
- menu/icons/education_literature_section.png,
- menu/icons/education_mathematics.png,
- menu/icons/education_other_section.png,
- menu/icons/education_sciences.png,
- menu/icons/education_section.png,
- menu/icons/education_sport_section.png,
- menu/icons/education_tool.png,
- menu/icons/electricity_section.png,
- menu/icons/emulators_section.png,
- menu/icons/file_tools_section.png,
- menu/icons/file_transfer_section.png,
- menu/icons/finances_section.png,
- menu/icons/geosciences_section.png, menu/icons/gnome_section.png,
- menu/icons/graphics_section.png, menu/icons/graphs_section.png,
- menu/icons/hardware_configuration_section.png,
- menu/icons/hardware_section.png,
- menu/icons/image_processing_section.png,
- menu/icons/instant_messaging_section.png,
- menu/icons/internet_section.png,
- menu/icons/interpreters_section.png, menu/icons/irc_section.png,
- menu/icons/kde_section.png, menu/icons/mail_section.png,
- menu/icons/mandrake.png, menu/icons/mathematics_section.png,
- menu/icons/monitoring_section.png,
- menu/icons/more_applications_other_section.png,
- menu/icons/more_applications_section.png,
- menu/icons/multimedia_section.png,
- menu/icons/networking_configuration_section.png,
- menu/icons/networking_section.png,
- menu/icons/networking_www_section.png,
- menu/icons/news_section.png,
- menu/icons/numerical_analysis_section.png,
- menu/icons/office_accessories_section.png,
- menu/icons/office_drawing_section.png,
- menu/icons/office_section.png, menu/icons/other_amusement.png,
- menu/icons/other_archiving.png,
- menu/icons/other_configuration.png,
- menu/icons/other_networking.png, menu/icons/other_sciences.png,
- menu/icons/packaging_section.png,
- menu/icons/parallel_computing_section.png,
- menu/icons/pda_section.png, menu/icons/physics_section.png,
- menu/icons/presentation_section.png,
- menu/icons/printing_section.png,
- menu/icons/publishing_section.png, menu/icons/puzzle_section.png,
- menu/icons/remote_access_section.png,
- menu/icons/robotics_section.png, menu/icons/sciences_section.png,
- menu/icons/shells_section.png, menu/icons/sound_section.png,
- menu/icons/sport_section.png, menu/icons/spreadsheet_section.png,
- menu/icons/strategy_section.png,
- menu/icons/system_other_section.png,
- menu/icons/system_section.png,
- menu/icons/taskmanagement_section.png,
- menu/icons/terminals_section.png,
- menu/icons/text_tools_section.png,
- menu/icons/timemanagement_section.png,
- menu/icons/toys_section.png,
- menu/icons/video_conferences_section.png,
- menu/icons/video_section.png, menu/icons/web_browser_section.png,
- menu/icons/web_editors_section.png,
- menu/icons/windowmanager_section.png,
- menu/icons/wordprocessor_section.png,
- menu/icons/large/accessibility_section.png,
- menu/icons/large/addressbook_section.png,
- menu/icons/large/adventure_section.png,
- menu/icons/large/amusement_section.png,
- menu/icons/large/applications_section.png,
- menu/icons/large/arcade_section.png,
- menu/icons/large/archiving_section.png,
- menu/icons/large/artificial_intelligence_section.png,
- menu/icons/large/astronomy_section.png,
- menu/icons/large/backup_section.png,
- menu/icons/large/biology_section.png,
- menu/icons/large/boards_section.png,
- menu/icons/large/boot_init_section.png,
- menu/icons/large/cards_section.png,
- menu/icons/large/cd_burning_section.png,
- menu/icons/large/chat_section.png,
- menu/icons/large/chemistry_section.png,
- menu/icons/large/chinese_section.png,
- menu/icons/large/code_generator_section.png,
- menu/icons/large/communications_fax_section.png,
- menu/icons/large/communications_other_section.png,
- menu/icons/large/communications_phone_section.png,
- menu/icons/large/communications_section.png,
- menu/icons/large/compression_section.png,
- menu/icons/large/computer_science_section.png,
- menu/icons/large/configuration_section.png,
- menu/icons/large/data_visualization_section.png,
- menu/icons/large/databases_section.png,
- menu/icons/large/development_environment_section.png,
- menu/icons/large/development_section.png,
- menu/icons/large/development_tools_section.png,
- menu/icons/large/documentation_section.png,
- menu/icons/large/editors_section.png,
- menu/icons/large/education_economy_section.png,
- menu/icons/large/education_geography_section.png,
- menu/icons/large/education_history_section.png,
- menu/icons/large/education_languages_section.png,
- menu/icons/large/education_literature_section.png,
- menu/icons/large/education_mathematics.png,
- menu/icons/large/education_other_section.png,
- menu/icons/large/education_sciences.png,
- menu/icons/large/education_section.png,
- menu/icons/large/education_sport_section.png,
- menu/icons/large/education_tool.png,
- menu/icons/large/electricity_section.png,
- menu/icons/large/emulators_section.png,
- menu/icons/large/file_tools_section.png,
- menu/icons/large/file_transfer_section.png,
- menu/icons/large/finances_section.png,
- menu/icons/large/geosciences_section.png,
- menu/icons/large/gnome_section.png,
- menu/icons/large/graphics_section.png,
- menu/icons/large/graphs_section.png,
- menu/icons/large/hardware_configuration_section.png,
- menu/icons/large/hardware_section.png,
- menu/icons/large/image_processing_section.png,
- menu/icons/large/instant_messaging_section.png,
- menu/icons/large/internet_section.png,
- menu/icons/large/interpreters_section.png,
- menu/icons/large/irc_section.png,
- menu/icons/large/kde_section.png,
- menu/icons/large/mail_section.png, menu/icons/large/mandrake.png,
- menu/icons/large/mathematics_section.png,
- menu/icons/large/monitoring_section.png,
- menu/icons/large/more_applications_other_section.png,
- menu/icons/large/more_applications_section.png,
- menu/icons/large/multimedia_section.png,
- menu/icons/large/networking_configuration_section.png,
- menu/icons/large/networking_section.png,
- menu/icons/large/networking_www_section.png,
- menu/icons/large/news_section.png,
- menu/icons/large/numerical_analysis_section.png,
- menu/icons/large/office_accessories_section.png,
- menu/icons/large/office_drawing_section.png,
- menu/icons/large/office_section.png,
- menu/icons/large/other_amusement.png,
- menu/icons/large/other_archiving.png,
- menu/icons/large/other_configuration.png,
- menu/icons/large/other_networking.png,
- menu/icons/large/other_sciences.png,
- menu/icons/large/packaging_section.png,
- menu/icons/large/parallel_computing_section.png,
- menu/icons/large/pda_section.png,
- menu/icons/large/physics_section.png,
- menu/icons/large/presentation_section.png,
- menu/icons/large/printing_section.png,
- menu/icons/large/publishing_section.png,
- menu/icons/large/puzzle_section.png,
- menu/icons/large/remote_access_section.png,
- menu/icons/large/robotics_section.png,
- menu/icons/large/sciences_section.png,
- menu/icons/large/shells_section.png,
- menu/icons/large/sound_section.png,
- menu/icons/large/sport_section.png,
- menu/icons/large/spreadsheet_section.png,
- menu/icons/large/strategy_section.png,
- menu/icons/large/system_other_section.png,
- menu/icons/large/system_section.png,
- menu/icons/large/taskmanagement_section.png,
- menu/icons/large/terminals_section.png,
- menu/icons/large/text_tools_section.png,
- menu/icons/large/timemanagement_section.png,
- menu/icons/large/toys_section.png,
- menu/icons/large/video_conferences_section.png,
- menu/icons/large/video_section.png,
- menu/icons/large/web_browser_section.png,
- menu/icons/large/web_editors_section.png,
- menu/icons/large/windowmanager_section.png,
- menu/icons/large/wordprocessor_section.png,
- menu/icons/mini/accessibility_section.png,
- menu/icons/mini/addressbook_section.png,
- menu/icons/mini/adventure_section.png,
- menu/icons/mini/amusement_section.png,
- menu/icons/mini/applications_section.png,
- menu/icons/mini/arcade_section.png,
- menu/icons/mini/archiving_section.png,
- menu/icons/mini/artificial_intelligence_section.png,
- menu/icons/mini/astronomy_section.png,
- menu/icons/mini/backup_section.png,
- menu/icons/mini/biology_section.png,
- menu/icons/mini/boards_section.png,
- menu/icons/mini/boot_init_section.png,
- menu/icons/mini/cards_section.png,
- menu/icons/mini/cd_burning_section.png,
- menu/icons/mini/chat_section.png,
- menu/icons/mini/chemistry_section.png,
- menu/icons/mini/chinese_section.png,
- menu/icons/mini/code_generator_section.png,
- menu/icons/mini/communications_fax_section.png,
- menu/icons/mini/communications_other_section.png,
- menu/icons/mini/communications_phone_section.png,
- menu/icons/mini/communications_section.png,
- menu/icons/mini/compression_section.png,
- menu/icons/mini/computer_science_section.png,
- menu/icons/mini/configuration_section.png,
- menu/icons/mini/data_visualization_section.png,
- menu/icons/mini/databases_section.png,
- menu/icons/mini/development_environment_section.png,
- menu/icons/mini/development_section.png,
- menu/icons/mini/development_tools_section.png,
- menu/icons/mini/documentation_section.png,
- menu/icons/mini/editors_section.png,
- menu/icons/mini/education_economy_section.png,
- menu/icons/mini/education_geography_section.png,
- menu/icons/mini/education_history_section.png,
- menu/icons/mini/education_languages_section.png,
- menu/icons/mini/education_literature_section.png,
- menu/icons/mini/education_mathematics.png,
- menu/icons/mini/education_other_section.png,
- menu/icons/mini/education_sciences.png,
- menu/icons/mini/education_section.png,
- menu/icons/mini/education_sport_section.png,
- menu/icons/mini/education_tool.png,
- menu/icons/mini/electricity_section.png,
- menu/icons/mini/emulators_section.png,
- menu/icons/mini/file_tools_section.png,
- menu/icons/mini/file_transfer_section.png,
- menu/icons/mini/finances_section.png,
- menu/icons/mini/geosciences_section.png,
- menu/icons/mini/gnome_section.png,
- menu/icons/mini/graphics_section.png,
- menu/icons/mini/graphs_section.png,
- menu/icons/mini/hardware_configuration_section.png,
- menu/icons/mini/hardware_section.png,
- menu/icons/mini/image_processing_section.png,
- menu/icons/mini/instant_messaging_section.png,
- menu/icons/mini/internet_section.png,
- menu/icons/mini/interpreters_section.png,
- menu/icons/mini/irc_section.png, menu/icons/mini/kde_section.png,
- menu/icons/mini/mail_section.png, menu/icons/mini/mandrake.png,
- menu/icons/mini/mathematics_section.png,
- menu/icons/mini/monitoring_section.png,
- menu/icons/mini/more_applications_other_section.png,
- menu/icons/mini/more_applications_section.png,
- menu/icons/mini/multimedia_section.png,
- menu/icons/mini/networking_configuration_section.png,
- menu/icons/mini/networking_section.png,
- menu/icons/mini/networking_www_section.png,
- menu/icons/mini/news_section.png,
- menu/icons/mini/numerical_analysis_section.png,
- menu/icons/mini/office_accessories_section.png,
- menu/icons/mini/office_drawing_section.png,
- menu/icons/mini/office_section.png,
- menu/icons/mini/other_amusement.png,
- menu/icons/mini/other_archiving.png,
- menu/icons/mini/other_configuration.png,
- menu/icons/mini/other_networking.png,
- menu/icons/mini/other_sciences.png,
- menu/icons/mini/packaging_section.png,
- menu/icons/mini/parallel_computing_section.png,
- menu/icons/mini/pda_section.png,
- menu/icons/mini/physics_section.png,
- menu/icons/mini/presentation_section.png,
- menu/icons/mini/printing_section.png,
- menu/icons/mini/publishing_section.png,
- menu/icons/mini/puzzle_section.png,
- menu/icons/mini/remote_access_section.png,
- menu/icons/mini/robotics_section.png,
- menu/icons/mini/sciences_section.png,
- menu/icons/mini/shells_section.png,
- menu/icons/mini/sound_section.png,
- menu/icons/mini/sport_section.png,
- menu/icons/mini/spreadsheet_section.png,
- menu/icons/mini/strategy_section.png,
- menu/icons/mini/system_other_section.png,
- menu/icons/mini/system_section.png,
- menu/icons/mini/taskmanagement_section.png,
- menu/icons/mini/terminals_section.png,
- menu/icons/mini/text_tools_section.png,
- menu/icons/mini/timemanagement_section.png,
- menu/icons/mini/toys_section.png,
- menu/icons/mini/video_conferences_section.png,
- menu/icons/mini/video_section.png,
- menu/icons/mini/web_browser_section.png,
- menu/icons/mini/web_editors_section.png,
- menu/icons/mini/windowmanager_section.png,
- menu/icons/mini/wordprocessor_section.png: Move all menu
- informations (layout/icons) from menu to mandrake_desk package
-
-2004-09-29 11:51 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec, menu/mandrake_desk: Fix "Listen to Music
- Files" menu entry
-
-2004-09-29 10:08 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update
-
-2004-09-29 10:08 David Baudens <baudens at mandriva.com>
-
- * menu/mandrake_desk: Add missing menu entry for french
- mandrakelinux documentation
-
-2004-09-29 09:25 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update
-
-2004-09-29 09:24 David Baudens <baudens at mandriva.com>
-
- * menu/mandrake_desk: Fix import and sort your photos
-
-2004-09-10 08:48 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec, menu/mandrake_desk: Add Mandrakelinux
- documentation
-
-2004-09-09 12:35 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec, menu/mandrake_desk: Remove all longtitle
-
-2004-09-09 12:27 Laurent Montel <lmontel at mandriva.com>
-
- * mandrake_desk.spec, menu/mandrake_desk: Update last changes
-
-2004-09-09 12:19 David Baudens <baudens at mandriva.com>
-
- * menu/mandrake_desk: Remove non task oriented description for
- KPhone
-
-2004-09-07 10:40 Pablo Saratxaga <pablo at mandriva.com>
-
- * man/it/chksession.8: Added Italian Man page
-
-2004-09-01 08:31 Laurent Montel <lmontel at mandriva.com>
-
- * menu/mandrake_desk: Update menu Fix capitalization
-
-2004-08-31 09:37 Frederic Lepied <flepied at mandriva.com>
-
- * mandrake_desk.spec: 10.1-6mdk
-
-2004-08-31 09:36 Frederic Lepied <flepied at mandriva.com>
-
- * bin/www-browser: first version
-
-2004-08-31 09:35 Frederic Lepied <flepied at mandriva.com>
-
- * Makefile: added standard rules to build packages
-
-2004-08-27 11:51 Frederic Crozat <fcrozat at mandriva.com>
-
- * mandrake_desk.spec, menu/mandrake_desk: Fix typo in gnome-cd
- entry
-
-2004-08-16 04:18 Laurent Montel <lmontel at mandriva.com>
-
- * mandrake_desk.spec: Fix "Play Games" entry
-
-2004-08-16 04:12 Laurent Montel <lmontel at mandriva.com>
-
- * menu/mandrake_desk: Fix "Play Games" entry
-
-2004-08-11 12:31 Frederic Crozat <fcrozat at mandriva.com>
-
- * mandrake_desk.spec, menu/mandrake_desk: - Add GNOME version of
- task oriented menu - Fix capitalisations in task oriented menu
-
-2004-08-05 11:21 David Baudens <baudens at mandriva.com>
-
- * menu/mandrake_desk: Fix typo
-
-2004-08-05 09:24 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update
-
-2004-08-05 09:23 David Baudens <baudens at mandriva.com>
-
- * menu/mandrake_desk: Add "Make a phone call" (using kphone at
- present time)
-
-2004-08-05 08:41 David Baudens <baudens at mandriva.com>
-
- * menu/mandrake_desk: Update task oriented menu
-
-2004-08-04 09:52 Pixel <pixel at mandriva.com>
-
- * mandrake_desk.spec: fix descriptions (use Mandrakelinux instead
- of simply Mandrake)
-
-2004-08-04 09:49 Pixel <pixel at mandriva.com>
-
- * mandrake_desk.spec, sbin/chksession: add "chksession -L" used by
- DrakX to configure ~/.dmrc
-
-2004-08-04 09:39 Pixel <pixel at mandriva.com>
-
- * sbin/chksession: - don't generate
- /etc/X11/dm/Sessions/Default.desktop (otherwise gdm gives 2
- "default" entries) - cleanup
-
-2004-03-02 09:43 Frederic Lepied <flepied at mandriva.com>
-
- * mandrake_desk.spec: 10.0-10mdk
-
-2004-03-02 09:42 Frederic Lepied <flepied at mandriva.com>
-
- * sbin/chksession: don't pass /etc/X11/xdm/Xsession in Exec field
- for the KDE sessions
-
-2004-02-27 18:28 Frederic Lepied <flepied at mandriva.com>
-
- * mandrake_desk.spec: call fndSession in %post
-
-2004-02-27 18:26 Frederic Lepied <flepied at mandriva.com>
-
- * sbin/fndSession: use simply chksession -k for kdm
-
-2004-02-27 18:24 Frederic Lepied <flepied at mandriva.com>
-
- * sbin/chksession: do not generate Default session for kdm remove
- files before generating the sessions
-
-2004-02-27 18:00 Frederic Lepied <flepied at mandriva.com>
-
- * mandrake_desk.spec: 10.0-9mdk
-
-2004-02-27 17:59 Frederic Lepied <flepied at mandriva.com>
-
- * Makefile: use rpm -ta to build an rpm
-
-2004-02-27 17:56 Frederic Lepied <flepied at mandriva.com>
-
- * sbin/chksession: fix KDE sessions
-
-2004-02-27 17:20 Laurent Montel <lmontel at mandriva.com>
-
- * mandrake_desk.spec: Update
-
-2004-02-27 09:44 Laurent Montel <lmontel at mandriva.com>
-
- * menu/mandrake_desk: s/ORC/OCR
-
-2004-02-24 11:14 Laurent Montel <lmontel at mandriva.com>
-
- * mandrake_desk.spec: Update
-
-2004-02-24 11:09 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update
-
-2004-02-24 11:05 Laurent Montel <lmontel at mandriva.com>
-
- * menu/mandrake_desk: Fix icons
-
-2004-02-05 15:54 David Baudens <baudens at mandriva.com>
-
- * menu/mandrake_desk: Fix simplified menu
-
-2004-02-05 14:49 David Baudens <baudens at mandriva.com>
-
- * menu/mandrake_desk: Fix title of "Organize your time" in
- simplified menu
-
-2004-02-05 14:26 David Baudens <baudens at mandriva.com>
-
- * menu/mandrake_desk: Fix typos
-
-2004-01-29 18:21 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update
-
-2004-01-29 17:29 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update
-
-2004-01-29 17:11 David Baudens <baudens at mandriva.com>
-
- * backgrounds/: default-9.1.png, default-root-9.1.png,
- default-root.png, default.png, discovery-1280x1024.png,
- discovery-root-1280x1024.png, discovery-root.png, discovery.png,
- download-1280x1024.png, download-root-1280x1024.png,
- download-root.png, download.png, pwp-ps-1280x1024.png,
- pwp-ps-root-1280x1024.png, pwp-ps-root.png, pwp-ps.png: Remove
- old images
-
-2004-01-19 16:39 Laurent Montel <lmontel at mandriva.com>
-
- * menu/mandrake_desk: Add "kontact" entry
-
-2004-01-13 18:43 Laurent Montel <lmontel at mandriva.com>
-
- * mandrake_desk.spec: Update
-
-2004-01-13 18:29 Laurent Montel <lmontel at mandriva.com>
-
- * menu/mandrake_desk: Fix drakbackup menu entry
-
-2004-01-13 17:48 Laurent Montel <lmontel at mandriva.com>
-
- * menu/mandrake_desk: Update new simplified menu
-
-2004-01-13 14:07 Laurent Montel <lmontel at mandriva.com>
-
- * menu/mandrake_desk-9.2: Save old version
-
-2003-09-10 17:11 Guillaume Cottenceau
-
- * Makefile, mandrake_desk.spec, backgrounds/xfdrake-test-card.jpg,
- backgrounds/xfdrake-test-card.png: xfdrake-test-card needs to be
- in .png format since we don't have have the jpeg pixbug loader
- during install
-
-2003-09-10 17:09 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec, menu/mandrake_desk: Update
-
-2003-09-06 15:29 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * README: TYPO fix
-
-2003-09-05 17:53 David Baudens <baudens at mandriva.com>
-
- * menu/mandrake_desk: Update
-
-2003-09-01 16:40 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec, menu/mandrake_desk: Remove Record sound entry
-
-2003-08-28 22:33 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec, menu/mandrake_desk: Update
-
-2003-08-28 19:23 David Baudens <baudens at mandriva.com>
-
- * menu/mandrake_desk: Update
-
-2003-08-28 17:54 David Baudens <baudens at mandriva.com>
-
- * menu/mandrake_desk: Update
-
-2003-08-28 11:54 David Baudens <baudens at mandriva.com>
-
- * menu/mandrake_desk: Update
-
-2003-08-27 19:15 David Baudens <baudens at mandriva.com>
-
- * menu/mandrake_desk: Fix kmix entry
-
-2003-08-27 18:49 David Baudens <baudens at mandriva.com>
-
- * menu/mandrake_desk: Fix bad end of lines
-
-2003-08-27 18:23 David Baudens <baudens at mandriva.com>
-
- * menu/mandrake_desk: Begin to update
-
-2003-08-27 17:15 Frederic Crozat <fcrozat at mandriva.com>
-
- * mandrake_desk.spec, sbin/fndSession: Fix bug 4572 (bad path for
- gdm session in fndSession)
-
-2003-08-26 18:21 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update
-
-2003-08-26 18:13 Frederic Crozat <fcrozat at mandriva.com>
-
- * mandrake_desk.spec: Release 9.2-3mdk
-
-2003-08-26 18:09 Frederic Crozat <fcrozat at mandriva.com>
-
- * sbin/chksession: Add default session for GDM
-
-2003-08-26 17:46 Frederic Lepied <flepied at mandriva.com>
-
- * sbin/chksession: Corrections by Bernard Lang
-
-2003-08-22 15:02 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update
-
-2003-08-22 14:04 David Baudens <baudens at mandriva.com>
-
- * backgrounds/: default-9.1.png, default-root-9.1.png,
- discovery-1280x1024.png, discovery-root-1280x1024.png,
- discovery-root.png, discovery.png, download-1280x1024.png,
- download-root-1280x1024.png, download-root.png, download.png,
- pwp-ps-1280x1024.png, pwp-ps-root-1280x1024.png, pwp-ps-root.png,
- pwp-ps.png: New images for 9.2
-
-2003-08-22 09:25 Frederic Lepied <flepied at mandriva.com>
-
- * man/C/chksession.8: corrections by Bernard Lang
-
-2003-07-30 17:31 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Fix %post (thanks to Pixel)
-
-2003-06-13 18:52 Frederic Crozat <fcrozat at mandriva.com>
-
- * mandrake_desk.spec, sbin/chksession: gdm session format has
- changed, fix chksession
-
-2003-06-04 12:09 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Add version in %changelog
-
-2003-06-04 12:08 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Create a link to allow users to access to
- Mandrake's backgrounds from KDE
-
-2003-05-08 11:42 Pablo Saratxaga <pablo at mandriva.com>
-
- * man/uk/chksession.8: Added Ukrainian file
-
-2003-03-14 12:37 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update
-
-2003-03-14 12:36 David Baudens <baudens at mandriva.com>
-
- * menu/mandrake_desk: Update for 9.1
-
-2003-03-12 15:43 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update
-
-2003-02-14 11:43 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec, backgrounds/default-root.png,
- backgrounds/default.png: New default bacground for MDK 9.1
-
-2003-01-31 13:07 Pablo Saratxaga <pablo at mandriva.com>
-
- * man/et/chksession.8: Added Estonian man page
-
-2002-09-06 15:16 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update spec Add mandrake-club icon
-
-2002-09-02 13:36 Laurent Montel <lmontel at mandriva.com>
-
- * mandrake_desk.spec: Update spec file
-
-2002-09-02 13:25 Laurent Montel <lmontel at mandriva.com>
-
- * menu/mandrake_desk: Fix drakconf menu entry
-
-2002-08-29 18:24 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update
-
-2002-08-29 18:22 David Baudens <baudens at mandriva.com>
-
- * faces/: ic-tux1.png, ic-tux2.png, ic-tux3.png, ic-tux4.png,
- ic-tux5.png, ic-tuxgeneric.png: New tux family
-
-2002-08-29 18:21 David Baudens <baudens at mandriva.com>
-
- * faces/: ic-util-tux1.png, ic-util-tux2.png, ic-util-tux2bis.png,
- ic-util-tux3.png, ic-util-tux4.png, ic-util-tuxgeneric.png:
- Remove
-
-2002-08-29 17:38 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update
-
-2002-08-29 11:58 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update
-
-2002-08-29 11:58 David Baudens <baudens at mandriva.com>
-
- * faces/: ic-util-tux1.png, ic-util-tux2.png, ic-util-tux2bis.png,
- ic-util-tux3.png, ic-util-tux4.png, ic-util-tuxgeneric.png: Tux
- family is back
-
-2002-08-27 15:32 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update
-
-2002-08-27 15:29 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update
-
-2002-08-26 17:29 Pablo Saratxaga <pablo at mandriva.com>
-
- * man/: cs/chksession.8, ru/chksession.8: Added Czech and Russian
- man pages
-
-2002-08-23 16:49 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update
-
-2002-08-23 16:13 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec, backgrounds/xfdrake-test-card.jpg: Update
-
-2002-08-22 17:16 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update
-
-2002-08-22 17:12 David Baudens <baudens at mandriva.com>
-
- * backgrounds/xfdrake-test-card.jpg: Update for 9.0
-
-2002-08-22 11:10 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update
-
-2002-08-02 14:03 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update
-
-2002-08-01 17:57 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update
-
-2002-08-01 12:12 Arkadiusz Lipiec <alipiec at elka.pw.edu.pl>
-
- * TRANSLATORS: polish translator added
-
-2002-07-31 18:06 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update
-
-2002-07-31 17:54 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update
-
-2002-07-31 17:50 David Baudens <baudens at mandriva.com>
-
- * kde/kdm-mdk-logo.png: Add kdm logo
-
-2002-07-31 17:16 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update
-
-2002-07-31 17:12 David Baudens <baudens at mandriva.com>
-
- * backgrounds/: flower.jpg, nature.jpg: Add new backgrounds
-
-2002-07-31 16:46 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update
-
-2002-07-31 16:02 David Baudens <baudens at mandriva.com>
-
- * xml-i18n-extract.in, xml-i18n-merge.in, xml-i18n-update.in:
- Remove old xml-i18n stuff
-
-2002-07-31 15:58 David Baudens <baudens at mandriva.com>
-
- * Makefile, mandrake_desk.spec: Update
-
-2002-07-31 15:20 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update
-
-2002-07-31 15:13 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec, bin/DrakWM, bin/createbackground.sh: Update
-
-2002-07-31 14:55 David Baudens <baudens at mandriva.com>
-
- * backgrounds/: XFdrake-test-card.jpg, xfdrake-test-card.jpg: Fix
- typo
-
-2002-07-31 14:53 David Baudens <baudens at mandriva.com>
-
- * backgrounds/: XFdrake-image-test.jpg, XFdrake-test-card.jpg:
- Rename xfdrake test card
-
-2002-07-31 14:49 David Baudens <baudens at mandriva.com>
-
- * backgrounds/default-root.png: Add default background for root
-
-2002-07-31 14:42 David Baudens <baudens at mandriva.com>
-
- * backgrounds/default.png: New default background
-
-2002-07-31 14:41 David Baudens <baudens at mandriva.com>
-
- * README.CVS, mandrake_desk.spec: Update
-
-2002-07-31 13:19 David Baudens <baudens at mandriva.com>
-
- * gtkrc, krootwarning/AUTHORS, krootwarning/COPYING,
- krootwarning/INSTALL, krootwarning/Makefile.am,
- krootwarning/Makefile.dist, krootwarning/README,
- krootwarning/TODO, krootwarning/configure.files,
- krootwarning/configure.in, krootwarning/configure.in.in,
- krootwarning/krootwarning.kdevprj,
- krootwarning/krootwarning.kdevses, krootwarning/krootwarning.lsm,
- krootwarning/messages.log, krootwarning/subdirs: Remove
- krootwarning & krozat stuff. Moved in their own modules
-
-2002-07-31 11:14 David Baudens <baudens at mandriva.com>
-
- * backgrounds/: ICE-1024.png, ICE-1280.png, ICE-1600.png,
- ICE-640.png, ICE-800.png: Remove old badgrouds
-
-2002-07-31 11:03 Frederic Crozat <fcrozat at mandriva.com>
-
- * mandrake_desk.spec, menu/mandrake_desk: -Fix GNOME entry for Crux
- theme applet - Fix menu entries for simplified menu
-
-2002-07-30 10:01 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update spec
-
-2002-07-30 09:59 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Upload Laurent Montel's spec file
-
-2002-07-30 09:52 David Baudens <baudens at mandriva.com>
-
- * faces/default.png: New defalt user image
-
-2002-07-23 14:52 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update spec
-
-2002-07-18 17:56 David Baudens <baudens at mandriva.com>
-
- * faces/: default.png, ic-bird.png, ic-bird2.png, ic-cat.png,
- ic-dog.png, ic-fish.png, ic-flower1.png, ic-flower2.png,
- ic-flower3.png, ic-flower4.png, ic-flower5.png, ic-nature1.png,
- ic-nature2.png, ic-nature3.png, ic-nature4.png, ic-nature5.png:
- Add new users images for 9.0 beta 1
-
-2002-07-18 17:52 David Baudens <baudens at mandriva.com>
-
- * faces/: aman.png, cinderella.png, dog.png, donuts.png, fish.png,
- moon.png, mouse.png, mouse2.png, roller.png, sun.png, woman.png:
- Remove old users icons
-
-2002-06-28 11:28 Frederic Crozat <fcrozat at mandriva.com>
-
- * menu/mandrake_desk: Png icons
-
-2002-06-28 10:33 Frederic Crozat <fcrozat at mandriva.com>
-
- * menu/mandrake_desk: GNOME 2 adaption (by Goetz Waschk)
-
-2002-03-15 15:10 Frederic Crozat <fcrozat at mandriva.com>
-
- * gtkrc, mandrake_desk.spec: Fix default gtk theme
-
-2002-03-07 15:50 Frederic Crozat <fcrozat at mandriva.com>
-
- * mandrake_desk.spec, faces/root: fix root icons (remove it)
-
-2002-03-07 15:32 David Baudens <baudens at mandriva.com>
-
- * faces/: aman.png, woman.png: Add new faces
-
-2002-03-07 15:21 Frederic Crozat <fcrozat at mandriva.com>
-
- * mandrake_desk.spec: Release 8.2-12mdk
-
-2002-03-05 19:38 David Baudens <baudens at mandriva.com>
-
- * faces/: aman.png, avn-rat.png, cinderella.png, dadou-fish.png,
- dear-chief-moon.png, dog.png, donuts.png, fish.png,
- gwegwe-rat.png, lmonspread-dog.png, ln-cendrillon.png, moon.png,
- mouse.png, mouse2.png, renaud-sun.png, roller.png, sun.png,
- vince-donut.png, warly-roller.png, woman.png: [no log message]
-
-2002-03-05 19:23 David Baudens <baudens at mandriva.com>
-
- * faces/aman.png: Remove obsoletes faces
-
-2002-03-05 18:42 David Baudens <baudens at mandriva.com>
-
- * faces/: user-curly-mdk.png, user-girl-mdk.png, user-hat-mdk.png,
- utildame.png, utilmons.png: Remove old faces
-
-2002-03-05 18:35 David Baudens <baudens at mandriva.com>
-
- * faces/: tux.png, tuxbaby.png, tuxbox.png, tuxcoocker.png,
- tuxdad.png, tuxgirl.png, tuxhead1.png, tuxhead2.png, tuxmam.png,
- tuxmecano.png: Remove obsolete faces
-
-2002-03-01 16:35 David Baudens <baudens at mandriva.com>
-
- * menu/mandrake_desk: [no log message]
-
-2002-02-28 04:19 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: [no log message]
-
-2002-02-26 16:28 Frederic Crozat <fcrozat at mandriva.com>
-
- * gtkrc, mandrake_desk.spec: Fix default GTK theme
-
-2002-02-26 14:43 Frederic Crozat <fcrozat at mandriva.com>
-
- * mandrake_desk.spec: Change Mandrake Control Center to Control
- Center in GNOME
-
-2002-02-26 03:20 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: [no log message]
-
-2002-02-26 03:05 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: [no log message]
-
-2002-02-26 02:54 David Baudens <baudens at mandriva.com>
-
- * Makefile: Install png icons instead xpm in
- /usr/share/pixmaps/mdk/
-
-2002-02-26 02:49 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: [no log message]
-
-2002-02-25 17:09 Frederic Crozat <fcrozat at mandriva.com>
-
- * gtkrc, mandrake_desk.spec: Fix default mdk theme with evolution
-
-2002-02-22 21:13 Pablo Saratxaga <pablo at mandriva.com>
-
- * man/eu/chksession.8: Added Basque file
-
-2002-02-20 19:20 Frederic Crozat <fcrozat at mandriva.com>
-
- * Makefile: Fix tagging
-
-2002-02-20 19:12 Frederic Crozat <fcrozat at mandriva.com>
-
- * mandrake_desk.spec: Really fix mdk-eazel-engine-capplet location
-
-2002-02-20 19:06 Frederic Crozat <fcrozat at mandriva.com>
-
- * Makefile, mandrake_desk.spec: Fix location of mdk-eazel-engine
- capplet
-
-2002-02-20 14:36 Frederic Crozat <fcrozat at mandriva.com>
-
- * mandrake_desk.spec: Fix build
-
-2002-02-20 14:31 Frederic Crozat <fcrozat at mandriva.com>
-
- * mandrake_desk.spec, menu/mandrake_desk: Fix english strings and
- makefile
-
-2002-02-18 22:51 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Fix and update spec
-
-2002-02-18 05:26 David Baudens <baudens at mandriva.com>
-
- * menu/mandrake_desk: Various fix for simplified menu (fix typos,
- icons, remove duplicate entries with kdebase, etc.)
-
-2002-02-18 05:12 David Baudens <baudens at mandriva.com>
-
- * menu/mandrake_desk: Fix icon for howto (simplified menu)
-
-2002-02-12 18:16 Frederic Crozat <fcrozat at mandriva.com>
-
- * mandrake_desk.spec, menu/mandrake_desk: Fix simplified menu
-
-2002-01-29 16:14 Frederic Crozat <fcrozat at mandriva.com>
-
- * mandrake_desk.spec, menu/mandrake_desk: Add menu entry for Mdk
- Eazel engine Fix menu entry for Simplified menu
-
-2002-01-28 17:38 Frederic Crozat <fcrozat at mandriva.com>
-
- * mandrake_desk.spec: Fix icons for GNOME Desktop
-
-2002-01-28 14:00 Frederic Crozat <fcrozat at mandriva.com>
-
- * mandrake_desk.spec: Release 8.2-3mdk
-
-2002-01-28 13:59 Frederic Crozat <fcrozat at mandriva.com>
-
- * mandrake_desk.spec: Release 8.2-2mdk
-
-2002-01-26 21:50 David Baudens <baudens at mandriva.com>
-
- * menu/mandrake_desk: - Fix some menu entries - Use new default png
- icons when it is needed
-
-2002-01-14 11:37 Chmouel Boudjnah
-
- * sbin/chksession: Remove space in name.
-
-2002-01-11 18:03 Frederic Crozat <fcrozat at mandriva.com>
-
- * Makefile, mandrake_desk.spec, man/C/chksession.8,
- menu/mandrake_desk: Resync with package Remove generated files
- Fix screensaver images
-
-2001-10-02 10:32 Stefan Siegel <siegel at linux-mandrake.com>
-
- * README.CVS: fixed URL
-
-2001-10-02 10:29 Stefan Siegel <siegel at linux-mandrake.com>
-
- * man/: C/chksession.8, fr/chksession.8: fixed link for bug reports
-
-2001-09-20 12:08 David Baudens <baudens at mandriva.com>
-
- * menu/mandrake_desk: Add support for simplified menu
-
-2001-09-20 10:02 Frederic Crozat <fcrozat at mandriva.com>
-
- * .cvsignore, krootwarning/.cvsignore: Clean cvs
-
-2001-09-19 20:34 Frederic Crozat <fcrozat at mandriva.com>
-
- * mandrake_desk.spec, krootwarning/Makefile.in,
- krootwarning/acinclude.m4, krootwarning/aclocal.m4,
- krootwarning/config.h.in, krootwarning/configure,
- krootwarning/stamp-h.in: Remove generated files, fix package
- generation add mdk-eazel-engine-capplet package
-
-2001-09-19 13:25 David Baudens <baudens at mandriva.com>
-
- * faces/: aman.png, avn-rat.png, dadou-fish.png,
- dear-chief-moon.png, gwegwe-rat.png, lmonspread-dog.png,
- ln-cendrillon.png, renaud-sun.png, vince-donut.png,
- warly-roller.png, woman.png: Fix icons to allow clean display on
- a white background
-
-2001-09-19 11:16 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update spec file
-
-2001-09-18 18:08 David Baudens <baudens at mandriva.com>
-
- * faces/: tuxegg.png, user-brunette-mdk.png, user-default-mdk.png,
- user-tie-mdk.png, user-woman-blond-mdk.png: Remove some old faces
- (LN)
-
-2001-09-18 16:36 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update spec
-
-2001-09-18 16:35 David Baudens <baudens at mandriva.com>
-
- * faces/: aman.png, man.png: mv man.png aman.png to display it by
- default in DrakX
-
-2001-09-17 15:27 Laurent Montel <lmontel at mandriva.com>
-
- * krootwarning/Makefile.am: Fix makefile error
-
-2001-09-14 13:55 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Add gnome-mandrakestore.xpm and updaet
- gnome-mandrakecampus.xpm and gnome-mandrakeexpert.xpm
-
-2001-09-13 19:32 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update spec
-
-2001-09-13 17:04 David Baudens <baudens at mandriva.com>
-
- * Makefile: Update Makefile
-
-2001-09-13 16:00 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update spec
-
-2001-09-13 15:52 David Baudens <baudens at mandriva.com>
-
- * Makefile, mandrake_desk.spec: [no log message]
-
-2001-09-12 17:42 David Baudens <baudens at mandriva.com>
-
- * faces/: tux.xpm, tuxbaby.xpm, tuxbox.xpm, tuxcoocker.xpm,
- tuxdad.xpm, tuxegg.xpm, tuxgirl.xpm, tuxhead1.xpm, tuxhead2.xpm,
- tuxmam.xpm, tuxmecano.xpm, user-brunette-mdk.xpm,
- user-curly-mdk.xpm, user-default-mdk.xpm, user-girl-mdk.xpm,
- user-hat-mdk.xpm, user-tie-mdk.xpm, user-woman-blond-mdk.xpm,
- utildame.xpm, utilmons.xpm: Remove xpm faces
-
-2001-09-12 17:31 David Baudens <baudens at mandriva.com>
-
- * backgrounds/: DKP1-1024.png, DKP1-1280.png, DKP1-1600.png,
- DKP1-640.png, DKP1-800.png, DKP2-1024.png, DKP2-1280.png,
- DKP2-640.png, DKP2-800.png, DKP3-1024.png, DKP3-1280.png,
- DKP3-1600.png, DKP3-640.png, DKP3-800.png, DKP4-1024.png,
- DKP4-1280.png, DKP4-1600.png, DKP4-640.png, DKP4-800.png,
- PP1-1024.png, PP1-1280.png, PP1-1600.png, PP1-640.png,
- PP1-800.png, PP2-1024.png, PP2-1280.png, PP2-1600.png,
- PP2-640.png, PP2-800.png, PP3-1024.png, PP3-1280.png,
- PP3-1600.png, PP3-640.png, PP3-800.png, PP4-1024.png,
- PP4-1280.png, PP4-1600.png, PP4-640.png, PP4-800.png,
- default_background.jpg, logoMDK1-1024.png, logoMDK1-1280.png,
- logoMDK1-1600.png, logoMDK1-800.png,
- mandrake_background1_1024.jpg, mandrake_background2_1024.jpg,
- mandrake_background3_1024.jpg, mandrake_background4_1024.jpg,
- mandrake_background_blue_1024.jpg, nature-1024.png,
- nature-1280.png, nature-1600.png, nature-640.png, nature-800.png:
- Remove old backgrounds
-
-2001-09-04 17:43 David Baudens <baudens at mandriva.com>
-
- * Makefile: Update Makefile, remove login/loging100.png and
- krozat/config.cache
-
-2001-09-04 17:35 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update spec
-
-2001-09-04 17:18 David Baudens <baudens at mandriva.com>
-
- * default_background.jpg, default_logo.jpg, mandrake-small.xpm:
- Remove some old images
-
-2001-09-04 16:58 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update spec
-
-2001-09-03 03:10 Pablo Saratxaga <pablo at mandriva.com>
-
- * mandrake_desk.spec: added French man page to the spec file
-
-2001-09-03 03:02 Pablo Saratxaga <pablo at mandriva.com>
-
- * Makefile, man/chksession.8, man/C/chksession.8,
- man/fr/chksession.8: Added French man page, moved English page to
- its own directory
-
-2001-09-01 16:01 Laurent Montel <lmontel at mandriva.com>
-
- * krootwarning/Makefile.in: Autostart
-
-2001-08-27 14:06 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update spec
-
-2001-08-27 12:51 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update spec
-
-2001-08-27 12:40 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update spec
-
-2001-08-24 19:11 David Baudens <baudens at mandriva.com>
-
- * faces/: avn-rat.png, dadou-fish.png, dear-chief-moon.png,
- gwegwe-rat.png, lmonspread-dog.png, ln-cendrillon.png, man.png,
- renaud-sun.png, vince-donut.png, warly-roller.png, woman.png: Add
- some MandrakeSoft employees :o)
-
-2001-08-24 18:39 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update spec file
-
-2001-08-13 15:20 Chmouel Boudjnah
-
- * sbin/fndSession: Fix path of kdmrc.
-
-2001-08-08 15:49 David Baudens <baudens at mandriva.com>
-
- * krootwarning/: Makefile.dist, TODO, AUTHORS, COPYING, INSTALL,
- Makefile.am, Makefile.in, README, acinclude.m4, aclocal.m4,
- config.h.in, configure, configure.files, configure.in,
- configure.in.in, krootwarning.kdevprj, krootwarning.kdevses,
- krootwarning.lsm, messages.log, stamp-h.in, subdirs: v 0.1
-
-2001-08-08 15:19 David Baudens <baudens at mandriva.com>
-
- * krootwarning/: AUTHORS, COPYING, INSTALL, Makefile.am,
- Makefile.dist, Makefile.in, README, TODO, acinclude.m4,
- aclocal.m4, config.h.in, configure, configure.files,
- configure.in, configure.in.in, krootwarning.kdevprj,
- krootwarning.kdevses, krootwarning.lsm, messages.log, stamp-h.in,
- subdirs: Add krootwarning (KDE)
-
-2001-08-07 19:17 vincent
-
- * mandrake_desk.spec: - Move face in /usr/share/mdk/faces
-
-2001-07-31 15:29 Chmouel Boudjnah
-
- * sbin/chksession: Ignore backup files. Cleanup codes.
-
-2001-07-31 09:21 Frederic Lepied <flepied at mandriva.com>
-
- * Makefile: no need to run autoconf!
-
-2001-07-31 09:19 Frederic Lepied <flepied at mandriva.com>
-
- * mandrake_desk.spec: 8.1-1mdk
-
-2001-07-31 09:17 Frederic Lepied <flepied at mandriva.com>
-
- * sbin/chksession: put back my change to the Xsession path that was
- reverted by the resync.
-
-2001-07-31 09:16 Frederic Lepied <flepied at mandriva.com>
-
- * Makefile: added rules to build test and distrib rpm.
-
-2001-07-31 09:15 Frederic Lepied <flepied at mandriva.com>
-
- * mandrake-small.xpm: resync with 8.0-12mdk
-
-2001-07-31 08:00 Frederic Lepied <flepied at mandriva.com>
-
- * gtkrc: resync with 8.0-12mdk
-
-2001-07-31 07:52 Frederic Lepied <flepied at mandriva.com>
-
- * Makefile, TRANSLATORS, mandrake_desk.spec,
- backgrounds/DKP1-1024.png, backgrounds/DKP1-1280.png,
- backgrounds/DKP1-1600.png, backgrounds/DKP1-640.png,
- backgrounds/DKP1-800.png, backgrounds/DKP2-1024.png,
- backgrounds/DKP2-1280.png, backgrounds/DKP2-640.png,
- backgrounds/DKP2-800.png, backgrounds/DKP3-1024.png,
- backgrounds/DKP3-1280.png, backgrounds/DKP3-1600.png,
- backgrounds/DKP3-640.png, backgrounds/DKP3-800.png,
- backgrounds/DKP4-1024.png, backgrounds/DKP4-1280.png,
- backgrounds/DKP4-1600.png, backgrounds/DKP4-640.png,
- backgrounds/DKP4-800.png, backgrounds/ICE-1024.png,
- backgrounds/ICE-1280.png, backgrounds/ICE-1600.png,
- backgrounds/ICE-640.png, backgrounds/ICE-800.png,
- backgrounds/PP1-1024.png, backgrounds/PP1-1280.png,
- backgrounds/PP1-1600.png, backgrounds/PP1-640.png,
- backgrounds/PP1-800.png, backgrounds/PP2-1024.png,
- backgrounds/PP2-1280.png, backgrounds/PP2-1600.png,
- backgrounds/PP2-640.png, backgrounds/PP2-800.png,
- backgrounds/PP3-1024.png, backgrounds/PP3-1280.png,
- backgrounds/PP3-1600.png, backgrounds/PP3-640.png,
- backgrounds/PP3-800.png, backgrounds/PP4-1024.png,
- backgrounds/PP4-1280.png, backgrounds/PP4-1600.png,
- backgrounds/PP4-640.png, backgrounds/PP4-800.png,
- backgrounds/XFdrake-image-test.jpg,
- backgrounds/logoMDK1-1024.png, backgrounds/logoMDK1-1280.png,
- backgrounds/logoMDK1-1600.png, backgrounds/logoMDK1-800.png,
- backgrounds/nature-1024.png, backgrounds/nature-1280.png,
- backgrounds/nature-1600.png, backgrounds/nature-640.png,
- backgrounds/nature-800.png, bin/DrakWM, bin/createbackground.sh,
- bin/print-cups.sh, sbin/chksession: resync with 8.0-12mdk
-
-2001-07-26 11:35 Frederic Lepied <flepied at mandriva.com>
-
- * sbin/chksession: use /etc/X11/xdm/Xsession instead of
- /etc/X11/Xsession for gdm sessions.
-
-2001-05-06 19:20 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS: Updated Chinese file
-
-2001-04-12 06:41 Daouda Lo <daouda at mandriva.com>
-
- * mandrake_desk.spec: cleanups
-
-2001-04-12 06:26 Daouda Lo <daouda at mandriva.com>
-
- * Makefile: remove kdelnk dir
-
-2001-04-12 06:25 Daouda Lo <daouda at mandriva.com>
-
- * mandrake_desk.spec: macros bis
-
-2001-04-12 06:23 Daouda Lo <daouda at mandriva.com>
-
- * mandrake_desk.spec: macros to ease rpm build from cvs
-
-2001-04-12 06:16 Daouda Lo <daouda at mandriva.com>
-
- * Makefile: fix typo in var RPM
-
-2001-04-12 06:15 Daouda Lo <daouda at mandriva.com>
-
- * mandrake_desk.spec: add define tags
-
-2001-04-12 06:14 Daouda Lo <daouda at mandriva.com>
-
- * Makefile: define RPM var
-
-2001-04-12 06:11 Daouda Lo <daouda at mandriva.com>
-
- * Makefile: commented kdelnk related stuffs
-
-2001-04-12 06:08 Daouda Lo <daouda at mandriva.com>
-
- * Makefile: add eazel themes + gtkrc for rpm build
-
-2001-04-12 06:08 Daouda Lo <daouda at mandriva.com>
-
- * gtkrc: new gtkrc :resync with spec
-
-2001-04-12 06:06 Daouda Lo <daouda at mandriva.com>
-
- * mandrake_desk.spec: commit
-
-2001-04-12 02:57 David Baudens <baudens at mandriva.com>
-
- * faces/: root, tux.png, tux.xpm, tuxbaby.png, tuxbaby.xpm,
- tuxbox.png, tuxbox.xpm, tuxcoocker.png, tuxcoocker.xpm,
- tuxdad.png, tuxdad.xpm, tuxegg.png, tuxegg.xpm, tuxgirl.png,
- tuxgirl.xpm, tuxhead1.png, tuxhead1.xpm, tuxhead2.png,
- tuxhead2.xpm, tuxmam.png, tuxmam.xpm, tuxmecano.png,
- tuxmecano.xpm, user-brunette-mdk.png, user-brunette-mdk.xpm,
- user-curly-mdk.png, user-curly-mdk.xpm, user-default-mdk.png,
- user-default-mdk.xpm, user-girl-mdk.png, user-girl-mdk.xpm,
- user-hat-mdk.png, user-hat-mdk.xpm, user-tie-mdk.png,
- user-tie-mdk.xpm, user-woman-blond-mdk.png,
- user-woman-blond-mdk.xpm, utildame.png, utildame.xpm,
- utilmons.png, utilmons.xpm: [no log message]
-
-2001-04-12 02:52 David Baudens <baudens at mandriva.com>
-
- * faces/: user-brunette-mdk.png, user-curly-mdk.png,
- user-default-mdk.png, user-girl-mdk.png, user-hat-mdk.png,
- user-tie-mdk.png, user-woman-blond-mdk.png: [no log message]
-
-2001-04-12 00:53 Daouda Lo <daouda at mandriva.com>
-
- * mandrake_desk.spec: resync specs with cvs
-
-2001-03-29 10:14 Pablo Saratxaga <pablo at mandriva.com>
-
- * Makefile, README, TRANSLATORS, xml-i18n-extract.in,
- xml-i18n-merge.in, xml-i18n-update.in: Now uses xml-i18n-tools to
- handle i18n
-
-2001-03-24 13:29 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS: Updated Korean strings
-
-2001-03-17 17:09 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS: updated the Portuguese strings
-
-2001-03-02 20:45 Chmouel Boudjnah
-
- * bin/DrakWM: Call xvt.
-
-2001-01-07 07:23 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS: updated Basque strings
-
-2000-11-17 14:31 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS: Added Georgian strings
-
-2000-10-16 02:01 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS: updated Brazilian strings
-
-2000-09-13 21:19 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS: corrected email address
-
-2000-09-13 12:55 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS: Added Azeri strings
-
-2000-09-05 22:48 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS: updated Polish strings
-
-2000-08-31 22:39 David Baudens <baudens at mandriva.com>
-
- * kde/.kderc: [no log message]
-
-2000-08-31 19:20 David Baudens <baudens at mandriva.com>
-
- * kde/.kderc: [no log message]
-
-2000-08-31 12:31 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Re add a BuildRoot :(
-
-2000-08-31 12:25 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update mandrake_desk.spec
-
-2000-08-31 03:51 Chmouel Boudjnah
-
- * sbin/chksession: Avoid opendir use csh internal globing...
-
-2000-08-24 11:51 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update Spec
-
-2000-08-24 11:16 David Baudens <baudens at mandriva.com>
-
- * Makefile: Update Makefile (for .desktop)
-
-2000-08-24 11:10 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update Spec
-
-2000-08-24 11:04 David Baudens <baudens at mandriva.com>
-
- * faces/: default.png, root, root.png: [no log message]
-
-2000-08-24 10:11 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update Spec and Makefile
-
-2000-08-24 10:08 David Baudens <baudens at mandriva.com>
-
- * faces/root: Add a "root" link to make GDM happy
-
-2000-08-23 19:30 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update Makefile and spec file
-
-2000-08-23 19:28 David Baudens <baudens at mandriva.com>
-
- * faces/: default.png, root.png: Add link default.png and root.png
- to make KDM happy
-
-2000-08-23 10:44 David Baudens <baudens at mandriva.com>
-
- * faces/: user-brunette-mdk.xpm, user-curly-mdk.xpm,
- user-default-mdk.xpm, user-girl-mdk.xpm, user-hat-mdk.xpm,
- user-tie-mdk.xpm, user-woman-blond-mdk.xpm: Removed unneeded
- files
-
-2000-08-23 10:40 David Baudens <baudens at mandriva.com>
-
- * faces/: user-brunette-mdk.png, user-curly-mdk.png,
- user-default-mdk.png, user-girl-mdk.png, user-hat-mdk.png,
- user-tie-mdk.png, user-woman-blond-mdk.png: Convert faces/*.xpm
- to faces/*.png
-
-2000-08-23 10:39 David Baudens <baudens at mandriva.com>
-
- * Makefile, README.CVS, TRANSLATORS, default_background.jpg,
- default_logo.jpg, mandrake_desk.spec: [no log message]
-
-2000-08-22 19:10 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Re fix spec
-
-2000-08-22 19:06 David Baudens <baudens at mandriva.com>
-
- * Makefile, mandrake_desk.spec: Fix Makefile and spec
-
-2000-08-22 18:51 David Baudens <baudens at mandriva.com>
-
- * faces/: user-brunette-mdk.xpm, user-curly-mdk.xpm,
- user-default-mdk.xpm, user-girl-mdk.xpm, user-hat-mdk.xpm,
- user-tie-mdk.xpm, user-woman-blond-mdk.xpm: Move users icons in
- /usr/share/faces
-
-2000-08-22 18:46 David Baudens <baudens at mandriva.com>
-
- * Makefile, README.CVS, TRANSLATORS, default_background.jpg,
- default_logo.jpg, mandrake_desk.spec: [no log message]
-
-2000-08-22 18:41 David Baudens <baudens at mandriva.com>
-
- * Makefile, mandrake_desk.spec: [no log message]
-
-2000-08-19 11:28 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS: Added Belarussian strings
-
-2000-08-12 11:47 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS: fixed an email address
-
-2000-07-22 21:28 Chmouel Boudjnah
-
- * Makefile, mandrake_desk.spec: BM.
-
-2000-07-18 23:31 Chmouel Boudjnah
-
- * mandrake_desk.spec, sbin/chksession: * sbin/chksession: Set
- support for KDE2 by default when generating session.
-
-2000-07-18 11:42 Chmouel Boudjnah
-
- * Makefile, mandrake_desk.spec: window-managers no longer needed.
-
-2000-07-18 11:41 Chmouel Boudjnah
-
- * window-managers: window-managers is no longer needed.
-
-2000-07-18 11:39 Chmouel Boudjnah
-
- * mandrake_desk.spec, bin/DrakWM: * bin/DrakWM: Add -i options to
- launch with xinit. add -a option to provide alias for bash.
-
-2000-07-17 13:20 Dam's
-
- * mandrake_desk.spec: new release
-
-2000-07-16 14:11 Dam's
-
- * window-managers: sawmill -> sawfish
-
-2000-07-11 23:43 Chmouel Boudjnah
-
- * sbin/convertsession: A new greatest hit.
-
-2000-07-11 23:43 Chmouel Boudjnah
-
- * mandrake_desk.spec, sbin/chksession: sbin/chksession: make
- window-managers file dynamic by simple entry in
- /etc/X11/wmsession.d/ sbin/convertsession: a new greatest hit.
- mandrake_desk.spec: %post with convertsession
-
-2000-06-26 16:00 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS: added Arabic strings
-
-2000-06-07 18:37 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS: Added Korean strings
-
-2000-05-29 13:23 Dam's
-
- * mandrake_desk.spec: see changelog
-
-2000-05-27 21:42 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS: Updated Serbian strings
-
-2000-05-19 01:43 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS: Added Afrikaans strings
-
-2000-05-12 16:16 Frederic Lepied <flepied at mandriva.com>
-
- * sbin/chksession: * use /etc/X11/Xsession for gnome sessions.
-
-2000-05-12 16:16 Frederic Lepied <flepied at mandriva.com>
-
- * mandrake_desk.spec: * 1.0.3-21mdk
-
-2000-05-12 11:21 Dam's
-
- * mandrake_desk.spec: new mdk rel ; added gnome desktop entries
-
-2000-05-09 23:33 Dam's
-
- * mandrake_desk.spec: mdk release
-
-2000-05-09 19:58 Dam's
-
- * mandrake_desk.spec: new release
-
-2000-05-09 19:53 Pixel <pixel at mandriva.com>
-
- * sbin/kdeDesktopCleanup: [no log message]
-
-2000-05-09 19:38 Dam's
-
- * mandrake_desk.spec: no more netscape.desktop
-
-2000-05-09 19:38 Dam's
-
- * Makefile: removed netscape.desktop copy
-
-2000-05-09 17:00 Dam's
-
- * mandrake_desk.spec: removed gnome desktop icons...
-
-2000-05-09 10:15 Dam's
-
- * mandrake_desk.spec: see changelog. new release, cosmetic fix.
-
-2000-05-06 22:55 Chmouel Boudjnah
-
- * mandrake_desk.spec, sbin/chksession: * sbin/chksession: if icewm
- is not here by default launch twm.
-
-2000-05-05 12:21 Pixel <pixel at mandriva.com>
-
- * mandrake_desk.spec, sbin/kdeDesktopCleanup: no_comment
-
-2000-05-04 16:09 Dam's
-
- * mandrake_desk.spec:
- mandrake_desk.spec gnome/mandrake.links :cleaned gnome
- desktop
-
-2000-04-30 17:28 Dam's
-
- * mandrake_desk.spec:
- mandrake_desk.spec :bad date
-
-2000-04-30 17:16 Dam's
-
- * mandrake_desk.spec:
- mandrake_desk.spec :bad release
-
-2000-04-30 17:15 Dam's
-
- * mandrake_desk.spec:
- ChangeLog mandrake_desk.spec :see Changelog
-
-2000-04-29 19:26 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS: Updated Britton, Esperanto and Estonian strings
-
-2000-04-28 16:40 Stefan Siegel <siegel at linux-mandrake.com>
-
- * TRANSLATORS: - add cdwriter_supermount.xpm - correct TRANSLATOR
- address - use kdecolors in icons
-
-2000-04-28 14:40 Dam's
-
- * mandrake_desk.spec:
- ChangeLog mandrake_desk.spec :corrected xfce entry in
- windowmanagers.
-
-2000-04-28 12:15 Dam's
-
- * mandrake_desk.spec, window-managers:
- ChangeLog mandrake_desk.spec window-managers : recovering
- old files
-
-2000-04-28 10:27 Dam's
-
- * mandrake_desk.spec:
- mandrake_desk.spec :fixed bad date
-
-2000-04-28 10:15 Dam's
-
- * mandrake_desk.spec, window-managers:
- ChangeLog mandrake_desk.spec window-managers :corrected
- xfce entry
-
-2000-04-27 15:57 Dam's
-
- * mandrake_desk.spec:
- mandrake_desk.spec : bad date
-
-2000-04-27 15:46 Dam's
-
- * mandrake_desk.spec, window-managers:
- ChangeLog mandrake_desk.spec window-managers :corrected
- wmaker entry
- kdelnk/Updates.kdelnk :unfortunally removed, so re-added
-
-2000-04-21 17:55 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec, window-managers: Upload (see ChangeLog)
-
-2000-04-21 05:58 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec: Update .spec
-
-2000-04-20 19:15 Fançois Pons
-
- * mandrake_desk.spec, window-managers: [no log message]
-
-2000-04-20 16:48 Fançois Pons
-
- * mandrake_desk.spec, window-managers: [no log message]
-
-2000-04-18 15:24 Dam's
-
- * mandrake_desk.spec:
- mandrake_desk.spec :corrected bad version number
-
-2000-04-18 15:21 Dam's
-
- * Makefile:
- Makefile :updated for new mdk relese
-
-2000-04-18 15:18 Dam's
-
- * mandrake_desk.spec:
- ChangeLog mandrake_desk.spec : new mdk release
-
-2000-04-18 14:26 Dam's
-
- * window-managers:
- window-managers : minor correction
- gnome/RpmDrake.desktop kdelnk/Gimp.kdelnk
- kdelnk/RpmDrake.kdelnk kdelnk/Updates.kdelnk
- kdelnk/XKill.kdelnk : desktops needed to be cleaned
-
-2000-04-18 11:20 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS: Added Welsh strings
-
-2000-04-17 15:22 Dam's
-
- * mandrake_desk.spec:
- Modified Files: mandrake_desk.spec updated
-
-2000-04-17 04:56 Chmouel Boudjnah
-
- * window-managers: Various fix.
-
-2000-04-17 00:49 Chmouel Boudjnah
-
- * mandrake_desk.spec: Add /usr/bin
-
-2000-04-17 00:46 Chmouel Boudjnah
-
- * Makefile, mandrake_desk.spec: DrakWM a new greatest hit.
-
-2000-04-17 00:45 Chmouel Boudjnah
-
- * bin/DrakWM: Add file.
-
-2000-04-16 21:37 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS: Added Greek strings
-
-2000-04-16 15:12 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS: Added Finnsih strings
-
-2000-04-11 18:55 Dam's
-
- * mandrake_desk.spec:
- Modified Files: mandrake_desk.spec added ref for
- /usr/share/icons/*.jpg
-
-2000-04-11 18:21 Dam's
-
- * default_logo.jpg:
- Modified Files: default_logo.jpg final logo
-
-2000-04-11 17:46 Dam's
-
- * default_background.jpg, default_logo.jpg:
- Added Files: default_background.jpg default_logo.jpg needed
- for new release of gdm/kdm
-
-2000-04-11 17:43 Dam's
-
- * Makefile, mandrake_desk.spec:
-
- updated icons
-
-2000-04-09 01:42 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS: Added Swedish strings
-
-2000-04-07 03:46 Chmouel Boudjnah
-
- * window-managers: "Seethechangelog"
-
-2000-04-05 23:49 Chmouel Boudjnah
-
- * mandrake_desk.spec, Makefile: "Seethechangelog"
-
-2000-04-05 23:46 Chmouel Boudjnah
-
- * Makefile, mandrake_desk.spec: "Seethechangelog"
-
-2000-04-05 23:41 Chmouel Boudjnah
-
- * mandrake_desk.spec: "Seethechangelog"
-
-2000-04-05 23:38 Chmouel Boudjnah
-
- * Makefile, mandrake_desk.spec, window-managers: "Seethechangelog"
-
-2000-04-04 15:57 David Baudens <baudens at mandriva.com>
-
- * backgrounds/default_background.jpg: Add default background
-
-2000-04-04 15:55 David Baudens <baudens at mandriva.com>
-
- * backgrounds/: mandrake_background3_1024.jpg,
- mandrake_background4_1024.jpg: Add backgrounds
-
-2000-04-04 15:53 David Baudens <baudens at mandriva.com>
-
- * backgrounds/: mandrake_background1_1024.jpg,
- mandrake_background2_1024.jpg, mandrake_background_1024-1.jpg,
- mandrake_background_1024-2.jpg, mandrake_background_1024-3.jpg,
- mandrake_background_1024.jpg, mandrake_background_800.jpg,
- mandrake_background_blue_1024.jpg: Add & remove backgrounds
-
-2000-03-26 20:00 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS: Added Slovenian strings
-
-2000-03-24 13:18 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS: updated translators list
-
-2000-03-06 11:08 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS: Added Chinese entries
-
-2000-02-02 05:51 Chmouel Boudjnah
-
- * mandrake_desk.spec, window-managers: "See_The_Changelog"
-
-2000-01-27 15:50 Chmouel Boudjnah
-
- * mandrake_desk.spec: "Seethechangelog"
-
-2000-01-27 15:44 Chmouel Boudjnah
-
- * backgrounds/: mandrake_background_1024-1.jpg,
- mandrake_background_1024-2.jpg, mandrake_background_1024-3.jpg:
- "Seethechangelog"
-
-2000-01-20 11:18 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS: updated Peter email address
-
-2000-01-10 00:20 Pixel <pixel at mandriva.com>
-
- * mandrake_desk.spec: no_comment
-
-2000-01-07 10:59 Pixel <pixel at mandriva.com>
-
- * mandrake_desk.spec, window-managers: no_comment
-
-2000-01-07 10:23 Frederic Lepied <flepied at mandriva.com>
-
- * mandrake_desk.spec: [no log message]
-
-2000-01-07 10:20 Frederic Lepied <flepied at mandriva.com>
-
- * mandrake_desk.spec: * standard mandrake: none.
-
-2000-01-07 07:54 Pixel <pixel at mandriva.com>
-
- * mandrake_desk.spec, sbin/chksession: no_comment
-
-2000-01-05 23:38 Pixel <pixel at mandriva.com>
-
- * mandrake_desk.spec, sbin/kdeDesktopCleanup: no_comment
-
-2000-01-05 19:16 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS: added Turkish entries
-
-2000-01-05 17:03 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS: added Latvian entries
-
-2000-01-05 00:49 Chmouel Boudjnah
-
- * Makefile, mandrake_desk.spec: "Seethechangelog"
-
-2000-01-04 13:24 David Baudens <baudens at mandriva.com>
-
- * mandrake_desk.spec, window-managers: Use BBDrake & WMDrake for
- BlackBox & Window Maker
-
-2000-01-03 02:36 Chmouel Boudjnah
-
- * mandrake_desk.spec, window-managers: "Seethechangelog"
-
-1999-12-31 03:28 Chmouel Boudjnah
-
- * Makefile: "Seethechangelog"
-
-1999-12-28 23:45 Pablo Saratxaga <pablo at mandriva.com>
-
- * mandrake_desk.spec: added the Gnome menu entries to the spec file
-
-1999-12-28 17:27 Chmouel Boudjnah
-
- * Makefile, mandrake_desk.spec, sbin/chksession: "Seethechangelog"
-
-1999-12-28 16:12 Chmouel Boudjnah
-
- * man/chksession.8: "Seethechangelog"
-
-1999-12-27 17:18 Chmouel Boudjnah
-
- * Makefile, mandrake_desk.spec, sbin/chksession: "Seethechangelog"
-
-1999-12-27 12:57 Chmouel Boudjnah
-
- * mandrake_desk.spec: "Seethechangelog"
-
-1999-12-27 12:53 Chmouel Boudjnah
-
- * mandrake_desk.spec: "Seethechangelog"
-
-1999-12-27 12:21 Chmouel Boudjnah
-
- * bin/linuxconf_kdesu: "Seethechangelog"
-
-1999-12-25 20:30 Pablo Saratxaga <pablo at mandriva.com>
-
- * Makefile, mandrake_desk.spec: added menu entries for Gnome
-
-1999-12-25 20:13 Chmouel Boudjnah
-
- * window-managers, mandrake_desk.spec: "Seethechangelog"
-
-1999-12-25 20:09 Chmouel Boudjnah
-
- * mandrake_desk.spec: "Seethechangelog"
-
-1999-12-25 18:25 Chmouel Boudjnah
-
- * window-managers, mandrake_desk.spec, sbin/kdeDesktopCleanup:
- "Seethechangelog"
-
-1999-12-24 13:00 Pixel <pixel at mandriva.com>
-
- * mandrake_desk.spec: no_comment
-
-1999-12-23 23:34 Pablo Saratxaga <pablo at mandriva.com>
-
- * mandrake_desk.spec: added Gnome desktop icons previously done in
- gmc package
-
-1999-12-23 01:38 Chmouel Boudjnah
-
- * mandrake_desk.spec: "Seethechangelog"
-
-1999-12-23 00:59 Pablo Saratxaga <pablo at mandriva.com>
-
- * TRANSLATORS: added Bulgarian entries
-
-1999-12-22 03:28 Chmouel Boudjnah
-
- * Makefile, mandrake_desk.spec: "Seethechangelog"
-
-1999-12-22 03:21 Chmouel Boudjnah
-
- * Makefile, mandrake_desk.spec, sbin/fndSession, sbin/chksession,
- window-managers: "Seethechangelog"
-
-1999-12-22 03:08 Chmouel Boudjnah
-
- * bin/fndSession, sbin/Xsession: "Seethechangelog"
-
-1999-12-21 13:18 Chmouel Boudjnah
-
- * Makefile, mandrake_desk.spec: "Seethechangelog"
-
-1999-12-21 02:00 David Baudens <baudens at mandriva.com>
-
- * sbin/: Xsession, fndSession:
- Add some WM. Sort in alphabetic order-
-
-1999-12-20 14:59 Pixel <pixel at mandriva.com>
-
- * Makefile, mandrake_desk.spec: no_comment
-
-1999-12-19 19:55 Chmouel Boudjnah
-
- * bin/fndSession: "Seethechangelog"
-
-1999-12-19 19:50 Chmouel Boudjnah
-
- * Makefile, mandrake_desk.spec, README.CVS: "Seethechangelog"
-
-1999-12-19 19:09 Chmouel Boudjnah
-
- * sbin/fndSession: "Seethechangelog"
-
-1999-12-19 19:05 Chmouel Boudjnah
-
- * bin/fndSession, mandrake_desk.spec: "Seethechangelog"
-
-1999-12-19 19:02 Chmouel Boudjnah
-
- * Makefile, TRANSLATORS, backgrounds/mandrake_background_1024.jpg,
- backgrounds/mandrake_background_800.jpg, bin/linuxconf_kdesu,
- sbin/kdeDesktopCleanup: Initial revision
-
-1999-12-19 19:02 Chmouel Boudjnah
-
- * Makefile, TRANSLATORS, backgrounds/mandrake_background_1024.jpg,
- backgrounds/mandrake_background_800.jpg, bin/linuxconf_kdesu,
- sbin/kdeDesktopCleanup: first
+1999-12-19 (no author) <(no author)@99302b65-d5f7-0310-b3dd-f8cd6f4e3d94>
+ New repository initialized by cvs2svn.