-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Hombach
authored and
Hombach
committed
Oct 22, 2024
1 parent
d0bb674
commit 32fbd51
Showing
37 changed files
with
3,460 additions
and
1,590 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,32 +1,32 @@ | ||
--- | ||
name: Bug report | ||
name: ioBroker.teslafi bug report | ||
about: Something is not working as it should | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
title: "" | ||
labels: "" | ||
assignees: "" | ||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
|
||
1. Go to '...' | ||
2. Click on '...' | ||
3. Scroll down to '....' | ||
4. See error | ||
3. See error | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Screenshots & Logfiles** | ||
If applicable, add screenshots and logfiles to help explain your problem. | ||
|
||
**Versions:** | ||
- Adapter version: <adapter-version> | ||
- JS-Controller version: <js-controller-version> <!-- determine this with `iobroker -v` on the console --> | ||
- Node version: <node-version> <!-- determine this with `node -v` on the console --> | ||
- Operating system: <os-name> | ||
**Versions:** | ||
- Adapter version: <adapter-version> | ||
- JS-Controller version: <js-controller-version> <!-- determine this with `iobroker -v` on the console --> | ||
- Node version: <node-version> <!-- determine this with `node -v` on the console --> | ||
- Operating system: <os-name> | ||
|
||
**Additional context** | ||
Add any other context about the problem here. |
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,32 @@ | ||
--- | ||
name: Bug report | ||
about: Something is not working as it should | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
1. Go to '...' | ||
2. Click on '...' | ||
3. Scroll down to '....' | ||
4. See error | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Screenshots & Logfiles** | ||
If applicable, add screenshots and logfiles to help explain your problem. | ||
|
||
**Versions:** | ||
- Adapter version: <adapter-version> | ||
- JS-Controller version: <js-controller-version> <!-- determine this with `iobroker -v` on the console --> | ||
- Node version: <node-version> <!-- determine this with `node -v` on the console --> | ||
- Operating system: <os-name> | ||
|
||
**Additional context** | ||
Add any other context about the problem here. |
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 |
---|---|---|
@@ -0,0 +1,96 @@ | ||
name: Test and Release | ||
|
||
# Run this job on all pushes and pull requests | ||
# as well as tags with a semantic version | ||
on: | ||
push: | ||
branches: | ||
- "main" | ||
tags: | ||
# normal versions | ||
- "v[0-9]+.[0-9]+.[0-9]+" | ||
# pre-releases | ||
- "v[0-9]+.[0-9]+.[0-9]+-**" | ||
pull_request: {} | ||
|
||
# Cancel previous PR/branch runs when a new commit is pushed | ||
concurrency: | ||
group: ${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
# Performs quick checks before the expensive test runs | ||
check-and-lint: | ||
if: contains(github.event.head_commit.message, '[skip ci]') == false | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: ioBroker/testing-action-check@v1 | ||
with: | ||
node-version: '16.x' | ||
# Uncomment the following line if your adapter cannot be installed using 'npm ci' | ||
# install-command: 'npm install' | ||
type-checking: true | ||
lint: true | ||
|
||
# Runs adapter tests on all supported node versions and OSes | ||
adapter-tests: | ||
if: contains(github.event.head_commit.message, '[skip ci]') == false | ||
|
||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
node-version: [14.x, 16.x, 18.x] | ||
os: [ubuntu-latest, windows-latest, macos-latest] | ||
|
||
steps: | ||
- uses: ioBroker/testing-action-adapter@v1 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
os: ${{ matrix.os }} | ||
# Uncomment the following line if your adapter cannot be installed using 'npm ci' | ||
# install-command: 'npm install' | ||
build: true | ||
|
||
# TODO: To enable automatic npm releases, create a token on npmjs.org | ||
# Enter this token as a GitHub secret (with name NPM_TOKEN) in the repository options | ||
# Then uncomment the following block: | ||
|
||
# # Deploys the final package to NPM | ||
# deploy: | ||
# needs: [check-and-lint, adapter-tests] | ||
# | ||
# # Trigger this step only when a commit on any branch is tagged with a version number | ||
# if: | | ||
# contains(github.event.head_commit.message, '[skip ci]') == false && | ||
# github.event_name == 'push' && | ||
# startsWith(github.ref, 'refs/tags/v') | ||
# | ||
# runs-on: ubuntu-latest | ||
# | ||
# # Write permissions are required to create Github releases | ||
# permissions: | ||
# contents: write | ||
# | ||
# steps: | ||
# - uses: ioBroker/testing-action-deploy@v1 | ||
# with: | ||
# node-version: '16.x' | ||
# # Uncomment the following line if your adapter cannot be installed using 'npm ci' | ||
# # install-command: 'npm install' | ||
# build: true | ||
# npm-token: ${{ secrets.NPM_TOKEN }} | ||
# github-token: ${{ secrets.GITHUB_TOKEN }} | ||
# | ||
# # When using Sentry for error reporting, Sentry can be informed about new releases | ||
# # To enable create a API-Token in Sentry (User settings, API keys) | ||
# # Enter this token as a GitHub secret (with name SENTRY_AUTH_TOKEN) in the repository options | ||
# # Then uncomment and customize the following block: | ||
# sentry: true | ||
# sentry-token: ${{ secrets.SENTRY_AUTH_TOKEN }} | ||
# sentry-project: "iobroker-teslafi" | ||
# sentry-version-prefix: "iobroker.teslafi" | ||
# sentry-sourcemap-paths: "build/" | ||
# # If your sentry project is linked to a GitHub repository, you can enable the following option | ||
# # sentry-github-integration: true |
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,3 +1,4 @@ | ||
package.json | ||
package-lock.json | ||
build/ | ||
build/ | ||
test-and-release.yml |
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
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) 2024 hombach <[email protected]> | ||
Copyright (c) 2024 Hombach <[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 |
---|---|---|
@@ -1,26 +1,36 @@ | ||
![Logo](admin/teslafi.png) | ||
|
||
# ioBroker.teslafi | ||
|
||
[![NPM version](https://img.shields.io/npm/v/iobroker.teslafi.svg)](https://www.npmjs.com/package/iobroker.teslafi) | ||
[![Downloads](https://img.shields.io/npm/dm/iobroker.teslafi.svg)](https://www.npmjs.com/package/iobroker.teslafi) | ||
![Number of Installations](https://iobroker.live/badges/teslafi-installed.svg) | ||
![Current version in stable repository](https://iobroker.live/badges/teslafi-stable.svg) | ||
![node-lts](https://img.shields.io/node/v-lts/iobroker.teslafi?style=flat-square) | ||
![Libraries.io dependency status for latest release](https://img.shields.io/librariesio/release/npm/iobroker.teslafi?label=npm%20dependencies&style=flat-square) | ||
|
||
[![NPM](https://nodei.co/npm/iobroker.teslafi.png?downloads=true)](https://nodei.co/npm/iobroker.teslafi/) | ||
![GitHub](https://img.shields.io/github/license/hombach/iobroker.teslafi?style=flat-square) | ||
![GitHub repo size](https://img.shields.io/github/repo-size/hombach/iobroker.teslafi?logo=github&style=flat-square) | ||
![GitHub commit activity](https://img.shields.io/github/commit-activity/m/hombach/iobroker.teslafi?logo=github&style=flat-square) | ||
![GitHub last commit](https://img.shields.io/github/last-commit/hombach/iobroker.teslafi?logo=github&style=flat-square) | ||
![GitHub issues](https://img.shields.io/github/issues/hombach/iobroker.teslafi?logo=github&style=flat-square) | ||
|
||
**Tests:** ![Test and Release](https://github.com/hombach/ioBroker.teslafi/workflows/Test%20and%20Release/badge.svg) | ||
![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/hombach/iobroker.teslafi/test-and-release.yml?branch=main&logo=github&style=flat-square) | ||
[![CodeQL](https://github.com/hombach/ioBroker.teslafi/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/hombach/ioBroker.teslafi/actions/workflows/codeql-analysis.yml) | ||
[![Appveyor-CI](https://ci.appveyor.com/api/projects/status/github/hombach/ioBroker.teslafi?branch=master&svg=true)](https://ci.appveyor.com/project/hombach/iobroker-teslafi) | ||
|
||
## teslafi adapter for ioBroker | ||
## Versions | ||
|
||
TeslaFi-Description | ||
![Beta](https://img.shields.io/npm/v/iobroker.teslafi.svg?color=red&label=beta) | ||
![Stable](https://iobroker.live/badges/teslafi-stable.svg) | ||
![Installed](https://iobroker.live/badges/teslafi-installed.svg) | ||
|
||
## Developer manual | ||
This section is intended for the developer. It can be deleted later. | ||
[![NPM](https://nodei.co/npm/iobroker.teslafi.png?downloads=true)](https://nodei.co/npm/iobroker.teslafi/) | ||
|
||
### DISCLAIMER | ||
## Adapter to poll TeslaFi data of your car | ||
|
||
Please make sure that you consider copyrights and trademarks when you use names or logos of a company and add a disclaimer to your README. | ||
You can check other adapters for examples or ask in the developer community. Using a name or logo of a company without permission may cause legal problems for you. | ||
TeslaFi adapter description | ||
|
||
## Developer manual | ||
This section is intended for the developer. It can be deleted later. | ||
|
||
### Getting started | ||
|
||
|
@@ -84,16 +94,19 @@ dev-server watch | |
``` | ||
|
||
Please refer to the [`dev-server` documentation](https://github.com/ioBroker/dev-server#readme) for more details. | ||
## Sentry | ||
|
||
## Donate | ||
|
||
## Changelog | ||
|
||
### 0.0.1 | ||
### 0.0.1 (2024-10-xx) | ||
* (hombach) initial release | ||
|
||
## License | ||
MIT License | ||
|
||
Copyright (c) 2024 hombach <[email protected]> | ||
Copyright (c) 2024 C.Hombach <[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 | ||
|
@@ -111,4 +124,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | |
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. | ||
SOFTWARE. |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.