joachim99@66
|
1 KDiff3-Readme for Windows
|
joachim99@66
|
2 =========================
|
joachim99@66
|
3
|
joachim99@66
|
4 Author: Joachim Eibl (joachim.eibl@gmx.de)
|
joachim99@69
|
5 Copyright: (C) 2002-2006 by Joachim Eibl
|
joachim99@69
|
6 KDiff3-Version: 0.9.89
|
joachim99@66
|
7 Homepage: http://kdiff3.sourceforge.net
|
joachim99@66
|
8
|
joachim99@66
|
9 KDiff3 is a program that
|
joachim99@66
|
10 - compares and merges two or three input files or directories,
|
joachim99@66
|
11 - shows the differences line by line and character by character (!),
|
joachim99@66
|
12 - provides an automatic merge-facility and
|
joachim99@66
|
13 - an integrated editor for comfortable solving of merge-conflicts
|
joachim99@66
|
14 - and has an intuitive graphical user interface.
|
joachim99@66
|
15
|
joachim99@66
|
16 Now KDiff3-strings are translated into some languages by the KDE-I18N-team.
|
joachim99@66
|
17 (*.qm-files in the KDiff3-directory)
|
joachim99@66
|
18
|
joachim99@66
|
19 See the Changelog.txt for a list of fixed bugs and new features.
|
joachim99@66
|
20
|
joachim99@66
|
21 Windows-specific information for the precompiled KDiff3 version:
|
joachim99@66
|
22 ================================================================
|
joachim99@66
|
23
|
joachim99@66
|
24 This executable is provided for the convenience of users who don't have a
|
joachim99@66
|
25 VC6-compiler at hand.
|
joachim99@66
|
26
|
joachim99@66
|
27 You may redistribute it under the terms of the GNU GENERAL PUBLIC LICENCE.
|
joachim99@66
|
28
|
joachim99@66
|
29 Note that there is NO WARRANTY for this program.
|
joachim99@66
|
30
|
joachim99@66
|
31 Installation:
|
joachim99@66
|
32 - The installer was created by Sebastien Fricker (sebastien.fricker@web.de).
|
joachim99@66
|
33 It is based on the Nullsoft Scriptable Install System (http://nsis.sourceforge.net)
|
joachim99@66
|
34
|
joachim99@66
|
35 - You can place the directory where you want it. But don't separate the file
|
joachim99@66
|
36 kdiff3.exe from the others, since they are needed for correct execution.
|
joachim99@66
|
37
|
joachim99@66
|
38 - Integration with WinCVS: When selected the installer sets KDiff3 to be the
|
joachim99@66
|
39 default diff-tool for WinCVS if available.
|
joachim99@66
|
40
|
joachim99@66
|
41 - Integration with Explorer: When selected KDiff3 will be added to the "Send To"
|
joachim99@66
|
42 menu in the context menu. If you then select two files or two directories and
|
joachim99@66
|
43 choose "Send To"->"KDiff3" then KDiff3 will start and compare the specified files.
|
joachim99@66
|
44
|
joachim99@66
|
45 Since this program was actually developed for GNU/Linux, there might be Windows
|
joachim99@66
|
46 specific problems I don't know of yet. Please write me about problems you encounter.
|
joachim99@66
|
47
|
joachim99@66
|
48 Known bugs:
|
joachim99@66
|
49 - Links are not handled correctly. (This is because links in Windows are not
|
joachim99@66
|
50 the same as under Un*x-filesystems.)
|
joachim99@66
|
51
|
joachim99@66
|
52 Licence:
|
joachim99@66
|
53 GNU GENERAL PUBLIC LICENSE, Version 2, June 1991
|
joachim99@66
|
54 This program is free software; you can redistribute it and/or modify
|
joachim99@66
|
55 it under the terms of the GNU General Public License as published by
|
joachim99@66
|
56 the Free Software Foundation; either version 2 of the License, or
|
joachim99@66
|
57 (at your option) any later version.
|
joachim99@66
|
58
|
joachim99@66
|
59 This program is distributed in the hope that it will be useful,
|
joachim99@66
|
60 but WITHOUT ANY WARRANTY; without even the implied warranty of
|
joachim99@66
|
61 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
joachim99@66
|
62 GNU General Public License for more details.
|
joachim99@66
|
63
|
joachim99@66
|
64 You should have received a copy of the GNU General Public License
|
joachim99@66
|
65 along with this program; if not, write to the Free Software
|
joachim99@66
|
66 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
joachim99@66
|
67
|
joachim99@66
|
68 For details see file "COPYING".
|
joachim99@66
|
69
|
joachim99@66
|
70 Exception from the GPL:
|
joachim99@66
|
71 As a special exception, the copyright holder Joachim Eibl gives permission
|
joachim99@66
|
72 to link this program with the Qt-library (commercial or non-commercial edition)
|
joachim99@66
|
73 from Trolltech (www.trolltech.com), and he permits to distribute the resulting
|
joachim99@66
|
74 executable, without including the source code for the Qt-library in the
|
joachim99@66
|
75 source distribution.
|
joachim99@66
|
76
|
joachim99@66
|
77
|
joachim99@66
|
78
|
joachim99@66
|
79 Start from commandline:
|
joachim99@66
|
80 - Comparing 2 files: kdiff3 file1 file2
|
joachim99@66
|
81 - Merging 2 files: kdiff3 file1 file2 -o outputfile
|
joachim99@66
|
82 - Comparing 3 files: kdiff3 file1 file2 file3
|
joachim99@66
|
83 - Merging 3 files: kdiff3 file1 file2 file3 -o outputfile
|
joachim99@66
|
84 Note that file1 will be treated as base of file2 and file3.
|
joachim99@66
|
85
|
joachim99@66
|
86 If all files have the same name but are in different directories, you can
|
joachim99@66
|
87 reduce typework by specifying the filename only for the first file. E.g.:
|
joachim99@66
|
88 - Comparing 3 files: kdiff3 dir1/filename dir2 dir3
|
joachim99@66
|
89 (This also works in the open-dialog.)
|
joachim99@66
|
90
|
joachim99@66
|
91 - Comparing 2 directories: kdiff3 dir1 dir2
|
joachim99@66
|
92 - Merging 2 directories: kdiff3 dir1 dir2-o destinationdir
|
joachim99@66
|
93 - Comparing 3 directories: kdiff3 dir1 dir2 dir3
|
joachim99@66
|
94 - Merging 3 directories: kdiff3 dir1 dir2 dir3 -o destinationdir
|
joachim99@66
|
95 (Please read the documentation about comparing/merging directories,
|
joachim99@66
|
96 especially before you start merging.)
|
joachim99@66
|
97
|
joachim99@66
|
98 If you start without arguments, then a dialog will appear where you can
|
joachim99@66
|
99 select your files and directories via a filebrowser.
|
joachim99@66
|
100
|
joachim99@66
|
101 For more documentation, see the help-menu or the subdirectory doc.
|
joachim99@66
|
102
|
joachim99@66
|
103 Have fun!
|