Release 0.8.1
This commit is contained in:
parent
54e5c55cb5
commit
302a84a05a
49
INSTALL
49
INSTALL
@ -15,13 +15,17 @@ configure has the following medit-specific options:
|
|||||||
--with-xml whether to use libxml2 (default = YES)
|
--with-xml whether to use libxml2 (default = YES)
|
||||||
This option is useful only for development, to test how medit works in absense
|
This option is useful only for development, to test how medit works in absense
|
||||||
of libxml2. libxml2 is required for syntax highlighting, so you most likely
|
of libxml2. libxml2 is required for syntax highlighting, so you most likely
|
||||||
do not want to use this option.
|
do not want to use this option (if it works at all).
|
||||||
|
|
||||||
|
--with-fam whether to use FAM (or gamin) for file monitoring
|
||||||
|
(default = NO)
|
||||||
|
FAM seems to work well, but gamin seems to be much less stable. This option
|
||||||
|
is not recommended if FAM is provided by gamin on your system.
|
||||||
|
|
||||||
--with-pygtk whether to compile pygtk support (default = YES)
|
|
||||||
--with-python whether to compile python support (default = YES)
|
--with-python whether to compile python support (default = YES)
|
||||||
These two options tell whether pygtk bindings should be built. If medit is built
|
This option tells whether pygtk bindings should be built. If medit is built
|
||||||
without python, then python plugins (builtin terminal in particular) will not
|
without python, then python plugins (builtin terminal and project support in
|
||||||
be available.
|
particular) will not be available.
|
||||||
|
|
||||||
--with-custom-codegen whether to use custom copy of pygtk codegen (default
|
--with-custom-codegen whether to use custom copy of pygtk codegen (default
|
||||||
= yes with pygtk-2.8)
|
= yes with pygtk-2.8)
|
||||||
@ -36,13 +40,46 @@ configure has the following medit-specific options:
|
|||||||
or if installed version of the library doesn't have unicode support (this is
|
or if installed version of the library doesn't have unicode support (this is
|
||||||
the case with default FreeBSD port), included copy will be built.
|
the case with default FreeBSD port), included copy will be built.
|
||||||
|
|
||||||
--with-mooterm whether to build terminal
|
--without-mooterm whether to disable builtin terminal (default = NO)
|
||||||
Use this option if you want builtin terminal (it also requires python).
|
Use this option if you want builtin terminal (it also requires python).
|
||||||
|
|
||||||
|
--without-mooapp
|
||||||
|
--without-mooedit
|
||||||
|
These two options are useful only when building standalone libmoo library,
|
||||||
|
and may not be used with medit.
|
||||||
|
|
||||||
Defaults for all the options are chosen in such a way that you do not need to
|
Defaults for all the options are chosen in such a way that you do not need to
|
||||||
use them. Only in case of problem they may be needed.
|
use them. Only in case of problem they may be needed.
|
||||||
|
|
||||||
|
|
||||||
|
Debugging
|
||||||
|
*********
|
||||||
|
|
||||||
|
For better bug report information and backtraces, configure medit
|
||||||
|
as follows:
|
||||||
|
|
||||||
|
./configure --enable-debug CFLAGS=-g ...
|
||||||
|
|
||||||
|
--enable-debug makes medit spit out lot of debugging information
|
||||||
|
to console, which can be useful to trace bugs. CFLAGS=-g is mandatory
|
||||||
|
for getting a usable backtrace in case of a crash.
|
||||||
|
|
||||||
|
|
||||||
|
libmoo installation
|
||||||
|
*******************
|
||||||
|
|
||||||
|
In addition to options described above, the following may be used to build
|
||||||
|
a standalone libmoo library or python extension module:
|
||||||
|
|
||||||
|
--disable-medit do not build and install medit
|
||||||
|
--enable-libmoo actually build and install libmoo.so
|
||||||
|
--enable-libmoo-headers install libmoo headers
|
||||||
|
--enable-moo-module build and install moo python module
|
||||||
|
The python module is installed whenever libmoo is built, but it
|
||||||
|
can be also built as a big standalone module which doesn't require
|
||||||
|
libmoo to be installed.
|
||||||
|
|
||||||
|
|
||||||
Installation Instructions
|
Installation Instructions
|
||||||
*************************
|
*************************
|
||||||
|
|
||||||
|
23
NEWS
23
NEWS
@ -1,3 +1,26 @@
|
|||||||
|
2007-01-20 Yevgen Muntyan <muntyan@math.tamu.edu>
|
||||||
|
* === Released 0.8.1 ===
|
||||||
|
|
||||||
|
Added syntax highlighting for pkgconfig, libtool, dpatch, dtd.
|
||||||
|
Improved highlighting for shell, python, desktop, m4, xml.
|
||||||
|
Improved compiler and python output views.
|
||||||
|
Added simple python project type.
|
||||||
|
Made Alt-<number> shortcuts switch tabs (stonecrest).
|
||||||
|
All filter settings matching given filename are applied now,
|
||||||
|
in order they are specified, so it's easy to set settings
|
||||||
|
for a folder or single glob, and then tweak them for individual
|
||||||
|
files.
|
||||||
|
Added character encoding selectors to Open and Save dialogs.
|
||||||
|
File permissions are now preserved when using Save As.
|
||||||
|
Input fifo's are created in a separate subdirectory of /tmp,
|
||||||
|
to pollute it less.
|
||||||
|
Windows build uses mime types database from freedesktop.org
|
||||||
|
now.
|
||||||
|
Implemented folder watching on windows: file selector updates
|
||||||
|
automatically when folder content changes.
|
||||||
|
Drag'n'drop in file selector works with Go to Current Doc Folder button.
|
||||||
|
Added bunch of tools for LaTeX documents.
|
||||||
|
|
||||||
2006-11-30 Yevgen Muntyan <muntyan@math.tamu.edu>
|
2006-11-30 Yevgen Muntyan <muntyan@math.tamu.edu>
|
||||||
* === Released 0.8.0 ===
|
* === Released 0.8.0 ===
|
||||||
|
|
||||||
|
4
README
4
README
@ -32,6 +32,10 @@ You can also send email to muntyan@tamu.edu if you don't feel like
|
|||||||
using bug base, or have any questions/comments/beer.
|
using bug base, or have any questions/comments/beer.
|
||||||
medit IRC channel is #medit at irc.freenode.net.
|
medit IRC channel is #medit at irc.freenode.net.
|
||||||
|
|
||||||
|
Provide information available from menu Help > System Info
|
||||||
|
along with bug report. See also INSTALL file for instructions on how to
|
||||||
|
build medit for better debugging information.
|
||||||
|
|
||||||
|
|
||||||
CVS
|
CVS
|
||||||
===
|
===
|
||||||
|
4
moo.mprj
4
moo.mprj
@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<medit-project version="1.0" type="C" name="moo">
|
<medit-project version="1.0" type="C" name="moo">
|
||||||
<active>debug</active>
|
<active>optimized</active>
|
||||||
<commands>
|
<commands>
|
||||||
<compile>cd $(builddir) && $(make) $(base).lo</compile>
|
<compile>cd $(builddir) && $(make) $(base).lo</compile>
|
||||||
</commands>
|
</commands>
|
||||||
@ -36,7 +36,7 @@
|
|||||||
</configure>
|
</configure>
|
||||||
</optimized>
|
</optimized>
|
||||||
</configurations>
|
</configurations>
|
||||||
<file_selector_dir>/home/muntyan/projects/moo/moo/moopython/plugins/pyproject/mprj/</file_selector_dir>
|
<file_selector_dir>/home/muntyan/projects/moo/</file_selector_dir>
|
||||||
<run>
|
<run>
|
||||||
<args>--g-fatal-warnings --new-app --mode=project</args>
|
<args>--g-fatal-warnings --new-app --mode=project</args>
|
||||||
<exe>medit/medit</exe>
|
<exe>medit/medit</exe>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user