meteocat 3.1.0 → 3.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +34 -0
- package/README.md +4 -1
- package/custom_components/meteocat/__init__.py +8 -3
- package/custom_components/meteocat/condition.py +6 -2
- package/custom_components/meteocat/config_flow.py +206 -28
- package/custom_components/meteocat/const.py +14 -2
- package/custom_components/meteocat/coordinator.py +1040 -205
- package/custom_components/meteocat/helpers.py +31 -36
- package/custom_components/meteocat/manifest.json +3 -2
- package/custom_components/meteocat/options_flow.py +15 -5
- package/custom_components/meteocat/sensor.py +366 -4
- package/custom_components/meteocat/strings.json +195 -4
- package/custom_components/meteocat/translations/ca.json +195 -4
- package/custom_components/meteocat/translations/en.json +195 -4
- package/custom_components/meteocat/translations/es.json +195 -4
- package/custom_components/meteocat/version.py +1 -1
- package/filetree.txt +12 -3
- package/hacs.json +1 -1
- package/images/daily_forecast_2_alerts.png +0 -0
- package/images/daily_forecast_no_alerts.png +0 -0
- package/images/diagnostic_sensors.png +0 -0
- package/images/dynamic_sensors.png +0 -0
- package/images/options.png +0 -0
- package/images/regenerate_assets.png +0 -0
- package/images/setup_options.png +0 -0
- package/images/system_options.png +0 -0
- package/package.json +1 -1
- package/pyproject.toml +1 -1
|
@@ -51,11 +51,12 @@
|
|
|
51
51
|
"title": "API limits"
|
|
52
52
|
},
|
|
53
53
|
"update_coordinates": {
|
|
54
|
-
"description": "Enter new coordinates. Current coordinates: latitude {current_latitude}, longitude {current_longitude}.",
|
|
54
|
+
"description": "Enter new coordinates. Current coordinates: latitude {current_latitude}, longitude {current_longitude}. Current altitude: {current_altitude} meters.",
|
|
55
55
|
"title": "Update Coordinates",
|
|
56
56
|
"data": {
|
|
57
57
|
"latitude": "Latitude",
|
|
58
|
-
"longitude": "Longitude"
|
|
58
|
+
"longitude": "Longitude",
|
|
59
|
+
"altitude": "Altitude (meters)"
|
|
59
60
|
}
|
|
60
61
|
},
|
|
61
62
|
"confirm_regenerate_assets": {
|
|
@@ -70,7 +71,8 @@
|
|
|
70
71
|
"cannot_connect": "Cannot connect. Error when checking the new API Key.",
|
|
71
72
|
"unknown": "Unknown error when checking the new API Key.",
|
|
72
73
|
"invalid_limit": "Invalid limit. The limit must be a positive number.",
|
|
73
|
-
"invalid_coordinates": "Coordinates must be within Catalonia's range (latitude: 40.5 to 42.5, longitude: 0.1 to 3.3)."
|
|
74
|
+
"invalid_coordinates": "Coordinates must be within Catalonia's range (latitude: 40.5 to 42.5, longitude: 0.1 to 3.3).",
|
|
75
|
+
"invalid_altitude": "Altitude must be a non-negative number."
|
|
74
76
|
}
|
|
75
77
|
},
|
|
76
78
|
"selector": {
|
|
@@ -79,7 +81,7 @@
|
|
|
79
81
|
"update_api_and_limits": "Update API Key and limits.",
|
|
80
82
|
"update_limits_only": "Update API limits.",
|
|
81
83
|
"regenerate_assets": "Regenerate 'assets' files.",
|
|
82
|
-
"update_coordinates": "Update coordinates (latitude and longitude)."
|
|
84
|
+
"update_coordinates": "Update coordinates (latitude and longitude) and altitude (meters)."
|
|
83
85
|
}
|
|
84
86
|
}
|
|
85
87
|
},
|
|
@@ -835,11 +837,87 @@
|
|
|
835
837
|
}
|
|
836
838
|
}
|
|
837
839
|
},
|
|
840
|
+
"sun": {
|
|
841
|
+
"name": "Sun",
|
|
842
|
+
"state": {
|
|
843
|
+
"above_horizon": "Above Horizon",
|
|
844
|
+
"below_horizon": "Below Horizon"
|
|
845
|
+
},
|
|
846
|
+
"state_attributes": {
|
|
847
|
+
"elevation": {
|
|
848
|
+
"name": "Elevation"
|
|
849
|
+
},
|
|
850
|
+
"azimuth": {
|
|
851
|
+
"name": "Azimuth"
|
|
852
|
+
},
|
|
853
|
+
"rising": {
|
|
854
|
+
"name": "Rising",
|
|
855
|
+
"state": {
|
|
856
|
+
"false": "No",
|
|
857
|
+
"true": "Yes"
|
|
858
|
+
}
|
|
859
|
+
},
|
|
860
|
+
"last_updated": {
|
|
861
|
+
"name": "Last Updated"
|
|
862
|
+
},
|
|
863
|
+
"sunrise": {
|
|
864
|
+
"name": "Sunrise"
|
|
865
|
+
},
|
|
866
|
+
"sunset": {
|
|
867
|
+
"name": "Sunset"
|
|
868
|
+
},
|
|
869
|
+
"noon": {
|
|
870
|
+
"name": "Noon"
|
|
871
|
+
},
|
|
872
|
+
"dawn_civil": {
|
|
873
|
+
"name": "Civil Dawn"
|
|
874
|
+
},
|
|
875
|
+
"dusk_civil": {
|
|
876
|
+
"name": "Civil Dusk"
|
|
877
|
+
},
|
|
878
|
+
"dawn_nautical": {
|
|
879
|
+
"name": "Nautical Dawn"
|
|
880
|
+
},
|
|
881
|
+
"dusk_nautical": {
|
|
882
|
+
"name": "Nautical Dusk"
|
|
883
|
+
},
|
|
884
|
+
"dawn_astronomical": {
|
|
885
|
+
"name": "Astronomical Dawn"
|
|
886
|
+
},
|
|
887
|
+
"dusk_astronomical": {
|
|
888
|
+
"name": "Astronomical Dusk"
|
|
889
|
+
},
|
|
890
|
+
"midnight": {
|
|
891
|
+
"name": "Solar Midnight"
|
|
892
|
+
},
|
|
893
|
+
"daylight_duration": {
|
|
894
|
+
"name": "Daylight Duration"
|
|
895
|
+
},
|
|
896
|
+
"daylight_duration_hms": {
|
|
897
|
+
"name": "Daylight Duration (HH:MM:SS)"
|
|
898
|
+
}
|
|
899
|
+
}
|
|
900
|
+
},
|
|
838
901
|
"sunrise": {
|
|
839
902
|
"name": "Sunrise",
|
|
840
903
|
"state_attributes": {
|
|
841
904
|
"friendly_time": {
|
|
842
905
|
"name": "Time"
|
|
906
|
+
},
|
|
907
|
+
"friendly_date": {
|
|
908
|
+
"name": "Date"
|
|
909
|
+
},
|
|
910
|
+
"friendly_day": {
|
|
911
|
+
"name": "Day",
|
|
912
|
+
"state": {
|
|
913
|
+
"monday": "Monday",
|
|
914
|
+
"tuesday": "Tuesday",
|
|
915
|
+
"wednesday": "Wednesday",
|
|
916
|
+
"thursday": "Thursday",
|
|
917
|
+
"friday": "Friday",
|
|
918
|
+
"saturday": "Saturday",
|
|
919
|
+
"sunday": "Sunday"
|
|
920
|
+
}
|
|
843
921
|
}
|
|
844
922
|
}
|
|
845
923
|
},
|
|
@@ -848,6 +926,21 @@
|
|
|
848
926
|
"state_attributes": {
|
|
849
927
|
"friendly_time": {
|
|
850
928
|
"name": "Time"
|
|
929
|
+
},
|
|
930
|
+
"friendly_date": {
|
|
931
|
+
"name": "Date"
|
|
932
|
+
},
|
|
933
|
+
"friendly_day": {
|
|
934
|
+
"name": "Day",
|
|
935
|
+
"state": {
|
|
936
|
+
"monday": "Monday",
|
|
937
|
+
"tuesday": "Tuesday",
|
|
938
|
+
"wednesday": "Wednesday",
|
|
939
|
+
"thursday": "Thursday",
|
|
940
|
+
"friday": "Friday",
|
|
941
|
+
"saturday": "Saturday",
|
|
942
|
+
"sunday": "Sunday"
|
|
943
|
+
}
|
|
851
944
|
}
|
|
852
945
|
}
|
|
853
946
|
},
|
|
@@ -862,6 +955,104 @@
|
|
|
862
955
|
"name": "Date"
|
|
863
956
|
}
|
|
864
957
|
}
|
|
958
|
+
},
|
|
959
|
+
"moon_phase": {
|
|
960
|
+
"name": "Moon phase",
|
|
961
|
+
"state": {
|
|
962
|
+
"new_moon": "New moon",
|
|
963
|
+
"waxing_crescent": "Waxing crescent",
|
|
964
|
+
"first_quarter": "First quarter",
|
|
965
|
+
"waxing_gibbous": "Waxing gibbous",
|
|
966
|
+
"full_moon": "Full moon",
|
|
967
|
+
"waning_gibbous": "Waning gibbous",
|
|
968
|
+
"last_quarter": "Last quarter",
|
|
969
|
+
"waning_crescent": "Waning crescent",
|
|
970
|
+
"unknown": "Unknown"
|
|
971
|
+
},
|
|
972
|
+
"state_attributes": {
|
|
973
|
+
"moon_day": {
|
|
974
|
+
"name": "Moon day"
|
|
975
|
+
},
|
|
976
|
+
"moon_phase_value": {
|
|
977
|
+
"name": "Phase value"
|
|
978
|
+
},
|
|
979
|
+
"illuminated_percentage": {
|
|
980
|
+
"name": "Illuminated (%)"
|
|
981
|
+
},
|
|
982
|
+
"moon_distance": {
|
|
983
|
+
"name": "Distance (Km)"
|
|
984
|
+
},
|
|
985
|
+
"moon_angular_diameter": {
|
|
986
|
+
"name": "Angular diameter (arcsec)"
|
|
987
|
+
},
|
|
988
|
+
"lunation": {
|
|
989
|
+
"name": "Lunation"
|
|
990
|
+
},
|
|
991
|
+
"lunation_duration": {
|
|
992
|
+
"name": "Lunation duration"
|
|
993
|
+
},
|
|
994
|
+
"last_updated": {
|
|
995
|
+
"name": "Last updated"
|
|
996
|
+
}
|
|
997
|
+
}
|
|
998
|
+
},
|
|
999
|
+
"moon_file_status": {
|
|
1000
|
+
"name": "Moon File",
|
|
1001
|
+
"state": {
|
|
1002
|
+
"updated": "Updated",
|
|
1003
|
+
"obsolete": "Obsolete"
|
|
1004
|
+
},
|
|
1005
|
+
"state_attributes": {
|
|
1006
|
+
"update_date": {
|
|
1007
|
+
"name": "Date"
|
|
1008
|
+
}
|
|
1009
|
+
}
|
|
1010
|
+
},
|
|
1011
|
+
"moonrise": {
|
|
1012
|
+
"name": "Moonrise",
|
|
1013
|
+
"state_attributes": {
|
|
1014
|
+
"friendly_time": {
|
|
1015
|
+
"name": "Time"
|
|
1016
|
+
},
|
|
1017
|
+
"friendly_date": {
|
|
1018
|
+
"name": "Date"
|
|
1019
|
+
},
|
|
1020
|
+
"friendly_day": {
|
|
1021
|
+
"name": "Day",
|
|
1022
|
+
"state": {
|
|
1023
|
+
"monday": "Monday",
|
|
1024
|
+
"tuesday": "Tuesday",
|
|
1025
|
+
"wednesday": "Wednesday",
|
|
1026
|
+
"thursday": "Thursday",
|
|
1027
|
+
"friday": "Friday",
|
|
1028
|
+
"saturday": "Saturday",
|
|
1029
|
+
"sunday": "Sunday"
|
|
1030
|
+
}
|
|
1031
|
+
}
|
|
1032
|
+
}
|
|
1033
|
+
},
|
|
1034
|
+
"moonset": {
|
|
1035
|
+
"name": "Moonset",
|
|
1036
|
+
"state_attributes": {
|
|
1037
|
+
"friendly_time": {
|
|
1038
|
+
"name": "Time"
|
|
1039
|
+
},
|
|
1040
|
+
"friendly_date": {
|
|
1041
|
+
"name": "Date"
|
|
1042
|
+
},
|
|
1043
|
+
"friendly_day": {
|
|
1044
|
+
"name": "Day",
|
|
1045
|
+
"state": {
|
|
1046
|
+
"monday": "Monday",
|
|
1047
|
+
"tuesday": "Tuesday",
|
|
1048
|
+
"wednesday": "Wednesday",
|
|
1049
|
+
"thursday": "Thursday",
|
|
1050
|
+
"friday": "Friday",
|
|
1051
|
+
"saturday": "Saturday",
|
|
1052
|
+
"sunday": "Sunday"
|
|
1053
|
+
}
|
|
1054
|
+
}
|
|
1055
|
+
}
|
|
865
1056
|
}
|
|
866
1057
|
}
|
|
867
1058
|
}
|
|
@@ -51,11 +51,12 @@
|
|
|
51
51
|
"title": "Límites de la API"
|
|
52
52
|
},
|
|
53
53
|
"update_coordinates": {
|
|
54
|
-
"description": "Introduce nuevas coordenadas. Coordenadas actuales: latitud {current_latitude}, longitud {current_longitude}.",
|
|
54
|
+
"description": "Introduce nuevas coordenadas. Coordenadas actuales: latitud {current_latitude}, longitud {current_longitude}. Altitud actual: {current_altitude} metros.",
|
|
55
55
|
"title": "Actualizar coordenadas",
|
|
56
56
|
"data": {
|
|
57
57
|
"latitude": "Latitud",
|
|
58
|
-
"longitude": "Longitud"
|
|
58
|
+
"longitude": "Longitud",
|
|
59
|
+
"altitude": "Altitud (metros)"
|
|
59
60
|
}
|
|
60
61
|
},
|
|
61
62
|
"confirm_regenerate_assets": {
|
|
@@ -70,7 +71,8 @@
|
|
|
70
71
|
"cannot_connect": "Error de conexión. Error al comprobar la nueva API Key.",
|
|
71
72
|
"unknown": "Error desconocido al comprobar la nueva API Key.",
|
|
72
73
|
"invalid_limit": "Límite no válido. El límite debe ser un número positivo.",
|
|
73
|
-
"invalid_coordinates": "Las coordenadas deben estar dentro del rango de Cataluña (latitud: 40.5 a 42.5, longitud: 0.1 a 3.3)."
|
|
74
|
+
"invalid_coordinates": "Las coordenadas deben estar dentro del rango de Cataluña (latitud: 40.5 a 42.5, longitud: 0.1 a 3.3).",
|
|
75
|
+
"invalid_altitude": "Altitud no puede ser negativa."
|
|
74
76
|
}
|
|
75
77
|
},
|
|
76
78
|
"selector": {
|
|
@@ -79,7 +81,7 @@
|
|
|
79
81
|
"update_api_and_limits": "Actualizar API Key y límites.",
|
|
80
82
|
"update_limits_only": "Actualizar API límites.",
|
|
81
83
|
"regenerate_assets": "Regenerar archivos de 'assets'.",
|
|
82
|
-
"update_coordinates": "Actualizar coordenadas (latitud y longitud)."
|
|
84
|
+
"update_coordinates": "Actualizar coordenadas (latitud y longitud) y altitud (metros)."
|
|
83
85
|
}
|
|
84
86
|
}
|
|
85
87
|
},
|
|
@@ -835,11 +837,87 @@
|
|
|
835
837
|
}
|
|
836
838
|
}
|
|
837
839
|
},
|
|
840
|
+
"sun": {
|
|
841
|
+
"name": "Sol",
|
|
842
|
+
"state": {
|
|
843
|
+
"above_horizon": "Sobre el horizonte",
|
|
844
|
+
"below_horizon": "Bajo el horizonte"
|
|
845
|
+
},
|
|
846
|
+
"state_attributes": {
|
|
847
|
+
"elevation": {
|
|
848
|
+
"name": "Elevación"
|
|
849
|
+
},
|
|
850
|
+
"azimuth": {
|
|
851
|
+
"name": "Azimut"
|
|
852
|
+
},
|
|
853
|
+
"rising": {
|
|
854
|
+
"name": "Ascendente",
|
|
855
|
+
"state": {
|
|
856
|
+
"false": "No",
|
|
857
|
+
"true": "Sí"
|
|
858
|
+
}
|
|
859
|
+
},
|
|
860
|
+
"last_updated": {
|
|
861
|
+
"name": "Actualizado"
|
|
862
|
+
},
|
|
863
|
+
"sunrise": {
|
|
864
|
+
"name": "Amanecer"
|
|
865
|
+
},
|
|
866
|
+
"sunset": {
|
|
867
|
+
"name": "Atardecer"
|
|
868
|
+
},
|
|
869
|
+
"noon": {
|
|
870
|
+
"name": "Mediodía"
|
|
871
|
+
},
|
|
872
|
+
"dawn_civil": {
|
|
873
|
+
"name": "Amanecer civil"
|
|
874
|
+
},
|
|
875
|
+
"dusk_civil": {
|
|
876
|
+
"name": "Atardecer civil"
|
|
877
|
+
},
|
|
878
|
+
"dawn_nautical": {
|
|
879
|
+
"name": "Amanecer náutico"
|
|
880
|
+
},
|
|
881
|
+
"dusk_nautical": {
|
|
882
|
+
"name": "Atardecer náutico"
|
|
883
|
+
},
|
|
884
|
+
"dawn_astronomical": {
|
|
885
|
+
"name": "Amanecer astronómico"
|
|
886
|
+
},
|
|
887
|
+
"dusk_astronomical": {
|
|
888
|
+
"name": "Atardecer astronómico"
|
|
889
|
+
},
|
|
890
|
+
"midnight": {
|
|
891
|
+
"name": "Medianoche solar"
|
|
892
|
+
},
|
|
893
|
+
"daylight_duration": {
|
|
894
|
+
"name": "Duración del día"
|
|
895
|
+
},
|
|
896
|
+
"daylight_duration_hms": {
|
|
897
|
+
"name": "Duración del día (HH:MM:SS)"
|
|
898
|
+
}
|
|
899
|
+
}
|
|
900
|
+
},
|
|
838
901
|
"sunrise": {
|
|
839
902
|
"name": "Amanecer",
|
|
840
903
|
"state_attributes": {
|
|
841
904
|
"friendly_time": {
|
|
842
905
|
"name": "Hora"
|
|
906
|
+
},
|
|
907
|
+
"friendly_date": {
|
|
908
|
+
"name": "Fecha"
|
|
909
|
+
},
|
|
910
|
+
"friendly_day": {
|
|
911
|
+
"name": "Día",
|
|
912
|
+
"state": {
|
|
913
|
+
"monday": "Lunes",
|
|
914
|
+
"tuesday": "Martes",
|
|
915
|
+
"wednesday": "Miércoles",
|
|
916
|
+
"thursday": "Jueves",
|
|
917
|
+
"friday": "Viernes",
|
|
918
|
+
"saturday": "Sábado",
|
|
919
|
+
"sunday": "Domingo"
|
|
920
|
+
}
|
|
843
921
|
}
|
|
844
922
|
}
|
|
845
923
|
},
|
|
@@ -848,6 +926,21 @@
|
|
|
848
926
|
"state_attributes": {
|
|
849
927
|
"friendly_time": {
|
|
850
928
|
"name": "Hora"
|
|
929
|
+
},
|
|
930
|
+
"friendly_date": {
|
|
931
|
+
"name": "Fecha"
|
|
932
|
+
},
|
|
933
|
+
"friendly_day": {
|
|
934
|
+
"name": "Día",
|
|
935
|
+
"state": {
|
|
936
|
+
"monday": "Lunes",
|
|
937
|
+
"tuesday": "Martes",
|
|
938
|
+
"wednesday": "Miércoles",
|
|
939
|
+
"thursday": "Jueves",
|
|
940
|
+
"friday": "Viernes",
|
|
941
|
+
"saturday": "Sábado",
|
|
942
|
+
"sunday": "Domingo"
|
|
943
|
+
}
|
|
851
944
|
}
|
|
852
945
|
}
|
|
853
946
|
},
|
|
@@ -862,6 +955,104 @@
|
|
|
862
955
|
"name": "Fecha"
|
|
863
956
|
}
|
|
864
957
|
}
|
|
958
|
+
},
|
|
959
|
+
"moon_phase": {
|
|
960
|
+
"name": "Fase lunar",
|
|
961
|
+
"state": {
|
|
962
|
+
"new_moon": "Luna nueva",
|
|
963
|
+
"waxing_crescent": "Creciente",
|
|
964
|
+
"first_quarter": "Cuarto creciente",
|
|
965
|
+
"waxing_gibbous": "Gibosa creciente",
|
|
966
|
+
"full_moon": "Luna llena",
|
|
967
|
+
"waning_gibbous": "Gibosa menguante",
|
|
968
|
+
"last_quarter": "Cuarto menguante",
|
|
969
|
+
"waning_crescent": "Menguante",
|
|
970
|
+
"unknown": "Desconocido"
|
|
971
|
+
},
|
|
972
|
+
"state_attributes": {
|
|
973
|
+
"moon_day": {
|
|
974
|
+
"name": "Día lunar"
|
|
975
|
+
},
|
|
976
|
+
"moon_phase_value": {
|
|
977
|
+
"name": "Valor fase"
|
|
978
|
+
},
|
|
979
|
+
"illuminated_percentage": {
|
|
980
|
+
"name": "Iluminada (%)"
|
|
981
|
+
},
|
|
982
|
+
"moon_distance": {
|
|
983
|
+
"name": "Distancia (Km)"
|
|
984
|
+
},
|
|
985
|
+
"moon_angular_diameter": {
|
|
986
|
+
"name": "Diámetro angular (arcseg)"
|
|
987
|
+
},
|
|
988
|
+
"lunation": {
|
|
989
|
+
"name": "Lunación"
|
|
990
|
+
},
|
|
991
|
+
"lunation_duration": {
|
|
992
|
+
"name": "Duración lunación"
|
|
993
|
+
},
|
|
994
|
+
"last_updated": {
|
|
995
|
+
"name": "Actualizado"
|
|
996
|
+
}
|
|
997
|
+
}
|
|
998
|
+
},
|
|
999
|
+
"moon_file_status": {
|
|
1000
|
+
"name": "Archivo Luna",
|
|
1001
|
+
"state": {
|
|
1002
|
+
"updated": "Actualizado",
|
|
1003
|
+
"obsolete": "Obsoleto"
|
|
1004
|
+
},
|
|
1005
|
+
"state_attributes": {
|
|
1006
|
+
"update_date": {
|
|
1007
|
+
"name": "Fecha"
|
|
1008
|
+
}
|
|
1009
|
+
}
|
|
1010
|
+
},
|
|
1011
|
+
"moonrise": {
|
|
1012
|
+
"name": "Luna salida",
|
|
1013
|
+
"state_attributes": {
|
|
1014
|
+
"friendly_time": {
|
|
1015
|
+
"name": "Hora"
|
|
1016
|
+
},
|
|
1017
|
+
"friendly_date": {
|
|
1018
|
+
"name": "Fecha"
|
|
1019
|
+
},
|
|
1020
|
+
"friendly_day": {
|
|
1021
|
+
"name": "Día",
|
|
1022
|
+
"state": {
|
|
1023
|
+
"monday": "Lunes",
|
|
1024
|
+
"tuesday": "Martes",
|
|
1025
|
+
"wednesday": "Miércoles",
|
|
1026
|
+
"thursday": "Jueves",
|
|
1027
|
+
"friday": "Viernes",
|
|
1028
|
+
"saturday": "Sábado",
|
|
1029
|
+
"sunday": "Domingo"
|
|
1030
|
+
}
|
|
1031
|
+
}
|
|
1032
|
+
}
|
|
1033
|
+
},
|
|
1034
|
+
"moonset": {
|
|
1035
|
+
"name": "Luna puesta",
|
|
1036
|
+
"state_attributes": {
|
|
1037
|
+
"friendly_time": {
|
|
1038
|
+
"name": "Hora"
|
|
1039
|
+
},
|
|
1040
|
+
"friendly_date": {
|
|
1041
|
+
"name": "Fecha"
|
|
1042
|
+
},
|
|
1043
|
+
"friendly_day": {
|
|
1044
|
+
"name": "Día",
|
|
1045
|
+
"state": {
|
|
1046
|
+
"monday": "Lunes",
|
|
1047
|
+
"tuesday": "Martes",
|
|
1048
|
+
"wednesday": "Miércoles",
|
|
1049
|
+
"thursday": "Jueves",
|
|
1050
|
+
"friday": "Viernes",
|
|
1051
|
+
"saturday": "Sábado",
|
|
1052
|
+
"sunday": "Domingo"
|
|
1053
|
+
}
|
|
1054
|
+
}
|
|
1055
|
+
}
|
|
865
1056
|
}
|
|
866
1057
|
}
|
|
867
1058
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "3.
|
|
1
|
+
__version__ = "3.2.0"
|
package/filetree.txt
CHANGED
|
@@ -2,20 +2,24 @@
|
|
|
2
2
|
└── ISSUE_TEMPLATE/
|
|
3
3
|
├── bug_report.md
|
|
4
4
|
├── config.yml
|
|
5
|
+
├── improvement.md
|
|
6
|
+
├── new_function.md
|
|
7
|
+
├── labels.yml
|
|
5
8
|
└── workflows/
|
|
6
9
|
├── autocloser.yaml
|
|
7
|
-
├── close-
|
|
10
|
+
├── close-on-label.yml
|
|
11
|
+
├── force-sync-labels.yml
|
|
8
12
|
├── hassfest.yaml
|
|
9
13
|
├── publish-zip.yml
|
|
10
14
|
├── release.yml
|
|
11
15
|
├── stale.yml
|
|
12
16
|
├── sync-gitlab.yml
|
|
17
|
+
├── sync-labels.yml
|
|
13
18
|
├── validate.yaml
|
|
14
19
|
├── .gitignore
|
|
15
20
|
├── .gitlab-ci.yml
|
|
16
21
|
├── .pre-commit-config.yaml
|
|
17
22
|
├── .releaserc
|
|
18
|
-
├── .releaserc.toml
|
|
19
23
|
├── AUTHORS.md
|
|
20
24
|
├── CHANGELOG.md
|
|
21
25
|
├── LICENSE
|
|
@@ -46,6 +50,7 @@
|
|
|
46
50
|
├── api_limits.png
|
|
47
51
|
├── banner.png
|
|
48
52
|
├── change_units.png
|
|
53
|
+
├── daily_forecast_2_alerts.png
|
|
49
54
|
├── devices.png
|
|
50
55
|
├── diagnostic_sensors.png
|
|
51
56
|
├── dynamic_sensors.png
|
|
@@ -54,13 +59,17 @@
|
|
|
54
59
|
├── pick_area.png
|
|
55
60
|
├── pick_station.png
|
|
56
61
|
├── pick_town.png
|
|
62
|
+
├── regenerate_assets.png
|
|
63
|
+
├── setup_options.png
|
|
64
|
+
├── system_options.png
|
|
57
65
|
├── info.md
|
|
58
66
|
├── package-lock.json
|
|
59
67
|
├── package.json
|
|
60
68
|
├── poetry.lock
|
|
61
69
|
├── pyproject.toml
|
|
62
|
-
├── releaserc.json
|
|
63
70
|
├── requirements.test.txt
|
|
71
|
+
└── scripts/
|
|
72
|
+
├── update_version.sh
|
|
64
73
|
├── setup.cfg
|
|
65
74
|
├── setup.py
|
|
66
75
|
└── tests/
|
package/hacs.json
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/images/options.png
CHANGED
|
Binary file
|
|
Binary file
|
package/images/setup_options.png
CHANGED
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "meteocat",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.2.0",
|
|
4
4
|
"description": "[](https://opensource.org/licenses/Apache-2.0)\r [](https://pypi.org/project/meteocat)\r [](https://gitlab.com/figorr/meteocat/commits/master)",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"directories": {
|