[Notifications] Small layout fixes for web page and version bump

This commit is contained in:
Calum Lind 2014-08-19 16:12:38 +01:00
commit 3f8526160d
2 changed files with 9 additions and 6 deletions

View file

@ -62,7 +62,7 @@ Deluge.ux.preferences.NotificationsPage = Ext.extend(Ext.Panel, {
margins: '6 0 0 6' margins: '6 0 0 6'
},{ },{
xtype: 'textfield', 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' margins: '6 0 0 6'
},{ },{
xtype: 'spinnerfield', xtype: 'spinnerfield',
margins: '2 0 0 31', margins: '2 0 0 34',
width: 128 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' margins: '6 0 0 6'
},{ },{
xtype: 'textfield', xtype: 'textfield',
margins: '2 0 0 27' margins: '2 0 0 28'
}] }]
}); });

View file

@ -41,8 +41,8 @@ from setuptools import setup, find_packages
__plugin_name__ = "Notifications" __plugin_name__ = "Notifications"
__author__ = "Pedro Algarvio" __author__ = "Pedro Algarvio"
__author_email__ = "ufs@ufsoft.org" __author_email__ = "pedro@algarvio.me"
__version__ = "0.1" __version__ = "0.2"
__url__ = "http://dev.deluge-torrent.org/" __url__ = "http://dev.deluge-torrent.org/"
__license__ = "GPLv3" __license__ = "GPLv3"
__description__ = "Plugin which provides notifications to Deluge." __description__ = "Plugin which provides notifications to Deluge."