Revision: 1361
http://svn.sourceforge.net/geany/?rev=1361&view=rev
Author: eht16
Date: 2007-03-02 11:04:18 -0800 (Fri, 02 Mar 2007)
Log Message:
-----------
Fixed typo (thanks to John Gabriele).
Modified Paths:
--------------
trunk/ChangeLog
trunk/doc/geany.docbook
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2007-03-02 16:04:29 UTC (rev 1360)
+++ trunk/ChangeLog 2007-03-02 19:04:18 UTC (rev 1361)
@@ -8,6 +8,7 @@
* geany.nsi: Added NSIS installer script for the Win32 installer.
* data/filetypes.c, data/filetypes.cpp, src/highlighting.c:
Added support for secondary keywords for filetypes C and C++.
+ * doc/geany.docbook: Fixed typo (thanks to John Gabriele).
2007-03-01 Nick Treleaven <nick.treleaven(a)btinternet.com>
Modified: trunk/doc/geany.docbook
===================================================================
--- trunk/doc/geany.docbook 2007-03-02 16:04:29 UTC (rev 1360)
+++ trunk/doc/geany.docbook 2007-03-02 19:04:18 UTC (rev 1361)
@@ -1583,7 +1583,7 @@
comment_use_indent=false would generate this if a line
is commented (e.g. with
<keycombo><keycap>Ctrl</keycap><keycap>D</keycap></keycombo>)
- <programlisting>#command_example();</programlisting>
+ <programlisting># command_example();</programlisting>
</para></example></para>
<note><para>
This setting only works for single line comments.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1358
http://svn.sourceforge.net/geany/?rev=1358&view=rev
Author: eht16
Date: 2007-03-02 01:58:03 -0800 (Fri, 02 Mar 2007)
Log Message:
-----------
Changed location of translation files to lib\locale on Win32.
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/main.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2007-03-02 09:53:21 UTC (rev 1357)
+++ trunk/ChangeLog 2007-03-02 09:58:03 UTC (rev 1358)
@@ -3,6 +3,8 @@
* src/win32.c:
Added new file filter for Open File dialog to only show supported
source files (for native Win32 dialog).
+ * src/main.c: Changed location of translation files to lib\locale
+ on Win32.
2007-03-01 Nick Treleaven <nick.treleaven(a)btinternet.com>
Modified: trunk/src/main.c
===================================================================
--- trunk/src/main.c 2007-03-02 09:53:21 UTC (rev 1357)
+++ trunk/src/main.c 2007-03-02 09:58:03 UTC (rev 1358)
@@ -362,7 +362,7 @@
// set paths
#ifdef G_OS_WIN32
// take the installation directory(the one where geany.exe is located) as the base for the
- // language catalogs, documentation and data files
+ // documentation and data files
gchar *install_dir = g_win32_get_package_installation_directory("geany", NULL);
data_dir = g_strconcat(install_dir, "\\data", NULL); // e.g. C:\Program Files\geany\data
@@ -388,7 +388,10 @@
gchar *locale_dir = NULL;
#ifdef G_OS_WIN32
- locale_dir = g_strdup(app->datadir);
+ gchar *install_dir = g_win32_get_package_installation_directory("geany", NULL);
+ // e.g. C:\Program Files\geany\lib\locale
+ locale_dir = g_strconcat(install_dir, "\\lib\\locale", NULL);
+ g_free(install_dir);
#else
locale_dir = g_strdup(PACKAGE_LOCALE_DIR);
#endif
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 1354
http://svn.sourceforge.net/geany/?rev=1354&view=rev
Author: eht16
Date: 2007-03-01 14:16:58 -0800 (Thu, 01 Mar 2007)
Log Message:
-----------
Added missing keywords: as, with, False, None and True.
Modified Paths:
--------------
trunk/ChangeLog
trunk/data/filetypes.python
trunk/src/highlighting.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2007-03-01 21:45:43 UTC (rev 1353)
+++ trunk/ChangeLog 2007-03-01 22:16:58 UTC (rev 1354)
@@ -18,6 +18,8 @@
* src/build.c, src/tools.c, src/utils.c, src/utils.h:
Set IO channels for custom commands to blocking mode
(thanks to Jeff Pohlmeyer).
+ * data/filetypes.python:
+ Added missing keywords: as, with, False, None and True.
2007-02-28 Nick Treleaven <nick.treleaven(a)btinternet.com>
Modified: trunk/data/filetypes.python
===================================================================
--- trunk/data/filetypes.python 2007-03-01 21:45:43 UTC (rev 1353)
+++ trunk/data/filetypes.python 2007-03-01 22:16:58 UTC (rev 1354)
@@ -18,7 +18,7 @@
[keywords]
# all items must be in one line
-primary=and assert break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return try while yield
+primary=and as assert break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return try while with yield False None True
[settings]
Modified: trunk/src/highlighting.c
===================================================================
--- trunk/src/highlighting.c 2007-03-01 21:45:43 UTC (rev 1353)
+++ trunk/src/highlighting.c 2007-03-01 22:16:58 UTC (rev 1354)
@@ -1584,7 +1584,7 @@
get_keyfile_hex(config, config_home, "styling", "stringeol", "0x000000", "0xe0c0e0", "false", &style_sets[GEANY_FILETYPES_PYTHON].styling[13]);
style_sets[GEANY_FILETYPES_PYTHON].keywords = g_new(gchar*, 2);
- get_keyfile_keywords(config, config_home, "keywords", "primary", GEANY_FILETYPES_PYTHON, 0, "and assert break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return try while yield");
+ get_keyfile_keywords(config, config_home, "keywords", "primary", GEANY_FILETYPES_PYTHON, 0, "and as assert break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return try while with yield False None True");
style_sets[GEANY_FILETYPES_PYTHON].keywords[1] = NULL;
get_keyfile_wordchars(config, config_home,
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.