Skip to content

Commit

Permalink
chore: Packaging for 6.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ztalbot2000 committed Feb 12, 2022
1 parent 465223e commit 6d63996
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Homebridges-cmd4 - CMD4 Plugin for Homebridge - Supports ~All Accessory Types and now all Characteristics too!!
#### 6.1.1 (2022-01-31)
#### 6.1.2 (2022-02-12)

##### Bug Fixes

* bug [#125](https://github.com/ztalbot2000/homebridge-cmd4/pull/125) Manufacturer, serialNumber and Model not displaying in Home ([715a2127](https://github.com/ztalbot2000/homebridge-cmd4/commit/715a21275229ffb395b98a2e7c4f9f3d3fd785dd))
* bug [#127](https://github.com/ztalbot2000/homebridge-cmd4/pull/127") Resolve crash when no internet connection


9 changes: 9 additions & 0 deletions RUNNING_CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Homebridge UI User. Do not click on any inline links. Homebridge UI does not supprt them. Bug#1098

## ChangeLog
* <a href="#Whats-new-in-6-1-2">**Whats new in 6.1.2**</a>
* <a href="#Whats-new-in-6-1-1">**Whats new in 6.1.1**</a>
* <a href="#Whats-new-in-6-1-0">**Whats new in 6.1.0**</a>
* <a href="#Whats-new-in-6-0-4">**Whats new in 6.0.4**</a>
Expand Down Expand Up @@ -81,6 +82,14 @@
* <a href="#Whats-new-in-2-1">**Whats new in 2.1**</a>
* <a href="#Whats-new-in-2-0">**Whats new in 2.0**</a>

<a name="Whats-new-in-6-1-2">## Whats new in 6.1.2</a>
#### 6.1.2 (2022-02-12)

##### Bug Fixes

* bug [#127](https://github.com/ztalbot2000/homebridge-cmd4/pull/127") Resolve crash when no internet connection


<a name="Whats-new-in-6-1-1">## Whats new in 6.1.1</a>
#### 6.1.1 (2022-01-31)

Expand Down
5 changes: 4 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@ function checkForUpdates( )

( async( ) =>
{
// Fix for #127, constant crash loops when no internet connection
// trying to get latest Cmd4 version.
// thx nano9g
try
{
let lv = await getLatestVersion( );
Expand All @@ -82,7 +85,7 @@ function checkForUpdates( )
{
console.log( chalk.green( `[UPDATE AVAILABLE] ` ) + `Version ${lv} of ${myPkg.name} is available. Any release notes can be found here: ` + chalk.underline( `${myPkg.changelog}` ) );
}

}
catch( error )
{
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "homebridge-cmd4",
"description": "Exec Plugin for Homebridge supporting all accessorys and characteristics",
"version": "6.1.1",
"version": "6.1.2",
"license": "MIT",
"author": {
"name": "John Talbot"
Expand Down

0 comments on commit 6d63996

Please sign in to comment.