Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
m26dvd committed Oct 4, 2024
2 parents 10bf3c0 + 58fc142 commit 0ecf4d7
Show file tree
Hide file tree
Showing 5 changed files with 63 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 0.91.0 (2024-10-03)

### Feat

- Adding East Renfrewshire Council

## 0.90.0 (2024-10-03)

## 0.89.1 (2024-10-02)

### Fix
Expand Down
2 changes: 1 addition & 1 deletion custom_components/uk_bin_collection/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def __init__(self):
async def get_councils_json(self) -> object:
"""Returns an object of supported council's and their required fields."""
# Fetch the JSON data from the provided URL
url = "https://raw.githubusercontent.com/robbrad/UKBinCollectionData/0.89.1/uk_bin_collection/tests/input.json"
url = "https://raw.githubusercontent.com/robbrad/UKBinCollectionData/0.91.0/uk_bin_collection/tests/input.json"
async with aiohttp.ClientSession() as session:
async with session.get(url) as response:
data_text = await response.text()
Expand Down
4 changes: 2 additions & 2 deletions custom_components/uk_bin_collection/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"integration_type": "service",
"iot_class": "cloud_polling",
"issue_tracker": "https://github.com/robbrad/UKBinCollectionData/issues",
"requirements": ["uk-bin-collection>=0.89.1"],
"version": "0.89.1",
"requirements": ["uk-bin-collection>=0.91.0"],
"version": "0.91.0",
"zeroconf": []
}
51 changes: 51 additions & 0 deletions custom_components/uk_bin_collection/translations/pt.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{
"title": "Dados de Recolha de Lixo do Reino Unido",
"config": {
"step": {
"user": {
"title": "Selecione o conselho",
"data": {
"name": "Nome da localidade",
"council": "Conselho"
},
"description": "Por favor veja [aqui](https://github.com/robbrad/UKBinCollectionData#requesting-your-council) se o seu conselho não estiver listado"
},
"council": {
"title": "Forneça os detalhes do conselho",
"data": {
"url": "URL para obter dados de recolha de lixo",
"timeout": "Tempo em segundos que o sensor deve aguardar pelos dados",
"uprn": "UPRN (Número Único de Referência da Propriedade)",
"postcode": "Código postal do endereço",
"number": "Número da casa do endereço",
"usrn": "USRN (Número Único de Referência da Rua)",
"web_driver": "Para executar num servidor remoto Selenium, adicione o URL do servidor Selenium",
"headless": "Executar o Selenium em modo headless (recomendado)",
"local_browser": "Não executar o servidor remoto Selenium, utilizar a instalação local do Chrome",
"submit": "Submeter"
},
"description": "Por favor, consulte a [wiki](https://github.com/robbrad/UKBinCollectionData/wiki/Councils) do seu conselho para obter detalhes sobre o que inserir"
},
"reconfigure_confirm": {
"title": "Atualizar os detalhes do conselho",
"data": {
"url": "URL para obter dados de recolha de lixo",
"timeout": "Tempo em segundos que o sensor deve aguardar pelos dados",
"uprn": "UPRN (Número Único de Referência da Propriedade)",
"postcode": "Código postal do endereço",
"number": "Número da casa do endereço",
"usrn": "USRN (Número Único de Referência da Rua)",
"web_driver": "Para executar num servidor remoto Selenium, adicione o URL do servidor Selenium",
"headless": "Executar o Selenium em modo headless (recomendado)",
"local_browser": "Não executar o servidor remoto Selenium, utilizar a instalação local do Chrome.",
"submit": "Submeter"
},
"description": "Por favor, consulte a [wiki](https://github.com/robbrad/UKBinCollectionData/wiki/Councils) do seu conselho para obter detalhes sobre o que inserir"
}
},
"error": {
"name": "Por favor, insira um nome de localidade",
"council": "Por favor, selecione um conselho"
}
}
}
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "uk_bin_collection"
version = "0.89.1"
version = "0.91.0"
description = "Python Lib to collect UK Bin Data"
readme = "README.md"
authors = ["Robert Bradley <[email protected]>"]
Expand Down

0 comments on commit 0ecf4d7

Please sign in to comment.