summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastien Estienne <sebastien.estienne@gmail.com>2005-10-02 02:14:56 +0000
committerSebastien Estienne <sebastien.estienne@gmail.com>2005-10-02 02:14:56 +0000
commit656ba17f60a00a1ebbecdeb73912a55434605c28 (patch)
tree390d9b0d3aacbcdb05231917bf01fda15492f4e9
parentf212ad9f9d4bf3e49b9c0c82bfa1df41a9954b6c (diff)
* fixed bug in sdc
* really install the new icons git-svn-id: file:///home/lennart/svn/public/service-discovery-applet/trunk@27 3be567f1-68ff-0310-b24a-ad7cc433fd2f
-rw-r--r--TODO2
-rw-r--r--icons/24x24/Makefile.am3
-rw-r--r--icons/48x48/Makefile.am3
-rwxr-xr-xsrc/service-discovery-config.in5
4 files changed, 8 insertions, 5 deletions
diff --git a/TODO b/TODO
index 9c0db4a..b193144 100644
--- a/TODO
+++ b/TODO
@@ -1,3 +1,5 @@
* fix ipv6
* option to not browse our own services
* finnish python's plugins
+* check adding services
+* fix transparency when right-clicking
diff --git a/icons/24x24/Makefile.am b/icons/24x24/Makefile.am
index ba674c8..079c333 100644
--- a/icons/24x24/Makefile.am
+++ b/icons/24x24/Makefile.am
@@ -2,7 +2,10 @@ iconsdir = $(ICONSDIR)/24x24
icons_DATA = \
_http._tcp.png \
_ftp._tcp.png \
+ _https._tcp.png \
+ _sftp-ssh._tcp.png \
_ssh._tcp.png \
+ _rfb._tcp.png \
service-discovery-applet.png
diff --git a/icons/48x48/Makefile.am b/icons/48x48/Makefile.am
index 35a9583..bc53e2f 100644
--- a/icons/48x48/Makefile.am
+++ b/icons/48x48/Makefile.am
@@ -2,7 +2,10 @@ iconsdir = $(ICONSDIR)/48x48
icons_DATA = \
_http._tcp.png \
_ftp._tcp.png \
+ _https._tcp.png \
+ _sftp-ssh._tcp.png \
_ssh._tcp.png \
+ _rfb._tcp.png \
service-discovery-applet.png
EXTRA_DIST = $(icons_DATA)
diff --git a/src/service-discovery-config.in b/src/service-discovery-config.in
index 30dede2..a4d274c 100755
--- a/src/service-discovery-config.in
+++ b/src/service-discovery-config.in
@@ -148,9 +148,6 @@ class Config_window(SimpleGladeApp):
def cb_notifications_toggled(self,cb,client):
client.set_bool ("%s/%s" % (gc_options,"show_notifications"), cb.get_active())
- def cb_applet_name_toggled(self,cb,client):
- client.set_bool ("%s/%s" % (gc_options,"show_applet_name"), cb.get_active())
-
def new(self):
print "A new main_window has been created"
@@ -168,8 +165,6 @@ class Config_window(SimpleGladeApp):
self.checkbutton_notifications.set_active(self.gc_client.get_bool ("%s/%s" % (gc_options,"show_notifications")))
self.checkbutton_notifications.connect('toggled',self.cb_notifications_toggled,self.gc_client)
- self.checkbutton_applet_name.set_active(self.gc_client.get_bool ("%s/%s" % (gc_options,"show_applet_name")))
- self.checkbutton_applet_name.connect('toggled',self.cb_applet_name_toggled,self.gc_client)
# The services treeview
model = self.__create_model()