This commit is contained in:
Zach Tibbitts 2007-02-15 05:24:44 +00:00
parent 2c1e77555f
commit 9bfd2e2ee2
5 changed files with 6 additions and 21 deletions

View File

@ -622,7 +622,7 @@ their share ratio reaches:</property>
<widget class="GtkDialog" id="plugin_dialog"> <widget class="GtkDialog" id="plugin_dialog">
<property name="width_request">480</property> <property name="width_request">480</property>
<property name="border_width">5</property> <property name="border_width">5</property>
<property name="title" translatable="yes">Preferences Dialog</property> <property name="title" translatable="yes">Plugin Manager</property>
<property name="default_width">583</property> <property name="default_width">583</property>
<property name="default_height">431</property> <property name="default_height">431</property>
<property name="has_separator">False</property> <property name="has_separator">False</property>
@ -634,6 +634,7 @@ their share ratio reaches:</property>
<child> <child>
<widget class="GtkNotebook" id="pref_notebook1"> <widget class="GtkNotebook" id="pref_notebook1">
<property name="visible">True</property> <property name="visible">True</property>
<property name="show_tabs">False</property>
<child> <child>
<widget class="GtkTable" id="plugins_options1"> <widget class="GtkTable" id="plugins_options1">
<property name="visible">True</property> <property name="visible">True</property>
@ -659,16 +660,6 @@ their share ratio reaches:</property>
<signal name="clicked" handler="plugin_pref"/> <signal name="clicked" handler="plugin_pref"/>
</widget> </widget>
</child> </child>
<child>
<widget class="GtkButton" id="button8">
<property name="visible">True</property>
<property name="label" translatable="yes">gtk-apply</property>
<property name="use_stock">True</property>
</widget>
<packing>
<property name="position">1</property>
</packing>
</child>
</widget> </widget>
<packing> <packing>
<property name="left_attach">1</property> <property name="left_attach">1</property>
@ -718,18 +709,12 @@ their share ratio reaches:</property>
<property name="visible">True</property> <property name="visible">True</property>
<property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK | GDK_ENTER_NOTIFY_MASK</property> <property name="events">GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK | GDK_ENTER_NOTIFY_MASK</property>
<property name="layout_style">GTK_BUTTONBOX_END</property> <property name="layout_style">GTK_BUTTONBOX_END</property>
<child>
<placeholder/>
</child>
<child> <child>
<widget class="GtkButton" id="button10"> <widget class="GtkButton" id="button10">
<property name="visible">True</property> <property name="visible">True</property>
<property name="label" translatable="yes">gtk-close</property> <property name="label" translatable="yes">gtk-close</property>
<property name="use_stock">True</property> <property name="use_stock">True</property>
</widget> </widget>
<packing>
<property name="position">1</property>
</packing>
</child> </child>
</widget> </widget>
<packing> <packing>

View File

@ -28,7 +28,7 @@ from optparse import OptionParser
import sys import sys
import os, os.path import os, os.path
parser = OptionParser(usage="%prog [options] [actions]", version="%prog 0.5.0") parser = OptionParser(usage="%prog [options] [actions]", version="%prog 0.4.90.0")
parser.add_option("--tray", dest="tray", help="start Deluge hidden in system tray", parser.add_option("--tray", dest="tray", help="start Deluge hidden in system tray",
metavar="TRAY", action="store_true") metavar="TRAY", action="store_true")

View File

@ -88,7 +88,7 @@ data = [('share/deluge/glade', glob.glob('glade/*.glade')),
for plugin in glob.glob('plugins/*'): for plugin in glob.glob('plugins/*'):
data.append( ('share/deluge/' + plugin, glob.glob(plugin + '/*')) ) data.append( ('share/deluge/' + plugin, glob.glob(plugin + '/*')) )
setup(name="deluge", fullname="Deluge BitTorrent Client", version="0.5.0", setup(name="deluge", fullname="Deluge BitTorrent Client", version="0.4.90.0",
author="Zach Tibbitts, Alon Zakai", author="Zach Tibbitts, Alon Zakai",
author_email="zach@collegegeek.org, kripkensteiner@gmail.com", author_email="zach@collegegeek.org, kripkensteiner@gmail.com",
description="A bittorrent client written in PyGTK", description="A bittorrent client written in PyGTK",

View File

@ -22,7 +22,7 @@ import sys, os, os.path, webbrowser
import xdg, xdg.BaseDirectory import xdg, xdg.BaseDirectory
PROGRAM_NAME = "Deluge" PROGRAM_NAME = "Deluge"
PROGRAM_VERSION = "0.4.9.0" PROGRAM_VERSION = "0.4.90.0"
CONFIG_DIR = xdg.BaseDirectory.save_config_path('deluge-svn') CONFIG_DIR = xdg.BaseDirectory.save_config_path('deluge-svn')

View File

@ -65,7 +65,7 @@ class DelugeGTK(dbus.service.Object):
self.load_default_settings() self.load_default_settings()
self.pref.load_from_file(self.conf_file) self.pref.load_from_file(self.conf_file)
#Start the Deluge Manager: #Start the Deluge Manager:
self.manager = deluge.Manager("DE", "0490", "Deluge 0.4.9", dcommon.CONFIG_DIR) self.manager = deluge.Manager("DE", "0490", "Deluge 0.4.90", dcommon.CONFIG_DIR)
#Set up the interface: #Set up the interface:
self.wtree = gtk.glade.XML(dcommon.get_glade_file("delugegtk.glade")) self.wtree = gtk.glade.XML(dcommon.get_glade_file("delugegtk.glade"))
self.window = self.wtree.get_widget("main_window") self.window = self.wtree.get_widget("main_window")