Compare commits
6 Commits
v0.7.0-alp
...
e2a4dd851d
| Author | SHA1 | Date | |
|---|---|---|---|
|
e2a4dd851d
|
|||
|
2a61cc105f
|
|||
|
d6f58ddabd
|
|||
|
a1d9e147f9
|
|||
|
92bfc7bafa
|
|||
|
6f61edd659
|
@@ -43,5 +43,7 @@ jobs:
|
|||||||
uses: https://github.com/distributhor/workflow-webhook@v3
|
uses: https://github.com/distributhor/workflow-webhook@v3
|
||||||
with:
|
with:
|
||||||
webhook_url: ${{ vars.WEBHOOK_URL }}
|
webhook_url: ${{ vars.WEBHOOK_URL }}
|
||||||
|
webhook_auth_type: "bearer"
|
||||||
|
webhook_auth: "Token:${{ secrets.WEBHOOK_SECRET }}"
|
||||||
verbose: true
|
verbose: true
|
||||||
data: '{ "artifact_url": "${{ gitea.server_url }}/${{ gitea.repository }}/releases/download/${{ steps.build.outputs.VERSION }}/release-${{ steps.build.outputs.VERSION }}.tar.gz" }'
|
data: '{ "artifact_url": "${{ gitea.server_url }}/${{ gitea.repository }}/releases/download/v${{ steps.build.outputs.VERSION }}/release-${{ steps.build.outputs.VERSION }}.tar.gz" }'
|
||||||
|
|||||||
@@ -13,7 +13,7 @@
|
|||||||
"@semantic-release/exec",
|
"@semantic-release/exec",
|
||||||
{
|
{
|
||||||
"prepareCmd": "npm run generate-version '${nextRelease.version}' && quasar build -m pwa",
|
"prepareCmd": "npm run generate-version '${nextRelease.version}' && quasar build -m pwa",
|
||||||
"publishCmd": "tar -czvf release-${nextRelease.version}.tar.gz dist/pwa && echo '::set-output name=VERSION::${nextRelease.version}'"
|
"publishCmd": "tar -czvf release-${nextRelease.version}.tar.gz -C dist/pwa . && echo '::set-output name=VERSION::${nextRelease.version}'"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
|
|||||||
@@ -1,9 +1,11 @@
|
|||||||
<template>
|
<template>
|
||||||
<div v-if="boats">
|
<div
|
||||||
|
v-if="boats"
|
||||||
|
class="row">
|
||||||
<q-card
|
<q-card
|
||||||
v-for="boat in boats"
|
v-for="boat in boats"
|
||||||
:key="boat.id"
|
:key="boat.id"
|
||||||
class="q-ma-sm">
|
class="q-ma-sm col-xs-12 col-sm-6 col-xl-3">
|
||||||
<q-card-section>
|
<q-card-section>
|
||||||
<q-img
|
<q-img
|
||||||
:src="boat.imgSrc"
|
:src="boat.imgSrc"
|
||||||
|
|||||||
@@ -1,9 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="fit row wrap justify-start items-start content-start">
|
<div class="fit row">
|
||||||
<div class="q-pa-md">
|
<div class="q-pa-md">
|
||||||
<div
|
<div class="scheduler col-12">
|
||||||
class="scheduler"
|
|
||||||
style="max-width: 1200px">
|
|
||||||
<NavigationBar
|
<NavigationBar
|
||||||
@next="onNext"
|
@next="onNext"
|
||||||
@today="onToday"
|
@today="onToday"
|
||||||
|
|||||||
@@ -61,15 +61,6 @@ export const links = <Link[]>[
|
|||||||
front_links: false,
|
front_links: false,
|
||||||
enabled: true,
|
enabled: true,
|
||||||
},
|
},
|
||||||
{
|
|
||||||
name: 'Manage',
|
|
||||||
to: '/schedule/manage',
|
|
||||||
icon: 'edit_calendar',
|
|
||||||
front_links: false,
|
|
||||||
enabled: true,
|
|
||||||
color: 'accent',
|
|
||||||
requiredRoles: ['Schedule Admins'],
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -100,6 +91,24 @@ export const links = <Link[]>[
|
|||||||
front_links: true,
|
front_links: true,
|
||||||
enabled: false,
|
enabled: false,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: 'Manage',
|
||||||
|
icon: 'tune',
|
||||||
|
enabled: true,
|
||||||
|
requiredRoles: ['Schedule Admins'],
|
||||||
|
color: 'negative',
|
||||||
|
sublinks: [
|
||||||
|
{
|
||||||
|
name: 'Schedule',
|
||||||
|
to: '/schedule/manage',
|
||||||
|
icon: 'edit_calendar',
|
||||||
|
front_links: false,
|
||||||
|
enabled: true,
|
||||||
|
color: 'accent',
|
||||||
|
requiredRoles: ['Schedule Admins'],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
const authStore = useAuthStore();
|
const authStore = useAuthStore();
|
||||||
|
|||||||
1
src/version.js
Normal file
1
src/version.js
Normal file
@@ -0,0 +1 @@
|
|||||||
|
export const APP_VERSION = '0.0.0';
|
||||||
Reference in New Issue
Block a user