summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--deluge/plugins/notifications/notifications/data/notifications.js11
-rwxr-xr-xdeluge/plugins/notifications/setup.py4
2 files changed, 9 insertions, 6 deletions
diff --git a/deluge/plugins/notifications/notifications/data/notifications.js b/deluge/plugins/notifications/notifications/data/notifications.js
index 392d26e71..424eec58b 100644
--- a/deluge/plugins/notifications/notifications/data/notifications.js
+++ b/deluge/plugins/notifications/notifications/data/notifications.js
@@ -62,7 +62,7 @@ Deluge.ux.preferences.NotificationsPage = Ext.extend(Ext.Panel, {
margins: '6 0 0 6'
},{
xtype: 'textfield',
- margins: '2 0 0 3'
+ margins: '2 0 0 4'
}]
});
@@ -79,8 +79,11 @@ Deluge.ux.preferences.NotificationsPage = Ext.extend(Ext.Panel, {
margins: '6 0 0 6'
},{
xtype: 'spinnerfield',
- margins: '2 0 0 31',
- width: 128
+ margins: '2 0 0 34',
+ width: 64,
+ decimalPrecision: 0,
+ minValue: 0,
+ maxValue: 65535
}]
});
@@ -132,7 +135,7 @@ Deluge.ux.preferences.NotificationsPage = Ext.extend(Ext.Panel, {
margins: '6 0 0 6'
},{
xtype: 'textfield',
- margins: '2 0 0 27'
+ margins: '2 0 0 28'
}]
});
diff --git a/deluge/plugins/notifications/setup.py b/deluge/plugins/notifications/setup.py
index 9a9ac156d..2426f258a 100755
--- a/deluge/plugins/notifications/setup.py
+++ b/deluge/plugins/notifications/setup.py
@@ -41,8 +41,8 @@ from setuptools import setup, find_packages
__plugin_name__ = "Notifications"
__author__ = "Pedro Algarvio"
-__author_email__ = "ufs@ufsoft.org"
-__version__ = "0.1"
+__author_email__ = "pedro@algarvio.me"
+__version__ = "0.2"
__url__ = "http://dev.deluge-torrent.org/"
__license__ = "GPLv3"
__description__ = "Plugin which provides notifications to Deluge."