Skip to content

Commit

Permalink
Merge pull request #17 from rmmlr/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
rmmlr authored Oct 16, 2018
2 parents eea6089 + 65df869 commit c354f1a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions HueHook_Test/HueHookSettings_Test.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ namespace HueHook_Test
[TestClass]
public class HueHookSettings_Test
{
[TestMethod]
[TestMethod, TestCategory("Settings")]
public void WriteSettingsToXml()
{
var testObject = GenDummySettings();

testObject.ToFile("HueHookSettings_Test_WriteSettingsToXml.xml");
}

[TestMethod]
[TestMethod, TestCategory("Settings")]
public void ReadSettingsFromXml()
{
var dummy = GenDummySettings();
Expand Down
10 changes: 5 additions & 5 deletions HueHook_Test/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

[assembly: AssemblyTitle("HueHook_Test")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyTitle("HueHook Test-Project")]
[assembly: AssemblyDescription("For more informations visit: https://github.com/rmmlr/HueHook")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("BOSCH")]
[assembly: AssemblyProduct("HueHook_Test")]
[assembly: AssemblyCopyright("Copyright © BOSCH 2018")]
[assembly: AssemblyCompany("RC-Art Solutions")]
[assembly: AssemblyProduct("HueHook")]
[assembly: AssemblyCopyright("Copyright © RC-Art Solutions 2018")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Control your Philips Hue system with simple HTTP GET requests. POST parameters a
### Start the program

#### Since version [1.0.19](https://github.com/rmmlr/HueHook/releases/tag/1.0.19)
Before the first program start, a settings file must be created. You can modify the example file, found in [ExampleData/HueHookSettings.xml](https://github.com/rmmlr/HueHook/blob/master/ExampleData/HueHookSettings.xml). The file must be in the same directory as the program and named `HueHookSettings.xml`. See next point [Settings](#Settings) for detailed informations.
Before the first program start, a settings file must be created. You can modify the example file, found in [ExampleData/HueHookSettings.xml](https://github.com/rmmlr/HueHook/blob/master/ExampleData/HueHookSettings.xml). The file must be in the same directory as the program and named `HueHookSettings.xml`. See next point [Settings](#settings) for detailed informations.

#### Up to version [1.0.18](https://github.com/rmmlr/HueHook/releases/tag/1.0.18)
Run the HueHookServer.exe with 2 start parameters.
Expand Down Expand Up @@ -61,6 +61,7 @@ The url `http://192.168.0.1/light.hue?id=1&on=1&bri=127` means, switch on the li
#### Security
* Since version [1.0.14](https://github.com/rmmlr/HueHook/releases/tag/1.0.14) access is only allowed from the same computer on which the program is running.
* Since version [1.0.15](https://github.com/rmmlr/HueHook/releases/tag/1.0.15) access is managed by a whitlist file, this file contains whitlisted ip-addresses (each per line). The file must be in the same directory as the program and named `ip-whitelist.txt`. An example you can find under [ExampleData](https://github.com/rmmlr/HueHook/blob/master/ExampleData).
* Since version [1.0.19](https://github.com/rmmlr/HueHook/releases/tag/1.0.19) the whitelist is defined in the settings file. See [Since version 1.0.19](https://github.com/rmmlr/HueHook/blob/develop/README.md#since-version-1019).

## Releases
This project build on the continuous integration (CI) platform [AppVeyor](https://www.appveyor.com/) and released in the [Release-Feed](https://github.com/rmmlr/HueHook/releases).
Expand Down

0 comments on commit c354f1a

Please sign in to comment.