Hello community,

here is the log from the commit of package kate for openSUSE:Factory checked in 
at 2013-06-11 06:13:15
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kate (Old)
 and      /work/SRC/openSUSE:Factory/.kate.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "kate"

Changes:
--------
--- /work/SRC/openSUSE:Factory/kate/kate.changes        2013-05-16 
16:44:14.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.kate.new/kate.changes   2013-06-11 
09:28:43.000000000 +0200
@@ -1,0 +2,8 @@
+Sat Jun  1 09:21:30 UTC 2013 - [email protected]
+
+- Update to 4.10.4
+   * Bugfix release
+   * See http://www.kde.org/announcements/announce-4.10.4.php
+   * resolves bnc#8122760
+
+-------------------------------------------------------------------

Old:
----
  kate-4.10.3.tar.xz

New:
----
  kate-4.10.4.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ kate.spec ++++++
--- /var/tmp/diff_new_pack.bXYbqX/_old  2013-06-11 09:28:44.000000000 +0200
+++ /var/tmp/diff_new_pack.bXYbqX/_new  2013-06-11 09:28:44.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           kate
-Version:        4.10.3
+Version:        4.10.4
 Release:        0
 Summary:        Advanced Text Editor
 License:        GPL-2.0+

++++++ kate-4.10.3.tar.xz -> kate-4.10.4.tar.xz ++++++
Files old/kate-4.10.3/doc/kate/index.cache.bz2 and 
new/kate-4.10.4/doc/kate/index.cache.bz2 differ
Files old/kate-4.10.3/doc/kwrite/index.cache.bz2 and 
new/kate-4.10.4/doc/kwrite/index.cache.bz2 differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kate-4.10.3/kate/plugins/filetree/katefiletreemodel.cpp 
new/kate-4.10.4/kate/plugins/filetree/katefiletreemodel.cpp
--- old/kate-4.10.3/kate/plugins/filetree/katefiletreemodel.cpp 2013-05-03 
06:36:20.000000000 +0200
+++ new/kate-4.10.4/kate/plugins/filetree/katefiletreemodel.cpp 2013-05-28 
20:42:04.000000000 +0200
@@ -152,7 +152,7 @@
       m_display.replace(0, QDir::homePath().length(), "~");
     }
   } else {
-    m_display = m_path.section(QDir::separator(), -1, -1);
+    m_display = m_path.section(QLatin1Char('/'), -1, -1);
   }
     
 }
@@ -970,9 +970,9 @@
 
 ProxyItemDir *KateFileTreeModel::findRootNode(const QString &name, int r)
 {
-  QString base = name.section(QDir::separator(), 0, -2);
+  QString base = name.section(QLatin1Char('/'), 0, -2);
   foreach(ProxyItem *item, m_root->children()) {
-    QString path = item->path().section(QDir::separator(), 0, -r);
+    QString path = item->path().section(QLatin1Char('/'), 0, -r);
     if(!QFileInfo(path).isAbsolute()) {
       continue;
     }
@@ -982,7 +982,7 @@
     // and return /foo/x rather than /foo/xy
     // this seems a bit hackish, but is the simplest way to solve the
     // current issue.
-    path += QDir::separator ();
+    path += QLatin1Char('/');
 
     if(name.startsWith(path) && item->flag(ProxyItem::Dir)) {
       return static_cast<ProxyItemDir*>(item);
@@ -1027,7 +1027,7 @@
   QString sep;
   QString tail = item->path();
   tail.remove(0, root->path().length());
-  QStringList parts = tail.split(QDir::separator(), QString::SkipEmptyParts);
+  QStringList parts = tail.split(QLatin1Char('/'), QString::SkipEmptyParts);
   ProxyItemDir *ptr = root;
   QStringList current_parts;
   current_parts.append(root->path());
@@ -1041,7 +1041,7 @@
     current_parts.append(part);
     ProxyItemDir *find = findChildNode(ptr, part);
     if(!find) {
-      QString new_name = current_parts.join(QDir::separator());
+      QString new_name = current_parts.join(QLatin1String("/"));
       QModelIndex parent_index = createIndex(ptr->row(), 0, ptr);
       kDebug(debugArea()) << "adding" << part << "to" << ptr;
       beginInsertRows(ptr == m_root ? QModelIndex() : parent_index, 
ptr->childCount(), ptr->childCount());
@@ -1092,7 +1092,7 @@
     kDebug(debugArea()) << "creating a new root";
 
     // trim off trailing file and dir
-    QString base = item->path().section(QDir::separator(), 0, -2);
+    QString base = item->path().section(QLatin1Char('/'), 0, -2);
 
     // create new root
     ProxyItemDir *new_root = new ProxyItemDir(base, 0);
@@ -1104,7 +1104,7 @@
     endInsertRows();
     
     // same fix as in findRootNode, try to match a full dir, instead of a 
partial path
-    base += QDir::separator ();
+    base += QLatin1Char('/');
     
     // try and merge existing roots with the new root node.
     kDebug(debugArea()) << "attempting to merge some existing roots";
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/kate-4.10.3/kate/plugins/mailfiles/katemailfilesplugin.desktop 
new/kate-4.10.4/kate/plugins/mailfiles/katemailfilesplugin.desktop
--- old/kate-4.10.3/kate/plugins/mailfiles/katemailfilesplugin.desktop  
2013-05-03 06:36:20.000000000 +0200
+++ new/kate-4.10.4/kate/plugins/mailfiles/katemailfilesplugin.desktop  
2013-05-28 20:42:04.000000000 +0200
@@ -55,7 +55,7 @@
 Name[tg]=Файлҳои почта
 Name[tr]=Dosyaları e-posta ile gönder
 Name[ug]=خەت ھۆججەتلىرى
-Name[uk]=Файли пошти
+Name[uk]=Надсилання файлів поштою
 Name[x-test]=xxMail filesxx
 Name[zh_CN]=邮寄文件
 Name[zh_TW]=郵件檔案

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to