Branch: refs/heads/master
Author: Frank Lanitz <frank(a)frank.uvena.de>
Committer: Frank Lanitz <frank(a)frank.uvena.de>
Date: Sat, 09 Jun 2012 08:34:11
Commit: 4be2fc07752622fe7b7e5f2ba0edc5b40c1ab19d
https://github.com/geany/geany/commit/4be2fc07752622fe7b7e5f2ba0edc5b40c1ab…
Log Message:
-----------
Update of Italian transaltion
Modified Paths:
--------------
po/it.po
Modified: po/it.po
9 files changed, 4 insertions(+), 5 deletions(-)
===================================================================
@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Geany 1.22\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2012-06-06 21:50+0200\n"
-"PO-Revision-Date: 2012-06-04 23:18+0100\n"
+"POT-Creation-Date: 2012-06-09 08:57+0200\n"
+"PO-Revision-Date: 2012-06-07 18:58+0100\n"
"Last-Translator: Giuseppe Penone <giuspen(a)gmail.com>\n"
"Language-Team: <geany-i18n(a)uvena.de>\n"
"Language: it\n"
@@ -188,12 +188,11 @@ msgid "Startup path:"
msgstr "Percorso di avvio:"
#: ../data/geany.glade.h:38
-#, fuzzy
msgid ""
"Path to start in when opening or saving files. Must be an absolute path."
msgstr ""
-"Percorso iniziale per l'apertura o il salvataggio dei file. Dev'essere un "
-"percorso assoluto. Lasciare vuoto per usare la cartella di lavoro corrente."
+"Percorso iniziale per l'apertura o il salvataggio dei file. Deve essere un "
+"percorso assoluto."
#: ../data/geany.glade.h:39
msgid "Project files:"
@@ Diff output truncated at 100000 characters. @@
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: TBD).
Branch: refs/heads/master
Author: Lex Trotman <elextr(a)gmail.com>
Committer: Lex Trotman <elextr(a)gmail.com>
Date: Sat, 09 Jun 2012 03:44:42
Commit: 0a9262d4d37696c6ac369ca7d2b7c4935dc094b3
https://github.com/geany/geany/commit/0a9262d4d37696c6ac369ca7d2b7c4935dc09…
Log Message:
-----------
Add incompatibilities to NEWS
Add section outlining incompatibilities in accordance with ML.
Modified Paths:
--------------
NEWS
Modified: NEWS
7 files changed, 7 insertions(+), 0 deletions(-)
===================================================================
@@ -11,6 +11,13 @@ Geany 1.22 (unreleased)
* Make 'Replace Spaces by Tabs' only match leading spaces to
preserve alignment.
+ Possibly incompatible changes
+ * Theming and filetype style changes mean old filetypes and colour
+ schemes are not compatible with this version of Geany.
+ * There are some default keybinding changes but these will only
+ apply to newly created configurations.
+ * Changes to the "project-dialog*" signals may affect plugins.
+
Bug fixes
* Fix escaping of session file paths (#3425969).
* Fix closing when minimized under Windows (#3421282).
@@ Diff output truncated at 100000 characters. @@
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: TBD).
Branch: refs/heads/master
Author: Matthew Brush <matt(a)geany.org>
Committer: Matthew Brush <matt(a)geany.org>
Date: Mon, 04 Jun 2012 21:29:23
Commit: 4e5a7231bf5f7c739b0bc1cd8d55e771cebf7758
https://github.com/geany/geany/commit/4e5a7231bf5f7c739b0bc1cd8d55e771cebf7…
Log Message:
-----------
Always select current editor font when showing the font dialog
Previously, choosing another font and then pressing cancel would keep
the font selected rather than resetting it to the current editor font
because the dialog is not destroyed between showings.
Modified Paths:
--------------
src/dialogs.c
Modified: src/dialogs.c
4 files changed, 2 insertions(+), 2 deletions(-)
===================================================================
@@ -922,10 +922,10 @@ void dialogs_show_open_font()
g_signal_connect(GTK_FONT_SELECTION_DIALOG(ui_widgets.open_fontsel)->apply_button,
"clicked", G_CALLBACK(on_font_apply_button_clicked), NULL);
- gtk_font_selection_dialog_set_font_name(
- GTK_FONT_SELECTION_DIALOG(ui_widgets.open_fontsel), interface_prefs.editor_font);
gtk_window_set_transient_for(GTK_WINDOW(ui_widgets.open_fontsel), GTK_WINDOW(main_widgets.window));
}
+ gtk_font_selection_dialog_set_font_name(
+ GTK_FONT_SELECTION_DIALOG(ui_widgets.open_fontsel), interface_prefs.editor_font);
/* We make sure the dialog is visible. */
gtk_window_present(GTK_WINDOW(ui_widgets.open_fontsel));
#endif
@@ Diff output truncated at 100000 characters. @@
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: TBD).
Branch: refs/heads/master
Author: Matthew Brush <matt(a)geany.org>
Committer: Matthew Brush <matt(a)geany.org>
Date: Mon, 04 Jun 2012 21:18:49
Commit: 9d7ff79a9a4a1e8640847c062ac085a8944e6de2
https://github.com/geany/geany/commit/9d7ff79a9a4a1e8640847c062ac085a8944e6…
Log Message:
-----------
Restore secondary clear icon functionality in Preferences dialog
Ensures all entries that get a clear icon added to the secondary position
also set the secondary icon to be activatable. This was probably
introducted during the Glade switch and could be fixed in the Glade file
but this fix ensures that even hard coded entries will always have their
clear icon activatable.
Modified Paths:
--------------
src/ui_utils.c
Modified: src/ui_utils.c
3 files changed, 2 insertions(+), 1 deletions(-)
===================================================================
@@ -1466,7 +1466,8 @@ static void entry_clear_icon_release_cb(GtkEntry *entry, gint icon_pos,
*/
void ui_entry_add_clear_icon(GtkEntry *entry)
{
- g_object_set(entry, "secondary-icon-stock", GTK_STOCK_CLEAR, NULL);
+ g_object_set(entry, "secondary-icon-stock", GTK_STOCK_CLEAR,
+ "secondary-icon-activatable", TRUE, NULL);
g_signal_connect(entry, "icon-release", G_CALLBACK(entry_clear_icon_release_cb), NULL);
}
@@ Diff output truncated at 100000 characters. @@
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: TBD).