Change default for weatherEndpoint according to API 3.0 (#3583)

since API 3.0 is default, weatherEndpoint should be set to "/onecall"
Fixes #3574

ATTENTION: since lat / lon defaults to 0 / 0, the weather plugins works
after this patch, but shows the weather from
https://de.wikipedia.org/wiki/Null_Island if lat / lon is not manually
set.

---------

Co-authored-by: Karsten Hassel <hassel@gmx.de>
Co-authored-by: Pedro Lamas <pedrolamas@gmail.com>
This commit is contained in:
HeikoGr
2024-10-11 08:51:00 +02:00
committed by GitHub
parent 0130dc45ab
commit 7489e51a67
13 changed files with 29 additions and 31 deletions

View File

@@ -15,6 +15,8 @@ let config = {
position: "bottom_bar",
config: {
location: "Munich",
weatherProvider: "openweathermap",
weatherEndpoint: "/weather",
mockData: '"#####WEATHERDATA#####"'
}
}

View File

@@ -8,6 +8,8 @@ let config = {
config: {
location: "Munich",
showHumidity: "feelslike",
weatherProvider: "openweathermap",
weatherEndpoint: "/weather",
mockData: '"#####WEATHERDATA#####"'
}
}

View File

@@ -5,6 +5,8 @@ let config = {
position: "bottom_bar",
config: {
location: "Munich",
weatherProvider: "openweathermap",
weatherEndpoint: "/weather",
mockData: '"#####WEATHERDATA#####"',
windUnits: "beaufort",
showWindDirectionAsArrow: true,

View File

@@ -7,6 +7,8 @@ let config = {
position: "bottom_bar",
config: {
location: "Munich",
weatherProvider: "openweathermap",
weatherEndpoint: "/weather",
mockData: '"#####WEATHERDATA#####"',
decimalSymbol: ",",
showHumidity: "wind"

View File

@@ -8,8 +8,9 @@ let config = {
config: {
type: "forecast",
location: "Munich",
mockData: '"#####WEATHERDATA#####"',
weatherProvider: "openweathermap",
weatherEndpoint: "/forecast/daily",
mockData: '"#####WEATHERDATA#####"',
absoluteDates: true
}
}

View File

@@ -8,8 +8,9 @@ let config = {
config: {
type: "forecast",
location: "Munich",
mockData: '"#####WEATHERDATA#####"',
weatherEndpoint: "/forecast/daily"
weatherProvider: "openweathermap",
weatherEndpoint: "/forecast/daily",
mockData: '"#####WEATHERDATA#####"'
}
}
]

View File

@@ -8,8 +8,9 @@ let config = {
config: {
type: "forecast",
location: "Munich",
mockData: '"#####WEATHERDATA#####"',
weatherProvider: "openweathermap",
weatherEndpoint: "/forecast/daily",
mockData: '"#####WEATHERDATA#####"',
showPrecipitationAmount: true,
colored: true,
tableClass: "myTableClass"

View File

@@ -8,8 +8,9 @@ let config = {
config: {
type: "forecast",
location: "Munich",
mockData: '"#####WEATHERDATA#####"',
weatherProvider: "openweathermap",
weatherEndpoint: "/forecast/daily",
mockData: '"#####WEATHERDATA#####"',
decimalSymbol: "_",
showPrecipitationAmount: true
}

View File

@@ -8,6 +8,8 @@ let config = {
config: {
type: "hourly",
location: "Berlin",
weatherProvider: "openweathermap",
weatherEndpoint: "/onecall",
mockData: '"#####WEATHERDATA#####"'
}
}

View File

@@ -8,6 +8,8 @@ let config = {
config: {
type: "hourly",
location: "Berlin",
weatherProvider: "openweathermap",
weatherEndpoint: "/onecall",
mockData: '"#####WEATHERDATA#####"',
hourlyForecastIncrements: 2
}

View File

@@ -8,6 +8,8 @@ let config = {
config: {
type: "hourly",
location: "Berlin",
weatherProvider: "openweathermap",
weatherEndpoint: "/onecall",
mockData: '"#####WEATHERDATA#####"',
showPrecipitationAmount: true,
showPrecipitationProbability: true