fix bug N_SE-51208
authorKim Gibyoung <lastkgb.kim@samsung.com>
Fri, 6 Sep 2013 02:36:05 +0000 (11:36 +0900)
committerKim Gibyoung <lastkgb.kim@samsung.com>
Fri, 6 Sep 2013 02:36:05 +0000 (11:36 +0900)
Change-Id: I155aff709ccfe26b645082ec0710d5e16f3e800f

debian/changelog
packaging/libug-setting-wifidirect-efl.spec
popup-wifidirect/src/wfd-app-client.c

index 2989db4..bdaac54 100755 (executable)
@@ -1,3 +1,19 @@
+ug-setting-wifidirect-efl (1.1.4) precise; urgency=low
+
+  * fix bug(N_SE-51208: connected notification)
+  * Git: rsa/apps/home/ug-wifi-direct
+  * Tag: libug-setting-wifidirect-efl_1.1.4
+
+ -- Gibyoung Kim <laskgb.kim@samsung.com>  Wed, 17 Jul 2013 18:12:15 +0900
+
+ug-setting-wifidirect-efl (1.1.3) precise; urgency=low
+
+  * fix bug(N_SE-45954: PIN string is cut)
+  * Git: rsa/apps/home/ug-wifi-direct
+  * Tag: libug-setting-wifidirect-efl_1.1.3
+
+ -- Gibyoung Kim <laskgb.kim@samsung.com>  Wed, 17 Jul 2013 18:12:15 +0900
+
 ug-setting-wifidirect-efl (1.1.1) precise; urgency=low
 
   * Black theme applied
index ca0793b..0512fa9 100755 (executable)
@@ -3,7 +3,7 @@
 
 Name:       libug-setting-wifidirect-efl
 Summary:    Wi-Fi Direct setting UI gadget
-Version:    1.1.3
+Version:    1.1.4
 Release:    1
 Group:      TO_BE_FILLED
 License:    Flora License
index cc42794..b4b6f74 100755 (executable)
@@ -154,34 +154,6 @@ void _add_wfd_peers_connected_notification(void *user_data)
                return;
        }
 
-       noti_err = notification_set_text(ad->noti, NOTIFICATION_TEXT_TYPE_CONTENT,
-               "Tap to change settings", NULL, NOTIFICATION_VARIABLE_TYPE_NONE);
-       if (noti_err != NOTIFICATION_ERROR_NONE) {
-               WDPOP_LOGD( "Fail to notification_set_text. (%d)\n", noti_err);
-               return;
-       }
-
-       bundle *b = NULL;
-       b = bundle_create();
-       appsvc_set_pkgname(b, PACKAGE);
-       appsvc_add_data(b, NOTIFICATION_BUNDLE_PARAM, NOTIFICATION_BUNDLE_VALUE);
-
-       int res = NOTIFICATION_ERROR_NONE;
-       res = notification_set_execute_option(ad->noti, NOTIFICATION_EXECUTE_TYPE_SINGLE_LAUNCH, /*Button Text*/NULL, NULL, b);
-       if (res != NOTIFICATION_ERROR_NONE) {
-               WDPOP_LOGD( "Failed to notification_set_execute_option. [%d]", res);
-               bundle_free(b);
-               return;
-       }
-       bundle_free(b);
-
-       /* set display application list */
-       noti_err = notification_set_display_applist(ad->noti, NOTIFICATION_DISPLAY_APP_NOTIFICATION_TRAY);
-       if (noti_err != NOTIFICATION_ERROR_NONE) {
-               WDPOP_LOGD( "Fail to notification_set_display_applist : %d\n", noti_err);
-               return;
-       }
-
        /* notify the quick panel */
        noti_err = notification_insert(ad->noti, NULL);
        if (noti_err != NOTIFICATION_ERROR_NONE) {