-
Notifications
You must be signed in to change notification settings - Fork 1
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
DutchmanNL
committed
Nov 26, 2023
0 parents
commit b88f851
Showing
45 changed files
with
10,882 additions
and
0 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,35 @@ | ||
{ | ||
"cli": true, | ||
"target": "directory", | ||
"adapterName": "open-epaper-link", | ||
"title": "OpenEPaperLink", | ||
"description": "Alternative firmware and protocol for the ZBS243-based Electronic Shelf Labels - ESL / price tags by Solum / Samsung. It can be used to setup E-Paper tags and supply them with content.", | ||
"keywords": ["epaper", "openepaper", "openepaperlink"], | ||
"contributors": ["ticaki", "@slimline33"], | ||
"expert": "yes", | ||
"features": ["adapter"], | ||
"adminFeatures": [], | ||
"type": "hardware", | ||
"startMode": "daemon", | ||
"connectionType": "local", | ||
"dataSource": "push", | ||
"connectionIndicator": "yes", | ||
"language": "TypeScript", | ||
"nodeVersion": "18", | ||
"adminUi": "json", | ||
"tools": ["ESLint", "Prettier"], | ||
"releaseScript": "yes", | ||
"devServer": "no", | ||
"indentation": "Tab", | ||
"quotes": "single", | ||
"es6class": "yes", | ||
"authorName": "DutchmanNL", | ||
"authorGithub": "DrozmotiX", | ||
"authorEmail": "[email protected]", | ||
"gitRemoteProtocol": "HTTPS", | ||
"gitCommit": "yes", | ||
"defaultBranch": "main", | ||
"license": "MIT License", | ||
"dependabot": "yes", | ||
"creatorVersion": "2.5.0" | ||
} |
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,4 @@ | ||
build/ | ||
.prettierrc.js | ||
**/.eslintrc.js | ||
admin/words.js |
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,54 @@ | ||
module.exports = { | ||
root: true, // Don't look outside this project for inherited configs | ||
parser: '@typescript-eslint/parser', // Specifies the ESLint parser | ||
parserOptions: { | ||
ecmaVersion: 2020, // Allows for the parsing of modern ECMAScript features | ||
sourceType: 'module', // Allows for the use of imports | ||
project: './tsconfig.json', | ||
}, | ||
extends: [ | ||
'plugin:@typescript-eslint/recommended', // Uses the recommended rules from the @typescript-eslint/eslint-plugin | ||
'plugin:prettier/recommended', // Enables eslint-plugin-prettier and displays prettier errors as ESLint errors. Make sure this is always the last configuration in the extends array. | ||
], | ||
plugins: [], | ||
rules: { | ||
'@typescript-eslint/no-parameter-properties': 'off', | ||
'@typescript-eslint/no-explicit-any': 'off', | ||
'@typescript-eslint/no-use-before-define': [ | ||
'error', | ||
{ | ||
functions: false, | ||
typedefs: false, | ||
classes: false, | ||
}, | ||
], | ||
'@typescript-eslint/no-unused-vars': [ | ||
'error', | ||
{ | ||
ignoreRestSiblings: true, | ||
argsIgnorePattern: '^_', | ||
}, | ||
], | ||
'@typescript-eslint/explicit-function-return-type': [ | ||
'warn', | ||
{ | ||
allowExpressions: true, | ||
allowTypedFunctionExpressions: true, | ||
}, | ||
], | ||
'@typescript-eslint/no-object-literal-type-assertion': 'off', | ||
'@typescript-eslint/interface-name-prefix': 'off', | ||
'@typescript-eslint/no-non-null-assertion': 'off', // This is necessary for Map.has()/get()! | ||
'no-var': 'error', | ||
'prefer-const': 'error', | ||
'no-trailing-spaces': 'error', | ||
}, | ||
overrides: [ | ||
{ | ||
files: ['*.test.ts'], | ||
rules: { | ||
'@typescript-eslint/explicit-function-return-type': 'off', | ||
}, | ||
}, | ||
], | ||
}; |
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
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: | ||
- DrozmotiX | ||
versioning-strategy: increase | ||
|
||
- package-ecosystem: github-actions | ||
directory: "/" | ||
schedule: | ||
interval: monthly | ||
time: "04:00" | ||
timezone: Europe/Berlin | ||
open-pull-requests-limit: 5 | ||
assignees: | ||
- DrozmotiX |
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@v4 | ||
|
||
- 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
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: '18.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: [16.x, 18.x, 20.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: '18.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-open-epaper-link" | ||
# sentry-version-prefix: "iobroker.open-epaper-link" | ||
# 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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# No dot-directories except github/vscode | ||
.*/ | ||
!.vscode/ | ||
!.github/ | ||
|
||
*.code-workspace | ||
node_modules | ||
nbproject | ||
|
||
# npm package files | ||
iobroker.*.tgz | ||
|
||
Thumbs.db | ||
|
||
# i18n intermediate files | ||
admin/i18n/flat.txt | ||
admin/i18n/*/flat.txt |
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,3 @@ | ||
package.json | ||
package-lock.json | ||
build/ |
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,9 @@ | ||
module.exports = { | ||
semi: true, | ||
trailingComma: 'all', | ||
singleQuote: true, | ||
printWidth: 120, | ||
useTabs: true, | ||
tabWidth: 4, | ||
endOfLine: 'lf', | ||
}; |
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,6 @@ | ||
{ | ||
"plugins": ["iobroker", "license", "manual-review"], | ||
"exec": { | ||
"before_commit": "npm run build" | ||
} | ||
} |
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,3 @@ | ||
{ | ||
"recommendations": ["dbaeumer.vscode-eslint", "esbenp.prettier-vscode"] | ||
} |
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,21 @@ | ||
{ | ||
"typescript.tsdk": "node_modules/typescript/lib", | ||
"eslint.enable": true, | ||
"editor.formatOnSave": true, | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"[typescript]": { | ||
"editor.codeActionsOnSave": { | ||
"source.organizeImports": true | ||
} | ||
}, | ||
"json.schemas": [ | ||
{ | ||
"fileMatch": ["io-package.json"], | ||
"url": "https://raw.githubusercontent.com/ioBroker/ioBroker.js-controller/master/schemas/io-package.json" | ||
}, | ||
{ | ||
"fileMatch": ["admin/jsonConfig.json", "admin/jsonCustom.json", "admin/jsonTab.json"], | ||
"url": "https://raw.githubusercontent.com/ioBroker/adapter-react-v5/main/schemas/jsonConfig.json" | ||
} | ||
] | ||
} |
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,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2023 DutchmanNL <[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 | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
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. |
Oops, something went wrong.