Skip to content

Commit

Permalink
Prepare Release 0.1.0 for owncloud
Browse files Browse the repository at this point in the history
  • Loading branch information
alexstocker committed Feb 14, 2019
1 parent faf4fb9 commit 9a2824d
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 17 deletions.
5 changes: 2 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SensorLogger
### 0.1.0 UNRELEASED
### 0.1.0 RELEASED
* Fixed GetDeviceDataTypes API call
* Renamed SensorDevices to Devices
* Renamed SensorGroups to DeviceGroup
Expand Down Expand Up @@ -27,8 +27,7 @@
* Removed obsolete and undefined properties in LogExtended
* Adding some more requirements

### 0.0.10 UNRELEASED

### 0.0.10 REVOKED

### 0.0.9 RELEASED
* Fixed min-version property due semver
Expand Down
18 changes: 13 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
# SensorLogger

### Latest Versions
- owncloud [0.0.9](https://github.com/alexstocker/sensorlogger/releases/tag/0.0.9)
- 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)

### 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.0
- nextcloud 0.1.0
- owncloud 0.1.1
- nextcloud 0.1.1

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

Expand Down
6 changes: 3 additions & 3 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
</types>

<documentation>
<user>https://github.com/alexstocker/sensorlogger/wiki/</user>
<admin>https://github.com/alexstocker/sensorlogger/wiki</admin>
<developer>https://github.com/alexstocker/sensorlogger/wiki</developer>
<user>https://github.com/alexstocker/sensorlogger/wiki/Users</user>
<admin>https://github.com/alexstocker/sensorlogger/wiki/Administrators</admin>
<developer>https://github.com/alexstocker/sensorlogger/Developers</developer>
</documentation>

<repository type="git">https://github.com/alexstocker/sensorlogger.git</repository>
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 = 'RWGFF-KMZUC-NFOQD-CMXCC';
$token = 'ZOVOP-DABCK-ZGQMI-UDXKA';

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

$array = array("deviceId" => "0e643ee8-0f9f-11e7-93ae-92361f002675",
$array = array("deviceId" => "6e643ee8-0f9f-11e7-93ae-92361f002675",
"date" => date('Y-m-d H:i:s'),
"data" => array(array(
"dataTypeId" => 7,
"dataTypeId" => 1,
"value" => $temperature
),
array(
"dataTypeId" => 8,
"dataTypeId" => 2,
"value" => $humidity
),
array(
"dataTypeId" => 9,
"dataTypeId" => 3,
"value" => $co2,
)
));

$data_json = json_encode($array);

$username = 'admin';
$token = 'AZDMW-FWBYN-JLQAJ-YXHMD';
$token = 'ZOVOP-DABCK-ZGQMI-UDXKA';
//$username = 'test';
//$token = 'GLOKN-ZRYIN-POCRJ-NFLYK';

Expand Down

0 comments on commit 9a2824d

Please sign in to comment.