Compare commits

...

4 Commits

Author SHA1 Message Date
8364321a7c 🚀Bumped version to v0.11.1
All checks were successful
continuous-integration/drone/push Build is passing
2023-02-18 17:27:22 +01:00
659fa77dca Profile: add "---" if no data set
All checks were successful
continuous-integration/drone/push Build is passing
2023-02-18 17:26:54 +01:00
10c9127256 🚀Bumped version to v0.11.0
All checks were successful
continuous-integration/drone/push Build is passing
2023-02-03 17:24:42 +01:00
a3a1e89aa1 pnpm migration
All checks were successful
continuous-integration/drone/push Build is passing
2023-02-03 17:24:25 +01:00
5 changed files with 26 additions and 18 deletions

View File

@@ -2,11 +2,25 @@
All notable changes to this project will be documented in this file. Dates are displayed in UTC.
#### [0.11.1](https://git.odit.services/lfk/selfservice/compare/0.11.0...0.11.1)
- Profile: add "---" if no data set [`659fa77`](https://git.odit.services/lfk/selfservice/commit/659fa77dca3b527d896d752386e91a167a1b8f4f)
#### [0.11.0](https://git.odit.services/lfk/selfservice/compare/0.10.0...0.11.0)
> 3 February 2023
- pnpm migration [`a3a1e89`](https://git.odit.services/lfk/selfservice/commit/a3a1e89aa14798e1d180697f91809e282a229f23)
- 🚀Bumped version to v0.11.0 [`10c9127`](https://git.odit.services/lfk/selfservice/commit/10c9127256edf2cbad1dc6690d5f4e87c32f6396)
#### [0.10.0](https://git.odit.services/lfk/selfservice/compare/0.9.0...0.10.0)
> 3 February 2023
- text cleanups + footer [`eccce07`](https://git.odit.services/lfk/selfservice/commit/eccce0795b6960aa3a2e9368de5ae4bdf80997d7)
- updated nginx config for cache busting [`8e2b355`](https://git.odit.services/lfk/selfservice/commit/8e2b355466e9a37510be8bf03311d6b28e1a0d9f)
- improved profile page padding + full width registration code for easier scanning [`54540be`](https://git.odit.services/lfk/selfservice/commit/54540be6e12ed85afc96061b8548cd4ec6700eec)
- 🚀Bumped version to v0.10.0 [`5587175`](https://git.odit.services/lfk/selfservice/commit/5587175534188e05ab43d0eed9745484e01edb63)
#### [0.9.0](https://git.odit.services/lfk/selfservice/compare/0.8.3...0.9.0)

View File

@@ -1,9 +1,10 @@
FROM registry.odit.services/hub/library/node:15.9.0-alpine3.13
FROM registry.odit.services/hub/library/node:19.5.0-alpine3.17
WORKDIR /app
RUN npm i -g pnpm@7
COPY . .
RUN yarn
RUN yarn build
RUN yarn postbuild
RUN pnpm i --frozen-lockfile
RUN pnpm build
RUN pnpm postbuild
# final image
FROM registry.odit.services/library/nginx-brotli:3.15
COPY --from=0 /app/dist /usr/share/nginx/html

View File

@@ -1,6 +1,6 @@
{
"name": "@odit/lfk-selfservice",
"version": "0.10.0",
"version": "0.11.1",
"scripts": {
"dev": "vite",
"build": "vite build",

9
pnpm-lock.yaml generated
View File

@@ -9,8 +9,7 @@ specifiers:
'@vitejs/plugin-vue': 1.2.1
'@vue/compiler-sfc': 3.0.11
autoprefixer: 10.2.5
bwip-js: ^3.2.2
jsbarcode: ^3.11.5
bwip-js: 3.2.2
marked: 2.0.3
redaxios: 0.4.1
release-it: 14.6.1
@@ -25,7 +24,6 @@ specifiers:
dependencies:
bwip-js: 3.2.2
jsbarcode: 3.11.5
marked: 2.0.3
redaxios: 0.4.1
toastify-js: 1.10.0
@@ -1865,11 +1863,6 @@ packages:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
dev: true
/jsbarcode/3.11.5:
resolution: {integrity: sha512-zv3KsH51zD00I/LrFzFSM6dst7rDn0vIMzaiZFL7qusTjPZiPtxg3zxetp0RR7obmjTw4f6NyGgbdkBCgZUIrA==}
hasBin: true
dev: false
/json-buffer/3.0.0:
resolution: {integrity: sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==}
dev: true

View File

@@ -311,7 +311,7 @@
duration-200
ease-in-out
"
v-text="state.firstname"
v-text="state.firstname || '---'"
/>
</div>
<div class="form-element">
@@ -333,7 +333,7 @@
duration-200
ease-in-out
"
v-text="state.middlename"
v-text="state.middlename || '---'"
/>
</div>
<div class="form-element">
@@ -355,7 +355,7 @@
duration-200
ease-in-out
"
v-text="state.lastname"
v-text="state.lastname || '---'"
/>
</div>
<div class="form-element">
@@ -377,7 +377,7 @@
duration-200
ease-in-out
"
v-text="state.email"
v-text="state.email || '---'"
/>
</div>
<div class="form-element">
@@ -399,7 +399,7 @@
duration-200
ease-in-out
"
v-text="state.phone"
v-text="state.phone || '---'"
/>
</div>
</div>