gtksourceview r2167 - in trunk: . docs/reference/tmpl gtksourceview gtksourceview/language-specs po



Author: pborelli
Date: Sun Feb 15 18:13:56 2009
New Revision: 2167
URL: http://svn.gnome.org/viewvc/gtksourceview?rev=2167&view=rev

Log:
2.5.5


Modified:
   trunk/ChangeLog
   trunk/NEWS
   trunk/README
   trunk/configure.ac
   trunk/docs/reference/tmpl/stylescheme.sgml
   trunk/gtksourceview/gtksourcemark.c
   trunk/gtksourceview/gtksourceprintcompositor.c
   trunk/gtksourceview/gtksourcestylescheme.c
   trunk/gtksourceview/gtksourceview.c
   trunk/gtksourceview/language-specs/cobalt.xml
   trunk/po/ChangeLog

Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS	(original)
+++ trunk/NEWS	Sun Feb 15 18:13:56 2009
@@ -1,3 +1,9 @@
+News in 2.5.5
+-------------
+* New "cobalt" style scheme
+* Misc bugfixes
+* Updated translations
+
 News in 2.5.4
 -------------
 * Improvements to some of the lang files

Modified: trunk/README
==============================================================================
--- trunk/README	(original)
+++ trunk/README	Sun Feb 15 18:13:56 2009
@@ -1,7 +1,7 @@
 General Information
 ===================
 
-This is version 2.5.4 of GtkSourceView. 
+This is version 2.5.5 of GtkSourceView. 
 
 GtkSourceView is a text widget that extends the standard gtk+ 2.x 
 text widget GtkTextView.
@@ -32,8 +32,8 @@
 
 Simple install procedure:
 
-  % gzip -cd gtksourceview-2.5.4.tar.gz | tar xvf -    # unpack the sources
-  % cd gtksourceview-2.5.4		   # change to the toplevel directory
+  % gzip -cd gtksourceview-2.5.5.tar.gz | tar xvf -    # unpack the sources
+  % cd gtksourceview-2.5.5		   # change to the toplevel directory
   % ./configure				   # run the `configure' script
   % make				   # build gtksourceview
   [ Become root if necessary ]

Modified: trunk/configure.ac
==============================================================================
--- trunk/configure.ac	(original)
+++ trunk/configure.ac	Sun Feb 15 18:13:56 2009
@@ -4,7 +4,7 @@
 
 m4_define(gtksourceview_major_version, 2)
 m4_define(gtksourceview_minor_version, 5)
-m4_define(gtksourceview_micro_version, 4)
+m4_define(gtksourceview_micro_version, 5)
 m4_define(gtksourceview_version, gtksourceview_major_version.gtksourceview_minor_version.gtksourceview_micro_version)
 
 AC_INIT(gtksourceview, gtksourceview_version, http://bugzilla.gnome.org/enter_bug.cgi?product=gtksourceview)

Modified: trunk/docs/reference/tmpl/stylescheme.sgml
==============================================================================
--- trunk/docs/reference/tmpl/stylescheme.sgml	(original)
+++ trunk/docs/reference/tmpl/stylescheme.sgml	Sun Feb 15 18:13:56 2009
@@ -45,7 +45,7 @@
 <varlistentry>
 <term><code>parent-scheme</code> (optional)</term>
 <listitem><para>
-Style schemes may have <em>parent</em> schemes: all styles but those specified
+Style schemes may have <emphasis>parent</emphasis> schemes: all styles but those specified
 in the scheme will be taken from the parent scheme. In this way a scheme may
 be customized without copying all its content.
 </para></listitem>
@@ -106,7 +106,7 @@
 <varlistentry>
 <term><code>name</code> (mandatory)</term>
 <listitem><para>
-Name of the style. It can be anything, syntax highlighting uses <em>lang-id:style-id</em>, 
+Name of the style. It can be anything, syntax highlighting uses <emphasis>lang-id:style-id</emphasis>, 
 and there are few special styles which are used to control general appearance
 of the text. Style scheme may contain other names to be used in an application. For instance,
 it may define color to highlight compilation errors in a build log or a color for

Modified: trunk/gtksourceview/gtksourcemark.c
==============================================================================
--- trunk/gtksourceview/gtksourcemark.c	(original)
+++ trunk/gtksourceview/gtksourcemark.c	Sun Feb 15 18:13:56 2009
@@ -134,7 +134,7 @@
 /**
  * gtk_source_mark_new:
  * @name: Name of the #GtkSourceMark, can be NULL when not using a name
- * @category is used to classify marks according to common characteristics
+ * @category: is used to classify marks according to common characteristics
  * (e.g. all the marks representing a bookmark could belong to the "bookmark" 
  * category, or all the marks representing a compilation error could belong to 
  * "error" category).

Modified: trunk/gtksourceview/gtksourceprintcompositor.c
==============================================================================
--- trunk/gtksourceview/gtksourceprintcompositor.c	(original)
+++ trunk/gtksourceview/gtksourceprintcompositor.c	Sun Feb 15 18:13:56 2009
@@ -754,6 +754,8 @@
  * #GtkSourcePrintCompositor:wrap-mode, #GtkSourcePrintCompositor:body-font-name and
  * #GtkSourcePrintCompositor:print-line-numbers.
  *
+ * Return value: a new print compositor object.
+ *
  * Since: 2.2
  **/
 GtkSourcePrintCompositor *

Modified: trunk/gtksourceview/gtksourcestylescheme.c
==============================================================================
--- trunk/gtksourceview/gtksourcestylescheme.c	(original)
+++ trunk/gtksourceview/gtksourcestylescheme.c	Sun Feb 15 18:13:56 2009
@@ -346,7 +346,7 @@
 	return scheme;
 }
 
-/**
+/*
  * get_color_by_name:
  * @scheme: a #GtkSourceStyleScheme.
  * @name: color name to find.

Modified: trunk/gtksourceview/gtksourceview.c
==============================================================================
--- trunk/gtksourceview/gtksourceview.c	(original)
+++ trunk/gtksourceview/gtksourceview.c	Sun Feb 15 18:13:56 2009
@@ -3787,13 +3787,6 @@
 	return view->priv->draw_spaces;
 }
 
-/**
- * gtk_source_view_style_set:
- * @widget: a #GtkSourceView.
- * @previous_style:
- *
- *
- **/
 static void
 gtk_source_view_style_set (GtkWidget *widget, GtkStyle *previous_style)
 {

Modified: trunk/gtksourceview/language-specs/cobalt.xml
==============================================================================
--- trunk/gtksourceview/language-specs/cobalt.xml	(original)
+++ trunk/gtksourceview/language-specs/cobalt.xml	Sun Feb 15 18:13:56 2009
@@ -118,7 +118,6 @@
 
   <!-- SH Styles -->
   <style name="sh:function"                 foreground="neon_pink"/>
-  <style name="sh:others"                   map-to="text"/>
   
   <!-- XML Styles -->
   <style name="xml:attribute-name"          foreground="light_grey"/>



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]