Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[weather.multi] 0.0.27 #2626

Merged
merged 1 commit into from
Jul 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions weather.multi/addon.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="weather.multi" name="Multi Weather" version="0.0.26" provider-name="ronie">
<addon id="weather.multi" name="Multi Weather" version="0.0.27" provider-name="ronie">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
<import addon="script.openweathermap.maps" version="1.0.4"/>
Expand All @@ -18,6 +18,7 @@
<icon>resources/icon.png</icon>
<fanart>resources/fanart.jpg</fanart>
</assets>
<news>- fix yahoo weather again</news>
<lifecyclestate type="broken" lang="en_GB">Yahoo no longer provides weather data to new users</lifecyclestate>
<news>- Yahoo no longer provides weather data to new users</news>
</extension>
</addon>
4 changes: 4 additions & 0 deletions weather.multi/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
v0.0.27
- disable cookie expiration
- Yahoo no longer provides weather data to new users

v0.0.26
- language update

Expand Down
4 changes: 3 additions & 1 deletion weather.multi/lib/weather.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ def __init__(self, *args, **kwargs):
log('location: %s' % (location))
log('location id: %s' % (locationid))
if locationid > 0:
ycookie, ycrumb = self.get_ycreds()
#ycookie, ycrumb = self.get_ycreds()
ycookie = ADDON.getSettingString('ycookie')
ycrumb = ADDON.getSettingString('ycrumb')
if not ycookie:
log('no cookie')
else:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ msgstr ""
"Project-Id-Version: Kodi add-ons\n"
"Report-Msgid-Bugs-To: [email protected]\n"
"POT-Creation-Date: YEAR-MO-DA HO:MI+ZONE\n"
"PO-Revision-Date: 2021-12-06 01:13+0000\n"
"Last-Translator: Fabio <[email protected].br>\n"
"PO-Revision-Date: 2024-05-13 19:28+0000\n"
"Last-Translator: Havok Dan <[email protected].br>\n"
"Language-Team: Portuguese (Brazil) <https://kodi.weblate.cloud/projects/kodi-add-ons-weather/weather-multi/pt_br/>\n"
"Language: pt_br\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.9.1\n"
"X-Generator: Weblate 5.5.4\n"

msgctxt "Addon Summary"
msgid "Weather forecast from several providers"
Expand Down Expand Up @@ -315,7 +315,7 @@ msgstr "Neve"

msgctxt "#32268"
msgid "Hail"
msgstr ""
msgstr "Granizo"

msgctxt "#32269"
msgid "Sleet"
Expand Down
Loading