pkgsrc changes:
- Remove upstream applied fix
Upstream changes:
0.3603 - Mon Jan 18 22:28:59 EST 2010
(Oops, I released the last one before I realized this should have been
fixed along with it.)
Bug fixes:
- Module::Build::Compat would croak on distibutions that set requires
'perl' to a dotted decimal like '5.6.2'. We now skip that key
since it doesn't go into PREREQ_PM and we numify it properly for
'use 5.006002' in the generated Makefile.PL (RT#53409)
[David Golden, adapted from patch by G. Allen Morris III]
0.3602 - Mon Jan 18 22:09:54 EST 2010
Bug fixes:
- Fix failures in t/properties/needs_compiler.t when $ENV{CC} is set
(RT#53296) [David Golden, adapted from patch by Jens Rehsack]
pkgsrc changes:
- Adjusting dependencies
Upstream changes:
0.55 2010.01.21
- Add full list of file types to the View Document As menu (SZABGAB)
- dist-zilla projects detection finally fixed (#489) (JQUELIN)
- The directory tree refresh method will shortcut if nothing has
changed, which should fix a number of bugs relating to the
directory tree "doing things" when it shouldn't be (ADAMK)
- Saving files to somewhere other than the current project will now
correctly flush the document project state, and triggers a directory
tree flush so that we communicate the change in project (ADAMK)
- Cloned ORLite::Migrate to a private version as Padre::DB::Migrate
so we have a better chance of fixing bug #796 (ADAMK)
- Tentatively fixed#796 by spawning migration scripts in a manner which
does NOT assume the pre-existance of STDOUT. This is at best a
short-term hack, because this STDOUT problem is going to come back and
bite us in other ways in the future, for sure (ADAMK)
- Tuned the directory tree refresh logic to improve startup speed when
launching Padre with specific named files to open (ADAMK)
- Tuned the creation and management of tool widgets to remove the need
to load or construct tools at startup time that are turned off in the
user's configuration.
- Tuned lock-release refresh execution to remove low-level refresh
methods that are also contained in higher level refresh methods.
- Removed a superfluous AUI Update from the refresh method (ADAMK)
- Delay loading some additional GUI classes and objects until they
definitely needed (ADAMK)
- Suppress warnings that occur during plugin loading (ADAMK)
- 'Simple' possible fix for #331 to update the tabs when 'save all' is
run in Padre. (PLAVEN)
- Fixed#819: Don't crash on missing project dir (SEWI)
- Upgrading --desktop option from VBScript to a new Win32::Shortcut-based
Padre::Desktop. Desktop link creation works on Vista and newer
operating systems again (ADAMK)
- Tuned menubar refresh to only fire if we change document mimetype,
which saves a ton of CPU and seems to reduce flicker (ADAMK)
Based on PR#42563 by Derouiche.
==========================
Change History for ZConfig
==========================
ZConfig 2.6.1 (2008/12/05)
--------------------------
- Fixed support for schema descriptions that override descriptions from a base
schema. If multiple base schema provide descriptions but the derived schema
does not, the first base mentioned that provides a description wins.
https://bugs.launchpad.net/zconfig/+bug/259475
- Fixed compatibility bug with Python 2.5.0.
- No longer trigger deprecation warnings under Python 2.6.
ZConfig 2.6.0 (2008/09/03)
--------------------------
- Added support for file rotation by time by specifying when and
interval, rather than max-size, for log files.
- Removed dependency on setuptools from the setup.py.
ZConfig 2.5.1 (2007/12/24)
--------------------------
- Made it possible to run unit tests via 'python setup.py test' (requires
setuptools on sys.path).
- Added better error messages to test failure assertions.
ZConfig 2.5 (31 Aug 2007)
-------------------------
*A note on the version number:*
Information discovered in the revision control system suggests that
some past revision has been called "2.4", though it is not clear that
any actual release was made with that version number. We're going to
skip revision 2.4 entirely to avoid potential issues with anyone using
something claiming to be ZConfig 2.4, and go straight to version 2.5.
- Add support for importing schema components from ZIP archives (including
eggs).
- Added a 'formatter' configuration option in the logging handler sections
to allow specifying a constructor for the formatter.
- Documented the package: URL scheme that can be used in extending schema.
- Added support for reopening all log files opened via configurations using
the ZConfig.components.logger package. For Zope, this is usable via the
``zc.signalhandler`` package. ``zc.signalhandler`` is not required for
ZConfig.
- Added support for rotating log files internally by size.
- Added a minimal implementation of schema-less parsing; this is mostly
intended for applications that want to read several fragments of ZConfig
configuration files and assemble a combined configuration. Used in some
``zc.buildout`` recipes.
- Converted to using ``zc.buildout`` and the standard test runner from
``zope.testing``.
- Added more tests.
ZConfig 2.3.1 (21 Aug 2005)
---------------------------
- Isolated some of the case-normalization code so it will at least be
easier to override. This remains non-trivial.
ZConfig 2.3 (18 May 2005)
-------------------------
- Added "inet-binding-address" and "inet-connection-address" to the
set of standard datatypes. These are similar to the "inet-address"
type, but the default hostname is more sensible. The datatype used
should reflect how the value will be used.
- Alternate rotating logfile handler for Windows, to avoid platform
limitations on renaming open files. Contributed by Sidnei da Silva.
- For <section> and <multisection>, if the name attribute is omitted,
assume name="*", since this is what is used most often.
ZConfig 2.2 (21 Apr 2004)
-------------------------
- More documentation has been written.
- Added a timedelta datatype function; the input is the same as for
the time-interval datatype, but the resulting value is a
datetime.timedelta object.
- Make sure keys specified as attributes of the <default> element are
converted by the appropriate key type, and are re-checked for
derived sections.
- Refactored the ZConfig.components.logger schema components so that a
schema can import just one of the "eventlog" or "logger" sections if
desired. This can be helpful to avoid naming conflicts.
- Added a reopen() method to the logger factories.
- Always use an absolute pathname when opening a FileHandler.
- A fix to the logger 'format' key to allow the %(process)d expansion variable
that the logging package supports.
- A new timedelta built-in datatype was added. Similar to time-interval
except that it returns a datetime.timedelta object instead.
ZConfig 2.1 (12 Apr 2004)
-------------------------
- Removed compatibility with Python 2.1 and 2.2.
- Schema components must really be in Python packages; the directory
search has been modified to perform an import to locate the package
rather than incorrectly implementing the search algorithm.
- The default objects use for section values now provide a method
getSectionAttributes(); this returns a list of all the attributes of
the section object which store configuration-defined data (including
information derived from the schema).
- Default information can now be included in a schema for <key
name="+"> and <multikey name="+"> by using <default key="...">.
- More documentation has been added to discuss schema extension.
- Support for a Unicode-free Python has been fixed.
- Derived section types now inherit the datatype of the base type if
no datatype is identified explicitly.
- Derived section types can now override the keytype instead of always
inheriting from their base type.
- <import package='...'/> makes use of the current prefix if the
package name begins witha dot.
- Added two standard datatypes: dotted-name and dotted-suffix.
- Added two standard schema components: ZConfig.components.basic and
ZConfig.components.logger.
ZConfig 2.0 (27 Oct 2003)
-------------------------
- Configurations can import additional schema components using a new
"%import" directive; this can be used to integrate 3rd-party
components into an application.
- Schemas may be extended using a new "extends" attribute on the
<schema> element.
- Better error messages when elements in a schema definition are
improperly nested.
- The "zconfig" script can now simply verify that a schema definition
is valid, if that's all that's needed.
Scala is a general purpose programming language designed to express
common programming patterns in a concise, elegant, and type-safe way.
It smoothly integrates features of object-oriented and functional
languages, enabling Java and other programmers to be more productive.
Based on PR#42582 by Derouiche.
0.9.1 (18/07/09)
================
- Allow to open audio files for subtitling
- Changed the default selection type in the Timings Adjust and Shit dialogs
- Fixed crashes:
* Opening a video with Frames mode selected
* Opening the Preferences dialog
Translations:
- Joan Duran (ca)
- Jorge González (es)
Bug fixes:
- Subtitling of audio files (#584795)
- GS crashes when opening subtitles together with a movie (#587097)
- GS crashes on Edit->Preferences (#587100)
Thanks:
- Marcin Zajaczkowski, Yannick Warnier
0.9 (21/06/09)
==============
- New interactive Synchronize Timings dialog:
* Allows to synchronize using multiple sync points
* Each sync point represents the correct time of a subtitle
* Shows help message to ease the synchronization task
* Can synchronize all subtitles based on a set of sync points
- New Seek To dialog that allows to seek the video to a specified time/frame
- More polished user interface, by removing the border relief in video-related
buttons and decreasing their size
- Allow to close a file without quitting the application (File Close)
- Replace All now replaces translations too, besides the normal subtitle text
- Don't change the timing mode, after saving a file, to reflect the timing mode
of the subtitle format chosen for saving
- Added Insert and Delete Subtitles toolbar buttons, removed Find and Replace
from the toolbar
- Added MIME Type association to the SubRip, MPSub, SubStation Alpha and
MicroDVD subtitle formats
- Improved handling of text formatting tags in SubRip files
- Show Matroska Video files (MKV) when listing video files
- Fixed crash on opening a translation file with no subtitles loaded
- SubLib merged into Gnome Subtitles, making both easier to maintain and package
- Major refactoring of the video playback engine:
* GStreamer Playbin (code from the FuseMC project) has been incorporated into
the project source tree
* Gstreamer Playbin no longer builds as a separate package (no separate dll,
although the .so lib is still built separately)
* GStreamer events are now received asynchronously, which means the user
interface adapts to the video in an asynchronous/non-blocking way
- Fixed some bugs in the video playback engine:
* Loading a file when the previously loaded file wasn't played
* Video position not being correctly updated after loading the video and
before starting playback
- Display an error dialog when the help contents cannot be opened
- Fixed the use of Bug Buddy for bug reporting
- Changes in the project dependencies:
* Requires gtk, gtk-sharp, glade-sharp and gconf-sharp 2.12 or higher
* No longer requires gnome-sharp nor sublib
Translations:
- Djihed Afifi (ar)
- Joan Duran (ca)
- Kamil Paral, Lucas Lommer, Petr Kovar, Rinu (cs)
- Joe Hansen, Kristian Kjærgaard (da)
- Felix Braun, Mario Blättermann (de)
- Gabriel Ruiz, Jorge González (es)
- Ilkka Tuohela (fi)
- Luca Ferretti, Simone Oberti (it)
- Kjartan Maraas (nb)
- Yannig Marchegay (oc)
- Piotr Drąg (pl)
- António Lima (pt)
- César Veiga, Fábio Nogueira, Henrique P Machado, Leonardo Ferreira
Fontenelle (pt_BR)
- Nickolay V. Shmyrev (ru)
- Daniel Nylander (sv)
Bug fixes:
- The file with a movie is not always automatically selected (#417975)
- Improvements to selection types in timings dialogs (#430737)
- Add support for viewing and correcting line length (#430961)
- Synchronize subtitles using multiple sync points (#471393)
- Allow to seek to a specified time instant (#504560)
- Configure script doesn't check for gstreamer-plugins-base headers (#520171)
- Make frequently-used menu items accessible in the toolbar (#530833)
- German Translation (#534748)
- Parallel build fails (#534889)
- Crash when trying to open a file (#540009)
- Suboptimal parsing of SRT-file (#552221)
- Strings like 'gtk-cancel' and so should not be translatable (#576197)
- Build error (#577127)
Contributors:
- Arx Cruz, Lucas Lommer
Additional thanks:
- Adam Dixon, Julian Sikorski, Luciano A. Ferrer, Marcin Zajaczkowski,
Satoshi Tanabe
Notable changes (compared to version 1.0.8) include:
- Speed improvements to polynomial multiplication, power series
multiplication, guessing package and coercion of polynomials
to expressions.
- Domains for tensor products.
- 'Complex(Integer)' is now UniqueFactorizationDomain.
- Types in interpreter are now of type 'Type' (instead of 'Domain')
and categories in interpreter are of type 'Category' (instead of
'Subdomain(Domain)').
- Interpreter functions can now return 'Type'.
- New function for files: 'flush'.
- Spad compiler: return in nested functions and nested functions
returning functions.
Bug fixes, in particular:
- Several fixes to guessing package.
- Avoid crash when unparsing equations.
- Equation solver accepts more solutions.
- Fixed handling of 'Tuple' in Spad parser.
- Fixed miscompilation of record constructor by Spad compiler.
Changes:
ctags-5.8 (09 Jul 2009)
* Removed ".ml" as a Lisp extension (now OCaml) [Lisp].
* Added support for Ant language, contributed by David Fishburn.
* Added support for DOS Batch language, contributed by David Fishburn.
* Added support for Flex (Adobe) language, contributed by David Fishburn.
* Added support for MATLAB language, contributed by David Fishburn.
* Added support for Objective Camel (OCaml), provided by Vincent Berthoux [Patch #2738723].
* Added support for TeX language, contributed by David Fishburn.
* Added support for VHDL language, contributed by Nicolas Vincent [Bug #1943306].
* Added support for Pyrex/Cython declarations [Python].
* Added support for "v" kind, for variables [Python].
* Added support for class and member variables [PHP, Bug #1037086].
* Added support for recent enhancements to Eiffel language [Eiffel].
* Added support for ASP classes, contributed by Zendhi Nagao; changes meaning of 'c' kind flag [ASP].
* Added regex support when compiling with MinGW. Gnu regex module now included in all distributions.
* Fixed detection of triple strings inside other strings [Python, Bug #1988130].
* Fixed an endless loop with comments in triple strings [Python, Bug #1988027].
* Fixed bug where functions were sometimes seen as methods [Python, Bug #1988026].
* Fixed parsing of method parameter annotations, fix contributed by Paolo "blaisorblade" Giarrusso [Java, Bug #2049723, #2117073].
* Fixed parsing of global scope qualifiers in base class lists [C++, Bug #1799343].
* Fixed bug where namespace members were given kinds corresponding to globals [C++, Bug #1924919, #1575055].
* Fixed parsing of "else" [C#, Bug #1830344].
* Fixed parsing of derived enums [C#, Bug #1515910].
* Fixed parsing of "foreach" [C#, Bug #1830343].
* Fixed parsing of simple generic classes [C#, Bug #1515910].
* Fixed bug with detecting identifiers inside variables [Python, Bug #1809024].
* Fixed bug with detecting identifiers at the start of variables [Python, Bug #1856363].
* Fixed parsing of triple single-quoted multi-line strings [Python, Bug #1906062].
* Changed to newer version of autoconf, changing configure.in to configure.ac.
This bugfix release will make incoming streaming more reliable, allowing
stream rewinding if supported, fix CUE track playback, fixes shn support
in ffmpeg and other minor fixes.
Pkgsrc changes:
- none
Changes since version 2.21.0:
=============================
2010-01-21
* 2.22.0 released
* Fixed bug 2936564: Can't get item number or title
2010-01-06:
* Fixed bugs 2887061 and 2922040: Recognize "bad password" page.