Updated for version 4.4.5

This commit is contained in:
Dimitris Zlatanidis 2023-01-03 22:12:02 +02:00
parent bc7c204d25
commit 1dbadba9ac
3 changed files with 6 additions and 4 deletions

View file

@ -1,4 +1,6 @@
4.4.5 - 31/12/2022 4.4.5 - 03/01/2023
Added:
- New modern view mode style
Updated: Updated:
- Fixed md5sum comparison - Fixed md5sum comparison

View file

@ -31,8 +31,8 @@ Install from the official third-party `SBo repository <https://slackbuilds.org/r
.. code-block:: bash .. code-block:: bash
$ tar xvf slpkg-4.4.4.tar.gz $ tar xvf slpkg-4.4.5.tar.gz
$ cd slpkg-4.4.4 $ cd slpkg-4.4.5
$ ./install.sh $ ./install.sh
Screenshots Screenshots

View file

@ -5,7 +5,7 @@ class Version:
""" Print the version. """ """ Print the version. """
def __init__(self): def __init__(self):
self.version_info = (4, 4, 4) self.version_info = (4, 4, 5)
self.version = '{0}.{1}.{2}'.format(*self.version_info) self.version = '{0}.{1}.{2}'.format(*self.version_info)
self.license = 'MIT License' self.license = 'MIT License'
self.author = 'Dimitris Zlatanidis (dslackw)' self.author = 'Dimitris Zlatanidis (dslackw)'