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 77 build :
88 docker :
99 # specify the version you desire here
10- - image : circleci/node:14.6
10+ - image : circleci/node:16
1111
1212 working_directory : ~/repo
1313
3838 - run :
3939 root : ~/repo
4040 command : |
41- tar czf frontend.tgz dist
41+ tar czf frontend.tar.gz dist
4242 - persist_to_workspace :
4343 root : ~/repo
4444 paths :
Original file line number Diff line number Diff line change 77 "build" : " vue-cli-service build" ,
88 "test:unit" : " vue-cli-service test:unit" ,
99 "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" ,
1311 "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"
1513 },
1614 "dependencies" : {
1715 "@fortawesome/fontawesome-free" : " ^5.15.4" ,
Original file line number Diff line number Diff line change 275275 <v-tab-item >
276276 <v-container grid-list-md text-xs-center >
277277 <v-layout row wrap >
278- <!-- Column A -->
279278 <v-flex xs12 md6 offset-md3 >
280279 <h3 class =" text-xs-left" >{{ $t("message.activity_views_title") }}</h3 >
281280 <v-card >
282281 <v-form class =" cardContent" >
283282 <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" >
286285 </v-switch >
287286 </v-form >
288287 </v-card >
@@ -588,7 +587,7 @@ export default {
588587 console .log (' Loading activity' , this .$route .params .name );
589588 this .saved = true ;
590589 this .$coderbot .loadActivity (this .$route .params .name , false ).then ((activity ) => {
591- this .activity = activity;
590+ this .activity = activity . data ;
592591 if (this .activity .toolbox == null ) {
593592 this .activity .toolbox = {
594593 kind: ' flyoutToolbox' ,
Original file line number Diff line number Diff line change 3131 <v-layout row wrap >
3232 <!-- Column A -->
3333 <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 >
5134 <h3 class =" text-xs-left" >Stato </h3 >
5235 <v-card >
5336 <div class =" cardContent" >
@@ -981,24 +964,6 @@ export default {
981964 startupProgram: null ,
982965 progLevel: null ,
983966 },
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- ],
1002967 cb: {
1003968 logs: {
1004969 log: []
You can’t perform that action at this time.
0 commit comments