[feat] show actuall device name instate of ip address in notification

This commit is contained in:
Julian Sparber
2017-10-26 13:04:07 +02:00
parent 0f5ea47e56
commit 8b91c96fe6
4 changed files with 12 additions and 8 deletions

View File

@@ -36,6 +36,7 @@ static GActionEntry app_entries[] =
static TeleportWindow *win;
static GApplication *application;
static TeleportPeer *peerList;
static gint signalIds [N_SIGNALS];
struct _TeleportApp {
@@ -75,7 +76,7 @@ void create_user_notification (const char *file_name, const int file_size, const
GNotification *notification = g_notification_new ("Teleport");
g_notification_set_body (notification,
g_strdup_printf("%s is sending %s (%s)",
origin_device,
teleport_peer_get_name_by_addr (peerList, origin_device),
file_name,
g_format_size (file_size)));
icon = g_themed_icon_new ("dialog-information");
@@ -94,7 +95,10 @@ void create_user_notification (const char *file_name, const int file_size, const
void create_finished_notification (const char *origin, const int filesize, const char *filename, GVariant *target) {
GIcon *icon;
GNotification *notification = g_notification_new ("Teleport");
g_notification_set_body (notification, g_strdup_printf("Transfer of %s from %s is complete", filename, origin));
g_notification_set_body (notification,
g_strdup_printf("Transfer of %s from %s is complete",
teleport_peer_get_name_by_addr (peerList, origin),
origin));
icon = g_themed_icon_new ("dialog-information");
g_notification_set_icon (notification, icon);
g_notification_set_default_action_and_target_value (notification, "app.do-nothing", target);
@@ -137,7 +141,7 @@ teleport_app_init (TeleportApp *app) {
static void
teleport_app_activate (GApplication *app) {
//TeleportWindow *win;
TeleportPeer *peerList = g_object_new (TELEPORT_TYPE_PEER, NULL);
peerList = g_object_new (TELEPORT_TYPE_PEER, NULL);
application = app;
win = teleport_window_new (TELEPORT_APP (app));