openSUSE Commits
Threads by month
- ----- 2025 -----
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
July 2013
- 1 participants
- 2024 discussions
Hello community,
here is the log from the commit of package rocs for openSUSE:Factory checked in at 2013-07-30 16:08:42
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/rocs (Old)
and /work/SRC/openSUSE:Factory/.rocs.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rocs"
Changes:
--------
--- /work/SRC/openSUSE:Factory/rocs/rocs.changes 2013-07-22 17:21:09.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.rocs.new/rocs.changes 2013-07-30 16:08:43.000000000 +0200
@@ -1,0 +2,7 @@
+Thu Jul 25 23:42:00 UTC 2013 - hrvoje.senjan(a)gmail.com
+
+- Update to 4.10.97
+ * KDE 4.11 RC 2 release
+ * See http://www.kde.org/announcements/announce-4.11-rc2.php
+
+-------------------------------------------------------------------
Old:
----
rocs-4.10.95.tar.xz
New:
----
rocs-4.10.97.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ rocs.spec ++++++
--- /var/tmp/diff_new_pack.xSdPHw/_old 2013-07-30 16:08:43.000000000 +0200
+++ /var/tmp/diff_new_pack.xSdPHw/_new 2013-07-30 16:08:43.000000000 +0200
@@ -17,7 +17,7 @@
Name: rocs
-Version: 4.10.95
+Version: 4.10.97
Release: 0
Summary: Graph Theory IDE
License: GPL-3.0+
++++++ rocs-4.10.95.tar.xz -> rocs-4.10.97.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rocs-4.10.95/App/Ui/MainWindow.cpp new/rocs-4.10.97/App/Ui/MainWindow.cpp
--- old/rocs-4.10.95/App/Ui/MainWindow.cpp 2013-07-10 01:03:40.000000000 +0200
+++ new/rocs-4.10.97/App/Ui/MainWindow.cpp 2013-07-23 11:00:17.000000000 +0200
@@ -138,6 +138,16 @@
// update rocs config version
Settings::setVersion(ROCS_VERSION_STR);
+
+ // disable save action from kpart, since we take care for the editor by global save action
+ // here "file_save" is the action identifier from katepartui.rc
+ // note that we may not use that name for our own actions
+ foreach(KActionCollection* ac, KActionCollection::allCollections()) {
+ if (ac->action("file_save")) {
+ ac->removeAction(ac->action("file_save"));
+ break; // we only expect that action once
+ }
+ }
}
MainWindow::~MainWindow()
@@ -965,7 +975,7 @@
// set console
// TODO this should part of a plugin interface to for setting up all engine modules
engine->registerGlobalObject(_outputWidget->consoleInterface(), "Console");
-
+
connect(engine, SIGNAL(scriptError(QString)), _outputWidget->consoleInterface(), SLOT(error(QString)));
connect(engine, SIGNAL(scriptInfo(QString)), _outputWidget->consoleInterface(), SLOT(log(QString)));
connect(engine, SIGNAL(sendDebug(QString)), _outputWidget->consoleInterface(), SLOT(debug(QString)));
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0
Hello community,
here is the log from the commit of package qrencode for openSUSE:Factory checked in at 2013-07-30 16:08:37
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/qrencode (Old)
and /work/SRC/openSUSE:Factory/.qrencode.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "qrencode"
Changes:
--------
--- /work/SRC/openSUSE:Factory/qrencode/qrencode.changes 2013-02-18 13:59:37.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.qrencode.new/qrencode.changes 2013-07-30 16:08:38.000000000 +0200
@@ -1,0 +2,9 @@
+Fri Jul 26 20:24:06 UTC 2013 - asterios.dramis(a)gmail.com
+
+- Update to 3.4.2:
+ * Memory leak bug has been fixed.
+ * Micro QR Code encoding bug has been fixed.
+ * String splitting has been improved.
+- Removed qrencode-libpng16.patch (fixed upstream).
+
+-------------------------------------------------------------------
Old:
----
qrencode-3.4.1.tar.bz2
qrencode-libpng16.patch
New:
----
qrencode-3.4.2.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ qrencode.spec ++++++
--- /var/tmp/diff_new_pack.ii2t5o/_old 2013-07-30 16:08:39.000000000 +0200
+++ /var/tmp/diff_new_pack.ii2t5o/_new 2013-07-30 16:08:39.000000000 +0200
@@ -16,16 +16,16 @@
#
+%define so_ver 3
+
Name: qrencode
-Version: 3.4.1
+Version: 3.4.2
Release: 0
Summary: C library for encoding data in a QR Code symbol
License: LGPL-2.1+
-Group: Development/Libraries/C and C++
+Group: Productivity/Graphics/Other
Url: http://fukuchi.org/works/qrencode/index.en.html
-Source: http://fukuchi.org/works/qrencode/%{name}-%{version}.tar.bz2
-# PATCH-FIX-UPSTREAM libharu-libpng16.patch -- fix build with libpng 1.6.0, sent to kentaro(a)fukuchi.org
-Patch0: qrencode-libpng16.patch
+Source0: http://fukuchi.org/works/qrencode/%{name}-%{version}.tar.bz2
BuildRequires: pkg-config
%if !0%{?sles_version}
BuildRequires: pkgconfig(libpng)
@@ -36,43 +36,47 @@
%description
Libqrencode is a C library for encoding data in a QR Code symbol, a kind of 2D
-symbology that can be scanned by handy terminals such as a mobile phone with CCD.
-The capacity of QR Code is up to 7000 digits or 4000 characters, and is highly robust.
+symbology that can be scanned by handy terminals such as a mobile phone with
+CCD. The capacity of QR Code is up to 7000 digits or 4000 characters, and is
+highly robust.
-%package -n libqrencode3
+%package -n libqrencode%{so_ver}
Summary: C library for encoding data in a QR Code symbol
-Group: Development/Libraries/C and C++
+Group: System/Libraries
-%description -n libqrencode3
+%description -n libqrencode%{so_ver}
Libqrencode is a C library for encoding data in a QR Code symbol, a kind of 2D
-symbology that can be scanned by handy terminals such as a mobile phone with CCD.
-The capacity of QR Code is up to 7000 digits or 4000 characters, and is highly robust.
+symbology that can be scanned by handy terminals such as a mobile phone with
+CCD. The capacity of QR Code is up to 7000 digits or 4000 characters, and is
+highly robust.
%package devel
-Summary: C library for encoding data in a QR Code symbol
+Summary: C library for encoding data in a QR Code symbol - Development files
Group: Development/Libraries/C and C++
-Requires: libqrencode3 = %{version}
+Requires: libqrencode%{so_ver} = %{version}
%description devel
Libqrencode is a C library for encoding data in a QR Code symbol, a kind of 2D
-symbology that can be scanned by handy terminals such as a mobile phone with CCD.
-The capacity of QR Code is up to 7000 digits or 4000 characters, and is highly robust.
+symbology that can be scanned by handy terminals such as a mobile phone with
+CCD. The capacity of QR Code is up to 7000 digits or 4000 characters, and is
+highly robust.
+
+This package contains the development files for libqrencode.
%prep
%setup -q
-%patch0 -p1
%build
-%configure --with-tools
+%configure
make %{?_smp_mflags}
%install
make DESTDIR=%{buildroot} install
rm -f %{buildroot}%{_libdir}/*.la
-%post -n libqrencode3 -p /sbin/ldconfig
+%post -n libqrencode%{so_ver} -p /sbin/ldconfig
-%postun -n libqrencode3 -p /sbin/ldconfig
+%postun -n libqrencode%{so_ver} -p /sbin/ldconfig
%files
%defattr(-,root,root,-)
@@ -80,9 +84,9 @@
%doc %{_mandir}/man1/qrencode.1.gz
%{_bindir}/qrencode
-%files -n libqrencode3
+%files -n libqrencode%{so_ver}
%defattr(-,root,root,-)
-%{_libdir}/libqrencode.so.*
+%{_libdir}/libqrencode.so.%{so_ver}*
%files devel
%defattr(-,root,root,-)
++++++ qrencode-3.4.1.tar.bz2 -> qrencode-3.4.2.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qrencode-3.4.1/ChangeLog new/qrencode-3.4.2/ChangeLog
--- old/qrencode-3.4.1/ChangeLog 2012-10-17 18:20:47.000000000 +0200
+++ new/qrencode-3.4.2/ChangeLog 2013-03-01 10:13:16.000000000 +0100
@@ -1,3 +1,44 @@
+2013.03.01 Kentaro FUKUCHI <kentaro(a)fukuchi.org>
+ * README, NEWS:
+ - Documentation update.
+ * Version 3.4.2 has been released.
+
+2013.02.26 Kentaro FUKUCHI <kentaro(a)fukuchi.org>
+ * split.c, tests/test_split.c:
+ - Applied Viona's bug fix patch. (Thanks to Viona)
+ - Additional switching cost between AN and Num mode has been included
+ correctly.
+ - Additional switching cost between 8 and AN/Num mode has been included
+ correctly.
+ - New test case has been added.
+
+2013.02.16 Kentaro FUKUCHI <kentaro(a)fukuchi.org>
+ [3.4, master]
+ * configure.ac, README, NEWS:
+ - Bumped version to 3.4.2.
+
+2013.02.16 Kentaro FUKUCHI <kentaro(a)fukuchi.org>
+ * qrenc.c:
+ - Now it includes "string.h" by itself for libpng16. (Thanks to Petr)
+
+2012.11.30 Kentaro FUKUCHI <kentaro(a)fukuchi.org>
+ * qrencode.h
+ - Doxygen documents improved.
+
+2012.11.09 Kentaro FUKUCHI <kentaro(a)fukuchi.org>
+ * qrinput.c:
+ - Code cleanup.
+
+2012.11.08 Kentaro FUKUCHI <kentaro(a)fukuchi.org>
+ * qrinput.c:
+ - Memory leak bug has been fixed. (issue #24) (Thanks to chisj)
+ * qrencode.c:
+ - Incorrect bit extraction bug in QRcode_encodeMaskMQR() has been fixed.
+ (issue #25) (Thanks to vlad417)
+ * tests/test_qrencode.c:
+ - Added NUL checks for malloc-related bugs using failmalloc.
+ - Added a new test for issue #25. (Thanks to vlad417)
+
2012.10.17 Kentaro FUKUCHI <kentaro(a)fukuchi.org>
[3.4]
* NEWS:
@@ -16,6 +57,8 @@
2012.10.15 Kentaro FUKUCHI <kentaro(a)fukuchi.org>
[3.4]
* Version 3.4.0 has been released.
+ [master]
+ * Merged 3.4.0.
2012.10.13 Kentaro FUKUCHI <kentaro(a)fukuchi.org>
[3.4]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qrencode-3.4.1/NEWS new/qrencode-3.4.2/NEWS
--- old/qrencode-3.4.1/NEWS 2012-10-17 18:25:00.000000000 +0200
+++ new/qrencode-3.4.2/NEWS 2013-03-01 03:32:14.000000000 +0100
@@ -1,6 +1,16 @@
libqrencode NEWS - Overview of changes
======================================
+Version 3.4.2 (2013.3.1)
+------------------------
+* Bug fix release. (Thanks to chisj, vlad417, Petr and Viona)
+
+
+Release Note:
+Micro QR Code encoder had a bug that caused incorrect output (issue #25). Now
+the bug has been fixed. Memory leak bug (#24) and insufficient string splitting
+bug have been fixed.
+
Version 3.4.1 (2012.10.17)
--------------------------
* Bug fix release.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qrencode-3.4.1/README new/qrencode-3.4.2/README
--- old/qrencode-3.4.1/README 2012-10-15 08:03:28.000000000 +0200
+++ new/qrencode-3.4.2/README 2013-03-01 09:32:23.000000000 +0100
@@ -1,4 +1,4 @@
-libqrencode 3.4.1 - QR Code encoding library
+libqrencode 3.4.2 - QR Code encoding library
GENERAL INFORMATION
===================
@@ -134,8 +134,9 @@
Yutaka Niibe (gniibe) - various bug fix patches
Dan Storm (Repox) - SVG support patch
Lennart Poettering (mezcalero)
- - Improved text art patch
-Yann Droneaud - Improved input validation patch
+ - improved text art patch
+Yann Droneaud - improved input validation patch
+Viona - bug fix patch for string splitting
Shigeyuki Hirai, Paul Janssens, wangsai, Gavan Fantom, Matthew Baker, Rob Ryan,
-Fred Steinhaeuser, Terry Burton
+Fred Steinhaeuser, Terry Burton, chisj, vlad417, Petr
- bug report / suggestion
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qrencode-3.4.1/configure new/qrencode-3.4.2/configure
--- old/qrencode-3.4.1/configure 2012-10-17 14:25:52.000000000 +0200
+++ new/qrencode-3.4.2/configure 2013-03-01 09:38:11.000000000 +0100
@@ -2149,7 +2149,7 @@
MAJOR_VERSION=3
MINOR_VERSION=4
-MICRO_VERSION=1
+MICRO_VERSION=2
VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qrencode-3.4.1/configure.ac new/qrencode-3.4.2/configure.ac
--- old/qrencode-3.4.1/configure.ac 2012-10-15 08:03:28.000000000 +0200
+++ new/qrencode-3.4.2/configure.ac 2013-02-17 07:16:26.000000000 +0100
@@ -2,7 +2,7 @@
MAJOR_VERSION=3
MINOR_VERSION=4
-MICRO_VERSION=1
+MICRO_VERSION=2
VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION
AC_SUBST(MAJOR_VERSION)
AC_SUBST(MINOR_VERSION)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qrencode-3.4.1/qrenc.c new/qrencode-3.4.2/qrenc.c
--- old/qrencode-3.4.1/qrenc.c 2012-10-15 08:03:28.000000000 +0200
+++ new/qrencode-3.4.2/qrenc.c 2013-02-17 07:16:26.000000000 +0100
@@ -26,6 +26,7 @@
#endif
#include <stdio.h>
#include <stdlib.h>
+#include <string.h>
#include <png.h>
#include <getopt.h>
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qrencode-3.4.1/qrencode.c new/qrencode-3.4.2/qrencode.c
--- old/qrencode-3.4.1/qrencode.c 2012-10-15 08:03:28.000000000 +0200
+++ new/qrencode-3.4.2/qrencode.c 2012-11-26 13:48:55.000000000 +0100
@@ -584,7 +584,7 @@
for(i=0; i<raw->dataLength + raw->eccLength; i++) {
code = MQRraw_getCode(raw);
if(raw->oddbits && i == raw->dataLength - 1) {
- bit = 1 << raw->oddbits;
+ bit = 1 << (raw->oddbits - 1);
for(j=0; j<raw->oddbits; j++) {
p = FrameFiller_next(filler);
if(p == NULL) goto EXIT;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qrencode-3.4.1/qrencode.h new/qrencode-3.4.2/qrencode.h
--- old/qrencode-3.4.1/qrencode.h 2012-10-15 08:03:28.000000000 +0200
+++ new/qrencode-3.4.2/qrencode.h 2013-02-17 07:16:26.000000000 +0100
@@ -24,10 +24,10 @@
*
* \section encoding Encoding
*
- * There are two ways to encode data: <b>encoding a string</b> or
+ * There are two methods to encode data: <b>encoding a string/data</b> or
* <b>encoding a structured data</b>.
*
- * \subsection encoding-string Encoding a string
+ * \subsection encoding-string Encoding a string/data
* You can encode a string by calling QRcode_encodeString().
* The given string is parsed automatically and encoded. If you want to encode
* data that can be represented as a C string style (NUL terminated), you can
@@ -36,11 +36,11 @@
* If the input data contains Kanji (Shift-JIS) characters and you want to
* encode them as Kanji in QR Code, you should give QR_MODE_KANJI as a hint.
* Otherwise, all of non-alphanumeric characters are encoded as 8 bit data.
- * If you want to encode a whole string in 8 bit mode, use
+ * If you want to encode a whole string in 8 bit mode, you can use
* QRcode_encodeString8bit() instead.
*
- * Please note that a C string can not contain NUL character. If your data
- * contains NUL, you should chose the second way.
+ * Please note that a C string can not contain NUL characters. If your data
+ * contains NUL, you must use QRcode_encodeData().
*
* \subsection encoding-input Encoding a structured data
* You can construct a structured input data manually. If the structure of the
@@ -408,11 +408,12 @@
* @param version version of the symbol. If 0, the library chooses the minimum
* version for the given input data.
* @param level error correction level.
- * @param hint tell the library how non-alphanumerical characters should be
- * encoded. If QR_MODE_KANJI is given, kanji characters will be
- * encoded as Shif-JIS characters. If QR_MODE_8 is given, all of
- * non-alphanumerical characters will be encoded as is. If you want
- * to embed UTF-8 string, choose this.
+ * @param hint tell the library how Japanese Kanji characters should be
+ * encoded. If QR_MODE_KANJI is given, the library assumes that the
+ * given string contains Shift-JIS characters and encodes them in
+ * Kanji-mode. If QR_MODE_8 is given, all of non-alphanumerical
+ * characters will be encoded as is. If you want to embed UTF-8
+ * string, choose this. Other mode will cause EINVAL error.
* @param casesensitive case-sensitive(1) or not(0).
* @return an instance of QRcode class. The version of the result QRcode may
* be larger than the designated version. On error, NULL is returned,
@@ -483,11 +484,12 @@
* @param string input string. It must be NUL terminated.
* @param version version of the symbol.
* @param level error correction level.
- * @param hint tell the library how non-alphanumerical characters should be
- * encoded. If QR_MODE_KANJI is given, kanji characters will be
- * encoded as Shif-JIS characters. If QR_MODE_8 is given, all of
- * non-alphanumerical characters will be encoded as is. If you want
- * to embed UTF-8 string, choose this.
+ * @param hint tell the library how Japanese Kanji characters should be
+ * encoded. If QR_MODE_KANJI is given, the library assumes that the
+ * given string contains Shift-JIS characters and encodes them in
+ * Kanji-mode. If QR_MODE_8 is given, all of non-alphanumerical
+ * characters will be encoded as is. If you want to embed UTF-8
+ * string, choose this. Other mode will cause EINVAL error.
* @param casesensitive case-sensitive(1) or not(0).
* @return a singly-linked list of QRcode. On error, NULL is returned, and
* errno is set to indicate the error. See Exceptions for the details.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qrencode-3.4.1/qrencode.spec new/qrencode-3.4.2/qrencode.spec
--- old/qrencode-3.4.1/qrencode.spec 2012-10-17 14:26:42.000000000 +0200
+++ new/qrencode-3.4.2/qrencode.spec 2013-03-01 09:39:00.000000000 +0100
@@ -1,4 +1,4 @@
-%define ver 3.4.1
+%define ver 3.4.2
%define rel 1
Name: qrencode
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qrencode-3.4.1/qrinput.c new/qrencode-3.4.2/qrinput.c
--- old/qrencode-3.4.1/qrinput.c 2012-10-15 00:36:13.000000000 +0200
+++ new/qrencode-3.4.2/qrinput.c 2012-11-26 13:48:55.000000000 +0100
@@ -1618,16 +1618,19 @@
list = list->next;
} else {
bytes = QRinput_lengthOfCode(list->mode, input->version, maxbits - bits);
+ p = QRinput_new2(input->version, input->level);
+ if(p == NULL) goto ABORT;
if(bytes > 0) {
/* Splits this entry into 2 entries. */
ret = QRinput_splitEntry(list, bytes);
- if(ret < 0) goto ABORT;
+ if(ret < 0) {
+ QRinput_free(p);
+ goto ABORT;
+ }
/* First half is the tail of the current input. */
next = list->next;
list->next = NULL;
/* Second half is the head of the next input, p.*/
- p = QRinput_new2(input->version, input->level);
- if(p == NULL) goto ABORT;
p->head = next;
/* Renew QRinput.tail. */
p->tail = input->tail;
@@ -1638,19 +1641,21 @@
} else {
/* Current entry will go to the next input. */
prev->next = NULL;
- p = QRinput_new2(input->version, input->level);
- if(p == NULL) goto ABORT;
p->head = list;
p->tail = input->tail;
input->tail = prev;
}
ret = QRinput_Struct_appendInput(s, input);
- if(ret < 0) goto ABORT;
+ if(ret < 0) {
+ QRinput_free(p);
+ goto ABORT;
+ }
input = p;
bits = 0;
}
}
- QRinput_Struct_appendInput(s, input);
+ ret = QRinput_Struct_appendInput(s, input);
+ if(ret < 0) goto ABORT;
if(s->size > MAX_STRUCTURED_SYMBOLS) {
QRinput_Struct_free(s);
errno = ERANGE;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qrencode-3.4.1/split.c new/qrencode-3.4.2/split.c
--- old/qrencode-3.4.1/split.c 2012-01-31 04:07:56.000000000 +0100
+++ new/qrencode-3.4.2/split.c 2013-02-26 03:52:17.000000000 +0100
@@ -140,6 +140,7 @@
}
dif = QRinput_estimateBitsModeAn(p - string) /* + 4 + la */
+ QRinput_estimateBitsModeNum(q - p) + 4 + ln
+ + (isalnum(*q)?(4 + ln):0)
- QRinput_estimateBitsModeAn(q - string) /* - 4 - la */;
if(dif < 0) {
break;
@@ -192,10 +193,12 @@
int ret;
int run;
int dif;
- int la, ln;
+ int la, ln, l8;
+ int swcost;
la = QRspec_lengthIndicator(QR_MODE_AN, input->version);
ln = QRspec_lengthIndicator(QR_MODE_NUM, input->version);
+ l8 = QRspec_lengthIndicator(QR_MODE_8, input->version);
p = string + 1;
while(*p != '\0') {
@@ -208,8 +211,14 @@
while(isdigit(*q)) {
q++;
}
+ if(Split_identifyMode(q, hint) == QR_MODE_8) {
+ swcost = 4 + l8;
+ } else {
+ swcost = 0;
+ }
dif = QRinput_estimateBitsMode8(p - string) /* + 4 + l8 */
+ QRinput_estimateBitsModeNum(q - p) + 4 + ln
+ + swcost
- QRinput_estimateBitsMode8(q - string) /* - 4 - l8 */;
if(dif < 0) {
break;
@@ -221,8 +230,14 @@
while(isalnum(*q)) {
q++;
}
+ if(Split_identifyMode(q, hint) == QR_MODE_8) {
+ swcost = 4 + l8;
+ } else {
+ swcost = 0;
+ }
dif = QRinput_estimateBitsMode8(p - string) /* + 4 + l8 */
+ QRinput_estimateBitsModeAn(q - p) + 4 + la
+ + swcost
- QRinput_estimateBitsMode8(q - string) /* - 4 - l8 */;
if(dif < 0) {
break;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qrencode-3.4.1/tests/test_qrencode.c new/qrencode-3.4.2/tests/test_qrencode.c
--- old/qrencode-3.4.1/tests/test_qrencode.c 2012-10-15 00:36:13.000000000 +0200
+++ new/qrencode-3.4.2/tests/test_qrencode.c 2012-11-26 13:48:55.000000000 +0100
@@ -19,6 +19,15 @@
'+', '-', '.', '/', ':'
};
+typedef struct {
+ char *str;
+ int version;
+ QRecLevel level;
+ QRencodeMode hint;
+ int casesensitive;
+} TestString;
+#define _countof(_Array) (sizeof(_Array) / sizeof(_Array[0]))
+
#define drand(__scale__) ((__scale__) * (double)rand() / ((double)RAND_MAX + 1.0))
int inputSize(QRinput *input)
@@ -245,6 +254,7 @@
testStart("Test format information(level L,mask 0)");
width = QRspec_getWidth(1);
frame = QRspec_newFrame(1);
+ if(frame == NULL) goto ABORT;
format = QRspec_getFormatInfo(1, QR_ECLEVEL_L);
blacks = Mask_writeFormatInformation(width, frame, 1, QR_ECLEVEL_L);
decode = 0;
@@ -294,6 +304,7 @@
free(frame);
+ABORT:
testEnd(0);
}
@@ -336,11 +347,13 @@
testStart("Test encode (1-M)");
stream = QRinput_new();
+ if(stream == NULL) goto ABORT;
QRinput_append(stream, QR_MODE_NUM, 8, (unsigned char *)num);
for(mask=0; mask<8; mask++) {
QRinput_setVersion(stream, 1);
QRinput_setErrorCorrectionLevel(stream, QR_ECLEVEL_M);
qrcode = QRcode_encodeMask(stream, mask);
+ if(qrcode == NULL) goto ABORT;
w = qrcode->width;
frame = qrcode->data;
for(y=0; y<w; y++) {
@@ -354,6 +367,7 @@
QRcode_free(qrcode);
}
QRinput_free(stream);
+ABORT:
testEnd(err);
}
@@ -813,6 +827,38 @@
testFinish();
}
+void test_oddBitCalcMQR(void)
+{
+ /* test issue #25 (odd bits calculation bug) */
+ /* test pattern contributed by vlad417 */
+ TestString tests[] = {
+ {"46194", 1, QR_ECLEVEL_L, QR_MODE_8, 1},
+ {"WBA5Y47YPQQ", 3, QR_ECLEVEL_L, QR_MODE_8, 1}
+ };
+ QRcode *qrcode;
+ QRdata *qrdata;
+ int i;
+
+ testStart("Odd bits calculation bug checking (MQR).");
+
+ for(i=0; i<_countof(tests); i++) {
+ qrcode = QRcode_encodeStringMQR(tests[i].str,
+ tests[i].version,
+ tests[i].level,
+ tests[i].hint,
+ tests[i].casesensitive);
+ assert_nonnull(qrcode, "Failed to encode: %s\n", tests[i].str);
+ if(qrcode == NULL) continue;
+ qrdata = QRcode_decodeMQR(qrcode);
+ assert_nonnull(qrdata, "Failed to decode.\n");
+ assert_zero(strcmp((char *)qrdata->data, tests[i].str), "Decoded data (%s) mismatched (%s)\n", (char *)qrdata->data, tests[i].str);
+ if(qrdata != NULL) QRdata_free(qrdata);
+ QRcode_free(qrcode);
+ }
+
+ testFinish();
+}
+
void test_mqrencode(void)
{
char *str = "MICROQR";
@@ -910,6 +956,7 @@
test_formatInfoMQR();
test_encodeTooLongMQR();
test_decodeShortMQR();
+ test_oddBitCalcMQR();
test_mqrencode();
test_apiversion();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/qrencode-3.4.1/tests/test_split.c new/qrencode-3.4.2/tests/test_split.c
--- old/qrencode-3.4.1/tests/test_split.c 2012-10-15 00:36:13.000000000 +0200
+++ new/qrencode-3.4.2/tests/test_split.c 2013-02-27 05:59:13.000000000 +0100
@@ -394,6 +394,138 @@
QRinput_free(input);
}
+void test_splitAnNAn(void)
+{
+ QRinput *input1, *input2, *input3;
+ int s1, s2, s3;
+ char *strall = "326A80A9C5004C0875571F8B71C311F2F86";
+ char *str1 = "326A80A9C5004C";
+ char *str2 = "0875571";
+ char *str3 = "F8B71C311F2F86";
+
+ testStart("Split test: An-N-An switching cost test");
+ input1 = QRinput_new2(0, QR_ECLEVEL_L);
+ Split_splitStringToQRinput(strall, input1, QR_MODE_8, 0);
+
+ input2 = QRinput_new();
+ QRinput_append(input2, QR_MODE_AN, 35, (unsigned char *)strall);
+
+ input3 = QRinput_new();
+ QRinput_append(input3, QR_MODE_AN, 14, (unsigned char *)str1);
+ QRinput_append(input3, QR_MODE_NUM, 7, (unsigned char *)str2);
+ QRinput_append(input3, QR_MODE_AN, 14, (unsigned char *)str3);
+
+ s1 = inputSize(input1);
+ s2 = inputSize(input2);
+ s3 = inputSize(input3);
+
+ assert_equal(s1, s2, "Incorrect split");
+ assert_exp(s2 < s3, "Incorrect estimation");
+ testFinish();
+ QRinput_free(input1);
+ QRinput_free(input2);
+ QRinput_free(input3);
+}
+
+void test_splitAn8An(void)
+{
+ QRinput *input1, *input2, *input3;
+ int s1, s2, s3;
+ char *strall = "ABCDabcdefABCD";
+ char *str1 = "ABCD";
+ char *str2 = "abcdef";
+ char *str3 = "ABCD";
+
+ testStart("Split test: An-8-An switching cost test");
+ input1 = QRinput_new2(0, QR_ECLEVEL_L);
+ Split_splitStringToQRinput(strall, input1, QR_MODE_8, 1);
+
+ input2 = QRinput_new();
+ QRinput_append(input2, QR_MODE_8, 14, (unsigned char *)strall);
+
+ input3 = QRinput_new();
+ QRinput_append(input3, QR_MODE_AN, 4, (unsigned char *)str1);
+ QRinput_append(input3, QR_MODE_8, 6, (unsigned char *)str2);
+ QRinput_append(input3, QR_MODE_AN, 4, (unsigned char *)str3);
+
+ s1 = inputSize(input1);
+ s2 = inputSize(input2);
+ s3 = inputSize(input3);
+
+ assert_equal(s1, s2, "Incorrect split");
+ assert_exp(s2 < s3, "Incorrect estimation");
+ testFinish();
+ QRinput_free(input1);
+ QRinput_free(input2);
+ QRinput_free(input3);
+}
+
+void test_split8An8(void)
+{
+ QRinput *input1, *input2, *input3;
+ int s1, s2, s3;
+ char *strall = "abcABCDEFGHabc";
+ char *str1 = "abc";
+ char *str2 = "ABCDEFGH";
+ char *str3 = "abc";
+
+ testStart("Split test: 8-An-8 switching cost test");
+ input1 = QRinput_new2(0, QR_ECLEVEL_L);
+ Split_splitStringToQRinput(strall, input1, QR_MODE_8, 1);
+
+ input2 = QRinput_new();
+ QRinput_append(input2, QR_MODE_8, 14, (unsigned char *)strall);
+
+ input3 = QRinput_new();
+ QRinput_append(input3, QR_MODE_8, 3, (unsigned char *)str1);
+ QRinput_append(input3, QR_MODE_AN, 8, (unsigned char *)str2);
+ QRinput_append(input3, QR_MODE_8, 3, (unsigned char *)str3);
+
+ s1 = inputSize(input1);
+ s2 = inputSize(input2);
+ s3 = inputSize(input3);
+
+ assert_equal(s1, s2, "Incorrect split");
+ assert_exp(s2 < s3, "Incorrect estimation");
+ testFinish();
+ QRinput_free(input1);
+ QRinput_free(input2);
+ QRinput_free(input3);
+}
+
+void test_split8N8(void)
+{
+ QRinput *input1, *input2, *input3;
+ int s1, s2, s3;
+ char *strall = "abc1234abc";
+ char *str1 = "abc";
+ char *str2 = "1234";
+ char *str3 = "abc";
+
+ testStart("Split test: 8-N-8 switching cost test");
+ input1 = QRinput_new2(0, QR_ECLEVEL_L);
+ Split_splitStringToQRinput(strall, input1, QR_MODE_8, 1);
+
+ input2 = QRinput_new();
+ QRinput_append(input2, QR_MODE_8, 10, (unsigned char *)strall);
+
+ input3 = QRinput_new();
+ QRinput_append(input3, QR_MODE_8, 3, (unsigned char *)str1);
+ QRinput_append(input3, QR_MODE_NUM, 4, (unsigned char *)str2);
+ QRinput_append(input3, QR_MODE_8, 3, (unsigned char *)str3);
+
+ s1 = inputSize(input1);
+ s2 = inputSize(input2);
+ s3 = inputSize(input3);
+
+ assert_equal(s1, s2, "Incorrect split");
+ assert_exp(s2 < s3, "Incorrect estimation");
+ testFinish();
+ QRinput_free(input1);
+ QRinput_free(input2);
+ QRinput_free(input3);
+}
+
int main(void)
{
test_split1();
@@ -407,6 +539,10 @@
test_split3c();
test_toupper();
test_splitNum8();
+ test_splitAnNAn();
+ test_splitAn8An();
+ test_split8An8();
+ test_split8N8();
report();
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0
Hello community,
here is the log from the commit of package python-kde4 for openSUSE:Factory checked in at 2013-07-30 16:08:31
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-kde4 (Old)
and /work/SRC/openSUSE:Factory/.python-kde4.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-kde4"
Changes:
--------
--- /work/SRC/openSUSE:Factory/python-kde4/python-kde4.changes 2013-07-25 15:16:06.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.python-kde4.new/python-kde4.changes 2013-07-30 16:08:32.000000000 +0200
@@ -1,0 +2,7 @@
+Thu Jul 25 23:41:00 UTC 2013 - hrvoje.senjan(a)gmail.com
+
+- Update to 4.10.97
+ * KDE 4.11 RC 2 release
+ * See http://www.kde.org/announcements/announce-4.11-rc2.php
+
+-------------------------------------------------------------------
python3-kde4.changes: same change
Old:
----
pykde4-4.10.95.tar.xz
New:
----
pykde4-4.10.97.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ python-kde4.spec ++++++
--- /var/tmp/diff_new_pack.8TGx7f/_old 2013-07-30 16:08:33.000000000 +0200
+++ /var/tmp/diff_new_pack.8TGx7f/_new 2013-07-30 16:08:33.000000000 +0200
@@ -17,7 +17,7 @@
Name: python-kde4
-Version: 4.10.95
+Version: 4.10.97
Release: 0
Summary: Python bindings for KDE 4
License: LGPL-2.1+ and GPL-2.0+
python3-kde4.spec: same change
++++++ pykde4-4.10.95.tar.xz -> pykde4-4.10.97.tar.xz ++++++
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0
Hello community,
here is the log from the commit of package poxml for openSUSE:Factory checked in at 2013-07-30 16:08:25
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/poxml (Old)
and /work/SRC/openSUSE:Factory/.poxml.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "poxml"
Changes:
--------
--- /work/SRC/openSUSE:Factory/poxml/poxml.changes 2013-07-22 17:21:04.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.poxml.new/poxml.changes 2013-07-30 16:08:28.000000000 +0200
@@ -1,0 +2,7 @@
+Thu Jul 25 23:39:30 UTC 2013 - hrvoje.senjan(a)gmail.com
+
+- Update to 4.10.97
+ * KDE 4.11 RC 2 release
+ * See http://www.kde.org/announcements/announce-4.11-rc2.php
+
+-------------------------------------------------------------------
Old:
----
poxml-4.10.95.tar.xz
New:
----
poxml-4.10.97.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ poxml.spec ++++++
--- /var/tmp/diff_new_pack.SYS8m4/_old 2013-07-30 16:08:28.000000000 +0200
+++ /var/tmp/diff_new_pack.SYS8m4/_new 2013-07-30 16:08:28.000000000 +0200
@@ -24,7 +24,7 @@
License: GPL-2.0 and GFDL-1.2
Group: System/GUI/KDE
Url: http://www.kde.org/
-Version: 4.10.95
+Version: 4.10.97
Release: 0
Source0: %{name}-%{version}.tar.xz
BuildRoot: %{_tmppath}/%{name}-%{version}-build
++++++ poxml-4.10.95.tar.xz -> poxml-4.10.97.tar.xz ++++++
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0
Hello community,
here is the log from the commit of package plasmoid-cwp for openSUSE:Factory checked in at 2013-07-30 16:08:20
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/plasmoid-cwp (Old)
and /work/SRC/openSUSE:Factory/.plasmoid-cwp.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "plasmoid-cwp"
Changes:
--------
--- /work/SRC/openSUSE:Factory/plasmoid-cwp/plasmoid-cwp.changes 2013-07-08 07:26:42.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.plasmoid-cwp.new/plasmoid-cwp.changes 2013-07-30 16:08:22.000000000 +0200
@@ -1,0 +2,8 @@
+Fri Jul 26 19:30:21 UTC 2013 - asterios.dramis(a)gmail.com
+
+- Update to version 1.8.1:
+ * xml: wetter.com: fixes (thanks to Evi1M4chine). Weather icons from weather
+ provider should be preferred over system icons!
+ * xml: [in,espanol,uk].weather.com: UV index fixed
+
+-------------------------------------------------------------------
Old:
----
98925-cwp-1.8.0.tar.bz2
New:
----
98925-cwp-1.8.1.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ plasmoid-cwp.spec ++++++
--- /var/tmp/diff_new_pack.JBAKSt/_old 2013-07-30 16:08:23.000000000 +0200
+++ /var/tmp/diff_new_pack.JBAKSt/_new 2013-07-30 16:08:23.000000000 +0200
@@ -18,7 +18,7 @@
Name: plasmoid-cwp
-Version: 1.8.0
+Version: 1.8.1
Release: 0
Summary: Customizable Weather Plasmoid
License: GPL-3.0+
++++++ 98925-cwp-1.8.0.tar.bz2 -> 98925-cwp-1.8.1.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cwp-1.8.0/ChangeLog new/cwp-1.8.1/ChangeLog
--- old/cwp-1.8.0/ChangeLog 2013-06-22 14:49:37.000000000 +0200
+++ new/cwp-1.8.1/ChangeLog 2013-07-25 23:32:22.000000000 +0200
@@ -1,3 +1,8 @@
+1.8.1
+=====
+- xml: wetter.com: fixes (thanks to Evi1M4chine). Weather icons from weather provider should be preferred over system icons!
+- xml: [in,espanol,uk].weather.com: UV index fixed
+
1.8.0
=====
- xml: myforecast.com: update time added
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cwp-1.8.0/README new/cwp-1.8.1/README
--- old/cwp-1.8.0/README 2013-06-22 14:49:37.000000000 +0200
+++ new/cwp-1.8.1/README 2013-07-25 23:32:22.000000000 +0200
@@ -1,5 +1,5 @@
=========================================
-Customizable Weather Plasmoid (CWP) 1.8.0
+Customizable Weather Plasmoid (CWP) 1.8.1
=========================================
This is another weather plasmoid.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cwp-1.8.0/data/br_weather_com.xml new/cwp-1.8.1/data/br_weather_com.xml
--- old/cwp-1.8.0/data/br_weather_com.xml 2013-06-22 14:49:37.000000000 +0200
+++ new/cwp-1.8.1/data/br_weather_com.xml 2013-07-25 23:32:22.000000000 +0200
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<custom_weather>
- <xml_file_version type="cwp" version="2013-06-22" name="br.weather.com" search_page="http://br.weather.com" example_zip="BRXX0043:1:BR" unit="C" />
+ <xml_file_version type="cwp" version="2013-07-25" name="br.weather.com" search_page="http://br.weather.com" example_zip="BRXX0043:1:BR" unit="C" />
<locale_settings locale="utf-8" encoding="utf8" />
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cwp-1.8.0/data/de_weather_com.xml new/cwp-1.8.1/data/de_weather_com.xml
--- old/cwp-1.8.0/data/de_weather_com.xml 2013-06-22 14:49:37.000000000 +0200
+++ new/cwp-1.8.1/data/de_weather_com.xml 2013-07-25 23:32:22.000000000 +0200
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<custom_weather>
- <xml_file_version type="cwp" version="2013-06-22" name="de.weather.com" search_page="http://de.weather.com" example_zip="GMXX0087:1:GM" unit="C" />
+ <xml_file_version type="cwp" version="2013-07-25" name="de.weather.com" search_page="http://de.weather.com" example_zip="GMXX0087:1:GM" unit="C" />
<locale_settings locale="utf-8" encoding="utf8" />
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cwp-1.8.0/data/espanol_weather_com.xml new/cwp-1.8.1/data/espanol_weather_com.xml
--- old/cwp-1.8.0/data/espanol_weather_com.xml 2013-06-22 14:49:37.000000000 +0200
+++ new/cwp-1.8.1/data/espanol_weather_com.xml 2013-07-25 23:32:22.000000000 +0200
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<custom_weather>
- <xml_file_version type="cwp" version="2013-06-22" name="espanol.weather.com" search_page="http://espanol.weather.com" example_zip="Ciudad-de-Mexico-MXDF0132" unit="C" />
+ <xml_file_version type="cwp" version="2013-07-25" name="espanol.weather.com" search_page="http://espanol.weather.com" example_zip="Ciudad-de-Mexico-MXDF0132" unit="C" />
<locale_settings locale="utf-8" encoding="utf8" />
@@ -55,7 +55,7 @@
dew_point="echo -n"
visibility="echo -n"
pressure="echo -n"
- uv_index="grep -A10 ndice\ de\ UV | grep [0-9] | sed -e "s/<[^>]*>//g""
+ uv_index="grep -A10 ndice\ de\ UV | grep dd | grep [0-9] | sed -e "s/<[^>]*>//g""
/>
<data_day1 url="url1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cwp-1.8.0/data/fr_weather_com.xml new/cwp-1.8.1/data/fr_weather_com.xml
--- old/cwp-1.8.0/data/fr_weather_com.xml 2013-06-22 14:49:37.000000000 +0200
+++ new/cwp-1.8.1/data/fr_weather_com.xml 2013-07-25 23:32:22.000000000 +0200
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<custom_weather>
- <xml_file_version type="cwp" version="2013-06-22" name="fr.weather.com" search_page="http://fr.weather.com" example_zip="FRXX0076:1:FR" unit="C" />
+ <xml_file_version type="cwp" version="2013-07-25" name="fr.weather.com" search_page="http://fr.weather.com" example_zip="FRXX0076:1:FR" unit="C" />
<locale_settings locale="utf-8" encoding="utf8" />
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cwp-1.8.0/data/freemeteo_com_celsius.xml new/cwp-1.8.1/data/freemeteo_com_celsius.xml
--- old/cwp-1.8.0/data/freemeteo_com_celsius.xml 2013-06-22 14:49:37.000000000 +0200
+++ new/cwp-1.8.1/data/freemeteo_com_celsius.xml 2013-07-25 23:32:22.000000000 +0200
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<custom_weather>
- <xml_file_version type="cwp" version="2013-06-22" name="freemeteo.com" search_page="http://freemeteo.com" example_zip="gid=3117735&la=4" unit="C" />
+ <xml_file_version type="cwp" version="2013-07-25" name="freemeteo.com" search_page="http://freemeteo.com" example_zip="gid=3117735&la=4" unit="C" />
<locale_settings locale="utf-8" encoding="utf8" />
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cwp-1.8.0/data/freemeteo_com_fahrenheit.xml new/cwp-1.8.1/data/freemeteo_com_fahrenheit.xml
--- old/cwp-1.8.0/data/freemeteo_com_fahrenheit.xml 2013-06-22 14:49:37.000000000 +0200
+++ new/cwp-1.8.1/data/freemeteo_com_fahrenheit.xml 2013-07-25 23:32:22.000000000 +0200
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<custom_weather>
- <xml_file_version type="cwp" version="2013-06-22" name="freemeteo.com" search_page="http://freemeteo.com" example_zip="gid=3117735&la=4" unit="F" />
+ <xml_file_version type="cwp" version="2013-07-25" name="freemeteo.com" search_page="http://freemeteo.com" example_zip="gid=3117735&la=4" unit="F" />
<locale_settings locale="utf-8" encoding="utf8" />
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cwp-1.8.0/data/ilmeteo_it.xml new/cwp-1.8.1/data/ilmeteo_it.xml
--- old/cwp-1.8.0/data/ilmeteo_it.xml 2013-06-22 14:49:37.000000000 +0200
+++ new/cwp-1.8.1/data/ilmeteo_it.xml 2013-07-25 23:32:22.000000000 +0200
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<custom_weather>
- <xml_file_version type="cwp" version="2013-06-22" name="ilmeteo.it" search_page="http://www.ilmeteo.it" example_zip="Roma" unit="C" />
+ <xml_file_version type="cwp" version="2013-07-25" name="ilmeteo.it" search_page="http://www.ilmeteo.it" example_zip="Roma" unit="C" />
<locale_settings locale="utf-8" encoding="utf8" />
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cwp-1.8.0/data/in_weather_com.xml new/cwp-1.8.1/data/in_weather_com.xml
--- old/cwp-1.8.0/data/in_weather_com.xml 2013-06-22 14:49:37.000000000 +0200
+++ new/cwp-1.8.1/data/in_weather_com.xml 2013-07-25 23:32:22.000000000 +0200
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<custom_weather>
- <xml_file_version type="cwp" version="2013-06-22" name="in.weather.com" search_page="http://in.weather.com" example_zip="New-Delhi-INXX0096" unit="C" />
+ <xml_file_version type="cwp" version="2013-07-25" name="in.weather.com" search_page="http://in.weather.com" example_zip="New-Delhi-INXX0096" unit="C" />
<locale_settings locale="utf-8" encoding="utf8" />
@@ -55,7 +55,7 @@
dew_point="echo -n"
visibility="echo -n"
pressure="echo -n"
- uv_index="grep -A10 UV\ index | grep [0-9] | sed -e "s/<[^>]*>//g""
+ uv_index="grep -A10 UV\ index | grep dd | grep [0-9] | sed -e "s/<[^>]*>//g""
/>
<data_day1 url="url1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cwp-1.8.0/data/myforecast_com_celsius.xml new/cwp-1.8.1/data/myforecast_com_celsius.xml
--- old/cwp-1.8.0/data/myforecast_com_celsius.xml 2013-06-22 14:49:37.000000000 +0200
+++ new/cwp-1.8.1/data/myforecast_com_celsius.xml 2013-07-25 23:32:22.000000000 +0200
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<custom_weather>
- <xml_file_version type="cwp" version="2013-06-22" name="www.myforecast.com" search_page="http://www.myforecast.com" example_zip="12844" unit="C" />
+ <xml_file_version type="cwp" version="2013-07-25" name="www.myforecast.com" search_page="http://www.myforecast.com" example_zip="12844" unit="C" />
<locale_settings locale="en" encoding="latin1" />
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cwp-1.8.0/data/myforecast_com_fahrenheit.xml new/cwp-1.8.1/data/myforecast_com_fahrenheit.xml
--- old/cwp-1.8.0/data/myforecast_com_fahrenheit.xml 2013-06-22 14:49:37.000000000 +0200
+++ new/cwp-1.8.1/data/myforecast_com_fahrenheit.xml 2013-07-25 23:32:22.000000000 +0200
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<custom_weather>
- <xml_file_version type="cwp" version="2013-06-22" name="www.myforecast.com" search_page="http://www.myforecast.com" example_zip="12844" unit="F" />
+ <xml_file_version type="cwp" version="2013-07-25" name="www.myforecast.com" search_page="http://www.myforecast.com" example_zip="12844" unit="F" />
<locale_settings locale="en" encoding="latin1" />
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cwp-1.8.0/data/pogodynka_pl.xml new/cwp-1.8.1/data/pogodynka_pl.xml
--- old/cwp-1.8.0/data/pogodynka_pl.xml 2013-06-22 14:49:37.000000000 +0200
+++ new/cwp-1.8.1/data/pogodynka_pl.xml 2013-07-25 23:32:22.000000000 +0200
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<custom_weather>
- <xml_file_version type="cwp" version="2013-06-22" name="pogodynka.pl" search_page="http://www.pogodynka.pl" example_zip="polska/warszawa_warszawa" unit="C" />
+ <xml_file_version type="cwp" version="2013-07-25" name="pogodynka.pl" search_page="http://www.pogodynka.pl" example_zip="polska/warszawa_warszawa" unit="C" />
<locale_settings locale="utf-8" encoding="utf8" />
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cwp-1.8.0/data/satellite_images.xml new/cwp-1.8.1/data/satellite_images.xml
--- old/cwp-1.8.0/data/satellite_images.xml 2013-06-22 14:49:37.000000000 +0200
+++ new/cwp-1.8.1/data/satellite_images.xml 2013-07-25 23:32:22.000000000 +0200
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<custom_weather>
- <xml_file_version type="cwp_satellite_images" version="2013-06-22" />
+ <xml_file_version type="cwp_satellite_images" version="2013-07-25" />
<!--Global-->
<image name="- - Global - -" url="" />
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cwp-1.8.0/data/uk_weather_com.xml new/cwp-1.8.1/data/uk_weather_com.xml
--- old/cwp-1.8.0/data/uk_weather_com.xml 2013-06-22 14:49:37.000000000 +0200
+++ new/cwp-1.8.1/data/uk_weather_com.xml 2013-07-25 23:32:22.000000000 +0200
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<custom_weather>
- <xml_file_version type="cwp" version="2013-06-22" name="uk.weather.com" search_page="http://uk.weather.com" example_zip="London-UKXX0085" unit="C" />
+ <xml_file_version type="cwp" version="2013-07-25" name="uk.weather.com" search_page="http://uk.weather.com" example_zip="London-UKXX0085" unit="C" />
<locale_settings locale="utf-8" encoding="utf8" />
@@ -55,7 +55,7 @@
dew_point="echo -n"
visibility="echo -n"
pressure="echo -n"
- uv_index="grep -A10 UV\ index | grep [0-9] | sed -e "s/<[^>]*>//g""
+ uv_index="grep -A10 UV\ index | grep dd | grep [0-9] | sed -e "s/<[^>]*>//g""
/>
<data_day1 url="url1"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cwp-1.8.0/data/wetter_com.xml new/cwp-1.8.1/data/wetter_com.xml
--- old/cwp-1.8.0/data/wetter_com.xml 2013-06-22 14:49:37.000000000 +0200
+++ new/cwp-1.8.1/data/wetter_com.xml 2013-07-25 23:32:22.000000000 +0200
@@ -1,60 +1,55 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<custom_weather>
- <xml_file_version type="cwp" version="2013-06-22" name="www.wetter.com" search_page="http://www.wetter.com" example_zip="DE0006515" unit="C" />
+ <xml_file_version type="cwp" version="2013-07-25" name="wetter.com" search_page="http://www.wetter.com" example_zip="DE0006515" unit="C" />
<locale_settings locale="utf-8" encoding="utf8" />
- <urlc urlc_prefix="http://www.wetter.com/wetter_aktuell/aktuelles_wetter/deutschland/" urlc_suffix=".html" urlc_follow="" />
-
+ <urlc urlc_prefix="http://www.wetter.com/wetter_aktuell/aktuelles_wetter/deutschland/" urlc_suffix=".html" urlc_follow="" />
<url1 url1_prefix="http://www.wetter.com/wetter_aktuell/wettervorhersage/16_tagesvorhersage/?i…" url1_suffix="" url1_follow="" />
-
<url2 url2_prefix="" url2_suffix="" url2_follow="" />
-
<url3 url3_prefix="" url3_suffix="" url3_follow="" />
-
<url4 url4_prefix="" url4_suffix="" url4_follow="" />
-
<url5 url5_prefix="" url5_suffix="" url5_follow="" />
-
<url6 url6_prefix="" url6_suffix="" url6_follow="" />
-
<url7 url7_prefix="" url7_suffix="" url7_follow="" />
<data_location url="urlc"
- location="grep \<title\> | sed -e "s/.*title>.*Wetter aktuell in \([^,]*\),.*/\1/""
- country="grep \<title\> | sed -e "s/.*title>.*Wetter aktuell in \([^,]*\),\([^,]*\).*/\2/""
+ location="grep '\<title\>' | sed -r "s/.*title>.*Wetter aktuell in ([^,]*),.*/\1/""
+ country="grep '\<title\>' | sed -r "s/.*title>.*Wetter aktuell in .*, ([^,]*) auf .*/\1/""
/>
<data_sun url="urlc"
- sunrise="grep -A 1 Sonnenaufgang\< | grep Uhr | sed -e "s/<[^>]*>\| \|Uhr//g""
- sunset="grep -A 1 Sonnenuntergang\< | grep Uhr | sed -e "s/<[^>]*>\| \|Uhr//g""
+ sunrise="grep -A 2 'Sonnenaufgang<br />' | tail -n 1 | sed -r 's/\s*([0-9]{1,2}:[0-9]{2}) .*/\1/'"
+ sunset="grep -A 2 'Sonnenuntergang<br />' | tail -n 1 | sed -r 's/\s*([0-9]{1,2}:[0-9]{2}) .*/\1/'"
/>
<data_current_temperature url="urlc"
- update_time="grep -A 9 forecastWeather | grep Uhr | sed -e 's/.* \([0-9:]*\) Uhr.*/\1/'"
- temperature="grep -A 4 degree | grep °C | sed -e "s/\s*\([^ \°]*\).*/\1/g""
+ update_time="grep -A 4 'Aktueller Stand' | grep : | sed -r 's/[^0-9]*([0-9]{1,2}:[0-9]{2}).*/\1/'"
+ temperature="grep -A 1 'class="degree"' | grep ° | sed -r 's/^\s*([^ ]+).*$/\1/'"
temperature_felt="echo -n"
/>
+
<data_current_wind url="urlc"
wind_code="grep '[Ww]ind</td' | sed -e 's/<[^>]*>\| *//g; s/ind$//'"
wind_speed="grep -A 1 '[Ww]ind</td' | tail -n 1 | sed -e 's/<[^>]*>\| *//g'"
wind="grep -A 1 '[Ww]ind</td' | tr -d '\r\n' | sed -e 's/<[^>]*>\|^ *//g; s/ */ @ /'"
/>
+
<data_current_icon url="urlc"
- icon="grep wstate_small | sed -e "s/.*wstate_small \([^\"]*\)_S.*/http:\/\/imgs.wetter.com\/layout\/1\/wx_icons\/day_s\/\1_b.gif/""
- icon_code="grep wstate_small | sed -e "s/.*wstate_small \([^\"]*\)_S.*/\1/; s/_//g""
- icon_text="grep -A 1 status | tail -n 1 | sed -e "s/<[^>]*>//g""
+ icon="grep 'weatherWidgetBoxLeft-weathericon-big' | sed -r 's~^.*class="([^ "]+ )*([dn]_[0-9]+_L)( [^ "]+)*".*$~http://ls1.wetter.com/img/icons/weather/large/\2.png~'"
+ icon_code="grep 'weatherWidgetBoxLeft-weathericon-big' | sed -r 's~^.*class="([^ "]+ )*([dn])_([0-9]+)_L( [^ "]+)*".*$~\2\3~'"
+ icon_text="grep -A 1 'class="status"' | tail -n 1 | sed -r 's/^ +| +$//g'"
/>
<data_current_additional url="urlc"
- humidity="grep -A 4 Relative\ Feuchte | grep % | sed -e "s/<[^>]*>//g""
+ humidity="grep -A 4 Relative\ Feuchte | grep % | sed -r 's/^\s*([^ ]+ %).*$/\1/'"
rain="echo -n"
- dew_point="grep -A 4 Taupunkt | grep \&deg | sed -e "s/<[^>]*>//g" | sed -e "s/\([^&]*\).*/\1/""
- visibility="grep -A 4 Sicht | grep km | sed -e "s/<[^>]*>//g""
- pressure="grep -A 4 Luftdruck | grep hPa | sed -e "s/<[^>]*>//g""
+ dew_point="grep -A 4 Taupunkt | grep ° | sed -r 's/^\s*([^ ]+).*$/\1/'"
+ visibility="grep -A 4 Sicht | grep km | sed -r 's/^\s*([^ ]+ km).*$/\1/'"
+ pressure="grep -A 4 Luftdruck | grep hPa | sed -r 's/^\s*([^ ]+ kPa).*$/\1/'"
uv_index="echo -n"
/>
@@ -62,8 +57,8 @@
name="grep date_text | head -n 1 | tail -n 1 | sed -e "s/.*date_text: \"\([^,]*\).*/\1/""
temperature_low="grep -B 4 date_text | grep min: | head -n 1 | tail -n 1 | sed -e "s/.*min: \([^,]*\).*/\1/""
temperature_high="grep -B 4 date_text | grep max: | head -n 1 | tail -n 1 | sed -e "s/.*max: \([^,]*\).*/\1/""
- icon="grep wstate_small | head -n 1 | tail -n 1 | sed -e "s/.*wstate_small \([^\"]*\)_S.*/http:\/\/imgs.wetter.com\/layout\/1\/wx_icons\/day_s\/\1_b.gif/""
- icon_code="grep wstate_small | head -n 1 | tail -n 1 | sed -e "s/.*wstate_small \([^\"]*\)_S.*/\1/" | sed -e "s/_//g""
+ icon="grep wstate_medium | head -n 1 | tail -n 1 | sed -r 's~^.*class="([^ "]+ )*([dn]_[0-9]+_M)( [^ "]+)*".*$~http://ls1.wetter.com/img/icons/weather/medium/\2.png~'"
+ icon_code="grep wstate_medium | head -n 1 | tail -n 1 | sed -r 's~^.*class="([^ "]+ )*([dn])_([0-9]+)_M( [^ "]+)*".*$~\2\3~'"
icon_text="grep dn3 | head -n 1 | tail -n 1 | sed -e "s/<[^>]*>//g""
/>
@@ -71,8 +66,8 @@
name="grep date_text | head -n 2 | tail -n 1 | sed -e "s/.*date_text: \"\([^,]*\).*/\1/""
temperature_low="grep -B 4 date_text | grep min: | head -n 2 | tail -n 1 | sed -e "s/.*min: \([^,]*\).*/\1/""
temperature_high="grep -B 4 date_text | grep max: | head -n 2 | tail -n 1 | sed -e "s/.*max: \([^,]*\).*/\1/""
- icon="grep wstate_small | head -n 2 | tail -n 1 | sed -e "s/.*wstate_small \([^\"]*\)_S.*/http:\/\/imgs.wetter.com\/layout\/1\/wx_icons\/day_s\/\1_b.gif/""
- icon_code="grep wstate_small | head -n 2 | tail -n 1 | sed -e "s/.*wstate_small \([^\"]*\)_S.*/\1/" | sed -e "s/_//g""
+ icon="grep wstate_medium | head -n 2 | tail -n 1 | sed -r 's~^.*class="([^ "]+ )*([dn]_[0-9]+_M)( [^ "]+)*".*$~http://ls1.wetter.com/img/icons/weather/medium/\2.png~'"
+ icon_code="grep wstate_medium | head -n 2 | tail -n 1 | sed -r 's~^.*class="([^ "]+ )*([dn])_([0-9]+)_M( [^ "]+)*".*$~\2\3~'"
icon_text="grep dn3 | head -n 2 | tail -n 1 | sed -e "s/<[^>]*>//g""
/>
@@ -80,8 +75,8 @@
name="grep date_text | head -n 3 | tail -n 1 | sed -e "s/.*date_text: \"\([^,]*\).*/\1/""
temperature_low="grep -B 4 date_text | grep min: | head -n 3 | tail -n 1 | sed -e "s/.*min: \([^,]*\).*/\1/""
temperature_high="grep -B 4 date_text | grep max: | head -n 3 | tail -n 1 | sed -e "s/.*max: \([^,]*\).*/\1/""
- icon="grep wstate_small | head -n 3 | tail -n 1 | sed -e "s/.*wstate_small \([^\"]*\)_S.*/http:\/\/imgs.wetter.com\/layout\/1\/wx_icons\/day_s\/\1_b.gif/""
- icon_code="grep wstate_small | head -n 3 | tail -n 1 | sed -e "s/.*wstate_small \([^\"]*\)_S.*/\1/" | sed -e "s/_//g""
+ icon="grep wstate_medium | head -n 3 | tail -n 1 | sed -r 's~^.*class="([^ "]+ )*([dn]_[0-9]+_M)( [^ "]+)*".*$~http://ls1.wetter.com/img/icons/weather/medium/\2.png~'"
+ icon_code="grep wstate_medium | head -n 3 | tail -n 1 | sed -r 's~^.*class="([^ "]+ )*([dn])_([0-9]+)_M( [^ "]+)*".*$~\2\3~'"
icon_text="grep dn3 | head -n 3 | tail -n 1 | sed -e "s/<[^>]*>//g""
/>
@@ -89,8 +84,8 @@
name="grep date_text | head -n 4 | tail -n 1 | sed -e "s/.*date_text: \"\([^,]*\).*/\1/""
temperature_low="grep -B 4 date_text | grep min: | head -n 4 | tail -n 1 | sed -e "s/.*min: \([^,]*\).*/\1/""
temperature_high="grep -B 4 date_text | grep max: | head -n 4 | tail -n 1 | sed -e "s/.*max: \([^,]*\).*/\1/""
- icon="grep wstate_small | head -n 4 | tail -n 1 | sed -e "s/.*wstate_small \([^\"]*\)_S.*/http:\/\/imgs.wetter.com\/layout\/1\/wx_icons\/day_s\/\1_b.gif/""
- icon_code="grep wstate_small | head -n 4 | tail -n 1 | sed -e "s/.*wstate_small \([^\"]*\)_S.*/\1/" | sed -e "s/_//g""
+ icon="grep wstate_medium | head -n 4 | tail -n 1 | sed -r 's~^.*class="([^ "]+ )*([dn]_[0-9]+_M)( [^ "]+)*".*$~http://ls1.wetter.com/img/icons/weather/medium/\2.png~'"
+ icon_code="grep wstate_medium | head -n 4 | tail -n 1 | sed -r 's~^.*class="([^ "]+ )*([dn])_([0-9]+)_M( [^ "]+)*".*$~\2\3~'"
icon_text="grep dn3 | head -n 4 | tail -n 1 | sed -e "s/<[^>]*>//g""
/>
@@ -98,8 +93,8 @@
name="grep date_text | head -n 5 | tail -n 1 | sed -e "s/.*date_text: \"\([^,]*\).*/\1/""
temperature_low="grep -B 4 date_text | grep min: | head -n 5 | tail -n 1 | sed -e "s/.*min: \([^,]*\).*/\1/""
temperature_high="grep -B 4 date_text | grep max: | head -n 5 | tail -n 1 | sed -e "s/.*max: \([^,]*\).*/\1/""
- icon="grep wstate_small | head -n 5 | tail -n 1 | sed -e "s/.*wstate_small \([^\"]*\)_S.*/http:\/\/imgs.wetter.com\/layout\/1\/wx_icons\/day_s\/\1_b.gif/""
- icon_code="grep wstate_small | head -n 5 | tail -n 1 | sed -e "s/.*wstate_small \([^\"]*\)_S.*/\1/" | sed -e "s/_//g""
+ icon="grep wstate_medium | head -n 5 | tail -n 1 | sed -r 's~^.*class="([^ "]+ )*([dn]_[0-9]+_M)( [^ "]+)*".*$~http://ls1.wetter.com/img/icons/weather/medium/\2.png~'"
+ icon_code="grep wstate_medium | head -n 5 | tail -n 1 | sed -r 's~^.*class="([^ "]+ )*([dn])_([0-9]+)_M( [^ "]+)*".*$~\2\3~'"
icon_text="grep dn3 | head -n 5 | tail -n 1 | sed -e "s/<[^>]*>//g""
/>
@@ -107,8 +102,8 @@
name="grep date_text | head -n 6 | tail -n 1 | sed -e "s/.*date_text: \"\([^,]*\).*/\1/""
temperature_low="grep -B 4 date_text | grep min: | head -n 6 | tail -n 1 | sed -e "s/.*min: \([^,]*\).*/\1/""
temperature_high="grep -B 4 date_text | grep max: | head -n 6 | tail -n 1 | sed -e "s/.*max: \([^,]*\).*/\1/""
- icon="grep wstate_small | head -n 6 | tail -n 1 | sed -e "s/.*wstate_small \([^\"]*\)_S.*/http:\/\/imgs.wetter.com\/layout\/1\/wx_icons\/day_s\/\1_b.gif/""
- icon_code="grep wstate_small | head -n 6 | tail -n 1 | sed -e "s/.*wstate_small \([^\"]*\)_S.*/\1/" | sed -e "s/_//g""
+ icon="grep wstate_medium | head -n 6 | tail -n 1 | sed -r 's~^.*class="([^ "]+ )*([dn]_[0-9]+_M)( [^ "]+)*".*$~http://ls1.wetter.com/img/icons/weather/medium/\2.png~'"
+ icon_code="grep wstate_medium | head -n 6 | tail -n 1 | sed -r 's~^.*class="([^ "]+ )*([dn])_([0-9]+)_M( [^ "]+)*".*$~\2\3~'"
icon_text="grep dn3 | head -n 6 | tail -n 1 | sed -e "s/<[^>]*>//g""
/>
@@ -116,11 +111,13 @@
name="grep date_text | head -n 7 | tail -n 1 | sed -e "s/.*date_text: \"\([^,]*\).*/\1/""
temperature_low="grep -B 4 date_text | grep min: | head -n 7 | tail -n 1 | sed -e "s/.*min: \([^,]*\).*/\1/""
temperature_high="grep -B 4 date_text | grep max: | head -n 7 | tail -n 1 | sed -e "s/.*max: \([^,]*\).*/\1/""
- icon="grep wstate_small | head -n 7 | tail -n 1 | sed -e "s/.*wstate_small \([^\"]*\)_S.*/http:\/\/imgs.wetter.com\/layout\/1\/wx_icons\/day_s\/\1_b.gif/""
- icon_code="grep wstate_small | head -n 7 | tail -n 1 | sed -e "s/.*wstate_small \([^\"]*\)_S.*/\1/" | sed -e "s/_//g""
+ icon="grep wstate_medium | head -n 7 | tail -n 1 | sed -r 's~^.*class="([^ "]+ )*([dn]_[0-9]+_M)( [^ "]+)*".*$~http://ls1.wetter.com/img/icons/weather/medium/\2.png~'"
+ icon_code="grep wstate_medium | head -n 7 | tail -n 1 | sed -r 's~^.*class="([^ "]+ )*([dn])_([0-9]+)_M( [^ "]+)*".*$~\2\3~'"
icon_text="grep dn3 | head -n 7 | tail -n 1 | sed -e "s/<[^>]*>//g""
/>
+<!-- UNGEPRÜFT -->
+
<icon_transform
i1="d0" o1="32"
i2="d1" o2="34"
@@ -230,7 +227,10 @@
i104="d87" o103="39"
/>
- <wind_transform i1="Nordw" o1="N"
+<!-- GEPRÜFT bis i16 -->
+
+<wind_transform
+ i1="Nordw" o1="N"
i2="Nordnordostw" o2="NNE"
i3="Nordostw" o3="NE"
i4="Ostnordostw" o4="ENE"
@@ -251,4 +251,5 @@
i19="Variabel" o19="Var"
i20="Windstill" o20="Calm"
/>
+
</custom_weather>
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cwp-1.8.0/data/www_accuweather_com_us_celsius.xml new/cwp-1.8.1/data/www_accuweather_com_us_celsius.xml
--- old/cwp-1.8.0/data/www_accuweather_com_us_celsius.xml 2013-06-22 14:49:37.000000000 +0200
+++ new/cwp-1.8.1/data/www_accuweather_com_us_celsius.xml 2013-07-25 23:32:22.000000000 +0200
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<custom_weather>
- <xml_file_version type="cwp" version="2013-06-22" name="www.accuweather.com US" search_page="http://www.accuweather.com" example_zip="phoenix-az/85003/weather-forecast/346935" unit="C" />
+ <xml_file_version type="cwp" version="2013-07-25" name="www.accuweather.com US" search_page="http://www.accuweather.com" example_zip="phoenix-az/85003/weather-forecast/346935" unit="C" />
<locale_settings locale="utf-8" encoding="utf8" />
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cwp-1.8.0/data/www_accuweather_com_us_fahrenheit.xml new/cwp-1.8.1/data/www_accuweather_com_us_fahrenheit.xml
--- old/cwp-1.8.0/data/www_accuweather_com_us_fahrenheit.xml 2013-06-22 14:49:37.000000000 +0200
+++ new/cwp-1.8.1/data/www_accuweather_com_us_fahrenheit.xml 2013-07-25 23:32:22.000000000 +0200
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<custom_weather>
- <xml_file_version type="cwp" version="2013-06-22" name="www.accuweather.com US" search_page="http://www.accuweather.com" example_zip="phoenix-az/85003/weather-forecast/346935" unit="F" />
+ <xml_file_version type="cwp" version="2013-07-25" name="www.accuweather.com US" search_page="http://www.accuweather.com" example_zip="phoenix-az/85003/weather-forecast/346935" unit="F" />
<locale_settings locale="utf-8" encoding="utf8" />
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cwp-1.8.0/data/www_accuweather_com_world_celsius.xml new/cwp-1.8.1/data/www_accuweather_com_world_celsius.xml
--- old/cwp-1.8.0/data/www_accuweather_com_world_celsius.xml 2013-06-22 14:49:37.000000000 +0200
+++ new/cwp-1.8.1/data/www_accuweather_com_world_celsius.xml 2013-07-25 23:32:22.000000000 +0200
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<custom_weather>
- <xml_file_version type="cwp" version="2013-06-22" name="www.accuweather.com World" search_page="http://www.accuweather.com" example_zip="za/johannesburg/305448/weather-forecast/305448" unit="C" />
+ <xml_file_version type="cwp" version="2013-07-25" name="www.accuweather.com World" search_page="http://www.accuweather.com" example_zip="za/johannesburg/305448/weather-forecast/305448" unit="C" />
<locale_settings locale="utf-8" encoding="utf8" />
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cwp-1.8.0/data/www_accuweather_com_world_fahrenheit.xml new/cwp-1.8.1/data/www_accuweather_com_world_fahrenheit.xml
--- old/cwp-1.8.0/data/www_accuweather_com_world_fahrenheit.xml 2013-06-22 14:49:37.000000000 +0200
+++ new/cwp-1.8.1/data/www_accuweather_com_world_fahrenheit.xml 2013-07-25 23:32:22.000000000 +0200
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<custom_weather>
- <xml_file_version type="cwp" version="2013-06-22" name="www.accuweather.com World" search_page="http://www.accuweather.com" example_zip="za/johannesburg/305448/weather-forecast/305448" unit="F" />
+ <xml_file_version type="cwp" version="2013-07-25" name="www.accuweather.com World" search_page="http://www.accuweather.com" example_zip="za/johannesburg/305448/weather-forecast/305448" unit="F" />
<locale_settings locale="utf-8" encoding="utf8" />
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cwp-1.8.0/data/www_gismeteo_com.xml new/cwp-1.8.1/data/www_gismeteo_com.xml
--- old/cwp-1.8.0/data/www_gismeteo_com.xml 2013-06-22 14:49:37.000000000 +0200
+++ new/cwp-1.8.1/data/www_gismeteo_com.xml 2013-07-25 23:32:22.000000000 +0200
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<custom_weather>
- <xml_file_version type="cwp" version="2013-06-22" name="www.gismeteo.com" search_page="http://www.gismeteo.ru" example_zip="4944" unit="C" />
+ <xml_file_version type="cwp" version="2013-07-25" name="www.gismeteo.com" search_page="http://www.gismeteo.ru" example_zip="4944" unit="C" />
<locale_settings locale="utf-8" encoding="utf8" />
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cwp-1.8.0/data/www_weather_com.cn.xml new/cwp-1.8.1/data/www_weather_com.cn.xml
--- old/cwp-1.8.0/data/www_weather_com.cn.xml 2013-06-22 14:49:37.000000000 +0200
+++ new/cwp-1.8.1/data/www_weather_com.cn.xml 2013-07-25 23:32:22.000000000 +0200
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<custom_weather>
- <xml_file_version type="cwp" version="2013-06-22" name="www.weather.com.cn" search_page="http://www.weather.com.cn" example_zip="101010100" unit="C" />
+ <xml_file_version type="cwp" version="2013-07-25" name="www.weather.com.cn" search_page="http://www.weather.com.cn" example_zip="101010100" unit="C" />
<locale_settings locale="utf-8" encoding="utf8" />
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cwp-1.8.0/data/www_weather_com.xml new/cwp-1.8.1/data/www_weather_com.xml
--- old/cwp-1.8.0/data/www_weather_com.xml 2013-06-22 14:49:37.000000000 +0200
+++ new/cwp-1.8.1/data/www_weather_com.xml 2013-07-25 23:32:22.000000000 +0200
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<custom_weather>
- <xml_file_version type="cwp" version="2013-06-22" name="www.weather.com" search_page="http://www.weather.com" example_zip="USDC0001" unit="F" />
+ <xml_file_version type="cwp" version="2013-07-25" name="www.weather.com" search_page="http://www.weather.com" example_zip="USDC0001" unit="F" />
<locale_settings locale="utf-8" encoding="utf8" />
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cwp-1.8.0/plasma-applet-cwp.desktop new/cwp-1.8.1/plasma-applet-cwp.desktop
--- old/cwp-1.8.0/plasma-applet-cwp.desktop 2013-06-22 14:49:37.000000000 +0200
+++ new/cwp-1.8.1/plasma-applet-cwp.desktop 2013-07-25 23:32:22.000000000 +0200
@@ -30,7 +30,7 @@
X-KDE-PluginInfo-Author=Georg Hennig
X-KDE-PluginInfo-Email=georg.hennig(a)web.de
X-KDE-PluginInfo-Name=plasma_applet_cwp
-X-KDE-PluginInfo-Version=1.8.0
+X-KDE-PluginInfo-Version=1.8.1
X-KDE-PluginInfo-Website=http://www.kde-look.org/content/show.php/show.php?…
X-KDE-PluginInfo-Category=
X-KDE-PluginInfo-Depends=
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/cwp-1.8.0/version.h new/cwp-1.8.1/version.h
--- old/cwp-1.8.0/version.h 2013-06-22 14:49:37.000000000 +0200
+++ new/cwp-1.8.1/version.h 2013-07-25 23:32:22.000000000 +0200
@@ -20,7 +20,7 @@
#ifndef version_h
#define version_h
-#define VERSION "1.8.0"
+#define VERSION "1.8.1"
#define DATE "2009-2013"
#define AUTHOR "Georg Hennig"
#define NAME "Customizable Weather Plasmoid (CWP)"
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0
Hello community,
here is the log from the commit of package plasma-addons for openSUSE:Factory checked in at 2013-07-30 16:08:15
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/plasma-addons (Old)
and /work/SRC/openSUSE:Factory/.plasma-addons.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "plasma-addons"
Changes:
--------
--- /work/SRC/openSUSE:Factory/plasma-addons/plasma-addons.changes 2013-07-22 17:20:58.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.plasma-addons.new/plasma-addons.changes 2013-07-30 16:08:16.000000000 +0200
@@ -1,0 +2,7 @@
+Thu Jul 25 22:58:42 UTC 2013 - hrvoje.senjan(a)gmail.com
+
+- Update to 4.10.97
+ * KDE 4.11 RC 2 release
+ * See http://www.kde.org/announcements/announce-4.11-rc2.php
+
+-------------------------------------------------------------------
Old:
----
kdeplasma-addons-4.10.95.tar.xz
New:
----
kdeplasma-addons-4.10.97.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ plasma-addons.spec ++++++
--- /var/tmp/diff_new_pack.6iZo55/_old 2013-07-30 16:08:17.000000000 +0200
+++ /var/tmp/diff_new_pack.6iZo55/_new 2013-07-30 16:08:17.000000000 +0200
@@ -17,7 +17,7 @@
Name: plasma-addons
-Version: 4.10.95
+Version: 4.10.97
Release: 0
Summary: Additional Plasma Widgets
License: GPL-2.0+
@@ -223,7 +223,7 @@
%{_kde4_appsdir}/plasmaboard/
%{_kde4_appsdir}/rssnow/
%{_kde4_iconsdir}/*/*/apps/*
-%{_kde4_iconsdir}/hicolor/*/actions/youtube.*
+%{_kde4_iconsdir}/hicolor/*/actions/*youtube.*
%{_kde4_libdir}/libplasma*.so.*
%{_kde4_libdir}/librtm.so.*
%{_kde4_modulesdir}/kcm_*.so
++++++ kdeplasma-addons-4.10.95.tar.xz -> kdeplasma-addons-4.10.97.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdeplasma-addons-4.10.95/applets/bubblemon/plasma-applet-bubblemon.desktop new/kdeplasma-addons-4.10.97/applets/bubblemon/plasma-applet-bubblemon.desktop
--- old/kdeplasma-addons-4.10.95/applets/bubblemon/plasma-applet-bubblemon.desktop 2013-07-10 01:16:21.000000000 +0200
+++ new/kdeplasma-addons-4.10.97/applets/bubblemon/plasma-applet-bubblemon.desktop 2013-07-23 11:01:30.000000000 +0200
@@ -54,6 +54,7 @@
Name[zh_CN]=Bubblemon
Name[zh_TW]=泡泡監視器
Comment=A pretty bubble that monitors your system
+Comment[bs]=Prijatni balon koji nadzire sistem.
Comment[ca]=Una bombolla graciosa que vigila el sistema
Comment[cs]=Pěkná bublina monitorující váš systém
Comment[da]=En pæn boble der overvåger dit system
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdeplasma-addons-4.10.95/applets/icontasks/taskgroupitem.cpp new/kdeplasma-addons-4.10.97/applets/icontasks/taskgroupitem.cpp
--- old/kdeplasma-addons-4.10.95/applets/icontasks/taskgroupitem.cpp 2013-07-10 01:16:21.000000000 +0200
+++ new/kdeplasma-addons-4.10.97/applets/icontasks/taskgroupitem.cpp 2013-07-23 11:01:30.000000000 +0200
@@ -366,13 +366,26 @@
QMap<int, IconTasks::ToolTipContent::Window> map;
+ if (m_applet->launcherIcons() && m_icon.isNull()) {
+ KUrl launcherUrl(m_abstractItem->launcherUrl());
+ if (launcherUrl.isLocalFile() && KDesktopFile::isDesktopFile(launcherUrl.toLocalFile())) {
+ KDesktopFile f(launcherUrl.toLocalFile());
+ if (f.tryExec()) {
+ m_icon = KIcon(f.readIcon());
+ }
+ }
+ }
+
foreach (AbstractGroupableItem * item, m_group.data()->members()) {
TaskManager::TaskItem *taskItem = qobject_cast<TaskManager::TaskItem *>(item);
if (taskItem && taskItem->task()) {
+ if (m_icon.isNull()) {
+ m_icon = item->icon();
+ }
map.insertMulti(taskItem->id(),
IconTasks::ToolTipContent::Window(taskItem->task()->window(),
item->name(),
- item->icon().pixmap(IconTasks::ToolTipContent::iconSize(), IconTasks::ToolTipContent::iconSize()),
+ m_icon.pixmap(IconTasks::ToolTipContent::iconSize(), IconTasks::ToolTipContent::iconSize()),
taskItem->task()->demandsAttention(),
!m_applet->groupManager().showOnlyCurrentDesktop() || !taskItem->isOnCurrentDesktop()
? taskItem->task()->desktop() : 0));
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdeplasma-addons-4.10.95/applets/icontasks/taskgroupitem.h new/kdeplasma-addons-4.10.97/applets/icontasks/taskgroupitem.h
--- old/kdeplasma-addons-4.10.95/applets/icontasks/taskgroupitem.h 2013-07-10 01:16:21.000000000 +0200
+++ new/kdeplasma-addons-4.10.97/applets/icontasks/taskgroupitem.h 2013-07-23 11:01:30.000000000 +0200
@@ -179,6 +179,8 @@
void layoutTaskItem(AbstractTaskItem* item, const QPointF &pos);
void setSplitIndex(int position);
+ QIcon m_icon;
+
int totalSubTasks();
bool focusSubTask(bool next, bool activate);
AbstractTaskItem * selectSubTask(int index);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdeplasma-addons-4.10.95/dataengines/microblog/CMakeLists.txt new/kdeplasma-addons-4.10.97/dataengines/microblog/CMakeLists.txt
--- old/kdeplasma-addons-4.10.95/dataengines/microblog/CMakeLists.txt 2013-07-10 01:16:22.000000000 +0200
+++ new/kdeplasma-addons-4.10.97/dataengines/microblog/CMakeLists.txt 2013-07-23 11:01:30.000000000 +0200
@@ -1,6 +1,7 @@
include_directories(${CMAKE_SOURCE_DIR} ${CMAKE_BINARY_DIR} ${KDE4_INCLUDES}
-${QT_QTNETWORK_INCLUDES} ${QT_QTXML_INCLUDES} ${QCA2_INCLUDE_DIR})
+${QT_QTNETWORK_INCLUDES} ${QT_QTXML_INCLUDES} ${QCA2_INCLUDE_DIR}
+${QJSON_INCLUDE_DIR})
set(twitter_engine_SRCS
imagesource.cpp
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdeplasma-addons-4.10.95/dataengines/potd/natgeoprovider.desktop new/kdeplasma-addons-4.10.97/dataengines/potd/natgeoprovider.desktop
--- old/kdeplasma-addons-4.10.95/dataengines/potd/natgeoprovider.desktop 2013-07-10 01:16:22.000000000 +0200
+++ new/kdeplasma-addons-4.10.97/dataengines/potd/natgeoprovider.desktop 2013-07-23 11:01:30.000000000 +0200
@@ -6,6 +6,7 @@
Icon=
Name=National Geographic
+Name[bs]=National Geographic
Name[ca]=National Geographic
Name[cs]=National Geographic
Name[da]=National Geographic
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdeplasma-addons-4.10.95/runners/translator/plasma-runner-translator.desktop new/kdeplasma-addons-4.10.97/runners/translator/plasma-runner-translator.desktop
--- old/kdeplasma-addons-4.10.95/runners/translator/plasma-runner-translator.desktop 2013-07-14 12:02:46.000000000 +0200
+++ new/kdeplasma-addons-4.10.97/runners/translator/plasma-runner-translator.desktop 2013-07-23 11:01:30.000000000 +0200
@@ -1,5 +1,6 @@
[Desktop Entry]
Name=Translator
+Name[bs]=Prevodilac
Name[ca]=Traductor
Name[cs]=Překladatel
Name[da]=Oversætter
@@ -28,6 +29,7 @@
Name[zh_CN]=翻译
Name[zh_TW]=翻譯器
Comment=Translates into any language using Google Translate. For list of supported languages visit https://developers.google.com/translate/v2/using_rest?hl=de#language-params
+Comment[bs]=Prevodi u bilo koji jezik koristeći Google Translate. Za listu podržanih jezika posjetite https://developers.google.com/translate/v2/using_rest?hl=de#language-params
Comment[ca]=Tradueix a qualsevol idioma usant el Google Translate. Per la llista d'idiomes acceptats visiteu https://developers.google.com/translate/v2/using_rest?hl=de#language-params
Comment[da]=Oversætter til alle sprog med Google Translate. Besøg https://developers.google.com/translate/v2/using_rest?hl=de#language-params for en liste over understøttede sprog
Comment[es]=Traduce a cualquier idioma usando Google Translate. Para una lista de los idiomas admitidos visite https://developers.google.com/translate/v2/using_rest?hl=de#language-params
Files old/kdeplasma-addons-4.10.95/runners/youtube/icons/hi16-action-krunner_youtube.png and new/kdeplasma-addons-4.10.97/runners/youtube/icons/hi16-action-krunner_youtube.png differ
Files old/kdeplasma-addons-4.10.95/runners/youtube/icons/hi16-action-youtube.png and new/kdeplasma-addons-4.10.97/runners/youtube/icons/hi16-action-youtube.png differ
Files old/kdeplasma-addons-4.10.95/runners/youtube/icons/hi22-action-krunner_youtube.png and new/kdeplasma-addons-4.10.97/runners/youtube/icons/hi22-action-krunner_youtube.png differ
Files old/kdeplasma-addons-4.10.95/runners/youtube/icons/hi22-action-youtube.png and new/kdeplasma-addons-4.10.97/runners/youtube/icons/hi22-action-youtube.png differ
Files old/kdeplasma-addons-4.10.95/runners/youtube/icons/hi32-action-krunner_youtube.png and new/kdeplasma-addons-4.10.97/runners/youtube/icons/hi32-action-krunner_youtube.png differ
Files old/kdeplasma-addons-4.10.95/runners/youtube/icons/hi32-action-youtube.png and new/kdeplasma-addons-4.10.97/runners/youtube/icons/hi32-action-youtube.png differ
Files old/kdeplasma-addons-4.10.95/runners/youtube/icons/hi48-action-krunner_youtube.png and new/kdeplasma-addons-4.10.97/runners/youtube/icons/hi48-action-krunner_youtube.png differ
Files old/kdeplasma-addons-4.10.95/runners/youtube/icons/hi48-action-youtube.png and new/kdeplasma-addons-4.10.97/runners/youtube/icons/hi48-action-youtube.png differ
Files old/kdeplasma-addons-4.10.95/runners/youtube/icons/hi64-action-krunner_youtube.png and new/kdeplasma-addons-4.10.97/runners/youtube/icons/hi64-action-krunner_youtube.png differ
Files old/kdeplasma-addons-4.10.95/runners/youtube/icons/hi64-action-youtube.png and new/kdeplasma-addons-4.10.97/runners/youtube/icons/hi64-action-youtube.png differ
Files old/kdeplasma-addons-4.10.95/runners/youtube/icons/hisc-action-krunner_youtube.svgz and new/kdeplasma-addons-4.10.97/runners/youtube/icons/hisc-action-krunner_youtube.svgz differ
Files old/kdeplasma-addons-4.10.95/runners/youtube/icons/hisc-action-youtube.svgz and new/kdeplasma-addons-4.10.97/runners/youtube/icons/hisc-action-youtube.svgz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdeplasma-addons-4.10.95/runners/youtube/plasma-runner-youtube.desktop new/kdeplasma-addons-4.10.97/runners/youtube/plasma-runner-youtube.desktop
--- old/kdeplasma-addons-4.10.95/runners/youtube/plasma-runner-youtube.desktop 2013-07-10 01:16:22.000000000 +0200
+++ new/kdeplasma-addons-4.10.97/runners/youtube/plasma-runner-youtube.desktop 2013-07-23 11:01:30.000000000 +0200
@@ -79,7 +79,7 @@
Comment[zh_CN]=匹配 YouTube 查询
Comment[zh_TW]=符合 YouTube 查詢
-Icon=youtube
+Icon=krunner_youtube
X-KDE-ServiceTypes=Plasma/Runner
Type=Service
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdeplasma-addons-4.10.95/wallpapers/mandelbrot/plasma-wallpaper-mandelbrot.desktop new/kdeplasma-addons-4.10.97/wallpapers/mandelbrot/plasma-wallpaper-mandelbrot.desktop
--- old/kdeplasma-addons-4.10.95/wallpapers/mandelbrot/plasma-wallpaper-mandelbrot.desktop 2013-07-10 01:16:22.000000000 +0200
+++ new/kdeplasma-addons-4.10.97/wallpapers/mandelbrot/plasma-wallpaper-mandelbrot.desktop 2013-07-23 11:01:30.000000000 +0200
@@ -53,6 +53,7 @@
Name[zh_CN]=Mandelbrot
Name[zh_TW]=Mandelbrot
Comment=Explore a classic fractal design
+Comment[bs]=Istražite klasični fraktalni dizajn
Comment[ca]=Explora un disseny fractal clàssic
Comment[cs]=Prozkoumávejte návrh klasického fraktálu
Comment[da]=Udforsk et klassisk brøkdesign
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdeplasma-addons-4.10.95/wallpapers/marble/plasma-wallpaper-marble.desktop new/kdeplasma-addons-4.10.97/wallpapers/marble/plasma-wallpaper-marble.desktop
--- old/kdeplasma-addons-4.10.95/wallpapers/marble/plasma-wallpaper-marble.desktop 2013-07-10 01:16:22.000000000 +0200
+++ new/kdeplasma-addons-4.10.97/wallpapers/marble/plasma-wallpaper-marble.desktop 2013-07-23 11:01:30.000000000 +0200
@@ -54,6 +54,7 @@
Name[zh_CN]=地球仪
Name[zh_TW]=地球
Comment=An interactive map of the world
+Comment[bs]=Interaktivna mapa svijeta
Comment[ca]=Un mapa interactiu del món
Comment[cs]=Interaktivní mapa světa
Comment[da]=Et interaktivt verdenskort
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdeplasma-addons-4.10.95/wallpapers/pattern/plasma-wallpaper-pattern.desktop new/kdeplasma-addons-4.10.97/wallpapers/pattern/plasma-wallpaper-pattern.desktop
--- old/kdeplasma-addons-4.10.95/wallpapers/pattern/plasma-wallpaper-pattern.desktop 2013-07-10 01:16:22.000000000 +0200
+++ new/kdeplasma-addons-4.10.97/wallpapers/pattern/plasma-wallpaper-pattern.desktop 2013-07-23 11:01:30.000000000 +0200
@@ -54,6 +54,7 @@
Name[zh_CN]=图案
Name[zh_TW]=樣式
Comment=Tilable patterns
+Comment[bs]=Uklopivi uzorci
Comment[ca]=Patrons en mosaic
Comment[cs]=Dlaždicovatelné vzorky
Comment[da]=Mønstre der kan lægges som fliser
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdeplasma-addons-4.10.95/wallpapers/potd/plasma-wallpaper-potd.desktop new/kdeplasma-addons-4.10.97/wallpapers/potd/plasma-wallpaper-potd.desktop
--- old/kdeplasma-addons-4.10.95/wallpapers/potd/plasma-wallpaper-potd.desktop 2013-07-10 01:16:22.000000000 +0200
+++ new/kdeplasma-addons-4.10.97/wallpapers/potd/plasma-wallpaper-potd.desktop 2013-07-23 11:01:30.000000000 +0200
@@ -51,6 +51,7 @@
Name[zh_CN]=每日一图
Name[zh_TW]=本日圖片
Comment=A new picture from the Internet each day
+Comment[bs]=Nova slika sa Interneta svaki dan
Comment[ca]=Una imatge nova des d'Internet cada dia
Comment[cs]=Nový obrázek z internetu denně
Comment[da]=Et nyt billede fra internettet hver dag
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdeplasma-addons-4.10.95/wallpapers/qmlwallpapers/plasma-wallpaper-qml.desktop new/kdeplasma-addons-4.10.97/wallpapers/qmlwallpapers/plasma-wallpaper-qml.desktop
--- old/kdeplasma-addons-4.10.95/wallpapers/qmlwallpapers/plasma-wallpaper-qml.desktop 2013-07-10 01:16:22.000000000 +0200
+++ new/kdeplasma-addons-4.10.97/wallpapers/qmlwallpapers/plasma-wallpaper-qml.desktop 2013-07-23 11:01:30.000000000 +0200
@@ -1,5 +1,6 @@
[Desktop Entry]
Name=Animations
+Name[bs]=Animacije
Name[ca]=Animacions
Name[cs]=Animace
Name[da]=Animationer
@@ -27,6 +28,7 @@
Name[zh_CN]=动画
Name[zh_TW]=動畫
Comment=Interactive, animated wallpapers
+Comment[bs]=Interaktivne, animirane pozadinske slike
Comment[ca]=Fons d'escriptori interactius, animats
Comment[cs]=Interaktivní animované tapety
Comment[da]=Interaktive, animerede baggrundsbilleder
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdeplasma-addons-4.10.95/wallpapers/virus/plasma-wallpaper-virus.desktop new/kdeplasma-addons-4.10.97/wallpapers/virus/plasma-wallpaper-virus.desktop
--- old/kdeplasma-addons-4.10.95/wallpapers/virus/plasma-wallpaper-virus.desktop 2013-07-10 01:16:22.000000000 +0200
+++ new/kdeplasma-addons-4.10.97/wallpapers/virus/plasma-wallpaper-virus.desktop 2013-07-23 11:01:30.000000000 +0200
@@ -53,6 +53,7 @@
Name[zh_CN]=病毒
Name[zh_TW]=病毒
Comment=A simulated life form eats your wallpaper
+Comment[bs]=Simulirano živo biće jede vašu pozadinu
Comment[ca]=Una forma de vida simulada que menja el fons de pantalla
Comment[cs]=Simulovaná forma života pojídající vaši tapetu
Comment[da]=En simuleret livsform spiser dit baggrundsbillede
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kdeplasma-addons-4.10.95/wallpapers/weather/plasma-wallpaper-weather.desktop new/kdeplasma-addons-4.10.97/wallpapers/weather/plasma-wallpaper-weather.desktop
--- old/kdeplasma-addons-4.10.95/wallpapers/weather/plasma-wallpaper-weather.desktop 2013-07-10 01:16:22.000000000 +0200
+++ new/kdeplasma-addons-4.10.97/wallpapers/weather/plasma-wallpaper-weather.desktop 2013-07-23 11:01:30.000000000 +0200
@@ -56,6 +56,7 @@
Name[zh_CN]=天气
Name[zh_TW]=天氣
Comment=Images that reflect the weather outside
+Comment[bs]=Slike koje s vana reflektuju vrijeme
Comment[ca]=Imatges que reflecteixen el temps de fora
Comment[cs]=Obrázky odrážející počasí venku
Comment[da]=Billeder der afspejler vejret udenfor
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0
Hello community,
here is the log from the commit of package picmi for openSUSE:Factory checked in at 2013-07-30 16:08:11
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/picmi (Old)
and /work/SRC/openSUSE:Factory/.picmi.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "picmi"
Changes:
--------
--- /work/SRC/openSUSE:Factory/picmi/picmi.changes 2013-07-22 17:20:57.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.picmi.new/picmi.changes 2013-07-30 16:08:12.000000000 +0200
@@ -1,0 +2,7 @@
+Thu Jul 25 23:38:34 UTC 2013 - hrvoje.senjan(a)gmail.com
+
+- Update to 4.10.97
+ * KDE 4.11 RC 2 release
+ * See http://www.kde.org/announcements/announce-4.11-rc2.php
+
+-------------------------------------------------------------------
Old:
----
picmi-4.10.95.tar.xz
New:
----
picmi-4.10.97.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ picmi.spec ++++++
--- /var/tmp/diff_new_pack.OjFQ8T/_old 2013-07-30 16:08:13.000000000 +0200
+++ /var/tmp/diff_new_pack.OjFQ8T/_new 2013-07-30 16:08:13.000000000 +0200
@@ -23,7 +23,7 @@
License: GPL-2.0+
Group: Amusements/Games/Board/Logic
Url: http://www.kde.org
-Version: 4.10.95
+Version: 4.10.97
Release: 0
Source0: picmi-%{version}.tar.xz
BuildRoot: %{_tmppath}/%{name}-%{version}-build
++++++ picmi-4.10.95.tar.xz -> picmi-4.10.97.tar.xz ++++++
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0
Hello community,
here is the log from the commit of package perl-qt4 for openSUSE:Factory checked in at 2013-07-30 16:08:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-qt4 (Old)
and /work/SRC/openSUSE:Factory/.perl-qt4.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-qt4"
Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-qt4/perl-qt4.changes 2013-07-22 17:20:53.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.perl-qt4.new/perl-qt4.changes 2013-07-30 16:08:08.000000000 +0200
@@ -1,0 +2,7 @@
+Thu Jul 25 23:38:16 UTC 2013 - hrvoje.senjan(a)gmail.com
+
+- Update to 4.10.97
+ * KDE 4.11 RC 2 release
+ * See http://www.kde.org/announcements/announce-4.11-rc2.php
+
+-------------------------------------------------------------------
Old:
----
perlqt-4.10.95.tar.xz
New:
----
perlqt-4.10.97.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ perl-qt4.spec ++++++
--- /var/tmp/diff_new_pack.9if0sA/_old 2013-07-30 16:08:09.000000000 +0200
+++ /var/tmp/diff_new_pack.9if0sA/_new 2013-07-30 16:08:09.000000000 +0200
@@ -17,7 +17,7 @@
Name: perl-qt4
-Version: 4.10.95
+Version: 4.10.97
Release: 0
Summary: PerlQt kdebindings library
License: GPL-2.0+
++++++ perlqt-4.10.95.tar.xz -> perlqt-4.10.97.tar.xz ++++++
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0
Hello community,
here is the log from the commit of package perl-kde4 for openSUSE:Factory checked in at 2013-07-30 16:08:02
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-kde4 (Old)
and /work/SRC/openSUSE:Factory/.perl-kde4.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-kde4"
Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-kde4/perl-kde4.changes 2013-07-22 17:20:52.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.perl-kde4.new/perl-kde4.changes 2013-07-30 16:08:04.000000000 +0200
@@ -1,0 +2,7 @@
+Thu Jul 25 23:37:50 UTC 2013 - hrvoje.senjan(a)gmail.com
+
+- Update to 4.10.97
+ * KDE 4.11 RC 2 release
+ * See http://www.kde.org/announcements/announce-4.11-rc2.php
+
+-------------------------------------------------------------------
Old:
----
perlkde-4.10.95.tar.xz
New:
----
perlkde-4.10.97.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ perl-kde4.spec ++++++
--- /var/tmp/diff_new_pack.B4n4ai/_old 2013-07-30 16:08:05.000000000 +0200
+++ /var/tmp/diff_new_pack.B4n4ai/_new 2013-07-30 16:08:05.000000000 +0200
@@ -17,7 +17,7 @@
Name: perl-kde4
-Version: 4.10.95
+Version: 4.10.97
Release: 0
Summary: Kdebindings Perl-KDE library
License: LGPL-2.1+
++++++ perlkde-4.10.95.tar.xz -> perlkde-4.10.97.tar.xz ++++++
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0
Hello community,
here is the log from the commit of package parley for openSUSE:Factory checked in at 2013-07-30 16:07:56
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/parley (Old)
and /work/SRC/openSUSE:Factory/.parley.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "parley"
Changes:
--------
--- /work/SRC/openSUSE:Factory/parley/parley.changes 2013-07-22 17:20:51.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.parley.new/parley.changes 2013-07-30 16:08:01.000000000 +0200
@@ -1,0 +2,7 @@
+Thu Jul 25 23:37:12 UTC 2013 - hrvoje.senjan(a)gmail.com
+
+- Update to 4.10.97
+ * KDE 4.11 RC 2 release
+ * See http://www.kde.org/announcements/announce-4.11-rc2.php
+
+-------------------------------------------------------------------
Old:
----
parley-4.10.95.tar.xz
New:
----
parley-4.10.97.tar.xz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ parley.spec ++++++
--- /var/tmp/diff_new_pack.ejLSky/_old 2013-07-30 16:08:01.000000000 +0200
+++ /var/tmp/diff_new_pack.ejLSky/_new 2013-07-30 16:08:01.000000000 +0200
@@ -17,7 +17,7 @@
Name: parley
-Version: 4.10.95
+Version: 4.10.97
Release: 0
Summary: Vocabulary Trainer
License: GPL-2.0+
++++++ parley-4.10.95.tar.xz -> parley-4.10.97.tar.xz ++++++
/work/SRC/openSUSE:Factory/parley/parley-4.10.95.tar.xz /work/SRC/openSUSE:Factory/.parley.new/parley-4.10.97.tar.xz differ: char 27, line 1
--
To unsubscribe, e-mail: opensuse-commit+unsubscribe(a)opensuse.org
For additional commands, e-mail: opensuse-commit+help(a)opensuse.org
1
0