File tree Expand file tree Collapse file tree 4 files changed +7
-45
lines changed Expand file tree Collapse file tree 4 files changed +7
-45
lines changed Original file line number Diff line number Diff line change 7
7
build :
8
8
docker :
9
9
# specify the version you desire here
10
- - image : circleci/node:14.6
10
+ - image : circleci/node:16
11
11
12
12
working_directory : ~/repo
13
13
38
38
- run :
39
39
root : ~/repo
40
40
command : |
41
- tar czf frontend.tgz dist
41
+ tar czf frontend.tar.gz dist
42
42
- persist_to_workspace :
43
43
root : ~/repo
44
44
paths :
Original file line number Diff line number Diff line change 7
7
"build" : " vue-cli-service build" ,
8
8
"test:unit" : " vue-cli-service test:unit" ,
9
9
"lint" : " vue-cli-service lint" ,
10
- "build2" : " node build/build.js" ,
11
- "dev" : " webpack-dev-server --inline --progress --config build/webpack.dev.conf.js" ,
12
- "e2e" : " node test/e2e/runner.js" ,
10
+ "e2e" : " node tests/e2e/runner.js" ,
13
11
"test" : " npm run unit && npm run e2e" ,
14
- "unit" : " jest --config test /unit/jest.conf.js --coverage"
12
+ "unit" : " jest --config tests /unit/jest.conf.js --coverage"
15
13
},
16
14
"dependencies" : {
17
15
"@fortawesome/fontawesome-free" : " ^5.15.4" ,
Original file line number Diff line number Diff line change 275
275
<v-tab-item >
276
276
<v-container grid-list-md text-xs-center >
277
277
<v-layout row wrap >
278
- <!-- Column A -->
279
278
<v-flex xs12 md6 offset-md3 >
280
279
<h3 class =" text-xs-left" >{{ $t("message.activity_views_title") }}</h3 >
281
280
<v-card >
282
281
<v-form class =" cardContent" >
283
282
<v-switch v-bind:label =' $t("message.activity_views_runtime_camera")'
284
- v-model =" activity.exec. camera" ></v-switch >
285
- <v-switch v-bind:label =' $t("message.activity_views_runtime_log")' v-model =" activity.exec. log" >
283
+ v-model =" activity.camera" ></v-switch >
284
+ <v-switch v-bind:label =' $t("message.activity_views_runtime_log")' v-model =" activity.log" >
286
285
</v-switch >
287
286
</v-form >
288
287
</v-card >
@@ -588,7 +587,7 @@ export default {
588
587
console .log (' Loading activity' , this .$route .params .name );
589
588
this .saved = true ;
590
589
this .$coderbot .loadActivity (this .$route .params .name , false ).then ((activity ) => {
591
- this .activity = activity;
590
+ this .activity = activity . data ;
592
591
if (this .activity .toolbox == null ) {
593
592
this .activity .toolbox = {
594
593
kind: ' flyoutToolbox' ,
Original file line number Diff line number Diff line change 31
31
<v-layout row wrap >
32
32
<!-- Column A -->
33
33
<v-flex xs12 md6 offset-md3 >
34
- <h3 class =" text-xs-left" >{{ $t("message.settings_system") }} </h3 >
35
- <v-card >
36
- <div class =" cardContent" >
37
- <v-select v-model =" settings.progLevel" :items =" blocklyToolboxItems"
38
- v-bind:label =" $t('message.settings_toolbox_level')"
39
- @select =" $v.settings.progLevel.$touch"
40
- >
41
- </v-select >
42
- <!-- <v-text-field v-model="settings.cbName" v-bind:label="Nome CoderBot"></v-text-field>
43
- <br>-->
44
- <div v-for =" (value, key) in cb.info" :key =" key" >
45
- {{ key }}: <code >{{ value }}</code >
46
- </div >
47
- {{ $t('message.settings_frontend_build') }}: <code > {{ lastCommit }} </code >
48
- </div >
49
- </v-card >
50
- <br >
51
34
<h3 class =" text-xs-left" >Stato </h3 >
52
35
<v-card >
53
36
<div class =" cardContent" >
@@ -981,24 +964,6 @@ export default {
981
964
startupProgram: null ,
982
965
progLevel: null ,
983
966
},
984
- blocklyToolboxItems: [
985
- {
986
- text: this .$i18n .t (' message.settings_toolbax_movement' ),
987
- value: ' basic_move'
988
- },
989
- {
990
- text: this .$i18n .t (' message.settings_toolbax_base' ),
991
- value: ' basic'
992
- },
993
- {
994
- text: this .$i18n .t (' message.settings_toolbax_standard' ),
995
- value: ' std'
996
- },
997
- {
998
- text: this .$i18n .t (' message.settings_toolbax_advanced' ),
999
- value: ' adv'
1000
- },
1001
- ],
1002
967
cb: {
1003
968
logs: {
1004
969
log: []
You can’t perform that action at this time.
0 commit comments