* Patched missing validity check for non-ReadKey input under -menu
(thanks Kalyan Raj!)
* Disabled interactive testing on Windows platforms
(thanks Brian and Lady Aleena)
* Better handling of input EOL under Windows (thanks Bas)
* Workaround for Term::ReadKey bug under Windows (thanks Bas)
* Reworked workaround for Term::ReadKey timeout bug under Windows
(thanks again, Bas)
* Further improvements under 5.18, especially for Windows
(thanks, Bas)
* Attempted to mollify cpanm by moving $VERSION declaration
* Further improvements under 5.18
(thanks, Gareth)
* Still further improvements under Windows
(thanks, Gareth)
* Fixed spurious ERASEs when deleting "past" start of input
(thanks, Gareth)
* Added 'normal', 'default', 'standard', etc. to colour translation
* Added <CTRL-F> at start of faked input to defer next fake and
insert real input (i.e. like <ESC> but doesn't throw away the
line that was scheduled next)
Updating during the freeze for the following reasons:
* improves compatibility with our lang/perl5
* is a leaf package
* addresses pkg/49204 by Edgar Fuß
0.21 (2014-09-10)
=================
Features added
--------------
* C (cdef) functions allow inner Python functions.
* Enums can now be declared as cpdef to export their values to
the module's Python namespace. Cpdef enums in pxd files export
their values to their own module, iff it exists.
* Allow @staticmethod decorator to declare static cdef methods.
This is especially useful for declaring "constructors" for
cdef classes that can take non-Python arguments.
* Taking a ``char*`` from a temporary Python string object is safer
in more cases and can be done inside of non-trivial expressions,
including arguments of a function call. A compile time error
is raised only when such a pointer is assigned to a variable and
would thus exceed the lifetime of the string itself.
* Generators have new properties ``__name__`` and ``__qualname__``
that provide the plain/qualified name of the generator function
(following CPython 3.5). See http://bugs.python.org/issue21205
* The ``inline`` function modifier is available as a decorator
``@cython.inline`` in pure mode.
* When cygdb is run in a virtualenv, it enables the same virtualenv
inside of the debugger. Patch by Marc Abramowitz.
* PEP 465: dedicated infix operator for matrix multiplication (A @ B).
* HTML output of annotated code uses Pygments for code highlighting
and generally received a major overhaul by Matthias Bussonier.
* IPython magic support is now available directly from Cython with
the command "%load_ext cython". Cython code can directly be
executed in a cell when marked with "%%cython". Code analysis
is available with "%%cython -a". Patch by Martín Gaitán.
* Simple support for declaring Python object types in Python signature
annotations. Currently requires setting the compiler directive
``annotation_typing=True``.
* New directive ``use_switch`` (defaults to True) to optionally disable
the optimization of chained if statement to C switch statements.
* Defines dynamic_cast et al. in ``libcpp.cast`` and C++ heap data
structure operations in ``libcpp.algorithm``.
* Shipped header declarations in ``posix.*`` were extended to cover
more of the POSIX API. Patches by Lars Buitinck and Mark Peek.
Optimizations
-------------
* Simple calls to C implemented Python functions/methods are faster.
This also speeds up many operations on builtins that Cython cannot
otherwise optimise.
* The "and"/"or" operators try to avoid unnecessary coercions of their
arguments. They now evaluate the truth value of each argument
independently and only coerce the final result of the whole expression
to the target type (e.g. the type on the left side of an assignment).
This also avoids reference counting overhead for Python values during
evaluation and generally improves the code flow in the generated C code.
* The Python expression "2 ** N" is optimised into bit shifting.
See http://bugs.python.org/issue21420
* Cascaded assignments (a = b = ...) try to minimise the number of
type coercions.
* Calls to ``slice()`` are translated to a straight C-API call.
Bugs fixed
----------
* Crash when assigning memory views from ternary conditional expressions.
* Nested C++ templates could lead to unseparated ">>" characters being
generated into the C++ declarations, which older C++ compilers could
not parse.
* Sending SIGINT (Ctrl-C) during parallel cythonize() builds could
hang the child processes.
* No longer ignore local setup.cfg files for distutils in pyximport.
Patch by Martin Teichmann.
* Taking a ``char*`` from an indexed Python string generated unsafe
reference counting code.
* Set literals now create all of their items before trying to add them
to the set, following the behaviour in CPython. This makes a
difference in the rare case that the item creation has side effects
and some items are not hashable (or if hashing them has side effects,
too).
* Cython no longer generates the cross product of C functions for code
that uses memory views of fused types in function signatures (e.g.
``cdef func(floating[:] a, floating[:] b)``). This is considered the
expected behaviour by most users and was previously inconsistent with
other structured types like C arrays. Code that really wants all type
combinations can create the same fused memoryview type under different
names and use those in the signature to make it clear which types are
independent.
* Names that were unknown at compile time were looked up as builtins at
runtime but not as global module names. Trying both lookups helps with
globals() manipulation.
* Fixed stl container conversion for typedef element types.
* ``obj.pop(x)`` truncated large C integer values of x to ``Py_ssize_t``.
* ``__init__.pyc`` is recognised as marking a package directory
(in addition to .py, .pyx and .pxd).
* Syntax highlighting in ``cython-mode.el`` for Emacs no longer
incorrectly highlights keywords found as part of longer names.
* Correctly handle ``from cython.submodule cimport name``.
* Fix infinite recursion when using super with cpdef methods.
* No-args ``dir()`` was not guaranteed to return a sorted list.
Other changes
-------------
* The header line in the generated C files no longer contains the
timestamp but only the Cython version that wrote it. This was
changed to make builds more reproducible.
* Removed support for CPython 2.4, 2.5 and 3.1.
* The licensing implications on the generated code were clarified
to avoid legal constraints for users.
Version 3.3
-----------
(bugfix release, released on September 8th 2014)
- Fixed an issue with error reporting on Python 3 for invalid forwarding
of commands.
0.4210 - Mon Sep 1 13:30:29 CEST 2014
[BUG FIXES]
- Fixup CPAN::Meta dependency
- Handle old releases of CPAN::Meta more gracefully.
0.4209 - Mon Sep 1 12:24:40 CEST 2014
[BUG FIXES]
- Stop calling UNIVERSAL::isa as a function
[ENHANCEMENTS]
- Use CPAN::Meta::Merge for meta_merge
- Convert with CPAN::Meta::Convert in meta_add
- Add configure requirements
0.4208 - Mon Aug 18 21:44:38 CEST 2014
[BUG FIXES]
- Removed missed references to Module::Build::Version
0.4207 - Sat Aug 16 12:56:59 CEST 2014
[BUG FIXES]
- Fix type installdir -> installdirs [Leon Timmermans, Vitaliy Tokarev]
[DEPRECATIONS]
- Module::Build::YAML has been removed
- Module::Build::ModuleInfo has been removed
- Module::Build::Version has been removed
- Get rid of "use vars"
- Added use warnings to all modules
0.4206 - Sat Jul 12 14:03:01 CEST 2014
[BUG FIXES]
- Formally declare 5.8 dependency [Karen Etheridge]
- Fix MBTest to work with new and old versions of Test::Builder [Chad Granum]
[ENHANCEMENTS]
- Enable release and author tests during disttest [Leon Timmermans, Alberto Simões]
2.142060 2014-07-25 13:30:06-04:00 America/New_York
[ADDED]
- CPAN::Meta::Merge is a new class for merging two possibly overlapping
instances of metadata. It will accept both CPAN::Meta objects and
(possibly incomplete) hashrefs of metadata.
LIBDEPS, STATICLIBS, DPLDADD, DPLIBDIRS and DPINCDIRS variables were
introduced. With their help one can specify library dependencies in
the top-level Makefile. Users are also able to build some libraries
statically even if they were designed to be a dynamic libraries.
New variable FOREIGN was introduced. With its help one can embed
autotools-based projects (as a subproject) to mk-configure-based once.
See mkc_imp.foreign_autotools.mk section in man page for details.
Support for Darwin was fixed. Nowadays it uses clang.
New features were introduced:
- "progname" for setprogname(3) and getprogname(3) BSDisms;
- "err" for err(3), errx(3), verr(3) and verrx(3) BSDisms;
- "warn" for warn(3), warnx(3), vwarn(3) and vwarnx(3) BSD-isms;
- "fgetln" for fgetln(3) BSD-ism;
Support for Haiku was fixed. It does not support hard links
and uses LIBRARY_PATH.
LDCOMPILER variable was removed.
Compiler is always used for linking.
New builtin "prog_gmake" was introduced which search GNU make.
INTERNALLIBS variable was introduced. With its help one can
implement libraries common for several subprojects.
COMPATLIB variable was introduced. It is ideal solution for
portability code.
MKC_FEATURES: all objects are removed by target "clean"
Target "errorcheck" was added to ALLTARGETS. Therefore it also have
pre_, do_, post_ counterparts.
VARDIR, SHAREDSTATEDIR, SUBPRJSRCTOP, CPPFLAGS0 variables were introduced.
MKC_SOURCE_FUNCSLIBS: .o{s,p} objects are also removed by target "clean"
Hardcoded /etc/mk.conf is not included anymore. New mk-configure
specific configuration file @sysconfdir@/mk-c.conf was introduced.
Additions to doc/NOTES
.depends is added to DISTCLEANDIRS only for non-empty SRCS
mkc_imp.intexts.mk: new error type for odd tokens in INTEXTS_REPLS
MKDEP_CC is shquoted when passed to mkdep(1) as CC.
Code clean-ups, more regression tests.
This release was sucessfully tested on the following platforms.
NetBSD-6.1/x86_64/gcc-4.5, FreeBSD-9.0/i386/gcc-4.2,
OpenBSD-4.9/i386/gcc-4.2, DragonFlyBSD-3.4/x86_64/gcc-4.7,
Darwin-14.0/x86_64/clang-600.0.53, SunOS-5.11/i86pc/gcc-4.7,
SunOS-5.10/sparc/{gcc-4.8,SunStudio-12.3}, diverse
Linux-es/{gcc,icc-12.1,SunStudio-12.3}, Haiku/gcc-4.8.
changelog:
1.2.0.0
* Fixed an integer overflow in the replace function
(https://github.com/bos/text/issues/81)
* Fixed a hang in lazy decodeUtf8With
(https://github.com/bos/text/issues/87)
* Reduced codegen bloat caused by use of empty and single-character
literals
* Added an instance of IsList for GHC 7.8 and above
Upstream changes:
1.000005 - 2014-08-16
- comment blessed use so people who don't know perl stop trying to break it
- add link to lightning talk given at YAPC::NA 2013
1.000004 - 2013-09-18
- fixed slightly mangled metadata from last release
1.000003 - 2013-03-25
- fix NAME in Makefile.PL (RT#84212)
Development
1.0.9
Don't force a minimum size on the tracker
1.0.9b
Only do the media player allocation event if no video is present
Fix parameter warning to gtk_widget_get_visible
Add backend variable to gmtk.pc
Run autoreconf
Updated Hungarian translation
Updated Polish translation
Updated Portuguese translation
Add key bindings for h tv_step_channel down and k tv_step_channel up
1.0.9a
Only emit size_allocation when the widget is visible
Fix bug where title was getting reset when genre was found
Fix gnome-mplayer Issue 683 more granular
gmtk_media_player - fix OSD messages so they only displayed for level 1 and higher
gmtk_media_player - exclude input.conf from file not found message
Use case inspecific parsing of metadata attributes fixes issue #13
This module is more or less a bunch of heuristics for determining if a
given path is a development tree root of some kind.
This has many useful applications, notably ones that require
behaviours for "installed" modules to be different to those that are
still "in development".
packaged for wip by pho.
This library defines an Interpreter monad. It allows to load Haskell
modules, browse them, type-check and evaluate strings with Haskell
expressions and even coerce them into values. The library is thread-safe
and type-safe (even the coercion of expressions to values). It is,
esentially, a huge subset of the GHC API wrapped in a simpler API.
rather than trying to consolidate into a single fnmatch. There aren't that
many of them, and it will aid the integration of cwrappers which doesn't
support globs.
Changelog from mercurial:
2014-05-07 Cédric Krier <ced@b2ck.com>
* CHANGELOG:
Prepare release 3.2.1
[41c2b1119e77] [3.2.1] <3.2>
* .hgtags:
Added tag 3.2.1 for changeset 41c2b1119e77
[e023e0931a72] <3.2>
* tryton/version.py:
Increase version number
[ea8cda98fb8e] <3.2>
* tryton/gui/window/view_form/view/form_gtk/many2one.py:
Fix update completion for empty reference
issue3890 review12271002 (grafted from
b5dfbddfcd96c62b61b9e4c5f38514eec95adfaa)
[8684e4c9a9c8] <3.2>
2014-05-09 Cédric Krier <ced@b2ck.com>
* tryton/gui/window/view_form/view/form_gtk/char.py:
Use the right widget to get text in Char widget
issue3898 review9301002 (grafted from
64eae7781c5170b8c3339c01857263cab5177129)
[a60ba42dae30] <3.2>
2014-05-17 Cédric Krier <ced@b2ck.com>
* tryton/common/domain_inversion.py:
Fix eval_leaf when field equals 0
Only None must be considered as a value not set which will be forced
by the domain inversion.
issue3896 review14271002 (grafted from
6f199f6ec408ffec15cc202067e2347702d8fe0c)
[d43242fb4b4f] <3.2>
* tryton/common/button.py,
tryton/gui/window/view_form/screen/screen.py,
tryton/gui/window/view_form/view/list_gtk/parser.py:
Set button readonly when record or group is readonly
issue3904 review13301002 (grafted from
16b9fc83f836f06ed3aec9463238e28b44c1cbae)
[fc85cf557c9e] <3.2>
* tryton/gui/window/view_form/model/field.py:
O2M.set_client should compare with active records
issue3914 review14281004 (grafted from
47264a4a7b02e312e57d43b9e597ae30fddb741b)
[8a0bb5899ee4] <3.2>
2014-05-22 Cédric Krier <ced@b2ck.com>
* tryton/gui/window/view_form/view/list.py:
Set None instead of False when moving record on top
issue3912 review14291002 (grafted from
0439ac9001836e87780e4631c4498952485df4a9)
[a9c30f198396] <3.2>
* tryton/gui/window/view_form/view/form_gtk/parser.py:
Some widgets are registered many times
This could lead to have buttons clicked many times because the
clicked event will be registered many time.
issue3924 review8371002 (grafted from
d97ea070448917d64af20fcb043455a8e1adf526)
[2cd728dd8c6e] <3.2>
2014-06-02 Guillem Barba <guillem@nan-tic.com>
* tryton/gui/window/view_form/model/field.py:
Detect correctly when to parse value from DateTime, Date or Time
field
issue3957 review12341002 (grafted from
50820068cef9807e8775ae8e2768f7ab80395d5f)
[ed8ba769c241] <3.2>
2014-07-02 Cédric Krier <ced@b2ck.com>
* CHANGELOG:
Prepare release 3.2.2
[b6ebffbfa9ab] [3.2.2] <3.2>
* .hgtags:
Added tag 3.2.2 for changeset b6ebffbfa9ab
[ac542cde2365] <3.2>
* tryton/version.py:
Increase version number
[44e9c4d05dfc] <3.2>
2014-06-08 Cédric Krier <ced@b2ck.com>
* tryton/gui/window/view_form/view/form_gtk/reference.py:
Don't guess the values for no reference
No reference could use '' or None as selection value for the model.
So to prevent to detect false-positive modification and to set
invalid value, the widget must find which one is used as empty
model.
issue3933 review11291002 (grafted from
e2ccc0ff4368c3342f300eb5205c2a3fa2fd7df5)
[f77767bfa651] <3.2>
* tryton/common/domain_inversion.py:
Fix simplify for simple domains ['AND'], ['OR']
issue3955 review9411002 (grafted from
90b6308d43a17fc9f0d775a48670277d25162abc)
[28c0a8b104c6] <3.2>
2014-06-11 Nicolas Évrard <nicoe@b2ck.com>
* tryton/gui/window/view_form/view/list.py:
Quote doublequote characters when copying records to clipboard
issue3972 review6341002 (grafted from
52b6005d779a4a7c07291fb6f7628ee8d8c5263e)
[94499cc28049] <3.2>
2014-06-16 Cédric Krier <ced@b2ck.com>
* tryton/common/popup_menu.py:
Fix mix up of record and id in popup_menu
issue3990 review10371002 (grafted from
42a053cf61ff39ed7c2be82e67489fceb9a1c6b4)
[7147cdbb594c] <3.2>
* tryton/gui/window/view_form/view/form_gtk/many2one.py:
Clean many2one only if text was modified
As update_completion emit the signal changed to force the display of
the popup when the completion model is changed. In this case the
many2one should not be cleaned.
issue3881 review7371002 (grafted from
439e92599164af699ba3daca928590d3fd1acd82)
[b14c2573b71f] <3.2>
2014-07-09 Cédric Krier <ced@b2ck.com>
* tryton/gui/window/view_form/model/field.py:
Fix when number's factor is negative
It must use the absolute value of factor to compute the digit shift
using the logarithm.
issue4031 review11361002 (grafted from
901f343723bf1a32640cc8cc7e1e1bbdc5332b9c)
[f50ec0364a34] <3.2>
2014-08-03 Cédric Krier <ced@b2ck.com>
* CHANGELOG:
Prepare release 3.2.3
[8581032eff00] [3.2.3] <3.2>
* Fix a traceback when removing a text selection.
* Add AtspiTableCell, tracking the new atk interface.
* document: add support to current page and page count (BGO#719508).
* Add new roles and states to track atk (BGO#710464, BGO#712608, BGO#712609).
Changes in dconf 0.20.0
========================
Czech translation updated.
Changes in dconf 0.19.92
=========================
- depend on automake 1.11.2
- stop using ACLOCAL_FLAGS
- depend on released version of Vala (0.18.0)
Changes in dconf 0.19.91
=========================
- fix an unlikely failure in the fuzz testing of gvdb
- fix a thread safety issue with file-db
Changes in dconf 0.19.90
=========================
- dconf compile: always write little endian
- file-db: don't install match rules on no bus (fixes gdbus assertion)
- update dconf(1) manpage for 'dconf compile'
- fix 'make clean' on FreeBSD
- editor: provide appdata
Translations updates:
Ukrainian translation
Aragonese translation
Chinese
Changes in dconf 0.19.3
========================
- quite a lot of test coverage improvements
- Add a proper DCONF_ERROR error domain
- suppress GLib deprecation warnings during build
- engine: issue warnings about missing files only once per source
- engine: grok the WritabilityNotify signal from D-Bus
- gsettings: handle writability changes correctly
- engine: assorted fixes for issues found during testing
- portability: only link to -ldl if it is required
- add support for 'file-db' to profiles: this is an absolute path to a
immutable dconf database file
- add support for finding profiles in XDG_DATA_DIRS if they are not in
/etc
- add 'dconf compile' command for building dconf databases from
keyfiles in arbitrary locations (like from the build system of a
project that may want to install a file-db)
- editor: add a section separator to the app menu for consistency
Changes in dconf 0.19.2
========================
- Add support for the new GSettingsBackend.read_user_value() API
- bump GLib version depend accordingly (2.39.1)
Translations updates:
Greek
Catalan (Valencian)
Simplified Chinese
Persian
hgnested is a Mercurial extension to work with nested repositories.
It was inspired by the forest extension.
The extension allows to apply common Mercurial commands to all the nested
repositories at once like pull, push etc. It also allows to fetch a complete
tree of repositories through ssh or http.
To enable the "hgnested" extension, create an entry for it in your hgrc, like
this:
[extensions]
hgnested =
See `hg help hgnested` for the complete list of commands.
For more information please visit the following website:
http://code.google.com/p/hgnested/
testtools NEWS
++++++++++++++
Changes and improvements to testtools_, grouped by release.
1.0.0
~~~~~
Long overdue, we've adopted a backwards compatibility statement and recognized
that we have plenty of users depending on our behaviour - calling our version
1.0.0 is a recognition of that.
Improvements
------------
* Fix a long-standing bug where tearDown and cleanUps would not be called if the
test run was interrupted. This should fix leaking external resources from
interrupted tests.
(Robert Collins, #1364188)
* Fix a long-standing bug where calling sys.exit(0) from within a test would
cause the test suite to exit with 0, without reporting a failure of that
test. We still allow the test suite to be exited (since catching higher order
exceptions requires exceptional circumstances) but we now call a last-resort
handler on the TestCase, resulting in an error being reported for the test.
(Robert Collins, #1364188)
* Fix an issue where tests skipped with the ``skip``* family of decorators would
still have their ``setUp`` and ``tearDown`` functions called.
(Thomi Richards, #https://github.com/testing-cabal/testtools/issues/86)
* We have adopted a formal backwards compatibility statement (see hacking.rst)
(Robert Collins)
0.9.39
~~~~~~
Brown paper bag release - 0.9.38 was broken for some users,
_jython_aware_splitext was not defined entirely compatibly.
(Robert Collins, #https://github.com/testing-cabal/testtools/issues/100)
0.9.38
~~~~~~
Bug fixes for test importing.
Improvements
------------
* Discovery import error detection wasn't implemented for python 2.6 (the
'discover' module). (Robert Collins)
* Discovery now executes load_tests (if present) in __init__ in all packages.
(Robert Collins, http://bugs.python.org/issue16662)
0.9.37
~~~~~~
Minor improvements to correctness.
Changes
-------
* ``stdout`` is now correctly honoured on ``run.TestProgram`` - before the
runner objects would be created with no stdout parameter. If construction
fails, the previous parameter list is attempted, permitting compatibility
with Runner classes that don't accept stdout as a parameter.
(Robert Collins)
* The ``ExtendedToStreamDecorator`` now handles content objects with one less
packet - the last packet of the source content is sent with EOF set rather
than an empty packet with EOF set being sent after the last packet of the
source content. (Robert Collins)
0.9.36
~~~~~~
Welcome to our long overdue 0.9.36 release, which improves compatibility with
Python3.4, adds assert_that, a function for using matchers without TestCase
objects, and finally will error if you try to use setUp or tearDown twice -
since that invariably leads to bad things of one sort or another happening.
Changes
-------
* Error if ``setUp`` or ``tearDown`` are called twice.
(Robert Collins, #882884)
* Make testtools compatible with the ``unittest.expectedFailure`` decorator in
Python 3.4. (Thomi Richards)
Improvements
------------
* Introduce the assert_that function, which allows matchers to be used
independent of testtools.TestCase. (Daniel Watkins, #1243834)
-------------------------------------
Release 1.8.8 (release date 21-08-2014)
New features
Bug 731947 - Support for PlantUML [view]
Add BREAD_CRUMB_TRAIL. [view]
Bug fixes
Bug 172072 $title doesn't work in LateX header [view]
Bug 583958 Class diagrams and class hierarchy don't work for java generic classes [view]
Bug 589707 Flex .rule file for Visual Studio build can't cope with spaces in filenames [view]
Bug 623299 Fortran: quotation after define causes error [view]
Bug 625601 FORTRAN: recognition free versus fixed formatted code [view]
Bug 700510 Bibliography duplicate filenames fails [view] and [view]
Bug 702584 \cite rejects valid BibTeX keys [view] and [view]
Bug 705503 TCL: Documentation of oo::define is not working [view]
Bug 727732 Nested C structures/unions does not work with groups [view]
Bug 728654 configuration stops with settings.h missing [view]
Bug 728740 XML Output: Doxygen doesn't escape & characters (included in a hyperlink) in <detaileddescription> [view]
Bug 729017 function object in member initializer causes documentation loss [view]
Bug 729427 [PATCH] Propagate configure's perl to makefiles [view]
Bug 730418 man page extension is incorrect [view]
Bug 730520 No documentation generated for method-less C++ struct [view]
Bug 730887 [PATCH] Fix potential copy and paste error in inputstring.cpp [view]
Bug 730888 [PATCH] Fix missing '&' in Boolean operation in qstring.cpp [view]
Bug 731238 Dead links in html documentation when using tabs for indentation in c++ [view]
Bug 731363 Callgraphs for C# only generated for methods inside the same class [view]
Bug 731985 Variadic macros failing to expand if trailing ... is empty [view]
Bug 732594 Two entries for a single member in Doxygen XML [view]
Bug 732768 nested html tables cause pdflatex to hang (1.8.4 and 1.8.6) [view]
Bug 733451 volatile declaration on member functions is not handled as xml attribute [view]
Bug 733605 Incorrect LaTeX generation for private union member in C++ [view]
Bug 733722 XML Output invalid: XML_PROGRAMLISTING=YES copies Unicode form feed character (U+000C) to XML files [view]
Bug 733856 segfault in QGListIterator while parsing fortran code [view]
Bug 733938 Explicit links using operator()() not generated. [view]
Bug 734077 no uniquely matching class member found for inline function definition where parameter argument names don't match [view]
Bug 734099 Add support for non-parsed language [view]
Bug 734245 Q_PROPERTY switches the member access from private to public [view]
Bug 734331 Strong enum members listed in containing namespace [view]
Bug 734704 Sigsegv while generating XML output [view]
Bug 734727 GENERATE_TAGFILE no longer includes any @*section links [view] and [view]
Bug 734828 Request: disable building documentation if Python 2.6 or newer not available [view]
Bug 735001 No output for markdown pages with duplicate label title (different anchor) [view]
Bug 735037 QGDict::hashAsciiKey: Invalid null key [view]
Add FORTRAN 2003 keywords and commands [view]
Add type option to FORTRAN select statements [view]
Added build support for Python3+ and Python2.6+ [view]
Added class/procedure vardefs to FORTRAN code highlighting [view]
Added documentation for some missing HTML commands [view]
Added flatten, listsort and paginate filters [view]
Added get filter, unified index properties [view]
Added groupby filter and some more context info [view]
Added import keyword to FORTRAN code highlighting [view]
Added lists for indices to template context [view]
Added mainpage to context and improved page tree [view]
Added member indexes to template context [view]
Added missing links in changelog when multiple bug ids were on one line [view]
Added more missing links to the changelog [view]
Added namespace info to the context [view]
Addition of module data to context and alphaIndex filter [view]
Coded coloring of flow statements corrected (regression) [view]
Corrected copyright year [view]
Correction of typing error [view]
Disabled/fixed segments that produced doxygen warnings while running the test [view]
Docbook output improvements [view]
Documentation generator: added support for C# property accessors visibility modifiers. [view]
Doxywizard: make the Next button on the last page of the expert tab switch to the run tab [view]
Doxywizard: make the Next button on the last page of the wizard switch to the run tab [view]
Error linking 32-bit windows [view]
Fix FORTRAN code function scope test [view]
Fix after rebase from master [view]
Fix description of USE_PDFLATEX [view]
Fix highlighting issues [view]
Fix typo [view]
Fix unnecessary rules for FORTRAN types [view]
Fix warning about unused functions in qstring.cpp [view]
Fixed keyword type [view]
Fixed missing include for Linux [view]
Fixed test 021 [view]
Fixed typo [view]
Fixed typo and used QString for directory [view]
Fixed windows compile issue for is_neutral [view]
Fixes for ./configure script on Solaris [view]
Fixes regression due to PR 169 [view]
Language parser: added support for C# property accessors visibility modifiers. [view]
Made INSTALL file version and date independent [view]
Made bread crumb trails enabled unconditionally [view]
Made setName() virtual so overloading works [view]
Make index for faq [view]
Messages truncated in warnings file [view]
Minor fixes [view]
Minor fixes to the template context [view]
Missing word after \n command in Doxygen rtf output, version 1.8.5 & up [view]
More robust extraction of scope information from tag files [view]
No warning in case cite definition is missing [view]
Preparations for release 1.8.8 [view]
Removed not implemented HTML commands from documentation [view]
Removed unsupported HTML commands from the docs [view]
Set deployment targets for MacOSX 10.5+ versions [view]
Support multiple extra HTML stylesheets. [view]
Tcl: add missing file that breaks test 057 [view]
Tcl: add test code for Bug 729092 [view]
Tcl: collect XRefs also if INLINE_SOURCES = no [view]
Tcl: correct namespace resolution in case of INLINE_SOURCES = YES [view]
Tcl: recurse for [] [view]
Tcl: refactor similar code into tcl_codify_token function [view]
Tcl: support eval/catch commands [view]
Tcl: support switch command [view]
Tcl: test 057 additionally tests mutual Xrefs for two files [view]
Template context support for CREATE_SUBDIRS [view]
Update dot.cpp [view]
Update latexgen.cpp [view]
Update test 058 because commit 9d315a9 fixes also Bug 729135 [view]
Replaced the VHDL parser with the VHDL scanner from 1.7.5 to avoid potential licensing issues [view]
New VHDL parser implementation [view]
Vhdl fixes [view]
\usepackage{fixltx2e} must come before use \usepackage{float} [view]
cache anonymous into ClassDefImpl::isAnonymous [view]
changed append filter and added index and path attributes to node [view]
doc/translator.py -- unification for Python 2.6+ and 3.3+ (not finished) [view]
doc/translator.py unified for Python 2.6+ and Python 3.0+ [view]
make.bat: change current directory [view] and [view]
removeRedundantWhiteSpace micro-optimization [view]
resolves the error of unbalanced tags opened/closed in docbook output: parser error : Opening and ending tag mismatch: para line 358 and tbody [view]
winbuild/pack_the_distribution_for_windows.py minor updates [view]