Comparar commits

...

6 Commits

Autor SHA1 Mensagem Data
Klaas Freitag deea643f66 Changelog for 1.1.4 2012-12-18 17:13:32 +01:00
Klaas Freitag f91c5ee220 Push version to 1.1.4 for the 1.1 branch. 2012-12-18 17:11:37 +01:00
Daniel Molkentin dfbeef2bb2 Fix formatting hashes 2012-12-02 23:13:44 +01:00
Klaas Freitag c48acf19d7 Updated Changelog for 1.1.3. 2012-11-30 14:59:18 +01:00
Klaas Freitag e3bbb0fffe Update to version 1.3.0 2012-11-30 14:53:58 +01:00
Klaas Freitag d1884f7b0b Updated version to 1.1.3pre1 2012-11-29 21:27:45 +01:00
3 arquivos alterados com 11 adições e 5 exclusões
+7 -1
Ver Arquivo
@@ -1,6 +1,12 @@
ChangeLog
=========
version 1.1.2 (release 2012-11- ), csync 0.60.2 required
version 1.1.4 (release 2012-12-18), csync 0.60.4 required
* No changes to mirall, csync fixes only.
version 1.1.3 (release 2012-11-30), csync 0.60.3 required
* No changes to mirall, csync fixes only.
version 1.1.2 (release 2012-11-26), csync 0.60.2 required
* [Fixes] Allow to properly cancel the password dialog.
* [Fixes] Share folder name correctly percent encoded with old Qt
4.6 builds ie. Debian.
+2 -2
Ver Arquivo
@@ -1,5 +1,5 @@
set( VERSION_MAJOR 1 )
set( VERSION_MINOR 1 )
set( VERSION_PATCH 2 )
set( VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}rc )
set( VERSION_PATCH 4 )
set( VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH} )
+2 -2
Ver Arquivo
@@ -131,8 +131,8 @@ static QByteArray formatHash(const QByteArray &fmhash)
QByteArray hash;
int steps = fmhash.length()/2;
for (int i = 0; i < steps; i++) {
hash.append(fmhash[i]);
hash.append(fmhash[i+1]);
hash.append(fmhash[i*2]);
hash.append(fmhash[i*2+1]);
hash.append(' ');
}
return hash;