Skip to content

Commit 064cb1e

Browse files
committed
Fixed a trivial bug.
1 parent 4b1a8d0 commit 064cb1e

File tree

3 files changed

+14
-11
lines changed

3 files changed

+14
-11
lines changed

demo/app-android/app/build.gradle

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -42,16 +42,16 @@ dependencies {
4242
implementation 'androidx.navigation:navigation-ui:2.2.2'
4343
implementation 'com.thefirstlineofcode.chalk:chalk-android:1.0.1-RELEASE'
4444
implementation 'com.thefirstlineofcode.chalk.xeps:chalk-xeps-ibr:1.0.1-RELEASE'
45-
implementation 'com.thefirstlineofcode.sand.client:sand-client-operator:1.0.0-BETA1'
46-
implementation 'com.thefirstlineofcode.sand.client:sand-client-remoting:1.0.0-BETA1'
47-
implementation 'com.thefirstlineofcode.sand.client:sand-client-thing:1.0.0-BETA1'
48-
implementation 'com.thefirstlineofcode.sand.client:sand-client-sensor:1.0.0-BETA1'
49-
implementation 'com.thefirstlineofcode.sand.protocols.things:sand-protocols-things-simple-camera:1.0.0-BETA1'
50-
implementation 'com.thefirstlineofcode.sand.client:sand-client-webcam:1.0.0-BETA1'
51-
implementation 'com.thefirstlineofcode.sand.demo:sand-demo-client:1.0.0-BETA1'
52-
implementation 'com.thefirstlineofcode.sand.protocols:sand-protocols-lora-dac:1.0.0-BETA1'
53-
implementation 'com.thefirstlineofcode.sand.protocols.things:sand-protocols-things-simple-camera:1.0.0-BETA1'
54-
implementation 'com.thefirstlineofcode.sand.emulators:sand-emulators-models:1.0.0-BETA1'
45+
implementation 'com.thefirstlineofcode.sand.client:sand-client-operator:1.0.0-BETA2'
46+
implementation 'com.thefirstlineofcode.sand.client:sand-client-remoting:1.0.0-BETA2'
47+
implementation 'com.thefirstlineofcode.sand.client:sand-client-thing:1.0.0-BETA2'
48+
implementation 'com.thefirstlineofcode.sand.client:sand-client-sensor:1.0.0-BETA2'
49+
implementation 'com.thefirstlineofcode.sand.protocols.things:sand-protocols-things-simple-camera:1.0.0-BETA2'
50+
implementation 'com.thefirstlineofcode.sand.client:sand-client-webcam:1.0.0-BETA2'
51+
implementation 'com.thefirstlineofcode.sand.demo:sand-demo-client:1.0.0-BETA2'
52+
implementation 'com.thefirstlineofcode.sand.protocols:sand-protocols-lora-dac:1.0.0-BETA2'
53+
implementation 'com.thefirstlineofcode.sand.protocols.things:sand-protocols-things-simple-camera:1.0.0-BETA2'
54+
implementation 'com.thefirstlineofcode.sand.emulators:sand-emulators-models:1.0.0-BETA2'
5555
implementation 'com.squareup.okhttp3:okhttp:4.9.3'
5656
implementation ('com.journeyapps:zxing-android-embedded:4.1.0') {
5757
transitive = false

demo/protocols/src/main/java/com/thefirstlineofcode/sand/demo/protocols/RecordedVideo.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,18 @@
33
import java.util.Date;
44

55
import com.thefirstlineofcode.basalt.oxm.coc.conversion.annotations.Int2Enum;
6+
import com.thefirstlineofcode.basalt.oxm.coc.conversion.annotations.String2UtilDate;
67
import com.thefirstlineofcode.sand.demo.protocols.VideoRecorded.RecordingReason;
78

89
public class RecordedVideo {
910
private String recorderThingId;
1011
private String videoName;
1112
private String videoUrl;
13+
@String2UtilDate
1214
private Date recordingTime;
1315
@Int2Enum(RecordingReason.class)
1416
private RecordingReason recordingReason;
17+
@String2UtilDate
1518
private Date storedTime;
1619

1720
public RecordedVideo() {}

demo/server-web-fileupload/src/main/java/com/thefirstlineofcode/sand/demo/server/web/fileupload/FileUploadApplication.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public static void main(String[] args) {
2020
@Bean
2121
CommandLineRunner init(StorageService storageService) {
2222
return (args) -> {
23-
storageService.deleteAll();
23+
// storageService.deleteAll();
2424
storageService.init();
2525
};
2626
}

0 commit comments

Comments
 (0)