Revision: 2960
http://geany.svn.sourceforge.net/geany/?rev=2960&view=rev
Author: ntrel
Date: 2008-09-17 16:14:51 +0000 (Wed, 17 Sep 2008)
Log Message:
-----------
Update feature list in About Geany section.
Modified Paths:
--------------
trunk/ChangeLog
trunk/doc/geany.html
trunk/doc/geany.txt
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2008-09-17 15:54:37 UTC (rev 2959)
+++ trunk/ChangeLog 2008-09-17 16:14:51 UTC (rev 2960)
@@ -7,6 +7,8 @@
Apply patch (with minor changes) from Jason Oster to improve showing
brace indent guides on empty lines when appropriate (thanks,
#2105982).
+ * doc/geany.txt, doc/geany.html:
+ Update feature list in About Geany section.
2008-09-16 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
Modified: trunk/doc/geany.html
===================================================================
--- trunk/doc/geany.html 2008-09-17 15:54:37 UTC (rev 2959)
+++ trunk/doc/geany.html 2008-09-17 16:14:51 UTC (rev 2960)
@@ -6,7 +6,7 @@
<meta name="generator" content="Docutils 0.4: http://docutils.sourceforge.net/" />
<title>Geany</title>
<meta name="authors" content="Enrico Tröger Nick Treleaven Frank Lanitz" />
-<meta name="date" content="2008-09-08" />
+<meta name="date" content="2008-09-15" />
<style type="text/css">
/*
@@ -139,7 +139,7 @@
<br />Nick Treleaven
<br />Frank Lanitz</td></tr>
<tr><th class="docinfo-name">Date:</th>
-<td>2008-09-08</td></tr>
+<td>2008-09-15</td></tr>
<tr><th class="docinfo-name">Version:</th>
<td>0.15</td></tr>
</tbody>
@@ -400,17 +400,18 @@
<p>Some basic features of Geany are:</p>
<ul class="simple">
<li>Syntax highlighting</li>
-<li>Code completion</li>
-<li>Auto completion of often-used constructs like "if", "for" and "while"</li>
-<li>Auto completion of XML and HTML tags</li>
+<li>Code folding</li>
+<li>Symbol name auto-completion</li>
+<li>Construct completion/snippets</li>
+<li>Auto-closing of XML and HTML tags</li>
<li>Call tips</li>
<li>Many supported filetypes including C, Java, PHP, HTML, Python, Perl,
Pascal, and others</li>
-<li>Tag/Symbol lists</li>
-<li>Plugin interface</li>
+<li>Symbol lists</li>
<li>Code navigation</li>
<li>Build system to compile and execute your code</li>
<li>Simple project management</li>
+<li>Plugin interface</li>
</ul>
</div>
<div class="section">
@@ -4240,7 +4241,7 @@
<div class="footer">
<hr class="footer" />
<a class="reference" href="geany.txt">View document source</a>.
-Generated on: 2008-09-15 13:05 UTC.
+Generated on: 2008-09-17 16:01 UTC.
Generated by <a class="reference" href="http://docutils.sourceforge.net/">Docutils</a> from <a class="reference" href="http://docutils.sourceforge.net/rst.html">reStructuredText</a> source.
</div>
Modified: trunk/doc/geany.txt
===================================================================
--- trunk/doc/geany.txt 2008-09-17 15:54:37 UTC (rev 2959)
+++ trunk/doc/geany.txt 2008-09-17 16:14:51 UTC (rev 2960)
@@ -44,17 +44,18 @@
Some basic features of Geany are:
* Syntax highlighting
-* Code completion
-* Auto completion of often-used constructs like "if", "for" and "while"
-* Auto completion of XML and HTML tags
+* Code folding
+* Symbol name auto-completion
+* Construct completion/snippets
+* Auto-closing of XML and HTML tags
* Call tips
* Many supported filetypes including C, Java, PHP, HTML, Python, Perl,
Pascal, and others
-* Tag/Symbol lists
-* Plugin interface
+* Symbol lists
* Code navigation
* Build system to compile and execute your code
* Simple project management
+* Plugin interface
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 2959
http://geany.svn.sourceforge.net/geany/?rev=2959&view=rev
Author: ntrel
Date: 2008-09-17 15:54:37 +0000 (Wed, 17 Sep 2008)
Log Message:
-----------
Add item: custom pipe-separated tags files support. Edit/update wishlist.
Modified Paths:
--------------
trunk/TODO
Modified: trunk/TODO
===================================================================
--- trunk/TODO 2008-09-17 12:36:04 UTC (rev 2958)
+++ trunk/TODO 2008-09-17 15:54:37 UTC (rev 2959)
@@ -28,6 +28,7 @@
o (parsing tags from a memory buffer instead of a file on disk)
o (calltip support for non-C-like languages that use
function_name(arguments) syntax)
+ o (custom pipe-separated tags files support)
o (better tags support for popular languages? - this is a moving
target...)
o (tango-like icons for the symbol list)
@@ -50,8 +51,8 @@
--------
Note: these items might not get worked on.
- o Some kind of support for ctags files
+ o Some kind of support for CTags tags files
o Scope resolution for object members
- o Multiline regex support (requires work on Scintilla)
- o Split window editing
- o Python plugin interface
+ o Multiline regex support (may require work on Scintilla, or
+ alternatively could perhaps use SCI_GETCHARACTERPOINTER)
+ o Python plugin interface (different concept from Lua scripting).
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 2956
http://geany.svn.sourceforge.net/geany/?rev=2956&view=rev
Author: eht16
Date: 2008-09-17 10:09:16 +0000 (Wed, 17 Sep 2008)
Log Message:
-----------
Add 'splitwindow' plugin to the build list of the Waf build system.
Modified Paths:
--------------
trunk/wscript
Modified: trunk/wscript
===================================================================
--- trunk/wscript 2008-09-16 16:08:07 UTC (rev 2955)
+++ trunk/wscript 2008-09-17 10:09:16 UTC (rev 2956)
@@ -324,6 +324,7 @@
build_plugin('export')
build_plugin('filebrowser')
build_plugin('htmlchars')
+ build_plugin('splitwindow')
build_plugin('vcdiff')
# Translations
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 2955
http://geany.svn.sourceforge.net/geany/?rev=2955&view=rev
Author: ntrel
Date: 2008-09-16 16:08:07 +0000 (Tue, 16 Sep 2008)
Log Message:
-----------
Removing completed branch.
Removed Paths:
-------------
branches/split-window-plugin/
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 2952
http://geany.svn.sourceforge.net/geany/?rev=2952&view=rev
Author: ntrel
Date: 2008-09-16 15:42:27 +0000 (Tue, 16 Sep 2008)
Log Message:
-----------
Fix wrong parameter for "project-close" signal.
(Merged from split-window-plugin branch).
Modified Paths:
--------------
trunk/ChangeLog
trunk/doc/plugins.dox
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2008-09-16 15:37:50 UTC (rev 2951)
+++ trunk/ChangeLog 2008-09-16 15:42:27 UTC (rev 2952)
@@ -6,6 +6,9 @@
Improve dox for sciwrappers.c.
Correct sci_grap_focus() misspelling.
(Merged from split-window-plugin branch).
+ * doc/plugins.dox:
+ Fix wrong parameter for "project-close" signal.
+ (Merged from split-window-plugin branch).
2008-09-15 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
Modified: trunk/doc/plugins.dox
===================================================================
--- trunk/doc/plugins.dox 2008-09-16 15:37:50 UTC (rev 2951)
+++ trunk/doc/plugins.dox 2008-09-16 15:42:27 UTC (rev 2952)
@@ -149,13 +149,11 @@
*
* @signaldef project-close
* @signalproto
- * void user_function(GObject *obj, GKeyFile *config, gpointer user_data);
+ * void user_function(GObject *obj, gpointer user_data);
* @endsignalproto
* @signaldesc
* Sent after a project is closed.
* @param obj a GeanyObject instance, should be ignored.
- * @param config an exising GKeyFile object which can be used to read and write data.
- * It must not be closed or freed.
* @param user_data user data.
* @endsignaldef
*
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.