Skip to content

Commit

Permalink
v1.0.1
Browse files Browse the repository at this point in the history
* Add discord webhook to notify developers of new updates
* update dependencies
  • Loading branch information
donavanbecker committed Jan 8, 2024
1 parent d843e65 commit e68dad4
Show file tree
Hide file tree
Showing 6 changed files with 117 additions and 58 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/discord-webhooks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# This is a basic workflow to help you get started with Actions

name: Discord Webhooks

# Controls when the workflow will run
on:
release:
types: [released, prereleased]

jobs:
github-releases-to-discord:
uses: homebridge/.github/.github/workflows/discord-webhooks.yml@latest
with:
footer_title: "plugin-ui-utils"
secrets:
DISCORD_WEBHOOK_URL_LATEST: ${{ secrets.DISCORD_WEBHOOK_URL_LATEST }}
DISCORD_WEBHOOK_URL_BETA: ${{ secrets.DISCORD_WEBHOOK_URL_LATEST }}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -121,3 +121,4 @@ dist

# IDEs
.idea
.DS_Store
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"editor.insertSpaces": true,
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
"source.fixAll.eslint": "explicit"
},
"editor.rulers": [
140
Expand Down
19 changes: 17 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
## 1.0.0
# Changelog

Initial release
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.

### [1.0.1](https://github.com/homebridge/plugin-ui-utils/compare/v1.0.0...v1.0.1) (2024-01-08)


### Other Changes

* Add discord webhook to notify developers of new updates
* update dependencies

### [1.0.0](https://github.com/homebridge/plugin-ui-utils/tree/v1.0.0) (2023-10-23)


### Other Changes

* Initial release
125 changes: 75 additions & 50 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@homebridge/plugin-ui-utils",
"version": "1.0.0",
"version": "1.0.1",
"description": "A tool to help plugins provide custom ui screens in the Homebridge UI",
"author": "oznu",
"license": "MIT",
Expand All @@ -15,16 +15,17 @@
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"check": "npm install && npm outdated",
"lint": "eslint src/**.ts --max-warnings=0",
"build": "rimraf ./dist && tsc --project tsconfig.json && tsc --project tsconfig.ui.json",
"prepublishOnly": "npm run lint && npm run build",
"test": "echo \"No test script specified\" && exit 0",
"test-coverage": "echo \"No test-coverage script specified\" && exit 0"
},
"devDependencies": {
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@types/node": "^20.10.7",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"eslint": "^8.56.0",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
Expand All @@ -34,4 +35,4 @@
"homebridge",
"homebridge-ui"
]
}
}

0 comments on commit e68dad4

Please sign in to comment.