diff -Nru geany-plugins-0.20~svn1474/addons/ChangeLog geany-plugins-0.20~svn1515/addons/ChangeLog --- geany-plugins-0.20~svn1474/addons/ChangeLog 2010-06-27 11:57:28.000000000 +0100 +++ geany-plugins-0.20~svn1515/addons/ChangeLog 2010-08-15 18:46:11.000000000 +0100 @@ -1,3 +1,9 @@ +2010-08-15 Enrico Tröger + + * src/addons.c, src/ao_bookmarklist.c: + Fix line scrolling when jumping to bookmarks (part of #3043534). + + 2010-06-27 Frank Lanitz * src/ao_xmltagging.c: diff -Nru geany-plugins-0.20~svn1474/addons/src/addons.c geany-plugins-0.20~svn1515/addons/src/addons.c --- geany-plugins-0.20~svn1474/addons/src/addons.c 2010-06-27 11:31:30.000000000 +0100 +++ geany-plugins-0.20~svn1515/addons/src/addons.c 2010-08-15 18:46:11.000000000 +0100 @@ -18,7 +18,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, * MA 02110-1301, USA. * - * $Id: addons.c 1468 2010-06-27 10:31:30Z frlan $ + * $Id: addons.c 1508 2010-08-15 17:46:11Z eht16 $ */ @@ -40,7 +40,7 @@ GeanyFunctions *geany_functions; -PLUGIN_VERSION_CHECK(188) +PLUGIN_VERSION_CHECK(194) PLUGIN_SET_TRANSLATABLE_INFO( LOCALEDIR, GETTEXT_PACKAGE, diff -Nru geany-plugins-0.20~svn1474/addons/src/ao_bookmarklist.c geany-plugins-0.20~svn1515/addons/src/ao_bookmarklist.c --- geany-plugins-0.20~svn1474/addons/src/ao_bookmarklist.c 2010-01-01 22:24:34.000000000 +0000 +++ geany-plugins-0.20~svn1515/addons/src/ao_bookmarklist.c 2010-08-15 18:46:11.000000000 +0100 @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * - * $Id: ao_bookmarklist.c 1098 2010-01-01 22:24:34Z eht16 $ + * $Id: ao_bookmarklist.c 1508 2010-08-15 17:46:11Z eht16 $ */ @@ -201,9 +201,12 @@ GeanyDocument *doc = document_get_current(); if (DOC_VALID(doc)) { + gint pos; + gtk_tree_model_get(model, &iter, BMLIST_COL_LINE, &line, -1); - sci_goto_line(doc->editor->sci, line - 1, TRUE); + pos = sci_get_position_from_line(doc->editor->sci, line - 1); + editor_goto_pos(doc->editor, pos, FALSE); gtk_widget_grab_focus(GTK_WIDGET(doc->editor->sci)); } } diff -Nru geany-plugins-0.20~svn1474/build/geanygendoc.m4 geany-plugins-0.20~svn1515/build/geanygendoc.m4 --- geany-plugins-0.20~svn1474/build/geanygendoc.m4 2010-05-29 10:05:27.000000000 +0100 +++ geany-plugins-0.20~svn1515/build/geanygendoc.m4 2010-08-17 01:35:20.000000000 +0100 @@ -50,7 +50,6 @@ GP_STATUS_PLUGIN_ADD([GeanyGenDoc], [$enable_geanygendoc]) AC_CONFIG_FILES([ - geanygendoc/README geanygendoc/Makefile geanygendoc/src/Makefile geanygendoc/data/Makefile diff -Nru geany-plugins-0.20~svn1474/configure geany-plugins-0.20~svn1515/configure --- geany-plugins-0.20~svn1474/configure 2010-07-04 19:16:08.000000000 +0100 +++ geany-plugins-0.20~svn1515/configure 2010-08-19 01:10:09.000000000 +0100 @@ -13063,7 +13063,7 @@ " - ac_config_files="$ac_config_files geanygendoc/README geanygendoc/Makefile geanygendoc/src/Makefile geanygendoc/data/Makefile geanygendoc/data/filetypes/Makefile geanygendoc/docs/Makefile" + ac_config_files="$ac_config_files geanygendoc/Makefile geanygendoc/src/Makefile geanygendoc/data/Makefile geanygendoc/data/filetypes/Makefile geanygendoc/docs/Makefile" @@ -15184,7 +15184,6 @@ "geanygdb/Makefile") CONFIG_FILES="$CONFIG_FILES geanygdb/Makefile" ;; "geanygdb/src/Makefile") CONFIG_FILES="$CONFIG_FILES geanygdb/src/Makefile" ;; "geanygdb/tests/Makefile") CONFIG_FILES="$CONFIG_FILES geanygdb/tests/Makefile" ;; - "geanygendoc/README") CONFIG_FILES="$CONFIG_FILES geanygendoc/README" ;; "geanygendoc/Makefile") CONFIG_FILES="$CONFIG_FILES geanygendoc/Makefile" ;; "geanygendoc/src/Makefile") CONFIG_FILES="$CONFIG_FILES geanygendoc/src/Makefile" ;; "geanygendoc/data/Makefile") CONFIG_FILES="$CONFIG_FILES geanygendoc/data/Makefile" ;; diff -Nru geany-plugins-0.20~svn1474/debian/changelog geany-plugins-0.20~svn1515/debian/changelog --- geany-plugins-0.20~svn1474/debian/changelog 2010-07-04 19:16:40.000000000 +0100 +++ geany-plugins-0.20~svn1515/debian/changelog 2010-08-19 01:10:33.000000000 +0100 @@ -1,3 +1,9 @@ +geany-plugins (0.20~svn1515-1~frasten0) lucid; urgency=low + + * SVN snapshot of rev 1515 on 2010-08-17 02:35:20 +0200. + + -- Andrea Piccinelli Thu, 19 Aug 2010 02:10:31 +0200 + geany-plugins (0.20~svn1474-1~frasten0) lucid; urgency=low * SVN snapshot of rev 1474 on 2010-06-27 14:01:15 +0200. diff -Nru geany-plugins-0.20~svn1474/geanygendoc/ChangeLog geany-plugins-0.20~svn1515/geanygendoc/ChangeLog --- geany-plugins-0.20~svn1474/geanygendoc/ChangeLog 2010-06-14 20:57:38.000000000 +0100 +++ geany-plugins-0.20~svn1515/geanygendoc/ChangeLog 2010-08-17 01:35:20.000000000 +0100 @@ -1,3 +1,22 @@ +2010-08-17 Colomban Wendling + + * docs/manual.rst, docs/manual.html: + Add license information in the manual. + * docs/manual.css: + Add a style definition for blockquotes in the manual stylesheet. + * docs/manual.rst, docs/manual.html: + Move "User interface in Geany" part on the top of the manual. This part is + probably the first new users would look at, then move it to the top. + * docs/manual.rst, docs/manual.html: + Add a small sentence in the introduction to guide the user in her read. + * README.in, HACKING: + Update README.in, add HACKING. + * ../build/geanygendoc.m4, README.in -> README: + Don't pre-process README anymore. It isn't needed anymore since the version + number was removed, and this version number was wrong anyway since the the + plugin is part of Geany-plugins. + + 2010-06-14 Colomban Wendling * src/ggd-plugin.h: diff -Nru geany-plugins-0.20~svn1474/geanygendoc/docs/manual.css geany-plugins-0.20~svn1515/geanygendoc/docs/manual.css --- geany-plugins-0.20~svn1474/geanygendoc/docs/manual.css 2010-05-27 16:16:40.000000000 +0100 +++ geany-plugins-0.20~svn1515/geanygendoc/docs/manual.css 2010-08-17 01:33:50.000000000 +0100 @@ -29,6 +29,12 @@ text-align: justify; } +blockquote { + padding-left: 1em; + margin-left: 1em; + border-left: 3px solid #5c3566; +} + .literal-block, .literal { background: #fff; diff -Nru geany-plugins-0.20~svn1474/geanygendoc/docs/manual.html geany-plugins-0.20~svn1515/geanygendoc/docs/manual.html --- geany-plugins-0.20~svn1474/geanygendoc/docs/manual.html 2010-05-27 16:16:40.000000000 +0100 +++ geany-plugins-0.20~svn1515/geanygendoc/docs/manual.html 2010-08-17 01:34:33.000000000 +0100 @@ -3,7 +3,7 @@ - + GeanyGenDoc User Manual