Revision: 426
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=426&view=rev
Author: eht16
Date: 2009-02-02 19:52:06 +0000 (Mon, 02 Feb 2009)
Log Message:
-----------
Update to waf 1.5.3 and some cleanup in the wscript.
Modified Paths:
--------------
trunk/waf
trunk/wscript
Modified: trunk/waf
===================================================================
--- trunk/waf 2009-02-02 16:55:48 UTC (rev 425)
+++ trunk/waf 2009-02-02 19:52:06 UTC (rev 426)
@@ -1,6 +1,6 @@
#!/usr/bin/env python
# encoding: utf-8
-# Thomas Nagy, 2005-2008
+# Thomas Nagy, 2005-2009
"""
Redistribution and use in source and binary forms, with or without
@@ -37,8 +37,8 @@
try:import psyco;psyco.full()
except:pass
-VERSION="1.5.0"
-REVISION="80c6ad48eea21944e014f0f0e609ef9c"
+VERSION="1.5.3"
+REVISION="acc5828c66ed33800741f39f185080dd"
INSTALL=sys.platform=='win32' and 'c:/temp' or '/usr/local'
C1='#('
C2='#&'
@@ -46,7 +46,7 @@
join = os.path.join
def err(m):
- print '\033[91mError: %s\033[0m' % m
+ print ('\033[91mError: %s\033[0m' % m)
sys.exit(1)
def unpack_wafdir(dir):
@@ -79,7 +79,7 @@
for x in t: t.extract(x)
t.close()
- os.chmod(join('wafadmin','Tools'), 0755)
+ os.chmod(join('wafadmin','Tools'), 493)
os.unlink(tmp)
os.chdir(cwd)
@@ -127,5 +127,5 @@
Scripting.prepare(t, cwd, VERSION, wafdir)
#==>
@@ Diff output truncated at 100000 characters. @@
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 424
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=424&view=rev
Author: frlan
Date: 2009-02-01 19:16:54 +0000 (Sun, 01 Feb 2009)
Log Message:
-----------
GeanySendMail: Use VERSION macro instead of hard coding version number
Modified Paths:
--------------
trunk/geanysendmail/src/geanysendmail.c
Modified: trunk/geanysendmail/src/geanysendmail.c
===================================================================
--- trunk/geanysendmail/src/geanysendmail.c 2009-02-01 19:16:16 UTC (rev 423)
+++ trunk/geanysendmail/src/geanysendmail.c 2009-02-01 19:16:54 UTC (rev 424)
@@ -45,7 +45,7 @@
PLUGIN_VERSION_CHECK(116)
PLUGIN_SET_INFO(_("GeanySendMail"), _("A little plugin to send the current \
-file as attachment by user's favorite mailer"), "0.5svn", "Frank Lanitz <frank(a)frank.uvena.de>")
+file as attachment by user's favorite mailer"), VERSION, "Frank Lanitz <frank(a)frank.uvena.de>")
/* Keybinding(s) */
enum
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 423
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=423&view=rev
Author: frlan
Date: 2009-02-01 19:16:16 +0000 (Sun, 01 Feb 2009)
Log Message:
-----------
GeanyLipsum: Don't mark author's name as translateable
Modified Paths:
--------------
trunk/geanylipsum/src/geanylipsum.c
Modified: trunk/geanylipsum/src/geanylipsum.c
===================================================================
--- trunk/geanylipsum/src/geanylipsum.c 2009-02-01 19:15:37 UTC (rev 422)
+++ trunk/geanylipsum/src/geanylipsum.c 2009-02-01 19:16:16 UTC (rev 423)
@@ -49,7 +49,7 @@
GeanyFunctions *geany_functions;
PLUGIN_VERSION_CHECK(130)
-PLUGIN_SET_INFO(_("Lipsum"), _("Creating dummy text with Geany"), VERSION, _("Frank Lanitz <frank(a)frank.uvena.de>"));
+PLUGIN_SET_INFO(_("Lipsum"), _("Creating dummy text with Geany"), VERSION, "Frank Lanitz <frank(a)frank.uvena.de>");
static GtkWidget *main_menu_item = NULL;
static gchar *config_file = NULL;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 421
http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=421&view=rev
Author: frlan
Date: 2009-02-01 19:14:53 +0000 (Sun, 01 Feb 2009)
Log Message:
-----------
GeanyLaTeX: Minor changes in preperation of next release:
- Version string changed to 0.3
- Small update of documentation
- Update of TODO-list since a couple of items were moved to a later release
Modified Paths:
--------------
trunk/geanylatex/README
trunk/geanylatex/TODO
trunk/geanylatex/configure.in
trunk/wscript
Modified: trunk/geanylatex/README
===================================================================
--- trunk/geanylatex/README 2009-02-01 19:14:06 UTC (rev 420)
+++ trunk/geanylatex/README 2009-02-01 19:14:53 UTC (rev 421)
@@ -1,14 +1,17 @@
-GeanyLaTeX Plugin
-(Version post 0.2)
+GeanyLaTeX Plugin v0.3
About
------
GeanyLaTeX is a little plugin to improve support of LaTeX at Geany. It
-implements a wizard to create new LaTeX documents in a fast and easy
-way. Also it implements a front end for add labels and refs as well as
-special characters to an open document.
+implements a couple of maybe useful functions:
+ * Wizard to create new LaTeX documents in a fast and easy way with a
+ bunch of templates available
+ * A front end for add labels \label{} and refs \ref{} and \pageref{}
+ with getting suggestion from aux file of document
+ * Inserting special characters through menu
+ * Help entering the right field for bibTeX entries by providing templates
Requirements
@@ -24,7 +27,7 @@
prepared package e.g. from your distribution you probably need to
install an additional package, this might be called geany-dev or
geany-devel. Please note that in order to compile and use this plugin,
-you need Geany 0.16 or later (Geany Plugin API v111 or higher).
+you need Geany 0.16 or later (Geany Plugin API v130 or higher).
Furthermore you need, of course, a C compiler (that is supporting C99)
and the Make tool. The GNU versions of these tools are recommended.
Modified: trunk/geanylatex/TODO
===================================================================
--- trunk/geanylatex/TODO 2009-02-01 19:14:06 UTC (rev 420)
+++ trunk/geanylatex/TODO 2009-02-01 19:14:53 UTC (rev 421)
@@ -4,14 +4,15 @@
ROADMAP/TODO
*********************
-for 0.3
-* Little bibTeX-Support
+for 0.4
+* Improving support for bibTeX
* Parsing of *.bib
* Inserting of \cite
+ * Dialog for inserting bibTeX entries
* Adding support for diff. letter classes
* Replacing of environments
-for 0.4
+for 0.5
* Parsing document for »TOC«
* Navigation throught document
* "Graphical" support while using \ref, \pageref ...
Modified: trunk/geanylatex/configure.in
===================================================================
--- trunk/geanylatex/configure.in 2009-02-01 19:14:06 UTC (rev 420)
+++ trunk/geanylatex/configure.in 2009-02-01 19:14:53 UTC (rev 421)
@@ -1,7 +1,7 @@
# Process this file with autoconf to produce a configure script.
AC_INIT(configure.in)
-AM_INIT_AUTOMAKE(geanylatex, 0.3dev)
+AM_INIT_AUTOMAKE(geanylatex, 0.3)
AM_CONFIG_HEADER(config.h)
Modified: trunk/wscript
===================================================================
--- trunk/wscript 2009-02-01 19:14:06 UTC (rev 420)
+++ trunk/wscript 2009-02-01 19:14:53 UTC (rev 421)
@@ -86,7 +86,7 @@
'geanylatex/src/bibtexlabels.c', 'geanylatex/src/reftex.c',
'geanylatex/src/latexutils.c'],
[ 'geanylatex' ], # include dirs
- '0.3dev'),
+ '0.3'),
Plugin('geanylua',
[ 'geanylua/geanylua.c' ], # the other source files are listed in build_lua()
[ 'geanylua' ], # include dirs
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.