-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from bolliy/dev
Issue #18
- Loading branch information
Showing
26 changed files
with
3,698 additions
and
3,566 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Configure here which dependency updates should be merged automatically. | ||
# The recommended configuration is the following: | ||
- match: | ||
# Only merge patches for production dependencies | ||
dependency_type: production | ||
update_type: "semver:patch" | ||
- match: | ||
# Except for security fixes, here we allow minor patches | ||
dependency_type: production | ||
update_type: "security:minor" | ||
- match: | ||
# and development dependencies can have a minor update, too | ||
dependency_type: development | ||
update_type: "semver:minor" | ||
|
||
# The syntax is based on the legacy dependabot v1 automerged_updates syntax, see: | ||
# https://dependabot.com/docs/config-file/#automerged_updates |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: npm | ||
directory: "/" | ||
schedule: | ||
interval: monthly | ||
time: "04:00" | ||
timezone: Europe/Berlin | ||
open-pull-requests-limit: 5 | ||
assignees: | ||
- TA2k | ||
versioning-strategy: increase | ||
|
||
- package-ecosystem: github-actions | ||
directory: "/" | ||
schedule: | ||
interval: monthly | ||
time: "04:00" | ||
timezone: Europe/Berlin | ||
open-pull-requests-limit: 5 | ||
assignees: | ||
- TA2k |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Automatically merge Dependabot PRs when version comparison is within the range | ||
# that is configured in .github/auto-merge.yml | ||
|
||
name: Auto-Merge Dependabot PRs | ||
|
||
on: | ||
# WARNING: This needs to be run in the PR base, DO NOT build untrusted code in this action | ||
# details under https://github.blog/changelog/2021-02-19-github-actions-workflows-triggered-by-dependabot-prs-will-run-with-read-only-permissions/ | ||
pull_request_target: | ||
|
||
jobs: | ||
auto-merge: | ||
if: github.actor == 'dependabot[bot]' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Check if PR should be auto-merged | ||
uses: ahmadnassri/action-dependabot-auto-merge@v2 | ||
with: | ||
# In order to use this, you need to go to https://github.com/settings/tokens and | ||
# create a Personal Access Token with the permission "public_repo". | ||
# Enter this token in your repository settings under "Secrets" and name it AUTO_MERGE_TOKEN | ||
github-token: ${{ secrets.AUTO_MERGE_TOKEN }} | ||
# By default, squash and merge, so Github chooses nice commit messages | ||
command: squash and merge |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
MIT License | ||
|
||
Copyright (c) 2021-2030 TA2k <[email protected]> | ||
Copyright (c) 2021-2024 TA2k <[email protected]> | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,11 +12,33 @@ | |
|
||
**Tests:** ![Test and Release](https://github.com/TA2k/ioBroker.nissan/workflows/Test%20and%20Release/badge.svg) | ||
|
||
## nissan adapter for ioBroker | ||
**This adapter uses Sentry libraries to automatically report exceptions and code errors to the developers.**\ | ||
For more details and for information how to disable the error reporting see [Sentry-Plugin Documentation](https://github.com/ioBroker/plugin-sentry#plugin-sentry)!\ | ||
Sentry reporting is used starting with js-controller 3.0. | ||
|
||
Nissan Adapter | ||
## Nissan adapter for ioBroker | ||
|
||
With the Nissan adapter you can ask your nissan vehicle for the latest data, display the current battery and charging status, the current state of the climate control, start or stop climate control and and start charging remotely. | ||
|
||
[Nissan Connect/App information](https://www.nissan.de/kunden/nissan-connect-apps.html) | ||
|
||
## Forum | ||
|
||
Feel free to follow the discussions in the german [iobroker forum](https://forum.iobroker.net/topic/46700/test-adapter-nissan-v-0-0-x) | ||
|
||
## Changelog | ||
|
||
<!-- | ||
Placeholder for the next version (at the beginning of the line): | ||
### **WORK IN PROGRESS** | ||
--> | ||
|
||
### **WORK IN PROGRESS** | ||
- (bolliy) Dependency and configuration updates | ||
- (bolliy) Added Admin 5 configuration | ||
- (bolliy) ConnectEV: Update status before reading cachedeStatus | ||
- (bolliy) improve State roles and types | ||
|
||
### 0.1.2 (2024-05-31) | ||
|
||
- Refresh Token fix | ||
|
@@ -37,7 +59,7 @@ Nissan Adapter | |
|
||
MIT License | ||
|
||
Copyright (c) 2021-2030 TA2k <[email protected]> | ||
Copyright (c) 2021-2024 TA2k <[email protected]> | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"Nissan App Email": "Nissan-App-E-Mail", | ||
"Password": "Passwort", | ||
"Force Update to receive new data. This will drain 12V Battery. Please check 12V Battery": "Aktualisierung erzwingen, um neue Daten zu erhalten. Dadurch wird die 12-V-Batterie entladen. Bitte überprüfen Sie die 12-V-Batterie", | ||
"Update interval (min)": "Aktualisierungsintervall (Min.)", | ||
"Old Nissan EV App for models before 2019": "Alte Nissan EV-App für Modelle vor 2019" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"Nissan App Email": "Nissan App Email", | ||
"Password": "Password", | ||
"Force Update to receive new data. This will drain 12V Battery. Please check 12V Battery": "Force Update to receive new data. This will drain 12V Battery. Please check 12V Battery", | ||
"Update interval (min)": "Update interval (min)", | ||
"Old Nissan EV App for models before 2019": "Old Nissan EV App for models before 2019" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"Nissan App Email": "Correo electrónico de la aplicación Nissan", | ||
"Password": "Contraseña", | ||
"Force Update to receive new data. This will drain 12V Battery. Please check 12V Battery": "Forzar actualización para recibir nuevos datos. Esto agotará la batería de 12 V. Por favor verifique la batería de 12V", | ||
"Update interval (min)": "Intervalo de actualización (min)", | ||
"Old Nissan EV App for models before 2019": "Antigua aplicación Nissan EV para modelos anteriores a 2019" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"Nissan App Email": "E-mail de l'application Nissan", | ||
"Password": "Mot de passe", | ||
"Force Update to receive new data. This will drain 12V Battery. Please check 12V Battery": "Forcer la mise à jour pour recevoir de nouvelles données. Cela videra la batterie 12 V. Veuillez vérifier la batterie 12 V", | ||
"Update interval (min)": "Intervalle de mise à jour (min)", | ||
"Old Nissan EV App for models before 2019": "Ancienne application Nissan EV pour les modèles avant 2019" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"Nissan App Email": "E-mail dell'app Nissan", | ||
"Password": "Parola d'ordine", | ||
"Force Update to receive new data. This will drain 12V Battery. Please check 12V Battery": "Forza l'aggiornamento per ricevere nuovi dati. Ciò scaricherà la batteria da 12 V. Si prega di controllare la batteria da 12 V", | ||
"Update interval (min)": "Intervallo di aggiornamento (min)", | ||
"Old Nissan EV App for models before 2019": "Vecchia app Nissan EV per modelli precedenti al 2019" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"Nissan App Email": "E-mail van de Nissan-app", | ||
"Password": "Wachtwoord", | ||
"Force Update to receive new data. This will drain 12V Battery. Please check 12V Battery": "Forceer update om nieuwe gegevens te ontvangen. Hierdoor raakt de 12V-batterij leeg. Controleer de 12V-batterij", | ||
"Update interval (min)": "Update-interval (min)", | ||
"Old Nissan EV App for models before 2019": "Oude Nissan EV-app voor modellen vóór 2019" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"Nissan App Email": "Poczta elektroniczna w aplikacji Nissan", | ||
"Password": "Hasło", | ||
"Force Update to receive new data. This will drain 12V Battery. Please check 12V Battery": "Wymuś aktualizację, aby otrzymać nowe dane. Spowoduje to wyczerpanie akumulatora 12 V. Proszę sprawdzić akumulator 12V", | ||
"Update interval (min)": "Interwał aktualizacji (min)", | ||
"Old Nissan EV App for models before 2019": "Stara aplikacja Nissan EV dla modeli sprzed 2019 r" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"Nissan App Email": "E-mail do aplicativo Nissan", | ||
"Password": "Senha", | ||
"Force Update to receive new data. This will drain 12V Battery. Please check 12V Battery": "Forçar atualização para receber novos dados. Isso irá descarregar a bateria de 12 V. Verifique a bateria de 12V", | ||
"Update interval (min)": "Intervalo de atualização (min)", | ||
"Old Nissan EV App for models before 2019": "Antigo aplicativo Nissan EV para modelos anteriores a 2019" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"Nissan App Email": "Электронная почта приложения Nissan", | ||
"Password": "Пароль", | ||
"Force Update to receive new data. This will drain 12V Battery. Please check 12V Battery": "Принудительное обновление для получения новых данных. Это приведет к разрядке аккумулятора 12 В. Пожалуйста, проверьте батарею 12 В.", | ||
"Update interval (min)": "Интервал обновления (мин)", | ||
"Old Nissan EV App for models before 2019": "Старое приложение Nissan EV для моделей до 2019 года" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"Nissan App Email": "Електронна пошта програми Nissan", | ||
"Password": "Пароль", | ||
"Force Update to receive new data. This will drain 12V Battery. Please check 12V Battery": "Примусове оновлення для отримання нових даних. Це призведе до розрядження батареї 12 В. Перевірте батарею 12 В", | ||
"Update interval (min)": "Інтервал оновлення (хв.)", | ||
"Old Nissan EV App for models before 2019": "Старий додаток Nissan EV для моделей до 2019 року" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"Nissan App Email": "日产应用程序电子邮件", | ||
"Password": "密码", | ||
"Force Update to receive new data. This will drain 12V Battery. Please check 12V Battery": "强制更新以接收新数据。这将耗尽 12V 电池的电量。请检查12V电池", | ||
"Update interval (min)": "更新间隔(分钟)", | ||
"Old Nissan EV App for models before 2019": "适用于 2019 年之前车型的旧 Nissan EV 应用程序" | ||
} |
Oops, something went wrong.