Add me to the authors list and change uuid to "weather-extension@jenslody.de"

yahoo_weather
Jens Lody 11 years ago
parent 109131c70d
commit aff288ab08
  1. 3
      AUTHORS
  2. 2
      Makefile.am
  3. 7
      README.md
  4. 2
      data/Makefile.am
  5. 2
      src/Makefile.am
  6. 17
      src/extension.js
  7. 7
      src/prefs.js

@ -5,4 +5,5 @@ Ecyrbe <ecyrbe+spam@gmail.com>,
Timur Kristóf <venemo@msn.com>,
Simon Legner <Simon.Legner@gmail.com>,
Mattia Meneguzzo <odysseus@fedoraproject.org>,
Christian Metzler <neroth@xeked.com>
Christian Metzler <neroth@xeked.com>,
Jens Lody <jens@jenslody.de>

@ -2,7 +2,7 @@ ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
SUBDIRS = src data po
uuid = "weather-extension@xeked.com"
uuid = "weather-extension@jenslody.de"
localprefix = $(HOME)/.local/share/gnome-shell/extensions

@ -23,7 +23,7 @@ Add the PPA *ppa:gnome-shell-extensions* to your source list, update the package
sudo add-apt-repository ppa:gnome-shell-extensions
sudo apt-get update
sudo apt-get install gnome-shell-extension-weather
### [Fedora](http://rpmfusion.org/)
Packages for Fedora are available in the [RPM Fusion](http://rpmfusion.org/) repositories. If these are not enabled on your system, please install them through the following command (root password required):
@ -49,7 +49,7 @@ Install *gnome-shell-extension-weather* with apt-rpm from Sisyphus:
sudo apt-get update
sudo apt-get install gnome-shell-extension-weather
## Generic
Make sure you have the following dependencies installed:
@ -93,7 +93,8 @@ Copyright (C) 2011 - 2013
* Timur Kristóf <venemo@msn.com>,
* Simon Legner <Simon.Legner@gmail.com>,
* Mattia Meneguzzo <odysseus@fedoraproject.org>,
* Christian Metzler <neroth@xeked.com>.
* Christian Metzler <neroth@xeked.com>,
* Jens Lody <jens@jenslody.de>.
This file is part of *gnome-shell-extension-weather*.

@ -3,7 +3,7 @@ extensionurl = https://github.com/Neroth/gnome-shell-extension-weather
# Change these to modify how installation is performed
topextensiondir = $(datadir)/gnome-shell/extensions
uuid = weather-extension@xeked.com
uuid = weather-extension@jenslody.de
extensiondir = $(topextensiondir)/$(uuid)

@ -1,7 +1,7 @@
# Change these to modify how installation is performed
topextensiondir = $(datadir)/gnome-shell/extensions
uuid = weather-extension@xeked.com
uuid = weather-extension@jenslody.de
extensiondir = $(topextensiondir)/$(uuid)

@ -12,7 +12,8 @@
* Christian METZLER <neroth@xeked.com>,
* Mark Benjamin weather.gnome.Markie1@dfgh.net,
* Mattia Meneguzzo odysseus@fedoraproject.org,
* Meng Zhuo <mengzhuo1203+spam@gmail.com>
* Meng Zhuo <mengzhuo1203+spam@gmail.com>,
* Jens Lody <jens@jenslody.de>
*
*
* This file is part of gnome-shell-extension-weather.
@ -556,7 +557,7 @@ const WeatherMenuButton = new Lang.Class({
{
let that = this;
let cities = this._cities;
cities = cities.split(" && ");
if(cities && typeof cities == "string")
cities = [cities];
@ -605,7 +606,7 @@ const WeatherMenuButton = new Lang.Class({
},
_onPreferencesActivate : function() {
Util.spawn(["gnome-shell-extension-prefs","weather-extension@xeked.com"]);
Util.spawn(["gnome-shell-extension-prefs","weather-extension@jenslody.de"]);
return 0;
},
@ -1014,7 +1015,7 @@ const WeatherMenuButton = new Lang.Class({
},
refreshWeather: function(recurse)
{
{
if(!this.extractWoeid(this._city))
{
this.updateCities();
@ -1436,15 +1437,15 @@ const WeatherMenuButton = new Lang.Class({
this._currentWeatherSunset = new St.Label({ text: '-' });
this._currentWeatherBuild = new St.Label({ text: '-' });
let ab = new St.BoxLayout({
style_class: 'weather-current-infobox'
let ab = new St.BoxLayout({
style_class: 'weather-current-infobox'
});
ab.add_actor(this._sunriseIcon);
ab.add_actor(this._currentWeatherSunrise);
ab.add_actor(this._sunsetIcon);
ab.add_actor(this._sunsetIcon);
ab.add_actor(this._currentWeatherSunset);
ab.add_actor(this._buildIcon);
ab.add_actor(this._buildIcon);
ab.add_actor(this._currentWeatherBuild);
bb.add_actor(ab);

@ -1,11 +1,12 @@
/*
*
* Weather extension for GNOME Shell preferences
* Weather extension for GNOME Shell preferences
* - Creates a widget to set the preferences of the weather extension
*
* Copyright (C) 2012
* Copyright (C) 2012 - 2013
* Canek Peláez <canek@ciencias.unam.mx>,
* Christian METZLER <neroth@xeked.com>,
* Jens Lody <jens@jenslody.de>,
*
* This file is part of gnome-shell-extension-weather.
*
@ -545,7 +546,7 @@ Extends: Gtk.Box,
loadConfig : function()
{
let that = this;
this.Settings = Convenience.getSettings(WEATHER_SETTINGS_SCHEMA);
this.Settings = Convenience.getSettings(WEATHER_SETTINGS_SCHEMA);
this.Settings.connect("changed", function(){that.refreshUI();});
},

Loading…
Cancel
Save