This repository has been archived by the owner on May 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
18 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
polo-file-manager (17.8) xenial; urgency=low | ||
polo-file-manager (17.9) xenial; urgency=low | ||
|
||
* Beta 10 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ msgid "" | |
msgstr "" | ||
"Project-Id-Version: polo 1.6\n" | ||
"Report-Msgid-Bugs-To: [email protected]\n" | ||
"POT-Creation-Date: 2017-09-17 14:18+0530\n" | ||
"POT-Creation-Date: 2017-09-17 14:44+0530\n" | ||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | ||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | ||
"Language-Team: LANGUAGE <[email protected]>\n" | ||
|
@@ -196,11 +196,11 @@ msgstr "" | |
msgid "Another instance of this application is running" | ||
msgstr "" | ||
|
||
#: Common/Main.vala:912 Common/Main.vala:1058 Common/Main.vala:1147 | ||
#: Common/Main.vala:912 Common/Main.vala:1062 Common/Main.vala:1151 | ||
msgid "App config loaded" | ||
msgstr "" | ||
|
||
#: Common/Main.vala:725 Common/Main.vala:1025 Common/Main.vala:1103 | ||
#: Common/Main.vala:725 Common/Main.vala:1029 Common/Main.vala:1107 | ||
msgid "App config saved" | ||
msgstr "" | ||
|
||
|
@@ -1367,7 +1367,7 @@ msgstr "" | |
msgid "Exit" | ||
msgstr "" | ||
|
||
#: Common/Main.vala:1198 | ||
#: Common/Main.vala:1202 | ||
msgid "Exiting Application" | ||
msgstr "" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,8 +37,8 @@ using TeeJee.Misc; | |
public Main App; | ||
public const string AppName = "Polo File Manager"; | ||
public const string AppShortName = "polo"; | ||
public const string AppVersion = "17.8 (BETA 10)"; | ||
public const string AppWikiVersion = "17.8 (BETA 10)"; // update only if wiki page exists | ||
public const string AppVersion = "17.9 (BETA 10)"; | ||
public const string AppWikiVersion = "17.9 (BETA 10)"; // update only if wiki page exists | ||
public const string AppAuthor = "Tony George"; | ||
public const string AppAuthorEmail = "[email protected]"; | ||
|
||
|
@@ -922,31 +922,35 @@ public class Main : GLib.Object { | |
} | ||
|
||
private void init_gtk_themes(){ | ||
|
||
log_debug("Main(): gtk_theme: user: %s".printf(user_name_effective)); | ||
|
||
GtkTheme.query(user_name); | ||
|
||
if (!GtkTheme.has_theme("Arc-Darker-Polo")){ | ||
|
||
log_debug("Main(): theme not found: Arc-Darker-Polo"); | ||
log_debug("Main(): installing theme..."); | ||
log_debug("Main(): gtk_theme: not_found: Arc-Darker-Polo"); | ||
log_debug("Main(): gtk_theme: installing: Arc-Darker-Polo"); | ||
|
||
string sh_file = "/usr/share/polo/files/gtk-theme/install-gtk-theme"; | ||
Posix.system(sh_file); | ||
|
||
GtkTheme.query(user_name); // requery | ||
GtkTheme.query(user_name_effective); // requery | ||
} | ||
else{ | ||
log_debug("Main(): theme found: Arc-Darker-Polo"); | ||
log_debug("Main(): gtk_theme: found: Arc-Darker-Polo"); | ||
} | ||
|
||
if (gtk_theme.length == 0){ | ||
|
||
log_debug("Main(): gtk_theme not selected"); | ||
log_debug("Main(): gtk_theme: none_selected"); | ||
GtkTheme.set_gtk_theme_preferred(); | ||
gtk_theme = GtkTheme.get_gtk_theme(); | ||
log_debug("Main(): gtk_theme: applied: Arc-Darker-Polo"); | ||
} | ||
else { | ||
GtkTheme.set_gtk_theme(gtk_theme); | ||
log_debug("Main(): gtk_theme: applied: %s".printf(gtk_theme)); | ||
} | ||
} | ||
|
||
|