Accepting request 311004 from network
- Version bump to 3.11.0.2: * Fix crasher during some server-client scenarios * Work with non-epoch time received from server - Added patch: * filezilla-string-conversion.patch - Version bump to 3.11.0.1: * Quite few small fixes around OBS-URL: https://build.opensuse.org/request/show/311004 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/filezilla?expand=0&rev=37
This commit is contained in:
@@ -1,3 +1,18 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Jun 7 09:38:18 UTC 2015 - tchvatal@suse.com
|
||||
|
||||
- Version bump to 3.11.0.2:
|
||||
* Fix crasher during some server-client scenarios
|
||||
* Work with non-epoch time received from server
|
||||
- Added patch:
|
||||
* filezilla-string-conversion.patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed May 27 09:17:49 UTC 2015 - tchvatal@suse.com
|
||||
|
||||
- Version bump to 3.11.0.1:
|
||||
* Quite few small fixes around
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 31 11:00:03 UTC 2015 - tchvatal@suse.com
|
||||
|
||||
|
||||
+3
-2
@@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
Name: filezilla
|
||||
Version: 3.10.3
|
||||
Version: 3.11.0.2
|
||||
Release: 0
|
||||
Summary: A GUI FTP and SFTP Client
|
||||
License: GPL-2.0+
|
||||
@@ -26,6 +26,7 @@ Url: http://filezilla-project.org/
|
||||
Source0: http://prdownloads.sourceforge.net/filezilla/FileZilla_%{version}_src.tar.bz2
|
||||
Patch0: putty-no_DATE_and_TIME_.patch
|
||||
Patch1: filezilla-3.5.3-buildinfo-no-date.patch
|
||||
Patch2: filezilla-string-conversion.patch
|
||||
BuildRequires: cppunit-devel
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: gcc-c++
|
||||
@@ -67,6 +68,7 @@ Some of the main features are:
|
||||
%setup -q
|
||||
%patch0
|
||||
%patch1
|
||||
%patch2 -p1
|
||||
|
||||
# Fix invalid translation locales:
|
||||
cd locales
|
||||
@@ -75,7 +77,6 @@ for LOC in\
|
||||
ca_ES@valencia\
|
||||
cs_CZ\
|
||||
da_DK\
|
||||
eu_ES\
|
||||
fa_IR\
|
||||
fi_FI\
|
||||
gl_ES\
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7968e2799437c0b89741bd7afbc077156525d930e9a18543fd087fbd8979de8d
|
||||
size 4430113
|
||||
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:341ba02803c29bdd1f9c3ce524723fe9288433d22d286b5a4b7d7c2e0d6989d9
|
||||
size 4421399
|
||||
@@ -0,0 +1,13 @@
|
||||
Index: filezilla-3.11.0.2/src/engine/timeex.cpp
|
||||
===================================================================
|
||||
--- filezilla-3.11.0.2.orig/src/engine/timeex.cpp
|
||||
+++ filezilla-3.11.0.2/src/engine/timeex.cpp
|
||||
@@ -336,7 +336,7 @@ bool CDateTime::Set(Zone z, int year, in
|
||||
|
||||
bool CDateTime::Set(wxString const& str, Zone z)
|
||||
{
|
||||
- wxChar const* it = str;
|
||||
+ wxChar const* it = str.c_str();
|
||||
wxChar const* end = it + str.size();
|
||||
|
||||
#ifdef __WXMSW__
|
||||
Reference in New Issue
Block a user