Skip to content

Commit

Permalink
chore: release v0.1.3
Browse files Browse the repository at this point in the history
- fix for login
  • Loading branch information
TA2k committed Oct 21, 2024
1 parent 1f37304 commit 18ae6df
Show file tree
Hide file tree
Showing 13 changed files with 2,219 additions and 1,727 deletions.
40 changes: 0 additions & 40 deletions .eslintrc.json

This file was deleted.

3 changes: 3 additions & 0 deletions .releaseconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"plugins": ["iobroker", "license", "manual-review"]
}
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2022 TA2k <tombox2020@gmail.com>
Copyright (c) 2022-2030 TA2k <tombox2020@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,9 @@ AC Heizen
<https://forum.iobroker.net/topic/55667/test-adapter-hoover-hon>

## Changelog
### 0.1.3 (2024-10-21)

- fix for login

### 0.0.7

Expand All @@ -289,7 +292,7 @@ AC Heizen

MIT License

Copyright (c) 2022 TA2k <tombox2020@gmail.com>
Copyright (c) 2022-2030 TA2k <tombox2020@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
44 changes: 44 additions & 0 deletions eslint.config.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
const globals = require("globals");
const js = require("@eslint/js");

const {
FlatCompat,
} = require("@eslint/eslintrc");

const compat = new FlatCompat({
baseDirectory: __dirname,
recommendedConfig: js.configs.recommended,
allConfig: js.configs.all
});

module.exports = [...compat.extends("eslint:recommended"), {
plugins: {},

languageOptions: {
globals: {
...globals.node,
...globals.mocha,
},

ecmaVersion: 2020,
sourceType: "commonjs",
},

rules: {
indent: ["error", 2, {
SwitchCase: 1,
}],

"no-console": "off",
"no-var": "error",
"no-trailing-spaces": "error",
"prefer-const": "error",

quotes: ["error", "double", {
avoidEscape: true,
allowTemplateLiterals: true,
}],

semi: ["error", "always"],
},
}];
47 changes: 27 additions & 20 deletions io-package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,21 @@
{
"common": {
"name": "hoover",
"version": "0.1.2",
"version": "0.1.3",
"news": {
"0.1.3": {
"en": "fix for login",
"de": "fix für anmeldung",
"ru": "для входа",
"pt": "correção para login",
"nl": "fix voor aanmelden",
"fr": "correction de la connexion",
"it": "correzione per il login",
"es": "fijación para iniciar sesión",
"pl": "fix dla logowania",
"uk": "фіксувати логін",
"zh-cn": "登录的固定"
},
"0.1.2": {
"en": "Fix non mac devices",
"de": "Fix nicht mac Geräte"
Expand All @@ -23,21 +36,6 @@
},
"0.0.4": {
"en": "fix token refresh"
},
"0.0.3": {
"en": "fix NotAuthorizedException issue"
},
"0.0.2": {
"en": "initial release",
"de": "Erstveröffentlichung",
"ru": "Начальная версия",
"pt": "lançamento inicial",
"nl": "Eerste uitgave",
"fr": "Première version",
"it": "Versione iniziale",
"es": "Versión inicial",
"pl": "Pierwsze wydanie",
"zh-cn": "首次出版"
}
},
"titleLang": {
Expand All @@ -64,8 +62,13 @@
"pl": "Adapter do odkurzaczy",
"zh-cn": "胡佛设备适配器"
},
"authors": ["TA2k <tombox2020@gmail.com>"],
"keywords": ["hoover", "hon"],
"authors": [
"TA2k <tombox2020@gmail.com>"
],
"keywords": [
"hoover",
"hon"
],
"license": "MIT",
"platform": "Javascript/Node.js",
"main": "main.js",
Expand Down Expand Up @@ -99,8 +102,12 @@
}
]
},
"encryptedNative": ["password"],
"protectedNative": ["password"],
"encryptedNative": [
"password"
],
"protectedNative": [
"password"
],
"native": {
"username": "",
"password": "",
Expand Down
Loading

0 comments on commit 18ae6df

Please sign in to comment.