Revision: 2511
http://geany.svn.sourceforge.net/geany/?rev=2511&view=rev
Author: ntrel
Date: 2008-04-22 05:59:08 -0700 (Tue, 22 Apr 2008)
Log Message:
-----------
Add const qualifier for filepos::file to indicate it is just a reference to the document's filename, not a copy.
Modified Paths:
--------------
trunk/src/navqueue.c
Modified: trunk/src/navqueue.c
===================================================================
--- trunk/src/navqueue.c 2008-04-20 11:51:28 UTC (rev 2510)
+++ trunk/src/navqueue.c 2008-04-22 12:59:08 UTC (rev 2511)
@@ -38,7 +38,7 @@
/* for the navigation history queue */
typedef struct
{
- gchar *file; /* This is the document's filename, in UTF-8 */
+ const gchar *file; /* This is the document's filename, in UTF-8 */
gint pos;
} filepos;
@@ -106,7 +106,7 @@
}
-static void add_new_position(gchar *utf8_filename, gint pos)
+static void add_new_position(const gchar *utf8_filename, gint pos)
{
filepos *npos;
guint i;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 2510
http://geany.svn.sourceforge.net/geany/?rev=2510&view=rev
Author: eht16
Date: 2008-04-20 04:51:28 -0700 (Sun, 20 Apr 2008)
Log Message:
-----------
Fix wrong tooltip for "Show Increase and Decrease Indentation buttons" in the preferences dialog.
Modified Paths:
--------------
trunk/ChangeLog
trunk/geany.glade
trunk/src/interface.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2008-04-20 11:43:07 UTC (rev 2509)
+++ trunk/ChangeLog 2008-04-20 11:51:28 UTC (rev 2510)
@@ -4,6 +4,9 @@
Don't chmod created run script when using the Run command and
execute the script with /bin/sh on Unix-like systems to be able
to run files on FAT filesystems.
+ * geany.glade, src/interface.c:
+ Fix wrong tooltip for "Show Increase and Decrease Indentation
+ buttons" in the preferences dialog.
2008-04-19 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
Modified: trunk/geany.glade
===================================================================
--- trunk/geany.glade 2008-04-20 11:43:07 UTC (rev 2509)
+++ trunk/geany.glade 2008-04-20 11:51:28 UTC (rev 2510)
@@ -4887,7 +4887,7 @@
<child>
<widget class="GtkCheckButton" id="check_toolbar_indent">
<property name="visible">True</property>
- <property name="tooltip" translatable="yes">Display the Zoom In and Zoom Out buttons in the toolbar</property>
+ <property name="tooltip" translatable="yes">Display the Increase and Decrease Indentation buttons in the toolbar</property>
<property name="label" translatable="yes">Show Increase and Decrease Indentation buttons</property>
<property name="use_underline">True</property>
<property name="relief">GTK_RELIEF_NORMAL</property>
Modified: trunk/src/interface.c
===================================================================
--- trunk/src/interface.c 2008-04-20 11:43:07 UTC (rev 2509)
+++ trunk/src/interface.c 2008-04-20 11:51:28 UTC (rev 2510)
@@ -3363,7 +3363,7 @@
gtk_widget_show (check_toolbar_indent);
gtk_box_pack_start (GTK_BOX (vbox16), check_toolbar_indent, FALSE, FALSE, 0);
GTK_WIDGET_UNSET_FLAGS (check_toolbar_indent, GTK_CAN_FOCUS);
- gtk_tooltips_set_tip (tooltips, check_toolbar_indent, _("Display the Zoom In and Zoom Out buttons in the toolbar"), NULL);
+ gtk_tooltips_set_tip (tooltips, check_toolbar_indent, _("Display the Increase and Decrease Indentation buttons in the toolbar"), NULL);
gtk_button_set_focus_on_click (GTK_BUTTON (check_toolbar_indent), FALSE);
check_toolbar_search = gtk_check_button_new_with_mnemonic (_("Show Search field"));
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 2509
http://geany.svn.sourceforge.net/geany/?rev=2509&view=rev
Author: eht16
Date: 2008-04-20 04:43:07 -0700 (Sun, 20 Apr 2008)
Log Message:
-----------
Don't chmod created run script when using the Run command and execute the script with /bin/sh on Unix-like systems to be able to run files on FAT filesystems.
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/build.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2008-04-19 10:39:27 UTC (rev 2508)
+++ trunk/ChangeLog 2008-04-20 11:43:07 UTC (rev 2509)
@@ -1,3 +1,11 @@
+2008-04-20 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
+
+ * src/build.c:
+ Don't chmod created run script when using the Run command and
+ execute the script with /bin/sh on Unix-like systems to be able
+ to run files on FAT filesystems.
+
+
2008-04-19 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
* tagmanager/js.c:
Modified: trunk/src/build.c
===================================================================
--- trunk/src/build.c 2008-04-19 10:39:27 UTC (rev 2508)
+++ trunk/src/build.c 2008-04-20 11:43:07 UTC (rev 2509)
@@ -792,7 +792,7 @@
}
#else
argv[term_argv_len ] = g_strdup("-e");
- argv[term_argv_len + 1] = g_strdup(RUN_SCRIPT_CMD);
+ argv[term_argv_len + 1] = g_strconcat("/bin/sh ", RUN_SCRIPT_CMD, NULL);
#endif
argv[term_argv_len + 2] = NULL;
@@ -1000,13 +1000,6 @@
fputs(str, fp);
g_free(str);
-#ifndef G_OS_WIN32
- if (chmod(fname, 0700) != 0)
- {
- g_unlink(fname);
- return FALSE;
- }
-#endif
fclose(fp);
return TRUE;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 2507
http://geany.svn.sourceforge.net/geany/?rev=2507&view=rev
Author: eht16
Date: 2008-04-19 01:53:47 -0700 (Sat, 19 Apr 2008)
Log Message:
-----------
Tagging the 0.14 release.
Added Paths:
-----------
tags/Geany-0_14/
Copied: tags/Geany-0_14 (from rev 2506, trunk)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 2506
http://geany.svn.sourceforge.net/geany/?rev=2506&view=rev
Author: eht16
Date: 2008-04-19 01:28:57 -0700 (Sat, 19 Apr 2008)
Log Message:
-----------
New release: Geany 0.14 "Selit".
Modified Paths:
--------------
trunk/ChangeLog
trunk/NEWS
trunk/doc/geany.1.in
trunk/doc/geany.html
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2008-04-19 08:14:00 UTC (rev 2505)
+++ trunk/ChangeLog 2008-04-19 08:28:57 UTC (rev 2506)
@@ -4,6 +4,7 @@
Make property tags be recognised in the symbol list.
* src/document.c, src/navqueue.c, src/navqueue.h:
Clean related navigation queue items when closing a document.
+ * New release: Geany 0.14 "Selit".
2008-04-18 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
Modified: trunk/NEWS
===================================================================
--- trunk/NEWS 2008-04-19 08:14:00 UTC (rev 2505)
+++ trunk/NEWS 2008-04-19 08:28:57 UTC (rev 2506)
@@ -1,4 +1,4 @@
-Geany 0.14 (TBA)
+Geany 0.14 (April 19, 2008)
General:
* Don't beep when using Replace All in Session unless all open files
@@ -15,7 +15,22 @@
navigation queue, so the user can move backwards through the list items
and return to where they were.
* Make pressing escape in the sidebar focus the editor.
+ * Make navigation queue position based to restore the line and column when
+ returning to a previous position (closes #1936927).
+ * Save sorting order of the symbol list when saving a file (fixes #1917262).
+ * Improve "Send Selection To" code (fixes #1909452).
+ * Install header files and add a pkg-config file for external plugins.
+ * Use monospace font for text entry fields in search dialogs (#1907117).
+ * Don't open zero byte sized files read-only (e.g. files in /proc).
+ Filetypes:
+ * Improve Makefile parser to detect targets.
+ * Update PHP tags file to latest PHP API docs (closes #1888691).
+ * Add translucency settings to filetypes.common for semi-transparency.
+ * Add HTML parser to get h1, h2, h3 symbols as well as link anchors and
+ JavaScript functions (fixes #1896068).
+ * Update Javascript, TCL and Assembler parser.
+
Interface:
* When closing a tab when using left-to-right tabs, focus the next
document, not the previous.
@@ -27,10 +42,19 @@
Matching Brace commands.
* Fix bug with showing macro list items all on one line.
* Fix Python auto-indentation when line endings are set to CR/LF.
+ * Unfold hidden code when the fold point modified (fixes #1923350).
+ * Update Scintilla to version 1.76.
+ * Add (basic) column mode editing (patch by "chuck").
Windows:
* Replace untitled file header filename after Save As and add to recent
files on Windows too.
+ * Resolve Windows shortcuts when opening files.
+ * Fix modal dialog problems on Windows by not setting taskbar hint
+ (closes #1916994).
+ * Add new process spawning implementation. This makes the VCdiff plugin
+ to work on Windows (patch by Pierre Joye, thanks).
+ * Fix crash on Windows when a project could not be opened.
Plugins:
* Add configurable plugin keybindings support.
@@ -47,6 +71,10 @@
keybinding groups - this breaks the API for plugins already using it.
* Make VERSION_CHECK deprecated in favour of PLUGIN_VERSION_CHECK.
+ Documentation:
+ * Add descriptions for several options in the preferences dialog
+ (patch from Robert McGinley).
+
Internationalisation:
* New translations: ro.
* Updated translations: bg, de, en_GB, es, fr, hu, it, ja, pt_BR, ru.
Modified: trunk/doc/geany.1.in
===================================================================
--- trunk/doc/geany.1.in 2008-04-19 08:14:00 UTC (rev 2505)
+++ trunk/doc/geany.1.in 2008-04-19 08:28:57 UTC (rev 2506)
@@ -1,4 +1,4 @@
-.TH "GEANY" "1" "February 05, 2008" "@PACKAGE@ @VERSION@" ""
+.TH "GEANY" "1" "April 19, 2008" "@PACKAGE@ @VERSION@" ""
.SH "NAME"
Geany \(em a small and lightweight IDE
.SH "SYNOPSIS"
Modified: trunk/doc/geany.html
===================================================================
--- trunk/doc/geany.html 2008-04-19 08:14:00 UTC (rev 2505)
+++ trunk/doc/geany.html 2008-04-19 08:28:57 UTC (rev 2506)
@@ -3,10 +3,10 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="generator" content="Docutils 0.4: http://docutils.sourceforge.net/" />
+<meta name="generator" content="Docutils 0.4.1: http://docutils.sourceforge.net/" />
<title>Geany</title>
<meta name="authors" content="Enrico Tröger Nick Treleaven Frank Lanitz" />
-<meta name="date" content="2008-04-11" />
+<meta name="date" content="2008-04-18" />
<style type="text/css">
/*
@@ -133,7 +133,7 @@
<br />Nick Treleaven
<br />Frank Lanitz</td></tr>
<tr><th class="docinfo-name">Date:</th>
-<td>2008-04-11</td></tr>
+<td>2008-04-18</td></tr>
<tr><th class="docinfo-name">Version:</th>
<td>0.14</td></tr>
</tbody>
@@ -3999,7 +3999,7 @@
<div class="footer">
<hr class="footer" />
<a class="reference" href="geany.txt">View document source</a>.
-Generated on: 2008-04-18 16:57 UTC.
+Generated on: 2008-04-19 08:23 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>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 2503
http://geany.svn.sourceforge.net/geany/?rev=2503&view=rev
Author: eht16
Date: 2008-04-19 00:40:18 -0700 (Sat, 19 Apr 2008)
Log Message:
-----------
Fix typos.
Modified Paths:
--------------
trunk/ChangeLog
trunk/THANKS
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2008-04-18 20:24:04 UTC (rev 2502)
+++ trunk/ChangeLog 2008-04-19 07:40:18 UTC (rev 2503)
@@ -11,10 +11,10 @@
buttons).
-2008-04-18 Frank Lanitz <frank@Merkur>
+2008-04-18 Frank Lanitz <frank(at)frank(dot)uvena(dot)de>
- * THANKS, NEWS, src/about.c: Added Chikahiro Masami as new translator
- for Japanese translation.
+ * THANKS, NEWS, src/about.c:
+ Added Chikahiro Masami as new translator for Japanese translation.
2008-04-17 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
@@ -779,7 +779,7 @@
(closes #1891818).
* src/main.c, src/socket.c:
Allow start of Geany with given files on the command line but
- whithout a writable temporary directory and without a writable
+ without a writable temporary directory and without a writable
configuration directory.
Improve filename of created symlink to the socket file.
* src/document.c: Don't force unique line ending characters when saving
Modified: trunk/THANKS
===================================================================
--- trunk/THANKS 2008-04-18 20:24:04 UTC (rev 2502)
+++ trunk/THANKS 2008-04-19 07:40:18 UTC (rev 2503)
@@ -31,7 +31,7 @@
Guillaume Hoffmann <guillaumh(at)gmail(dot)com> - Haskell filetype patch
Peter Strand <peter(at)zarquon(dot)se> - Haskell CTags patch
Dave Moore <wrex006(at)gmail(dot)com> - code navigation patch
-François Cami <francois.cami(at)free(dot)fr>, Guillaume Duviol - tab replacement patch
+François Cami <francois(dot)cami(at)free(dot)fr>, Guillaume Duviol - tab replacement patch
Alexander Rodin <rodin(dot)alexander(at)gmail(dot)com> - class builder patch
Shiv <shivakumar(dot)gn(at)gmail(dot)com> - Sun Studio compiler compatibility patch
Jean-François Wauthy <pollux(at)xfce(dot)org> - Symbol list icons patch
@@ -64,7 +64,7 @@
M.Baldinelli <m(dot)baldinelli(at)agora(dot)it> - it
Dario Santomarco <dariello(at)yahoo(dot)it> - it
Tarot Osuji <tarot(at)sdf(dot)lonestar(dot)org> - ja
-Chikahiro Masami <cmasa.z321(at)gmail(dot)com> - ja
+Chikahiro Masami <cmasa(dot)z321(at)gmail(dot)com> - ja
Kurt De Bree <kdebree(at)telenet(dot)be> - nl
Jacek Wolszczak <shutdownrunner(at)o2(dot)pl> - pl_PL
Jarosław Foksa <jfoksa(at)gmail(dot)com> - pl_PL
@@ -76,8 +76,8 @@
Tony Mattsson <superxorn(at)gmail(dot)com> - sv
Boris Dibrov <dibrov(dot)bor(at)gmail(dot)com> - uk
Clytie Siddall <clytie(at)riverland(dot)net(dot)au> - vi_VN
-Dormouse Young <dormouse.young(at)gmail(dot)com> - zh_CN
-KoViCH <kovich.ian(at)gmail(dot)com> - zh_TW
+Dormouse Young <dormouse(dot)young(at)gmail(dot)com> - zh_CN
+KoViCH <kovich(dot)ian(at)gmail(dot)com> - zh_TW
Projects:
---------
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.