purifier-card 2.6.2 → 2.6.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/main.yml +5 -5
- package/.github/workflows/stale.yml +1 -1
- package/README.md +10 -4
- package/dist/purifier-card.js +2 -2
- package/package.json +11 -3
- package/src/localize.ts +8 -4
- package/src/purifier-card.ts +5 -5
- package/src/translations/pt.json +40 -0
- package/src/translations/sk.json +37 -0
- /package/src/translations/{zh-CN.json → zh-Hans.json} +0 -0
- /package/src/translations/{zh-TW.json → zh-Hant.json} +0 -0
|
@@ -4,6 +4,7 @@ on:
|
|
|
4
4
|
pull_request:
|
|
5
5
|
|
|
6
6
|
permissions:
|
|
7
|
+
id-token: write # Required for OIDC
|
|
7
8
|
contents: write
|
|
8
9
|
pull-requests: write
|
|
9
10
|
|
|
@@ -17,10 +18,10 @@ jobs:
|
|
|
17
18
|
runs-on: ubuntu-latest
|
|
18
19
|
steps:
|
|
19
20
|
- name: ⬇️ Checkout Repo
|
|
20
|
-
uses: actions/checkout@
|
|
21
|
+
uses: actions/checkout@v6
|
|
21
22
|
|
|
22
23
|
- name: ⬢ Setup Node.js
|
|
23
|
-
uses: actions/setup-node@
|
|
24
|
+
uses: actions/setup-node@v6
|
|
24
25
|
with:
|
|
25
26
|
node-version: '*'
|
|
26
27
|
cache: npm
|
|
@@ -38,10 +39,10 @@ jobs:
|
|
|
38
39
|
if: github.ref_name == 'main' && (github.event_name == 'push' || github.event.pull_request.merged)
|
|
39
40
|
steps:
|
|
40
41
|
- name: ⬇️ Checkout Repo
|
|
41
|
-
uses: actions/checkout@
|
|
42
|
+
uses: actions/checkout@v6
|
|
42
43
|
|
|
43
44
|
- name: ⬢ Setup Node.js
|
|
44
|
-
uses: actions/setup-node@
|
|
45
|
+
uses: actions/setup-node@v6
|
|
45
46
|
with:
|
|
46
47
|
node-version: '*'
|
|
47
48
|
cache: npm
|
|
@@ -56,7 +57,6 @@ jobs:
|
|
|
56
57
|
run: npx semantic-release
|
|
57
58
|
env:
|
|
58
59
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
59
|
-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
60
60
|
|
|
61
61
|
dependabot:
|
|
62
62
|
name: Dependabot Auto-merge
|
package/README.md
CHANGED
|
@@ -238,13 +238,15 @@ This card supports translations. Please, help to add more translations and impro
|
|
|
238
238
|
- Čeština (Czech)
|
|
239
239
|
- Dutch (Netherlands)
|
|
240
240
|
- Español (Spanish)
|
|
241
|
+
- Slovenčina (Slovak)
|
|
242
|
+
- Português (Portuguese)
|
|
241
243
|
- [_Your language?_][add-translation]
|
|
242
244
|
|
|
243
245
|
## Supported models
|
|
244
246
|
|
|
245
247
|
This card relies on basic fan services, like `toggle`, `turn_on`, `turn_off`, etc. It should work with any air purifier, however I can physically test it only with my own purifier.
|
|
246
248
|
|
|
247
|
-
If this card works with your air purifier, please open a PR and your model to the list.
|
|
249
|
+
If this card works with your air purifier, please open a PR and your model to the list (in alphabetical order).
|
|
248
250
|
|
|
249
251
|
- Air Purifier 4 Pro
|
|
250
252
|
- Air Purifier 3/3H
|
|
@@ -254,11 +256,15 @@ If this card works with your air purifier, please open a PR and your model to th
|
|
|
254
256
|
- Coway Airmega 300S/400S ([using IoCare custom component](https://github.com/RobertD502/home-assistant-iocare))
|
|
255
257
|
- Dyson Pure Cool/Cool Link/Cool Desk/Cool Link Desk ([using Dyson custom integration](https://github.com/libdyson-wg/ha-dyson))
|
|
256
258
|
- Dyson Pure Humidify+Cool ([using Dyson custom integration](https://github.com/libdyson-wg/ha-dyson))
|
|
257
|
-
-
|
|
258
|
-
-
|
|
259
|
-
- SmartMI Air Purifier
|
|
259
|
+
- Dyson Purifier Hot+Cool HP2 De-NOx ([using Dyson custom integration](https://github.com/libdyson-wg/ha-dyson))
|
|
260
|
+
- Honeywell H-Cat Air Purifier ([using Local Tuya integration](https://github.com/xZetsubou/hass-localtuya))
|
|
260
261
|
- Ikea Starkvind
|
|
262
|
+
- Levoit Air Purifier (Core 200S) (partially)
|
|
261
263
|
- Levoit Air Purifier (Core 400S)
|
|
264
|
+
- Philips AirPurifier AC3858/50 (partially)
|
|
265
|
+
- Philips AirPurifier AC4221/11 ([using philips-airpurifier-coap cutom component](https://github.com/kongo09/philips-airpurifier-coap))
|
|
266
|
+
- SmartMI Air Purifier
|
|
267
|
+
- Winix AM90 Wi-Fi Air Purifier
|
|
262
268
|
- [_Your purifier?_][edit-readme]
|
|
263
269
|
|
|
264
270
|
## Development
|