Codebase list gnome-shell-extension-weather / debian/0_20151125.gitccaa1eb-1_deb8u1
* New upstream snapshot. + Compatible with the new API of openweathermap.org. (Closes: #804505) + No need to manually enter an API key, since this release ships with a default one. This restores the behavior of the applet that was effective by the time of the jessie release. * Drop d/p/missing-api-key.patch. No longer needed, since this new release ships with a default API key. * d/copyright: reflect upstream changes. Sébastien Villemot 8 years ago
4 changed file(s) with 82 addition(s) and 21 deletion(s). Raw diff Collapse all Expand all
0 gnome-shell-extension-weather (0~20151125.gitccaa1eb-1~deb8u1) jessie; urgency=medium
1
2 * New upstream snapshot.
3 + Compatible with the new API of openweathermap.org. (Closes: #804505)
4 + No need to manually enter an API key, since this release ships with a
5 default one. This restores the behavior of the applet that was effective
6 by the time of the jessie release.
7 * Drop d/p/missing-api-key.patch. No longer needed, since this new release
8 ships with a default API key.
9 * d/copyright: reflect upstream changes.
10
11 -- Sébastien Villemot <sebastien@debian.org> Wed, 13 Jan 2016 10:34:14 +0100
12
013 gnome-shell-extension-weather (0~20140924.git7e28508-1+deb8u1) jessie; urgency=medium
114
215 * d/p/missing-api-key.patch: new patch. Displays a warning if API key
0 Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
1 Upstream-Name: gnome-shell-extension-openweather
2 Upstream-Contact: Jens Lody <jens@jenslody.de>
3 Source: https://github.com/jenslody/gnome-shell-extension-openweather
4
5 Files: *
6 Copyright: 2011-2015
7 Elad Alfassa <elad@fedoraproject.org>
8 Mark Benjamin <weather.gnome.Markie1@dfgh.net>
9 Simon Claessens <gagalago@gmail.com>
10 Ecyrbe <ecyrbe+spam@gmail.com>
11 Timur Kristóf <venemo@msn.com>
12 Simon Legner <Simon.Legner@gmail.com>
13 Mattia Meneguzzo <odysseus@fedoraproject.org>
14 Christian Metzler <neroth@xeked.com>
15 Meng Zhuo <mengzhuo1203+spam@gmail.com>,
16 Jens Lody <jens@jenslody.de>
17 2012-2013 Canek Peláez <canek@ciencias.unam.mx>
18 2012 Mantas Kriaučiūnas <mantas@akl.lt>
19 License: GPL-3+
20
21 Files: src/convenience.js
22 Copyright: 2011-2012 Giovanni Campagna <scampa.giovanni@gmail.com>
23 License: BSD-3-clause
24 Redistribution and use in source and binary forms, with or without
25 modification, are permitted provided that the following conditions are met:
26 * Redistributions of source code must retain the above copyright
27 notice, this list of conditions and the following disclaimer.
28 * Redistributions in binary form must reproduce the above copyright
29 notice, this list of conditions and the following disclaimer in the
30 documentation and/or other materials provided with the distribution.
31 * Neither the name of the GNOME nor the
32 names of its contributors may be used to endorse or promote products
33 derived from this software without specific prior written permission.
34 .
35 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
36 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
37 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
38 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY
39 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
40 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
41 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
42 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
43 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
44 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
45
46 Files: debian/*
47 Copyright: 2013-2015 Sébastien Villemot <sebastien@debian.org>
48 License: GPL-3+
49
50 License: GPL-3+
51 gnome-shell-extension-openweather is free software: you can redistribute it and/or
52 modify it under the terms of the GNU General Public License as published by
53 the Free Software Foundation, either version 3 of the License, or (at your
54 option) any later version.
55 .
56 gnome-shell-extension-openweather is distributed in the hope that it will be
57 useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
58 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
59 Public License for more details.
60 .
61 You should have received a copy of the GNU General Public License along with
62 gnome-shell-extension-weather. If not, see <http://www.gnu.org/licenses/>.
63 .
64 On Debian systems, the complete text of the GNU General Public
65 License, version 3, can be found in the file
66 `/usr/share/common-licenses/GPL-3'.
67
68
+0
-20
debian/patches/missing-api-key.patch less more
0 Description: Add notification if API key is missing
1 The API is now mandatory for using openweathermap.org.
2 Origin: backport, https://github.com/jenslody/gnome-shell-extension-openweather/commit/f9f97dcaaa0b7d51a4b4193ba3802b3d0ba10441
3 Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=801979
4 Reviewed-by: Sébastien Villemot <sebastien@debian.org>
5 Last-Update: 2015-10-24
6 ---
7 This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
8 --- a/src/extension.js
9 +++ b/src/extension.js
10 @@ -138,6 +138,9 @@ const OpenweatherMenuButton = new Lang.C
11 // Load settings
12 this.loadConfig();
13
14 + if (this._appid.toString().trim() == '')
15 + Main.notify("Openweather", _("Openweathermap.org does not work without an api-key.\nPlease register at http://openweathermap.org/appid and paste your personal key into the preferences dialog."));
16 +
17 // Label
18 this._weatherInfo = new St.Label({
19 y_align: Clutter.ActorAlign.CENTER,
0 missing-api-key.patch