Skip to content

Commit e68dad4

Browse files
committed
v1.0.1
* Add discord webhook to notify developers of new updates * update dependencies
1 parent d843e65 commit e68dad4

File tree

6 files changed

+117
-58
lines changed

6 files changed

+117
-58
lines changed
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# This is a basic workflow to help you get started with Actions
2+
3+
name: Discord Webhooks
4+
5+
# Controls when the workflow will run
6+
on:
7+
release:
8+
types: [released, prereleased]
9+
10+
jobs:
11+
github-releases-to-discord:
12+
uses: homebridge/.github/.github/workflows/discord-webhooks.yml@latest
13+
with:
14+
footer_title: "plugin-ui-utils"
15+
secrets:
16+
DISCORD_WEBHOOK_URL_LATEST: ${{ secrets.DISCORD_WEBHOOK_URL_LATEST }}
17+
DISCORD_WEBHOOK_URL_BETA: ${{ secrets.DISCORD_WEBHOOK_URL_LATEST }}

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -121,3 +121,4 @@ dist
121121

122122
# IDEs
123123
.idea
124+
.DS_Store

.vscode/settings.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"editor.insertSpaces": true,
55
"editor.formatOnSave": true,
66
"editor.codeActionsOnSave": {
7-
"source.fixAll.eslint": true
7+
"source.fixAll.eslint": "explicit"
88
},
99
"editor.rulers": [
1010
140

CHANGELOG.md

+17-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1-
## 1.0.0
1+
# Changelog
22

3-
Initial release
3+
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4+
5+
### [1.0.1](https://github.com/homebridge/plugin-ui-utils/compare/v1.0.0...v1.0.1) (2024-01-08)
6+
7+
8+
### Other Changes
9+
10+
* Add discord webhook to notify developers of new updates
11+
* update dependencies
12+
13+
### [1.0.0](https://github.com/homebridge/plugin-ui-utils/tree/v1.0.0) (2023-10-23)
14+
15+
16+
### Other Changes
17+
18+
* Initial release

package-lock.json

+75-50
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@homebridge/plugin-ui-utils",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "A tool to help plugins provide custom ui screens in the Homebridge UI",
55
"author": "oznu",
66
"license": "MIT",
@@ -15,16 +15,17 @@
1515
"main": "dist/index.js",
1616
"types": "dist/index.d.ts",
1717
"scripts": {
18+
"check": "npm install && npm outdated",
1819
"lint": "eslint src/**.ts --max-warnings=0",
1920
"build": "rimraf ./dist && tsc --project tsconfig.json && tsc --project tsconfig.ui.json",
2021
"prepublishOnly": "npm run lint && npm run build",
2122
"test": "echo \"No test script specified\" && exit 0",
2223
"test-coverage": "echo \"No test-coverage script specified\" && exit 0"
2324
},
2425
"devDependencies": {
25-
"@types/node": "^20.10.4",
26-
"@typescript-eslint/eslint-plugin": "^6.14.0",
27-
"@typescript-eslint/parser": "^6.14.0",
26+
"@types/node": "^20.10.7",
27+
"@typescript-eslint/eslint-plugin": "^6.18.0",
28+
"@typescript-eslint/parser": "^6.18.0",
2829
"eslint": "^8.56.0",
2930
"rimraf": "^5.0.5",
3031
"ts-node": "^10.9.2",
@@ -34,4 +35,4 @@
3435
"homebridge",
3536
"homebridge-ui"
3637
]
37-
}
38+
}

0 commit comments

Comments
 (0)