aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPapoteur <papoteur@mageialinux-online.org>2016-05-08 18:31:30 +0200
committerPapoteur <papoteur@mageialinux-online.org>2016-05-08 18:31:30 +0200
commit7e671e4482a5956531f14748bce7b3cd919f851a (patch)
tree2b5da44a8750dbf56af6cc0620ee038c846d0605
parent8663ed551d28e1c1fb0bc3353c98e6c3dacd7227 (diff)
downloadMageiaSync-7e671e4482a5956531f14748bce7b3cd919f851a.tar
MageiaSync-7e671e4482a5956531f14748bce7b3cd919f851a.tar.gz
MageiaSync-7e671e4482a5956531f14748bce7b3cd919f851a.tar.bz2
MageiaSync-7e671e4482a5956531f14748bce7b3cd919f851a.tar.xz
MageiaSync-7e671e4482a5956531f14748bce7b3cd919f851a.zip
Prepare 0.3.0 release
-rw-r--r--CHANGELOG15
-rw-r--r--mageiaSync/mageiaSyncUI.py7
-rw-r--r--mageiaSync/mageiaSyncUI.ui4
-rw-r--r--setup.py2
4 files changed, 21 insertions, 7 deletions
diff --git a/CHANGELOG b/CHANGELOG
index a3e7c50..5643428 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,4 +1,19 @@
The modifications are:
+mageiasync 0.3.0
+----------------
+ - Add signature checking
+ - Manage the default value for release and destination directory.
+ - Keep the current directory in filepicker and in prefs dialog box for destination
+ - Define the tab order in prefs dialog box
+ - Set the prefs dialog box stretchable
+ - Set the rename dialog box stretchable
+ - Suppress unuseful printed file name
+ - Set tab order in Rename dialog box
+ - Add the count of renamed files and directories.
+ - List only directories in release dropdown (preferences).
+ - Get remote directories also when updating preferences (was only at first setting)
+ - The import function are yet working also locally
+ - Add Lithunian and Albanian translations
mageiasync 0.2.1
----------------
diff --git a/mageiaSync/mageiaSyncUI.py b/mageiaSync/mageiaSyncUI.py
index ea9c55b..46bc12c 100644
--- a/mageiaSync/mageiaSyncUI.py
+++ b/mageiaSync/mageiaSyncUI.py
@@ -2,8 +2,7 @@
# Form implementation generated from reading ui file 'mageiaSyncUI.ui'
#
-# Created: Sat Sep 26 09:34:01 2015
-# by: PyQt5 UI code generator 5.4
+# Created by: PyQt5 UI code generator 5.4.2
#
# WARNING! All changes made in this file will be lost!
@@ -13,9 +12,9 @@ class Ui_mainWindow(object):
def setupUi(self, mainWindow):
mainWindow.setObjectName("mainWindow")
mainWindow.resize(820, 627)
- mainWindow.setWindowTitle("mageiaSync v0.2.1")
+ mainWindow.setWindowTitle("mageiaSync v0.3.0")
icon = QtGui.QIcon()
- icon.addPixmap(QtGui.QPixmap("/usr/share/icons/hicolor/scalable/apps/mageiasync.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
+ icon.addPixmap(QtGui.QPixmap("../../../../usr/share/icons/hicolor/scalable/apps/mageiasync.svg"), QtGui.QIcon.Normal, QtGui.QIcon.Off)
mainWindow.setWindowIcon(icon)
mainWindow.setLocale(QtCore.QLocale(QtCore.QLocale.English, QtCore.QLocale.UnitedStates))
self.centralwidget = QtWidgets.QWidget(mainWindow)
diff --git a/mageiaSync/mageiaSyncUI.ui b/mageiaSync/mageiaSyncUI.ui
index 227169f..58f9b5b 100644
--- a/mageiaSync/mageiaSyncUI.ui
+++ b/mageiaSync/mageiaSyncUI.ui
@@ -11,11 +11,11 @@
</rect>
</property>
<property name="windowTitle">
- <string notr="true">mageiaSync v0.2.1</string>
+ <string notr="true">mageiaSync v0.3.0</string>
</property>
<property name="windowIcon">
<iconset>
- <normaloff>/usr/share/icons/hicolor/scalable/apps/mageiasync.svg</normaloff>/usr/share/icons/hicolor/scalable/apps/mageiasync.svg</iconset>
+ <normaloff>../../../../usr/share/icons/hicolor/scalable/apps/mageiasync.svg</normaloff>../../../../usr/share/icons/hicolor/scalable/apps/mageiasync.svg</iconset>
</property>
<property name="locale">
<locale language="English" country="UnitedStates"/>
diff --git a/setup.py b/setup.py
index 85be1fa..686594d 100644
--- a/setup.py
+++ b/setup.py
@@ -16,7 +16,7 @@ data_files = [("share/applications/", ["share/applications/mageiasync.desktop"])
setup(
name = 'mageiasync',
- version = '0.2.1',
+ version = '0.3',
packages = ['mageiaSync'],
scripts = ['mageiasync'],
license = 'GNU General Public License v3 (GPLv3)',