Revision: 888
http://svn.sourceforge.net/geany/?rev=888&view=rev
Author: ntrel
Date: 2006-10-12 09:25:11 -0700 (Thu, 12 Oct 2006)
Log Message:
-----------
Small fix for sign warning
Modified Paths:
--------------
trunk/src/keyfile.c
Modified: trunk/src/keyfile.c
===================================================================
--- trunk/src/keyfile.c 2006-10-12 16:24:34 UTC (rev 887)
+++ trunk/src/keyfile.c 2006-10-12 16:25:11 UTC (rev 888)
@@ -524,7 +524,7 @@
if (app->tab_order_ltr)
{
i++;
- if (i >= session_files->len) break;
+ if (i >= (gint)session_files->len) break;
}
else
{
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 886
http://svn.sourceforge.net/geany/?rev=886&view=rev
Author: eht16
Date: 2006-10-12 03:45:49 -0700 (Thu, 12 Oct 2006)
Log Message:
-----------
Fixed compiler warnings.
Modified Paths:
--------------
trunk/tagmanager/diff.c
Modified: trunk/tagmanager/diff.c
===================================================================
--- trunk/tagmanager/diff.c 2006-10-11 22:15:26 UTC (rev 885)
+++ trunk/tagmanager/diff.c 2006-10-12 10:45:49 UTC (rev 886)
@@ -50,13 +50,13 @@
cp += 4;
if (isspace ((int) *cp)) continue;
- tmp = strrchr(cp, '/');
+ tmp = (const unsigned char*) strrchr((const char*) cp, '/');
if (tmp == NULL)
{ // if no / is contained try \ in case of a Windows filename
- tmp = strrchr(cp, '\\');
+ tmp = (const unsigned char*) strrchr((const char*) cp, '\\');
if (tmp == NULL)
{ // last fallback, probably the filename doesn't contain a path, so take it
- if (strlen(cp) > 0)
+ if (strlen((const char*) cp) > 0)
{
tmp = cp;
skipSlash = FALSE;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 885
http://svn.sourceforge.net/geany/?rev=885&view=rev
Author: eht16
Date: 2006-10-11 15:15:26 -0700 (Wed, 11 Oct 2006)
Log Message:
-----------
Updated missing keybindings.
Modified Paths:
--------------
trunk/ChangeLog
trunk/doc/geany.docbook
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2006-10-11 22:01:26 UTC (rev 884)
+++ trunk/ChangeLog 2006-10-11 22:15:26 UTC (rev 885)
@@ -9,9 +9,9 @@
* src/sci_wrappers.c: Added sci_find_bracematch().
* src/keybindings.c: Added keyboard shortcut Ctrl+< to jump between
matching braces(closes #1571283).
+ * doc/geany.docbook: Updated missing keybindings.
-
2006-10-10 Enrico Tröger <enrico.troeger(a)uvena.de>
* src/document.c: Connect only once to the "sci-notify" signal.
Modified: trunk/doc/geany.docbook
===================================================================
--- trunk/doc/geany.docbook 2006-10-11 22:01:26 UTC (rev 884)
+++ trunk/doc/geany.docbook 2006-10-11 22:15:26 UTC (rev 885)
@@ -1192,6 +1192,31 @@
<entry>Comments current line or selection.</entry>
</row>
<row>
+ <entry>Uncomment line</entry>
+ <entry>Uncomments current line or selection.</entry>
+ </row>
+ <row>
+ <entry>Toggle line commentation</entry>
+ <entry>Comments a line if it is not commented or removes a comment
+ if the line is commented.</entry>
+ </row>
+ <row>
+ <entry>Increase indent</entry>
+ <entry>Indents the current line or selection by one tabulator.</entry>
+ </row>
+ <row>
+ <entry>Decrease indent</entry>
+ <entry>Removes one tabulator from the indentation of the current
+ line or selection.</entry>
+ </row>
+ <row>
+ <entry>Goto matching brace</entry>
+ <entry>If the cursor is ahead or behind a brace, then it is moved to
+ the brace which belongs to the current one. If this keyboard
+ shortcut is pressed again, the cursor is moved back to the
+ first brace.</entry>
+ </row>
+ <row>
<entry>Complete word</entry>
<entry>Shows auto completion list.</entry>
</row>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 882
http://svn.sourceforge.net/geany/?rev=882&view=rev
Author: eht16
Date: 2006-10-11 09:42:46 -0700 (Wed, 11 Oct 2006)
Log Message:
-----------
Updated section about session files limit.
Modified Paths:
--------------
trunk/ChangeLog
trunk/doc/geany.docbook
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2006-10-11 16:35:21 UTC (rev 881)
+++ trunk/ChangeLog 2006-10-11 16:42:46 UTC (rev 882)
@@ -1,6 +1,7 @@
2006-10-11 Enrico Tröger <enrico.troeger(a)uvena.de>
* src/keyfile.c, src/geany.h: Removed hard limit of session files.
+ * doc/geany.docbook: Updated section about session files limit.
2006-10-10 Enrico Tröger <enrico.troeger(a)uvena.de>
Modified: trunk/doc/geany.docbook
===================================================================
--- trunk/doc/geany.docbook 2006-10-11 16:35:21 UTC (rev 881)
+++ trunk/doc/geany.docbook 2006-10-11 16:42:46 UTC (rev 882)
@@ -3,10 +3,10 @@
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" [
<!ENTITY app "Geany">
<!ENTITY app_small "geany">
-<!ENTITY appversion "0.9">
+<!ENTITY appversion "0.10">
<!ENTITY appurl "http://geany.uvena.de">
<!ENTITY author_mail "enrico.troeger(a)uvena.de">
-<!ENTITY date "September 29, 2006">
+<!ENTITY date "October 11, 2006">
<!ENTITY legal SYSTEM "geany_gpl.docbook">
<!ENTITY scikeybinding SYSTEM "scikeybinding.docbook">
]>
@@ -332,14 +332,13 @@
<section id="general_startup">
<title>Startup</title>
<para>
- At startup, &app; loads the first 15 files from the last time
+ At startup, &app; loads all files from the last time
<application>&app;</application> was launched. You can disable this feature in the
preferences dialog(see <xref linkend="confdialog_gen"/>). If you specify some files on
the command line, only these files will be opened, but you can find the files from the
- last session in the file menu under the "Recent files" item. This contains the last
- 15 recently opened files. It may be that &app; loads not exactly 15 session files, this depends
- on the compile time option GEANY_SESSION_FILES; the default is 15. For details see
- <xref linkend="cto"/>.
+ last session in the file menu under the "Recent files" item. By default this contains
+ the last 10 recently opened files. You can change the amount of recently opened
+ files in the preferences dialog.
</para>
<para>
You can start several instances of Geany, but only the first will load files
@@ -691,17 +690,6 @@
</thead>
<tbody>
<row>
- <entry>GEANY_MAX_OPEN_FILES</entry>
- <entry>The limit to how many files can be open at the same time.</entry>
- <entry>25</entry>
- </row>
- <row>
- <entry>GEANY_SESSION_FILES</entry>
- <entry>How many files should be reopened from the last run. Obviously,
- the value should be smaller than GEANY_MAX_OPEN_FILES.</entry>
- <entry>15</entry>
- </row>
- <row>
<entry>GEANY_WORDCHARS</entry>
<entry>These characters define word boundaries.</entry>
<entry>(look at sourcecode)</entry>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.