Skip to content
Snippets Groups Projects
Commit b986c60f authored by Hannes Schulze's avatar Hannes Schulze
Browse files

Renaming

parent a6323066
No related branches found
No related tags found
No related merge requests found
Showing
with 20 additions and 19 deletions
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<schemalist> <schemalist>
<schema id="com.github.gyan000.eos-connect" path="/com/github/gyan000/eos-connect/"> <schema id="com.github.hannesschulze.conecto" path="/com/github/hannesschulze/conecto/">
<key type="b" name="use-dark-theme"> <key type="b" name="use-dark-theme">
<default>false</default> <default>false</default>
<summary>Use dark theme.</summary> <summary>Use dark theme.</summary>
...@@ -14,7 +14,7 @@ ...@@ -14,7 +14,7 @@
<summary>Activate / Deactivate the storage of SMS for all devices.</summary> <summary>Activate / Deactivate the storage of SMS for all devices.</summary>
</key> </key>
</schema> </schema>
<schema id="com.github.gyan000.eos-connect.settings.device"> <schema id="com.github.hannesschulze.conecto.settings.device">
<key type="s" name="custom-name"> <key type="s" name="custom-name">
<default>""</default> <default>""</default>
<summary>Custom name for the device.</summary> <summary>Custom name for the device.</summary>
......
# SOME DESCRIPTIVE TITLE. # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the com.github.gyan000.eos-connect package. # This file is distributed under the same license as the com.github.hannesschulze.conecto package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
# #
#, fuzzy #, fuzzy
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: com.github.gyan000.eos-connect\n" "Project-Id-Version: com.github.hannesschulze.conecto\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-03 18:05+0200\n" "POT-Creation-Date: 2018-06-03 18:05+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
......
# French translations for com.github.gyan000.eos-connect package. # French translations for com.github.hannesschulze.conecto package.
# Copyright (C) 2018 THE com.github.gyan000.eos-connect'S COPYRIGHT HOLDER # Copyright (C) 2018 THE com.github.hannesschulze.conecto'S COPYRIGHT HOLDER
# This file is distributed under the same license as the com.github.gyan000.eos-connect package. # This file is distributed under the same license as the com.github.hannesschulze.conecto package.
# Automatically generated, 2018. # Automatically generated, 2018.
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: com.github.gyan000.eos-connect\n" "Project-Id-Version: com.github.hannesschulze.conecto\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-03 18:05+0200\n" "POT-Creation-Date: 2018-06-03 18:05+0200\n"
"PO-Revision-Date: 2018-06-03 16:22+0200\n" "PO-Revision-Date: 2018-06-03 16:22+0200\n"
......
# Ukrainian translations for com.github.gyan000.eos-connect package. # Ukrainian translations for com.github.hannesschulze.conecto package.
# Copyright (C) 2018 THE com.github.gyan000.eos-connect'S COPYRIGHT HOLDER # Copyright (C) 2018 THE com.github.hannesschulze.conecto'S COPYRIGHT HOLDER
# This file is distributed under the same license as the com.github.gyan000.eos-connect package. # This file is distributed under the same license as the com.github.hannesschulze.conecto package.
# Automatically generated, 2018. # Automatically generated, 2018.
# #
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: com.github.gyan000.eos-connect\n" "Project-Id-Version: com.github.hannesschulze.conecto\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-06-03 18:05+0200\n" "POT-Creation-Date: 2018-06-03 18:05+0200\n"
"PO-Revision-Date: 2018-06-03 16:22+0200\n" "PO-Revision-Date: 2018-06-03 16:22+0200\n"
......
...@@ -14,6 +14,7 @@ ...@@ -14,6 +14,7 @@
* *
* AUTHORS * AUTHORS
* gyan000 <gyan000 (at] ijaz.fr> * gyan000 <gyan000 (at] ijaz.fr>
* Hannes Schulze <haschu0103 (at) gmail.com>
*/ */
using EOSConnect.Plugin; using EOSConnect.Plugin;
using EOSConnect.Plugin.Windows; using EOSConnect.Plugin.Windows;
...@@ -26,9 +27,9 @@ namespace EOSConnect { ...@@ -26,9 +27,9 @@ namespace EOSConnect {
public class App : Granite.Application { public class App : Granite.Application {
public const string APP_NAME="eos-connect"; public const string APP_NAME="conecto";
public const string GSETTINGS_SCHEMA_ID="com.github.gyan000.eos-connect"; public const string GSETTINGS_SCHEMA_ID="com.github.hannesschulze.conecto";
public const string GSETTINGS_SCHEMA_PATH="/com/github/gyan000/eos-connect"; public const string GSETTINGS_SCHEMA_PATH="/com/github/hannesschulze/conecto";
public HashMap<string, Device> devices_map; public HashMap<string, Device> devices_map;
public ContactsInterface contacts_interface; public ContactsInterface contacts_interface;
private GLib.Settings main_settings; private GLib.Settings main_settings;
...@@ -44,8 +45,8 @@ namespace EOSConnect { ...@@ -44,8 +45,8 @@ namespace EOSConnect {
construct { construct {
application_id = App.GSETTINGS_SCHEMA_ID; application_id = App.GSETTINGS_SCHEMA_ID;
flags = ApplicationFlags.FLAGS_NONE; flags = ApplicationFlags.FLAGS_NONE;
program_name = "EOS Connect"; program_name = "Conecto";
build_version = "0.5"; build_version = "0.1";
} }
public override void activate () public override void activate ()
...@@ -111,7 +112,7 @@ namespace EOSConnect { ...@@ -111,7 +112,7 @@ namespace EOSConnect {
error ("Cannot run without thread support.\n"); error ("Cannot run without thread support.\n");
} }
message ("Report any issues/bugs you might find to https://github.com/gyan000/EOSConnect/issues"); message ("Report any issues/bugs you might find to https://github.com/hannesschulze/conecto/issues");
var application = new App (); var application = new App ();
return application.run (args); return application.run (args);
......
File moved
File moved
...@@ -64,7 +64,7 @@ namespace EOSConnect { ...@@ -64,7 +64,7 @@ namespace EOSConnect {
string str_name="Name=Send to " + device.custom_name + "\n"; string str_name="Name=Send to " + device.custom_name + "\n";
string str_desc="Description=Send this file to " + device.custom_name + "\n"; string str_desc="Description=Send this file to " + device.custom_name + "\n";
// TOCHEK find out why without --print-reply it's not working. // TOCHEK find out why without --print-reply it's not working.
string str_command ="Exec=dbus-send --print-reply --dest=com.github.gyan000.eos-connect "; string str_command ="Exec=dbus-send --print-reply --dest=com.github.hannesschulze.conecto ";
str_command += "/com/github/gyan000/eosconnect/share "; str_command += "/com/github/gyan000/eosconnect/share ";
str_command += "com.github.gyan000.eosconnect.Share.Files "; str_command += "com.github.gyan000.eosconnect.Share.Files ";
str_command += "string:'" + device.id + "' string:'%F'\n"; str_command += "string:'" + device.id + "' string:'%F'\n";
......
File moved
File moved
File moved
File moved
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment