Branch: refs/heads/master
Author: Enrico Tröger <enrico.troeger(a)uvena.de>
Committer: Enrico Tröger <enrico.troeger(a)uvena.de>
Date: Sun, 29 Oct 2017 15:20:53 UTC
Commit: cb669e2a019eb5cb9a62e39c886ce928350ba699
https://github.com/geany/geany/commit/cb669e2a019eb5cb9a62e39c886ce928350ba…
Log Message:
-----------
Use utils_get_uri_file_prefix() as file URI prefix
utils_get_uri_file_prefix() gives "file:///" for Windows and
"file://" for all other platforms. So we don't need "g_path_skip_root()"
any longer.
Using "g_path_skip_root()" removed the drive letter from the URI which
worked only as long as the file to be opened was on drive C: (or
whatever drive Windows considers as the default). But since local file
URIs including the drive letter are supported on Windows, we should use
it, so opening files on other drives works as well.
Fixes #1018.
Modified Paths:
--------------
src/build.c
Modified: src/build.c
5 lines changed, 3 insertions(+), 2 deletions(-)
===================================================================
@@ -1237,13 +1237,14 @@ static void on_build_menu_item(GtkWidget *w, gpointer user_data)
bc = get_build_cmd(doc, grp, cmd, NULL);
if (bc != NULL && strcmp(bc->command, "builtin") == 0)
{
+ const gchar *uri_file_prefix;
gchar *uri;
if (doc == NULL)
return;
- uri = g_strconcat("file:///", g_path_skip_root(doc->file_name), NULL);
+ uri_file_prefix = utils_get_uri_file_prefix();
+ uri = g_strconcat(uri_file_prefix, doc->file_name, NULL);
utils_open_browser(uri);
g_free(uri);
-
}
else
build_run_cmd(doc, cmd);
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Jean-Philippe Moal <skateinmars(a)users.noreply.github.com>
Committer: Frank Lanitz <frank(a)frank.uvena.de>
Date: Wed, 25 Oct 2017 07:14:34 UTC
Commit: fca450e10b8631641731e8cb01ad89f23873f211
https://github.com/geany/geany/commit/fca450e10b8631641731e8cb01ad89f23873f…
Log Message:
-----------
Update of French translation (#1653)
Modified Paths:
--------------
po/fr.po
Modified: po/fr.po
1484 lines changed, 761 insertions(+), 723 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: Jiří Techet <techet(a)gmail.com>
Committer: Jiří Techet <techet(a)gmail.com>
Date: Tue, 17 Oct 2017 09:43:32 UTC
Commit: 231fa3a1ba0efe713bcb18c44f563ef25d7aba5c
https://github.com/geany/geany-osx/commit/231fa3a1ba0efe713bcb18c44f563ef25…
Log Message:
-----------
Minor readme updates
Modified Paths:
--------------
README.md
Modified: README.md
7 lines changed, 3 insertions(+), 4 deletions(-)
===================================================================
@@ -36,12 +36,11 @@ A brief description of the contents of the project directory:
information such as application name, version, etc. but also additional
configuration including file types the application can open.
* *Geany.icns*: Mac OS Geany icon file.
+* *settings.ini*: theme configuration file for GTK 3.
### Scripts
-* *launcher-gtk2.sh, launcher-gtk3*: launcher script from the
+* *launcher-gtk2.sh, launcher-gtk3.sh*: launcher script from the
gtk-mac-bundler project setting all the necessary environment variables.
-* *replace_icons.sh*: script replacing the color icons distributed together
- with Geany with grey icons from the Faience theme.
* *plist_filetypes.py*: script generating the file type portion of the
Info.plist file from Geany's filetype_extensions.conf configuration
file.
@@ -127,7 +126,7 @@ Geany Installation
```
2. To build Geany, plugins and all of their dependencies, run one of
- the following commandsinside the `geany-osx` directory depending on
+ the following commands inside the `geany-osx` directory depending on
the GTK version used and whether to use Geany sources from the latest
release tarball or current git master:
* **GTK 2**
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
Branch: refs/heads/master
Author: Jiří Techet <techet(a)gmail.com>
Committer: Jiří Techet <techet(a)gmail.com>
Date: Tue, 17 Oct 2017 09:05:35 UTC
Commit: 40d7c3041171397cec6f29f947e258714fd5b2c7
https://github.com/geany/geany-osx/commit/40d7c3041171397cec6f29f947e258714…
Log Message:
-----------
Add settings.ini file and use it in the bundle
Modified Paths:
--------------
geany-gtk3.bundle
settings.ini
Modified: geany-gtk3.bundle
4 lines changed, 4 insertions(+), 0 deletions(-)
===================================================================
@@ -144,6 +144,10 @@
${project}/Arc
</data>
+ <data dest="${bundle}/Contents/Resources/etc/${gtkdir}/settings.ini">
+ ${project}/settings.ini
+ </data>
+
<!-- Copy icons. Note that the .icns file is an Apple format which
contains up to 4 sizes of icon. You can use
/Developer/Applications/Utilities/Icon Composer.app to import
Modified: settings.ini
3 lines changed, 3 insertions(+), 0 deletions(-)
===================================================================
@@ -0,0 +1,3 @@
+[Settings]
+gtk-icon-theme-name = Papirus
+gtk-theme-name = Arc
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).