Skip to content

Commit d12adca

Browse files
author
Henri Wahl
committed
fixed Fedora 25 python3-cryptography dependency, removed useless and codebreaking addition of op5Monitor stuff in authentication dialog (commit 050d98e) - now reauthentication works :-)
1 parent 2f06185 commit d12adca

File tree

7 files changed

+5
-15
lines changed

7 files changed

+5
-15
lines changed

Nagstamon/Config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ class AppInfo(object):
5858
contains app information previously located in GUI.py
5959
"""
6060
NAME = 'Nagstamon'
61-
VERSION = '2.1-20161123'
61+
VERSION = '2.1-20161129'
6262
WEBSITE = 'https://nagstamon.ifw-dresden.de'
6363
COPYRIGHT = '©2008-2016 Henri Wahl et al.'
6464
COMMENTS = 'Nagios status monitor for your desktop'

Nagstamon/QUI/__init__.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5740,17 +5740,6 @@ def initialize(self):
57405740
self.ui.input_lineedit_autologin_key.hide()
57415741
self.ui.label_autologin_key.hide()
57425742

5743-
if self.server.type == 'op5Monitor':
5744-
self.ui.input_lineedit_host_filter.show()
5745-
self.ui.input_lineedit_service_filter.show()
5746-
self.ui.label_service_filter.show()
5747-
self.ui.label_host_filter.show()
5748-
else:
5749-
self.ui.input_lineedit_host_filter.hide()
5750-
self.ui.input_lineedit_service_filter.hide()
5751-
self.ui.label_service_filter.hide()
5752-
self.ui.label_host_filter.hide()
5753-
57545743
# set existing values
57555744
self.ui.input_lineedit_username.setText(self.server.username)
57565745
self.ui.input_lineedit_password.setText(self.server.password)

Nagstamon/resources/nagstamon.1.gz

0 Bytes
Binary file not shown.

build/build.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,7 @@ def winmain():
6262
VERSION_IS = VERSION
6363

6464
print('VERSION_IS:', VERSION_IS)
65-
66-
65+
6766
ISCC = r'{0}{1}Inno Setup 5{1}iscc.exe'.format(os.environ['PROGRAMFILES{0}'.format(ARCH_OPTS[ARCH][2])], os.sep)
6867
DIR_BUILD_EXE = '{0}{1}exe.{2}-{3}'.format(CURRENT_DIR, os.sep, ARCH_OPTS[ARCH][0], PYTHON_VERSION)
6968
DIR_BUILD_NAGSTAMON = '{0}{1}Nagstamon-{2}-win{3}'.format(CURRENT_DIR, os.sep, VERSION, ARCH)

build/debian/changelog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
nagstamon (2.1-20161102) unstable; urgency=low
1+
nagstamon (2.1-20161129) unstable; urgency=low
22
* New upstream
33
- Development 'master' branch
44

build/redhat/nagstamon.spec

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ Requires: python3-requests
2222
Requires: python3-qt5
2323
Requires: python3-SecretStorage
2424
Requires: python3-crypto
25+
Requires: python3-cryptography
2526
Requires: python3-psutil
2627
Requires: qt5-qtsvg
2728
Requires: qt5-qtmultimedia

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@
108108
'python3-qt5 '
109109
'python3-SecretStorage '
110110
'python3-crypto '
111+
'python3-cryptography '
111112
'python3-psutil '
112113
'qt5-qtsvg '
113114
'qt5-qtmultimedia ',

0 commit comments

Comments
 (0)