Edited README and package description, reset version to 1.0.0

This commit is contained in:
Clement Lefebvre 2016-01-26 03:26:33 +00:00
parent 950147ad55
commit d21fcb2595
4 changed files with 14 additions and 193 deletions

96
README
View File

@ -1,23 +1,11 @@
General Information General Information
=================== ===================
xedit is a small and lightweight UTF-8 text editor for the MATE xedit is a small and lightweight text editor.
environment. Based on gedit, the text editor for the GNOME2 environment.
xedit is part of MATE and uses the latest GTK+ and MATE libraries.
Complete MATE integration is featured, with support for Drag and Drop (DnD)
from Caja (the MATE file manager), the use of the MATE help system,
the MATE Virtual File System and the MATE print framework.
xedit uses a Multiple Document Interface (MDI), which lets you edit more than
one document at the same time.
xedit supports most standard editing features, plus several not found in your xedit supports most standard editing features, plus several not found in your
average text editor (plugins being the most notable of these). average text editor (plugins being the most notable of these).
xedit plugins may also be written in the python scripting language: to enable
python support you need the pygtk and mate-python-desktop bindings.
Although new features are always under development, currently xedit has: Although new features are always under development, currently xedit has:
* Complete support for UTF-8 text * Complete support for UTF-8 text
@ -29,107 +17,25 @@ Although new features are always under development, currently xedit has:
* A complete preferences interface * A complete preferences interface
* Configurable Plugin system, with optional python support * Configurable Plugin system, with optional python support
Some of the plugins, packaged and installed with xedit include, among others: Some of the plugins, packaged and installed with xedit include, among others:
* Word count * Word count
* Spell checker * Spell checker
* Change case of selected text * Change case of selected text
* File Browser * File Browser
* Automatic snippet expansion
* Sort * Sort
* Insert Date/Time * Insert Date/Time
* External Tools
* Tag list * Tag list
Other external plugins are also available.
xedit is released under the GNU General Public License (GPL) version 2, see xedit is released under the GNU General Public License (GPL) version 2, see
the file 'COPYING' for more information. the file 'COPYING' for more information.
The official web site is:
http://www.mate-desktop.org/
You can download the latest xedit tarball from:
https://pub.mate-desktop.org/releases/
Installation Installation
============ ============
xedit requires GTK+-2.16.x, GtkSourceView 2.4.x and MateConf libraries.
PyGobject 2.12.x, PyGtk 2.12.x and PyGtkSourceView 2.4.x are required to
enable python plugins support.
Simple install procedure: Simple install procedure:
% gzip -cd mate-text-editor.tar.gz | tar xvf - # unpack the sources
% cd mate-text-editor # change to the toplevel directory
% ./autogen.sh # run the `configure' script % ./autogen.sh # run the `configure' script
% make # build xedit % make # build xedit
[ Become root if necessary ] [ Become root if necessary ]
% make install # install xedit % make install # install xedit
Running Tests
==================
Xedit has several test that can be run after compilation. Run them by issueing "make check". However there are a couple of requirements that need to be satified before they will pass.
* You need the gsettings schemas installed for some tests to be able to run.
* You need to mount sftp://localhost/ with gvfs-mount for one test to pass.
If test fail and you have setup the above correctly then please file a bug report as described below.
How to report bugs
==================
Bugs should be reported to the MATE bug tracking system.
(https://github.com/mate-desktop/xedit/issues). You will need to create an
account for yourself.
You can also report bugs using the MATE program bug-buddy.
In the bug report please include:
* Information about your system. For instance:
- What operating system and version
- What version of X
- What version of the gtk+, glib and mate libraries
- For Linux, what version of the C library
And anything else you think is relevant.
* How to reproduce the bug.
* If the bug was a crash, the exact text that was printed out when the
crash occurred.
* Further information such as stack traces may be useful, but is not
necessary. If you do send a stack trace, and the error is an X error,
it will be more useful if the stack trace is produced running the test
program with the --sync command line option.
Patches
=======
Patches should also be submitted to github.com/mate-desktop/xedit. If the patch
fixes an existing bug, add the patch as an attachment to that bug
report.
Otherwise, enter a new bug report that describes the patch, and attach
the patch to that bug report.
Patches should be in unified diff form. (The -u option to GNU diff.)
If you are interested in helping us to develop xedit, please see the
file 'AUTHOR' for contact information and/or send a message to the xedit
mailing list. See also the file 'HACKING' for more detailed information.
The xedit team.

View File

@ -3,13 +3,13 @@ dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.63.2) AC_PREREQ(2.63.2)
m4_define(xedit_major_version, 1) m4_define(xedit_major_version, 1)
m4_define(xedit_minor_version, 13) m4_define(xedit_minor_version, 0)
m4_define(xedit_micro_version, 0) m4_define(xedit_micro_version, 0)
m4_define(xedit_version, xedit_major_version.xedit_minor_version.xedit_micro_version) m4_define(xedit_version, xedit_major_version.xedit_minor_version.xedit_micro_version)
AC_INIT([xedit], [xedit_version], AC_INIT([xedit], [xedit_version],
[https://github.com/mate-desktop/xedit/issues], [https://github.com/linuxmint/xedit/issues],
[xedit], [http://mate-desktop.org]) [xedit], [http://github.com/linuxmint/xedit])
AC_CONFIG_HEADERS(config.h) AC_CONFIG_HEADERS(config.h)
AC_CONFIG_SRCDIR(xedit/xedit.c) AC_CONFIG_SRCDIR(xedit/xedit.c)

84
debian/changelog vendored
View File

@ -1,83 +1,5 @@
xedit (1.12.1-1) unstable; urgency=medium xedit (1.0.0) sarah; urgency=medium
* New upstream bugfix release * Initial version
-- Vlad Orlov <monsta@inbox.ru> Mon, 07 Dec 2015 11:18:59 +0300 -- Clement Lefebvre <root@linuxmint.com> Tue, 26 Jan 2016 03:21:00 +0100
xedit (1.12.0-1) unstable; urgency=medium
* New upstream release
-- Clement Lefebvre <root@linuxmint.com> Tue, 03 Nov 2015 13:22:14 +0000
xedit (1.11.0-1) unstable; urgency=medium
* New upstream development release
-- Vlad Orlov <monsta@inbox.ru> Thu, 15 Oct 2015 17:03:49 +0300
xedit (1.10.2-1) unstable; urgency=medium
* New upstream bugfix release
-- Vlad Orlov <monsta@inbox.ru> Wed, 15 Jul 2015 17:41:57 +0300
xedit (1.10.1-1) unstable; urgency=medium
* New upstream bugfix release
-- Vlad Orlov <monsta@inbox.ru> Thu, 25 Jun 2015 12:40:02 +0300
xedit (1.10.0-1) unstable; urgency=medium
* New upstream release
-- Vlad Orlov <monsta@inbox.ru> Tue, 23 Jun 2015 17:11:54 +0300
xedit (1.9.90-1) unstable; urgency=low
* New upstream release candidate
-- Stefano Karapetsas <stefano@karapetsas.com> Mon, 06 Apr 2015 11:26:50 +0200
xedit (1.9.1-1) unstable; urgency=medium
* New upstream development release
-- Stefano Karapetsas <stefano@karapetsas.com> Thu, 22 Jan 2015 11:55:31 +0100
xedit (1.9.0-1) unstable; urgency=low
* New upstream development release
-- Stefano Karapetsas <stefano@karapetsas.com> Tue, 22 Apr 2014 16:14:41 +0200
xedit (1.8.0-0) unstable; urgency=low
* New upstream release
-- Stefano Karapetsas <stefano@karapetsas.com> Thu, 06 Mar 2014 23:26:22 +0100
xedit (1.7.90-1) unstable; urgency=low
* New upstream development release
-- Stefano Karapetsas <stefano@karapetsas.com> Tue, 18 Feb 2014 22:05:43 +0100
xedit (1.7.2-1) unstable; urgency=low
* New upstream development release
-- Stefano Karapetsas <stefano@karapetsas.com> Thu, 13 Feb 2014 22:35:30 +0100
xedit (1.7.1-1) unstable; urgency=low
* New upstream development release.
-- Stefano Karapetsas <stefano@karapetsas.com> Sat, 18 Jan 2014 13:49:19 +0100
xedit (1.7.0-1) unstable; urgency=low
* New upstream development release.
-- Stefano Karapetsas <stefano@karapetsas.com> Wed, 30 Oct 2013 22:16:14 +0100

21
debian/control vendored
View File

@ -1,11 +1,7 @@
Source: xedit Source: xedit
Section: x11 Section: x11
Priority: optional Priority: optional
Maintainer: Stefano Karapetsas <stefano@karapetsas.com> Maintainer: Linux Mint <root@linuxmint.com>
Uploaders: Mike Gabriel <sunweaver@debian.org>,
John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>,
Stefano Karapetsas <stefano@karapetsas.com>,
Vangelis Mouhtsis <vangelis@gnugr.org>,
Build-Depends: autotools-dev, Build-Depends: autotools-dev,
debhelper (>= 9), debhelper (>= 9),
gtk-doc-tools, gtk-doc-tools,
@ -21,7 +17,6 @@ Build-Depends: autotools-dev,
mate-common, mate-common,
yelp-tools, yelp-tools,
Standards-Version: 3.9.6 Standards-Version: 3.9.6
Homepage: http://www.mate-desktop.org/
Package: xedit Package: xedit
Architecture: any Architecture: any
@ -30,9 +25,9 @@ Depends: iso-codes,
${misc:Depends}, ${misc:Depends},
${python:Depends}, ${python:Depends},
${shlibs:Depends}, ${shlibs:Depends},
Recommends: zenity, zenity
XB-Python-Version: ${python:Versions} XB-Python-Version: ${python:Versions}
Description: official text editor of the MATE desktop environment Description: generic text editor
Xedit is a text editor which supports most standard editor features, Xedit is a text editor which supports most standard editor features,
extending this basic functionality with other features not usually extending this basic functionality with other features not usually
found in simple text editors. Xedit is a graphical application which found in simple text editors. Xedit is a graphical application which
@ -52,8 +47,7 @@ Package: xedit-common
Architecture: all Architecture: all
Depends: python, Depends: python,
${misc:Depends}, ${misc:Depends},
Breaks: mate-text-editor (<< 1.5.0), Description: generic text editor (common files)
Description: official text editor of the MATE desktop environment (common files)
Xedit is a text editor which supports most standard editor features, Xedit is a text editor which supports most standard editor features,
extending this basic functionality with other features not usually extending this basic functionality with other features not usually
found in simple text editors. Xedit is a graphical application which found in simple text editors. Xedit is a graphical application which
@ -76,8 +70,7 @@ Architecture: any
Section: devel Section: devel
Depends: xedit (= ${binary:Version}), Depends: xedit (= ${binary:Version}),
${misc:Depends}, ${misc:Depends},
Breaks: mate-text-editor (<< 1.5.0), Description: generic text editor (development files)
Description: official text editor of the MATE desktop environment (development files)
Xedit is a text editor which supports most standard editor features, Xedit is a text editor which supports most standard editor features,
extending this basic functionality with other features not usually extending this basic functionality with other features not usually
found in simple text editors. Xedit is a graphical application which found in simple text editors. Xedit is a graphical application which
@ -101,7 +94,7 @@ Priority: extra
Architecture: any Architecture: any
Depends: xedit (= ${binary:Version}), Depends: xedit (= ${binary:Version}),
${misc:Depends}, ${misc:Depends},
Description: official text editor of the MATE desktop environment (debugging symbols) Description: generic text editor (debugging symbols)
Xedit is a text editor which supports most standard editor features, Xedit is a text editor which supports most standard editor features,
extending this basic functionality with other features not usually extending this basic functionality with other features not usually
found in simple text editors. Xedit is a graphical application which found in simple text editors. Xedit is a graphical application which
@ -127,7 +120,7 @@ Package: xedit-doc
Section: doc Section: doc
Architecture: all Architecture: all
Depends: ${misc:Depends}, Depends: ${misc:Depends},
Description: official text editor of the MATE desktop environment (documentation files) Description: generic text editor (documentation files)
Xedit is a text editor which supports most standard editor features, Xedit is a text editor which supports most standard editor features,
extending this basic functionality with other features not usually extending this basic functionality with other features not usually
found in simple text editors. Xedit is a graphical application which found in simple text editors. Xedit is a graphical application which