Skip to content

Commit

Permalink
Prepare Release 0.1.0nc for Nextcloud
Browse files Browse the repository at this point in the history
  • Loading branch information
alexstocker committed Feb 14, 2019
1 parent 8c09003 commit c43272f
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SensorLogger
### 0.1.0nc UNRELEASED
### 0.1.0nc RELEASED
* Renamed SensorDevices to Devices
* Renamed SensorGroups to DeviceGroup
* Added DeleteDeviceGroup, Added DeleteDeviceType. #73 #6 contributed by @issb-gh
Expand Down
18 changes: 14 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
# SensorLogger

### Latest SensorLogger Version for nextcloud
- [0.0.9nc](https://github.com/alexstocker/sensorlogger/releases/tag/0.0.9nc)
### Latest Stable Release
- owncloud [0.1.0](https://github.com/alexstocker/sensorlogger/releases/tag/0.1.0)
- nextcloud [0.1.0nc](https://github.com/alexstocker/sensorlogger/releases/tag/0.1.0nc)

### Upcoming SensorLogger Version for nextcloud
- 0.1.0nc
### Latest Stable Branches
- owncloud [0.1-stable](https://github.com/alexstocker/sensorlogger/tree/0.1-stable)
- nextclout [0.1-nc-stable](https://github.com/alexstocker/sensorlogger/tree/0.1-nc-stable)

### Current Development Branches
- owncloud [0.1-devel](https://github.com/alexstocker/sensorlogger/tree/0.1-devel)
- nextclout [0.1-nc-devel](https://github.com/alexstocker/sensorlogger/tree/0.1-nc-devel)

### Upcomming Versions
- owncloud 0.1.1
- nextcloud 0.1.1

Read more [SensorLogger WIKI](https://github.com/alexstocker/sensorlogger/wiki/)

Expand Down
2 changes: 1 addition & 1 deletion tests/curl/post.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
$data_json = json_encode($array);

$username = 'admin';
$token = 'bNPab-Sc8ZG-nkWJr-FyFBL-dawg3';
$token = 'XSEZa-cQqwz-jDzcX-9Tq5m-mQjc8';

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
Expand Down
6 changes: 3 additions & 3 deletions tests/curl/post_extend.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
$temperature = mt_rand (-9.00*10, 49.99*10) / 10;
$co2 = mt_rand (1*10, 1000*10) / 10;

$array = array("deviceId" => "000e643ee8-0f9f-11e7-93ae-92361f002675",
$array = array("deviceId" => "0e643ee8-0f9f-11e7-93ae-92361f002675",
"date" => date('Y-m-d H:i:s'),
"data" => array(array(
"dataTypeId" => 1,
Expand All @@ -23,8 +23,8 @@

$data_json = json_encode($array);

$username = 'admin';
$token = 'QwJna-jcN3p-JrgwE-4S3Mf-pD4f5';
$username = 'admin';
$token = 'XSEZa-cQqwz-jDzcX-9Tq5m-mQjc8';

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
Expand Down
2 changes: 1 addition & 1 deletion tests/curl/register.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
#$username = 'test';
#$token = 'TJWRN-AGRIW-FXCZW-EQXFX';
$username = 'admin';
$token = 'QwJna-jcN3p-JrgwE-4S3Mf-pD4f5';
$token = 'XSEZa-cQqwz-jDzcX-9Tq5m-mQjc8';

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
Expand Down

0 comments on commit c43272f

Please sign in to comment.