Skip to content

Commit

Permalink
Merge pull request #18 from cyface-de/release-0.2.1_DAT-806
Browse files Browse the repository at this point in the history
Release 0.2.1 dat 806
  • Loading branch information
hb0 authored Dec 13, 2021
2 parents 9c4e501 + af487dd commit 46327a5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ plugins {
}

group = 'de.cyface'
version = '0.2.0'
version = '1.0.0'

tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
Expand Down
20 changes: 10 additions & 10 deletions src/main/proto/de/cyface/protos/model/measurement.proto
Original file line number Diff line number Diff line change
Expand Up @@ -60,15 +60,15 @@ message Measurement {
/*
* Acceleration data stored during capturing.
*/
AccelerationsFile accelerations_file = 18;
AccelerationsBinary accelerations_binary = 18;
/*
* Rotation data stored during capturing.
*/
RotationsFile rotations_file = 19;
RotationsBinary rotations_binary = 19;
/*
* Direction data stored during capturing.
*/
DirectionsFile directions_file = 20;
DirectionsBinary directions_binary = 20;

/*
* Collection of events.
Expand Down Expand Up @@ -118,15 +118,15 @@ message MeasurementBytes {
/*
* Acceleration data stored during capturing.
*/
bytes accelerations_file = 18;
bytes accelerations_binary = 18;
/*
* Rotation data stored during capturing.
*/
bytes rotations_file = 19;
bytes rotations_binary = 19;
/*
* Direction data stored during capturing.
*/
bytes directions_file = 20;
bytes directions_binary = 20;
/*
* Collection of events.
*/
Expand All @@ -150,7 +150,7 @@ message MeasurementBytes {
*
* This allows to inject the bytes from a `cyfa` file on the client without parsing the data [DAT-642].
*/
message AccelerationsFile {
message AccelerationsBinary {
/*
* Collection of acceleration point batches.
*
Expand All @@ -164,7 +164,7 @@ message AccelerationsFile {
*
* This allows to inject the bytes from a `cyfa` file on the client without parsing the data [DAT-642].
*/
message RotationsFile {
message RotationsBinary {
/*
* Collection of rotation point batches.
*
Expand All @@ -178,7 +178,7 @@ message RotationsFile {
*
* This allows to inject the bytes from a `cyfa` file on the client without parsing the data [DAT-642].
*/
message DirectionsFile {
message DirectionsBinary {
/*
* Collection of direction point batches.
*
Expand Down Expand Up @@ -661,4 +661,4 @@ message File {
*/
CSV = 4;
}
}
}

0 comments on commit 46327a5

Please sign in to comment.