diff options
-rw-r--r-- | CHANGELOG | 5 | ||||
-rw-r--r-- | README.md | 3 | ||||
-rw-r--r-- | mageiaSync.pro | 1 | ||||
-rw-r--r-- | mageiaSync/mageiaSyncUI.py | 2 | ||||
-rw-r--r-- | mageiaSync/mageiaSyncUI.ui | 2 | ||||
-rw-r--r-- | setup.py | 2 |
6 files changed, 11 insertions, 4 deletions
@@ -1,5 +1,10 @@ The modifications are: +mageiasync 0.1.7 +------------ + - reverse "not creating new line when checking" which was bugous + - add Albanian translation + mageiasync 0.1.6 ------------ - change to Python 3. @@ -29,7 +29,7 @@ License This software is distributed under the terms of the [GNU General Public License version 3 (GPLv3)](LICENSE). -The [mageiaSync icon](isodumper.svg) is a combination of two images from openclipart: +The [mageiaSync icon](mageiasync.svg) is a combination of two images from openclipart: - folder-download by dannya - optical_disc_schema by sheikh_tuhin https://openclipart.org/ @@ -66,3 +66,4 @@ Translators - Milan Baša - Slovak - Valentin XliN Saikov - Russian - Daniel Napora - Polish +- Ardit Dani - Albanian diff --git a/mageiaSync.pro b/mageiaSync.pro index 190b48d..9e05632 100644 --- a/mageiaSync.pro +++ b/mageiaSync.pro @@ -43,6 +43,7 @@ TRANSLATIONS += translations/mageiaSync_ro.ts TRANSLATIONS += translations/mageiaSync_ru.ts TRANSLATIONS += translations/mageiaSync_sk.ts TRANSLATIONS += translations/mageiaSync_sl.ts +TRANSLATIONS += translations/mageiaSync_sq.ts TRANSLATIONS += translations/mageiaSync_sv.ts TRANSLATIONS += translations/mageiaSync_tr.ts TRANSLATIONS += translations/mageiaSync_uk.ts diff --git a/mageiaSync/mageiaSyncUI.py b/mageiaSync/mageiaSyncUI.py index ee71630..402fd10 100644 --- a/mageiaSync/mageiaSyncUI.py +++ b/mageiaSync/mageiaSyncUI.py @@ -13,7 +13,7 @@ class Ui_mainWindow(object): def setupUi(self, mainWindow): mainWindow.setObjectName("mainWindow") mainWindow.resize(820, 627) - mainWindow.setWindowTitle("mageiaSync v0.1.6") + mainWindow.setWindowTitle("mageiaSync v0.1.7") icon = QtGui.QIcon() icon.addPixmap(QtGui.QPixmap("/usr/share/icons/hicolor/scalable/apps/mageiasync.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off) mainWindow.setWindowIcon(icon) diff --git a/mageiaSync/mageiaSyncUI.ui b/mageiaSync/mageiaSyncUI.ui index ef6a5ce..aacf038 100644 --- a/mageiaSync/mageiaSyncUI.ui +++ b/mageiaSync/mageiaSyncUI.ui @@ -11,7 +11,7 @@ </rect> </property> <property name="windowTitle"> - <string notr="true">mageiaSync v0.1.6</string> + <string notr="true">mageiaSync v0.1.7</string> </property> <property name="windowIcon"> <iconset> @@ -16,7 +16,7 @@ data_files = [("share/applications/", ["share/applications/mageiasync.desktop"]) setup( name = 'mageiasync', - version = '0.1.6', + version = '0.1.7', packages = ['mageiaSync'], scripts = ['mageiasync'], license = 'GNU General Public License v3 (GPLv3)', |