summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* build: rename configure.in into configure.acbaserock/morphNuno Araujo2013-01-202-1/+1
| | | | | | | | | With the upcoming version of automake (1.14) the support for the configure.in file will be dropped.[1] [1]http://lists.gnu.org/archive/html/automake/2012-12/msg00038.html Bug #692111.
* build: add support for automake 1.13Nuno Araujo2013-01-201-1/+1
| | | | | | | In Automake 1.13, the long-deprecated macro AM_CONFIG_HEADER (deprecated since 2002) has been removed in favour of AC_CONFIG_HEADERS. Bug #692111.
* Post release version bumpChristian Persch2012-10-251-2/+2
|
* Version 0.6.80.6.8Christian Persch2012-10-251-0/+3
|
* cr-tknzr: Handle signed unitsJasper St. Pierre2012-10-163-4/+28
| | | | | | Parse something like '-20px' correctly. https://bugzilla.gnome.org/show_bug.cgi?id=686239
* Post release version bumpChristian Persch2012-10-161-2/+2
|
* Version 0.6.70.6.7Christian Persch2012-10-162-2/+5
|
* build: Fix include directiveChristian Persch2012-10-161-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=686126
* Revert "cr-rgb: Fix mapping for 'green'"Adel Gadllah2012-10-071-1/+1
| | | | | | | | This reverts commit 0cbb0dfed7350ed48a12d56925cdd76255891aa5. This violates the CSS and SVG standards. https://bugzilla.gnome.org/show_bug.cgi?id=685679
* Post release version bumpChristian Persch2012-09-161-1/+1
|
* Version 0.6.60.6.6Christian Persch2012-09-161-0/+3
|
* cr-om-parser: Stop memory leakJasper St. Pierre2012-06-241-11/+6
| | | | | | The parser refs the doc handler, so we need to unref it here. https://bugzilla.gnome.org/show_bug.cgi?id=678736
* cr-string: Prevent memory leakJasper St. Pierre2012-06-241-4/+4
| | | | | | | Instead of leaking the existing GString, truncate and append to it instead. https://bugzilla.gnome.org/show_bug.cgi?id=678736
* Post release version bumpChristian Persch2012-03-261-2/+2
|
* Version 0.6.50.6.5Christian Persch2012-03-262-1/+7
|
* cr-rgb: Fix mapping for 'green'Adel Gadllah2012-03-181-1/+1
| | | | | | Green is supposed to be #00FF00 not #008000. https://bugzilla.gnome.org/show_bug.cgi?id=672332
* Post release version bumpChristian Persch2012-02-061-1/+1
|
* Update NEWS for 0.6.40.6.4Christian Persch2012-02-061-0/+9
|
* Update Visual C++ .sln filesChun-wei Fan2012-01-092-267/+267
| | | | | These files must be in Windows/DOS EOL to function correctly-somehow GIT preferred to have them in UNIX EOL in my last patch.
* Bug 666248: Visual C++ compilation supportChun-wei Fan2012-01-0942-3/+5449
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This enables libcroco to be compiled with Visual C++ 2008/2010, along with its test programs. A libcroco.symbols is included to export the symbols from the DLL that is built in the process, and the projects for the main libcroco DLL is done in a way where their source file listings are filled in during "make dist" as they could be changed from time to time so to simplify maintenanace work. Versioning stuff are also done via autotools as far as possible also. The .sln files have no simple way to include the LGPL 2.1+ terms without causing trouble, so the text for them is included as follows, for references. ------ This file is part of The Croco Library This program is free software; you can redistribute it and/or modify it under the terms of version 2.1 of the GNU Lesser General Public License as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Author: Fan, Chun-wei See COPYRIGHTS file for copyright information. ------
* Revert "Bug 666248: Visual C++ compilation support"Chun-wei Fan2011-12-2042-5449/+3
| | | | This reverts commit 642ac3f675176ee6c2e124eac86dd85b1b1816e0.
* Bug 666248: Visual C++ compilation supportChun-wei Fan2011-12-2042-3/+5449
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This enables libcroco to be compiled with Visual C++ 2008/2010, along with its test programs. A libcroco.symbols is included to export the symbols from the DLL that is built in the process, and the projects for the main libcroco DLL is done in a way where their source file listings are filled in during "make dist" as they could be changed from time to time so to simplify maintenanace work. Versioning stuff are also done via autotools as far as possible also. The .sln files have no simple way to include the LGPL 2.1+ terms without causing trouble, so the text for them is included as follows, for references. ------ This file is part of The Croco Library This program is free software; you can redistribute it and/or modify it under the terms of version 2.1 of the GNU Lesser General Public License as published by the Free Software Foundation. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Author: Fan, Chun-wei See COPYRIGHTS file for copyright information. ------
* Modernise and simplify configureChristian Persch2011-12-118-109/+44
|
* Use -Bsymbolic-functions when availableChristian Persch2011-12-113-15/+376
|
* Use AM_SILENT_RULESChristian Persch2011-12-111-1/+6
|
* Use case-insensitive string comparision of colour namesChristian Persch2011-12-111-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=459403
* Use bsearch to find the colour by nameChristian Persch2011-12-111-11/+21
|
* Fully initialise this static dataChristian Persch2011-12-111-148/+148
| | | | | | Cherry-picked from commit ac3e66fa2bb416507b5b5cf114c1edaa3455f105 . Also sort the array alphabetically.
* Also bump LIBCROCO_MICRO_VERSIONChristian Persch2011-12-061-1/+1
|
* Use AC_CANONICAL_HOSTMaarten Bosmans2011-12-061-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=664542
* Post release version bumpChristian Persch2011-12-061-1/+1
|
* Autogenerate ChangeLogChristian Persch2011-12-062-1880/+11
|
* Fixed format string issues by giving static literals, fixes bug 640897Tobias Mueller2011-12-063-15/+11
|
* Make colour table constFelix Riemann2011-12-061-1/+1
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=546765
* Add myself to maintainersChristian Persch2011-12-061-0/+7
|
* Version 0.6.30.6.3Christian Persch2011-11-142-4/+12
|
* Revert "Sending recent tested changes from inkscape developers to libcroco ↵Abhishek Sharma2011-11-0649-1750/+2656
| | | | | | upstream" This reverts commit ac3e66fa2bb416507b5b5cf114c1edaa3455f105.
* Adding DOAP fileChristian Persch2011-11-053-5/+31
|
* Sending recent tested changes from inkscape developers to libcroco upstreamAbhishek Sharma2011-07-0349-2656/+1750
|
* Adding libxml2 install check whether its present or notAbhishek Sharma2011-06-261-4/+11
|
* Remove test/test-outputs from svn, as it is empty and is deleted by theThomas Wood2009-02-191-0/+8
| | | | | | | | * Remove test/test-outputs from svn, as it is empty and is deleted by the test script, which causes problems for SVN * Add ChangeLog entry for commit 325 svn path=/trunk/; revision=327
* Remove auto-generated documentation templatesThomas Wood2009-02-1928-5041/+0
| | | | svn path=/trunk/; revision=326
* Add infrastructure to allow gtk-doc documentation to be built.Thomas Wood2009-02-193-1/+4
| | | | | | | | | | | | 2009-02-19 Thomas Wood <thos@gnome.org> * Makefile.am: * configure.in: * docs/Makefile.am: Add infrastructure to allow gtk-doc documentation to be built. svn path=/trunk/; revision=325
* Remove gtk-doc.make which is overwritten by autogen.sh scriptThomas Wood2009-02-171-153/+0
| | | | svn path=/trunk/; revision=324
* ensure the library and compiler flags are not hardcoded into the packageThomas Wood2009-02-172-2/+7
| | | | | | | | | 2009-02-17 Thomas Wood <thos@gnome.org> * libcroco.pc.in: ensure the library and compiler flags are not hardcoded into the package config file. (bug 342370) svn path=/trunk/; revision=323
* Remove redundant .cvsignore filesThomas Wood2009-02-0913-62/+0
| | | | svn path=/trunk/; revision=322
* ============= 0.6.2 release =======================Thomas Wood2009-02-043-1/+38
| | | | | | | | | | | 2009-02-04 Thomas Wood <thos@gnome.org> * NEWS * configure.in Update for 0.6.2 release svn path=/trunk/; revision=320
* Bug 553937 - CRDocHandler instances created with reference count of 0Robert Staudinger2008-09-262-0/+7
| | | | | | | * src/cr-doc-handler.c (cr_doc_handler_new): Bug 553937 - CRDocHandler instances created with reference count of 0 svn path=/trunk/; revision=319
* minor: (cr_declaration_destroy): Simplify implementation (and assert that ↵Peter J. R. Moulder2008-03-302-36/+13
| | | | | | next/prev elements point to each other). svn path=/trunk/; revision=318
* oops, add ChangeLog entries for the last couple of commits.Peter J. R. Moulder2008-03-301-7/+23
| | | | svn path=/trunk/; revision=317