Skip to content

Commit

Permalink
core: frontend: MainView: Remove AvailableServices and add welcome me…
Browse files Browse the repository at this point in the history
…ssage

Signed-off-by: Patrick José Pereira <[email protected]>
  • Loading branch information
patrickelectric committed Oct 15, 2021
1 parent 1afc1e5 commit edd23b0
Showing 1 changed file with 36 additions and 4 deletions.
40 changes: 36 additions & 4 deletions core/frontend/src/views/MainView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,51 @@
</v-card-text>
</v-card>
</v-bottom-sheet>
<available-services-table />
<v-card>
<v-card-title><p>Welcome to companion <strong>B.E.T.A test</strong>!</p></v-card-title>
<v-card-text>
<p>
You are now running Companion <strong>B.E.T.A (Break it Early Test Application)</strong>!.<br>
We have been working for the last couple of months on a totally new experience on the companion computer,
and are now confident enough to open our work to a small number of users to test and check
the changes!
</p>
<p>Be aware that the B.E.T.A may not be stable and changes will occur during the development.</p>
<p>There are 3 types of releases on the new Companion.</p>
<ul>
<li>
"Stable" releases, that are not available in this B.E.T.A
<ul>
<li>Stable and long supported versions</li>
</ul>
</li>
<li>
"B.E.T.A" releases
<ul>
<li>Versions that will be released after an internal test</li>
</ul>
</li>
<li>
"Master" releases, not recommended
<ul>
<li>The very latest features, that may not have been tested yet</li>
</ul>
</li>
</ul>
<br>
We recommend using only the B.E.T.A releases.
<v-card-text />
</v-card-text>
</v-card>
</v-container>
</template>

<script lang="ts">
import Vue from 'vue'
import AvailableServicesTable from '@/components/scanner/availableServicesTable.vue'
export default Vue.extend({
name: 'Main',
components: {
'available-services-table': AvailableServicesTable,
},
})
</script>

0 comments on commit edd23b0

Please sign in to comment.