6 Commits

Author SHA1 Message Date
e2a4dd851d Test
Some checks failed
Build BAB Application Deployment Artifact / build (push) Failing after 2m37s
2025-11-17 22:47:05 -05:00
2a61cc105f Test 2024-10-03 11:50:15 -04:00
d6f58ddabd chore: add version files.
Some checks failed
Build BAB Application Deployment Artifact / build (push) Failing after 4m41s
fix(ui): small tweaks to layout.
2024-06-25 08:33:05 -04:00
a1d9e147f9 fix(ci): New release
All checks were successful
Build BAB Application Deployment Artifact / build (push) Successful in 2m26s
2024-06-24 11:17:24 -04:00
92bfc7bafa chore: force new release
Some checks failed
Build BAB Application Deployment Artifact / build (push) Has been cancelled
2024-06-24 11:16:06 -04:00
6f61edd659 chore: change tar directory
All checks were successful
Build BAB Application Deployment Artifact / build (push) Successful in 1m43s
2024-06-24 10:25:51 -04:00
7 changed files with 30 additions and 17 deletions

View File

@@ -43,5 +43,7 @@ jobs:
uses: https://github.com/distributhor/workflow-webhook@v3
with:
webhook_url: ${{ vars.WEBHOOK_URL }}
webhook_auth_type: "bearer"
webhook_auth: "Token:${{ secrets.WEBHOOK_SECRET }}"
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" }'

View File

@@ -13,7 +13,7 @@
"@semantic-release/exec",
{
"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
VERSION Normal file
View File

@@ -0,0 +1 @@
0.0.0

View File

@@ -1,9 +1,11 @@
<template>
<div v-if="boats">
<div
v-if="boats"
class="row">
<q-card
v-for="boat in boats"
:key="boat.id"
class="q-ma-sm">
class="q-ma-sm col-xs-12 col-sm-6 col-xl-3">
<q-card-section>
<q-img
:src="boat.imgSrc"

View File

@@ -1,9 +1,7 @@
<template>
<div class="fit row wrap justify-start items-start content-start">
<div class="fit row">
<div class="q-pa-md">
<div
class="scheduler"
style="max-width: 1200px">
<div class="scheduler col-12">
<NavigationBar
@next="onNext"
@today="onToday"

View File

@@ -61,15 +61,6 @@ export const links = <Link[]>[
front_links: false,
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,
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();

1
src/version.js Normal file
View File

@@ -0,0 +1 @@
export const APP_VERSION = '0.0.0';