Branch: refs/heads/master
Author: Colomban Wendling <ban(a)herbesfolles.org>
Committer: Colomban Wendling <ban(a)herbesfolles.org>
Date: Fri, 08 Mar 2013 19:36:52 UTC
Commit: a6ab76e7ef47e923eee924254780fde4504dc3b3
https://github.com/geany/geany/commit/a6ab76e7ef47e923eee924254780fde4504dc…
Log Message:
-----------
Update NEWS to reference more bugs and list latest changes
Modified Paths:
--------------
NEWS
Modified: NEWS
24 files changed, 16 insertions(+), 8 deletions(-)
===================================================================
@@ -2,11 +2,11 @@ Geany 1.23 (unreleased)
General
* Scope detection now finds classes and namespaces (#1996778).
- * Various fixes to language theming.
+ * Various fixes to language theming (#3573213).
* Various Windows makefile fixes.
* Rewrite printing code (#2629121, #2804000, #3475444, #3580268,
#3580269).
- * Use the Geany icon from the theme.
+ * Use the Geany icon from the theme (#3576695).
* Make Geany-specific icons themeable.
Bug fixes
@@ -14,7 +14,8 @@ Geany 1.23 (unreleased)
* Fix showing project name in the Documents sidebar.
* Fix opening filenames with leading or trailing space from the
command line into a running instance.
- * Fix re-opening files with unknown but detected encoding.
+ * Fix re-opening files with unknown but detected encoding
+ (#3509407, #3605293).
* Fix crash when loading a broken or incompatible VTE library.
* Report scope including classes, namespaces and alike (#1996778).
* Fix cancelling Project Close when showing the unsaved changes
@@ -24,6 +25,7 @@ Geany 1.23 (unreleased)
* Fix some keybinding not getting properly displayed in the menus
after being updated (#1912683, #3599251).
* Make Terminal tool setting more flexible to support any terminal.
+ * Fix replacing file name in files header upon save.
Interface
* Control-click on the symbols sidebar don't focus the editor.
@@ -33,7 +35,7 @@ Geany 1.23 (unreleased)
* Replace 'Open file in a new tab' save dialog option with new
'Document->Clone' menu item.
* Fix clashing button mnemonic in detect/reload dialog (#3587465).
- * Grab focus in the embedded terminal upon middle click.
+ * Grab focus in the embedded terminal upon middle click (#3574724).
* Add support for embedded terminal background image (Mislav
Blažević).
@@ -57,6 +59,7 @@ Geany 1.23 (unreleased)
* Clear search markers on Mark All keybinding when already set.
* Never strip trailing spaces for Diff documents.
* Reduce unnecessary redraws when typing (Evandro Borracini).
+ * Fix comment toggling inside PHP and HTML with bottom-up selection.
Search
* 'Mark All' now also uses the fully-featured PCRE engine
@@ -77,15 +80,17 @@ Geany 1.23 (unreleased)
* Add more keywords to Forth (Oco).
* Add some missing Haxe keywords (#3448664).
* Add some missing CSS3 keywords (Trong Thanh Tran).
+ * Add some missing D keywords (#3595187) (Felix Totir).
* Fix a crash parsing some C macros (#3556536).
* Update some Python keywords.
* Update Python global tags file.
* Show VHDL blocks in the symbol list.
- * Fix ruby scope after "do".
+ * Fix ruby scope after "do" (#3046418).
* Fix parsing of ruby keywords when followed by a semicolon
(#2130612).
* Lots of JavaScript symbols parsing improvements (#2992393,
- #3036476, #3398636, #3470609, #3568542, #3570192).
+ #3034303, #3034339, #3036476, #3398636, #3470609, #3568542,
+ #3570192, #3571233).
* Use "scala" extension for Scala (#3574723).
* Fix parsing of reStructuredText titles containing UTF-8
characters (#3578050).
@@ -103,23 +108,26 @@ Geany 1.23 (unreleased)
* Add more HTML5 self-closing tags (Duncan de Wet).
* Update default D template to use a more standard prototype for
main().
+ * Fix improperly translated string in Pascal template (#3602314).
Plugins
* Export: Fix missing linking on libm (Chow Loong Jin)
* File Browser: Backspace now moves to parent directory.
API:
- * Fix plugin_add_toolbar_item() insertion order (Dimitar Zhekov).
+ * Fix plugin_add_toolbar_item() insertion order (#3522755)
+ (Dimitar Zhekov).
Windows
* Fix spawning synchronous commands on Windows.
* Show Find in Files status summary.
+ * Add icon to the Explorer context menu item.
Internationalization
* Add translations: et, eu, he, hi, sr
* Update translations: ca, cs, de, es, fi, gl, it, kk, lt, nl,
pt_BR, ru, sv, sl, tr
- * Fix a crash when using the Turkish translation.
+ * Fix a crash when using the Turkish translation (#3560181).
Geany 1.22 (June 18, 2012)
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Colomban Wendling <ban(a)herbesfolles.org>
Committer: Colomban Wendling <ban(a)herbesfolles.org>
Date: Fri, 08 Mar 2013 17:32:47 UTC
Commit: 771934ae29151e0c16c642fa4739f0aaec5cfd62
https://github.com/geany/geany/commit/771934ae29151e0c16c642fa4739f0aaec5cf…
Log Message:
-----------
Don't translate program name directive in Pascal file template
Pascal code only accepts an identifier in the program name directive,
but {untitled} wildcard gets replaced with a translated string that may
not be a valid Pascal identifier. Moreover, the directive being part
of the source of the program it's good practice for it to be in English
anyway.
Closes #3602314.
Modified Paths:
--------------
data/templates/files/program.pas
Modified: data/templates/files/program.pas
2 files changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -1,6 +1,6 @@
{fileheader}
-program {untitled};
+program untitled;
uses crt;
var i : byte;
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Frank Lanitz <frank(a)frank.uvena.de>
Committer: Frank Lanitz <frank(a)frank.uvena.de>
Date: Wed, 06 Mar 2013 18:47:47 UTC
Commit: af237391fc4e1701b6dc6ed98f7081440ca89210
https://github.com/geany/geany/commit/af237391fc4e1701b6dc6ed98f7081440ca89…
Log Message:
-----------
Update of German translation
Modified Paths:
--------------
po/de.po
Modified: po/de.po
1676 files changed, 743 insertions(+), 933 deletions(-)
===================================================================
No diff available, check online
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Colomban Wendling <ban(a)herbesfolles.org>
Committer: Colomban Wendling <ban(a)herbesfolles.org>
Date: Tue, 05 Mar 2013 22:58:04 UTC
Commit: e5245eb053cd02b72827de41f7509512fcbc551c
https://github.com/geany/geany/commit/e5245eb053cd02b72827de41f7509512fcbc5…
Log Message:
-----------
Increase the number of lines where filename is replaced upon save as
Search the first 4 lines (instead of 3) for Python templates support.
Modified Paths:
--------------
doc/geany.txt
src/document.c
Modified: doc/geany.txt
2 files changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -4782,7 +4782,7 @@ geanyversion The actual Geany version, e.g. file templates, fil
filename The filename of the current file. file header, snippets, file
For new files, it's only replaced when templates.
- first saving if found on the first 3 lines
+ first saving if found on the first 4 lines
of the file.
project The current project's name, if any. file header, snippets, file templates.
Modified: src/document.c
2 files changed, 1 insertions(+), 1 deletions(-)
===================================================================
@@ -1372,7 +1372,7 @@ static void replace_header_filename(GeanyDocument *doc)
/* only search the first 3 lines */
ttf.chrg.cpMin = 0;
- ttf.chrg.cpMax = sci_get_position_from_line(doc->editor->sci, 3);
+ ttf.chrg.cpMax = sci_get_position_from_line(doc->editor->sci, 4);
ttf.lpstrText = filebase;
if (search_find_text(doc->editor->sci, SCFIND_MATCHCASE | SCFIND_REGEXP, &ttf) != -1)
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).