diff options
author | daviddavid <geiger.david68210@gmail.com> | 2015-02-20 16:51:04 +0100 |
---|---|---|
committer | daviddavid <geiger.david68210@gmail.com> | 2015-02-20 16:51:04 +0100 |
commit | 70ffcc60c10df0e76d9af61c655b819afd74c39b (patch) | |
tree | efda56b88b025fe0d715d5b2df8343b4807c4477 | |
parent | 02321c5aa2f0134667fd1690108022870da0968a (diff) | |
download | MageiaSync-70ffcc60c10df0e76d9af61c655b819afd74c39b.tar MageiaSync-70ffcc60c10df0e76d9af61c655b819afd74c39b.tar.gz MageiaSync-70ffcc60c10df0e76d9af61c655b819afd74c39b.tar.bz2 MageiaSync-70ffcc60c10df0e76d9af61c655b819afd74c39b.tar.xz MageiaSync-70ffcc60c10df0e76d9af61c655b819afd74c39b.zip |
Prepare for 0.1.3 release
- add missing BuilRequires on qttools5 (to compile qm files during the build)
- fix translations path and mageiaSync files path for mageiaSync.pro
- update CHANGELOG
-rw-r--r-- | CHANGELOG | 6 | ||||
-rw-r--r-- | mageiaSync.pro | 32 | ||||
-rw-r--r-- | mageiasync.spec | 2 |
3 files changed, 25 insertions, 15 deletions
@@ -4,9 +4,11 @@ mageiasync 0.1.3 ------------ - internationalization. - correction in writing the destination directory. A "&" was wrongly added in Mageia 5. - - update the location of qm files. Install them with setup.py - - Add Tx config file. + - update the location of qm files. Install them with setup.py. + - add Tx config file. - add translations in fr, de, uk, sl, id, el, es, et, eu and pt_BR. + - adjust the path for the icon in main window corber. + - added version in main window title. mageiasync 0.1.2 ------------ diff --git a/mageiaSync.pro b/mageiaSync.pro index 81ed08b..2a6aaeb 100644 --- a/mageiaSync.pro +++ b/mageiaSync.pro @@ -12,20 +12,26 @@ TARGET = mageiaSync TEMPLATE = app -SOURCES +=mageiasync.py mageiaSyncExt.py +SOURCES += mageiaSync/mageiasync.py \ + mageiaSync/mageiaSyncExt.py HEADERS += -FORMS += mageiaSyncUI.ui mageiaSyncDBprefs.ui mageiaSyncDBprefs0.ui mageiaSyncDBrename.ui mageiaSyncDBupdate.ui -TRANSLATIONS += mageiaSync_en.ts -TRANSLATIONS += mageiaSync_de.ts -TRANSLATIONS += mageiaSync_el.ts -TRANSLATIONS += mageiaSync_es.ts -TRANSLATIONS += mageiaSync_et.ts -TRANSLATIONS += mageiaSync_eu.ts -TRANSLATIONS += mageiaSync_fr.ts -TRANSLATIONS += mageiaSync_id.ts -TRANSLATIONS += mageiaSync_pt_BR.ts -TRANSLATIONS += mageiaSync_sl.ts -TRANSLATIONS += mageiaSync_uk.ts +FORMS += mageiaSync/mageiaSyncUI.ui \ + mageiaSync/mageiaSyncDBprefs.ui \ + mageiaSync/mageiaSyncDBprefs0.ui \ + mageiaSync/mageiaSyncDBrename.ui \ + mageiaSync/mageiaSyncDBupdate.ui + +TRANSLATIONS += translations/mageiaSync_en.ts +TRANSLATIONS += translations/mageiaSync_de.ts +TRANSLATIONS += translations/mageiaSync_el.ts +TRANSLATIONS += translations/mageiaSync_es.ts +TRANSLATIONS += translations/mageiaSync_et.ts +TRANSLATIONS += translations/mageiaSync_eu.ts +TRANSLATIONS += translations/mageiaSync_fr.ts +TRANSLATIONS += translations/mageiaSync_id.ts +TRANSLATIONS += translations/mageiaSync_pt_BR.ts +TRANSLATIONS += translations/mageiaSync_sl.ts +TRANSLATIONS += translations/mageiaSync_uk.ts diff --git a/mageiasync.spec b/mageiasync.spec index 7549cfd..03d5965 100644 --- a/mageiasync.spec +++ b/mageiasync.spec @@ -12,6 +12,7 @@ Source0: http://gitweb.mageia.org/qa/MageiaSync/snapshot/%{gitname}-%{version}.t BuildArch: noarch BuildRequires: python-setuptools BuildRequires: python-qt5-devel +BuildRequires: qttools5 Requires: python-qt5-core Requires: python-qt5-gui @@ -30,6 +31,7 @@ repository. It uses rsync at main. Its aim is to be a tool like dorsync with GUI #BuildArch: noarch #BuildRequires: python3-setuptools #BuildRequires: python3-qt5-devel +#BuildRequires: qttools5 #Requires: python3-qt5-core #Requires: python3-qt5-gui |