Release 0.7.0

This commit is contained in:
Yevgen Muntyan 2006-08-23 23:26:36 -05:00
parent 00797c548b
commit e56fa942b7
8 changed files with 97 additions and 7 deletions

View File

@ -54,3 +54,5 @@ moo/mooterm/termhelper_res\.rc$
^po/notexist$
-old\..*$
^po/ru\.po$
.*\.(new|old).*
gmon\.out

View File

@ -1,3 +1,46 @@
2006-08-23 Yevgen Muntyan <muntyan@tamu.edu>
* === Released 0.7.0 ===
2006-08-23 Yevgen Muntyan <muntyan@tamu.edu>
Disabled active strings and completion.
Made it possible to blacklist certain extensions, so no lang is picked up
for them.
2006-08-20 Yevgen Muntyan <muntyan@tamu.edu>
Fixed bug with simultaneous dragging icon and reordering tabs in notebook
2006-08-19 Yevgen Muntyan <muntyan@tamu.edu>
Use globs for files to skip so it's consistent with files-to-process
2006-08-09 Yevgen Muntyan <muntyan@tamu.edu>
Try UTF8, then locale, then ISO***
2006-08-03 Yevgen Muntyan <muntyan@tamu.edu>
Started i18n stuff
2006-07-05 Yevgen Muntyan <muntyan@tamu.edu>
Added --mode argument to control project plugin; made it pass
--project argument to the plugin.
Pass timestap from STARTUP_ID to another instance in order not to
break focus stiealing prevention thing.
2006-06-26 Yevgen Muntyan <muntyan@tamu.edu>
Make sure color scheme setting is applied before opening documents
2006-06-25 Yevgen Muntyan <muntyan@tamu.edu>
Make document grab focus in open_file_line, to close the pane
2006-06-23 Yevgen Muntyan <muntyan@tamu.edu>
Do not try to open special files; do not try different encodings
when error is not related to charset conversion
Fixed tab icon dnd which caused input lock in child windows
2006-06-19 Yevgen Muntyan <muntyan@tamu.edu>
Added New File action in file selector.
2006-06-17 Yevgen Muntyan <muntyan@tamu.edu>
Made displayed tab width configurable.
2006-06-16 Yevgen Muntyan <muntyan@tamu.edu>
Fixed build error on FreeBSD when python is not used.

View File

@ -35,8 +35,8 @@ configure has the following medit-specific options:
= yes with pygtk-2.8)
medit uses patched pygtk codegen to allow docstrings in generated code. It's
unlikely you want to use this option, and it's not advised to use it if you
are not sure what codegen is. Still, in case of problems with python, patched
codegen may be the source of problem, so using upstream codegen may be forced.
are not sure what codegen is. Even if you know what codegen is, do not use
this option.
--with-system-pcre whether to use system copy of pcre library (default
= YES)

View File

@ -22,7 +22,7 @@ DIST_SUBDIRS = m4 moo tests po
# need to create pot-subdirs-stamp before it goes to po/
SUBDIRS = moo tests . po
ACLOCAL_AMFLAGS = -I $(top_srcdir)/m4
#ACLOCAL_AMFLAGS = -I `cd $(top_srcdir) && pwd`/m4
@INTLTOOL_DESKTOP_RULE@
DESKTOP_IN_FILES = medit.desktop.in

39
NEWS
View File

@ -1,3 +1,42 @@
2006-08-23 Yevgen Muntyan <muntyan@math.tamu.edu>
* === Released 0.7.0 ===
New features and impovements:
New and improved user-defined tools.
Much improved Find plugin.
I18n infrastructure is in place (no translations yet).
Reworked plugin system.
Experimental project plugin.
Printing with gtk-2.10.
Made it possible to blacklist certain extensions, so no language
is picked up for them.
Added New File action in file selector.
Made displayed tab width configurable.
Close editor tabs by middle mouse button click (Thomas Gilgin).
Made font selectors show only monospace fonts.
Find Current Word action (Thomas Gilgin).
Improved terminal drawing.
Prettified python console (Geoffrey French).
Disabled active strings and completion in this version, they will
be reenabled and made actually useful in next releases.
Bug fixes include:
Fixed bug with simultaneous dragging icon and reordering tabs in notebook.
On opening files prefer locale encoding to builtin ones (Thomas Gilgin).
Do not try to open special files both on windows and unix.
Fix startup notification protocol handling, so the editor does not steal
focus when using single instance mode and does pop up on correct desktop
when needed.
Color scheme setting applied after opening a document (Thomas Gilgin).
Custom shortcuts did not get saved under certain conditions.
Fixed tab icon dnd which caused input lock in child windows.
Fixed bug in Search/Replace when replacement uses back references.
Store clipboard contents on quit (Thomas Gilgin).
Fixed crash on paste from another application.
Save search history and search options (Thomas Gilgin).
2006-05-26 Yevgen Muntyan <muntyan@math.tamu.edu>
* === Released 0.6.99 ===

View File

@ -14,7 +14,7 @@ AC_CANONICAL_HOST
AC_CONFIG_HEADERS(config.h)
MOO_DEFINE_VERSIONS
MOO_AC_I18N(moo, [ru])
MOO_AC_I18N(moo, [])
# Check operating system
MOO_AC_CHECK_OS
@ -25,9 +25,9 @@ AM_CONDITIONAL(MOO_BUILD_PYTHON_MODULE, true)
AM_CONDITIONAL(MOO_INSTALL_HEADERS, false)
AC_DEFINE(MOO_BUILD_PYTHON_MODULE, 1, MOO_BUILD_PYTHON_MODULE)
else
AM_CONDITIONAL(MOO_INSTALL_LIB, true)
AM_CONDITIONAL(MOO_INSTALL_LIB, false)
AM_CONDITIONAL(MOO_BUILD_PYTHON_MODULE, false)
AM_CONDITIONAL(MOO_INSTALL_HEADERS, true)
AM_CONDITIONAL(MOO_INSTALL_HEADERS, false)
fi
AC_PROG_CC

View File

@ -1 +1,4 @@
These lang files have been taken from kate, and adapted for mooedit.
NOTE: DO NOT make new files, they will go to trash. medit will use brand new gtksourceview
syntax highlighting.
These lang files have been taken from kate and gtksourceview, and adapted for mooedit.

View File

@ -1,3 +1,6 @@
NOTE: DO NOT read this, it's mostly junk, medit will use brand new gtksourceview
syntax highlighting.
Here's what I gather about colors in various editors:
libmoo got highlighting styles and colors from kde text editor, Kate.