Compare commits
No commits in common. "0.10.0" and "0.9.0" have entirely different histories.
@ -2,19 +2,10 @@
|
|||||||
|
|
||||||
All notable changes to this project will be documented in this file. Dates are displayed in UTC.
|
All notable changes to this project will be documented in this file. Dates are displayed in UTC.
|
||||||
|
|
||||||
#### [0.10.0](https://git.odit.services/lfk/selfservice/compare/0.9.0...0.10.0)
|
|
||||||
|
|
||||||
- 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)
|
|
||||||
|
|
||||||
#### [0.9.0](https://git.odit.services/lfk/selfservice/compare/0.8.3...0.9.0)
|
#### [0.9.0](https://git.odit.services/lfk/selfservice/compare/0.8.3...0.9.0)
|
||||||
|
|
||||||
> 3 February 2023
|
|
||||||
|
|
||||||
- wip: error registration ui feedback [`9ac14e8`](https://git.odit.services/lfk/selfservice/commit/9ac14e8a5d740fb4cd87645e69b2cfde73e4acc7)
|
- wip: error registration ui feedback [`9ac14e8`](https://git.odit.services/lfk/selfservice/commit/9ac14e8a5d740fb4cd87645e69b2cfde73e4acc7)
|
||||||
- wip: registration confirmation ui [`8928f84`](https://git.odit.services/lfk/selfservice/commit/8928f841dcd370daf28416adbf1adbe16fa4d76f)
|
- wip: registration confirmation ui [`8928f84`](https://git.odit.services/lfk/selfservice/commit/8928f841dcd370daf28416adbf1adbe16fa4d76f)
|
||||||
- 🚀Bumped version to v0.9.0 [`3392a2e`](https://git.odit.services/lfk/selfservice/commit/3392a2e68edb8fcf2aa6dd4b962abbf6ac27a414)
|
|
||||||
|
|
||||||
#### [0.8.3](https://git.odit.services/lfk/selfservice/compare/0.8.2...0.8.3)
|
#### [0.8.3](https://git.odit.services/lfk/selfservice/compare/0.8.2...0.8.3)
|
||||||
|
|
||||||
|
52
nginx.conf
52
nginx.conf
@ -7,21 +7,15 @@ http {
|
|||||||
error_page 404 /index.html;
|
error_page 404 /index.html;
|
||||||
root /usr/share/nginx/html;
|
root /usr/share/nginx/html;
|
||||||
location / {
|
location / {
|
||||||
rewrite /register/(.*) /$1 break;
|
rewrite /register/(.*) /$1 break;
|
||||||
rewrite /profile/(.*) /$1 break;
|
rewrite /profile/(.*) /$1 break;
|
||||||
|
|
||||||
try_files $uri $uri/ /index.html;
|
try_files $uri $uri/ /index.html;
|
||||||
|
|
||||||
add_header Last-Modified $date_gmt;
|
|
||||||
add_header Cache-Control 'private no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0';
|
|
||||||
if_modified_since off;
|
|
||||||
expires off;
|
|
||||||
etag off;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
location ~* \.(?:ico|css|gif|jpe?g|png)$ {
|
location ~* \.(?:ico|css|gif|jpe?g|png)$ {
|
||||||
rewrite /register/(.*) /$1 break;
|
rewrite /register/(.*) /$1 break;
|
||||||
rewrite /profile/(.*) /$1 break;
|
rewrite /profile/(.*) /$1 break;
|
||||||
|
|
||||||
expires 1y;
|
expires 1y;
|
||||||
add_header Pragma public;
|
add_header Pragma public;
|
||||||
@ -41,24 +35,24 @@ http {
|
|||||||
gzip_buffers 16 8k;
|
gzip_buffers 16 8k;
|
||||||
gzip_http_version 1.1;
|
gzip_http_version 1.1;
|
||||||
gzip_types application/javascript
|
gzip_types application/javascript
|
||||||
application/rss+xml
|
application/rss+xml
|
||||||
application/vnd.ms-fontobject
|
application/vnd.ms-fontobject
|
||||||
application/x-font
|
application/x-font
|
||||||
application/x-font-opentype
|
application/x-font-opentype
|
||||||
application/x-font-otf
|
application/x-font-otf
|
||||||
application/x-font-truetype
|
application/x-font-truetype
|
||||||
application/x-font-ttf
|
application/x-font-ttf
|
||||||
application/x-javascript
|
application/x-javascript
|
||||||
application/xhtml+xml
|
application/xhtml+xml
|
||||||
application/xml
|
application/xml
|
||||||
font/opentype
|
font/opentype
|
||||||
font/otf
|
font/otf
|
||||||
font/ttf
|
font/ttf
|
||||||
image/svg+xml
|
image/svg+xml
|
||||||
image/x-icon
|
image/x-icon
|
||||||
text/css
|
text/css
|
||||||
text/javascript
|
text/javascript
|
||||||
text/plain
|
text/plain
|
||||||
text/xml;
|
text/xml;
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@odit/lfk-selfservice",
|
"name": "@odit/lfk-selfservice",
|
||||||
"version": "0.10.0",
|
"version": "0.9.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
"build": "vite build",
|
"build": "vite build",
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
"apartment_suite_etc": "Addresszeile 2",
|
"apartment_suite_etc": "Addresszeile 2",
|
||||||
"cancel_keep_my_data": "Abbrechen, meine Daten behalten",
|
"cancel_keep_my_data": "Abbrechen, meine Daten behalten",
|
||||||
"configuration_error": "Konfigurationsfehler",
|
"configuration_error": "Konfigurationsfehler",
|
||||||
"confirm_delete_all_of_my_data": "Bestätigen, meine Daten löschen",
|
"confirm_delete_all_of_my_data": "Bestätigung, meine gesamten Daten löschen",
|
||||||
"confirm_personal_data": "Hiermit bestätige ich die Vollständigkeit und Richtigkeit der oben genannten Angaben",
|
"confirm_personal_data": "Hiermit bestätige ich die Vollständigkeit und Richtigkeit der oben genannten Angaben",
|
||||||
"current_total_amount_in_eur": "Aktueller Gesamtbetrag (in €)",
|
"current_total_amount_in_eur": "Aktueller Gesamtbetrag (in €)",
|
||||||
"delete_all_of_my_data": "Meine gesamten Daten löschen",
|
"delete_all_of_my_data": "Meine gesamten Daten löschen",
|
||||||
|
@ -150,10 +150,6 @@
|
|||||||
py-2.5
|
py-2.5
|
||||||
px-5
|
px-5
|
||||||
rounded-md
|
rounded-md
|
||||||
mb-1
|
|
||||||
md:mb-auto
|
|
||||||
w-full
|
|
||||||
md:w-auto
|
|
||||||
bg-blue-500
|
bg-blue-500
|
||||||
hover:bg-blue-600 hover:shadow-lg
|
hover:bg-blue-600 hover:shadow-lg
|
||||||
"
|
"
|
||||||
@ -192,11 +188,9 @@
|
|||||||
py-2.5
|
py-2.5
|
||||||
px-5
|
px-5
|
||||||
rounded-md
|
rounded-md
|
||||||
w-full
|
|
||||||
md:w-auto
|
|
||||||
bg-red-600
|
bg-red-600
|
||||||
hover:bg-red-700 hover:shadow-lg
|
hover:bg-red-700 hover:shadow-lg
|
||||||
md:ml-1
|
ml-1
|
||||||
"
|
"
|
||||||
@click="delete_me"
|
@click="delete_me"
|
||||||
>
|
>
|
||||||
@ -226,7 +220,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
<div class="flex flex-wrap">
|
<div class="flex flex-wrap">
|
||||||
<div class="w-full">
|
<div class="w-full p-4">
|
||||||
<div class="flex flex-wrap flex-col w-full tabs">
|
<div class="flex flex-wrap flex-col w-full tabs">
|
||||||
<div class="flex lg:flex-wrap flex-row lg:space-x-2">
|
<div class="flex lg:flex-wrap flex-row lg:space-x-2">
|
||||||
<div class="flex-none">
|
<div class="flex-none">
|
||||||
@ -288,11 +282,7 @@
|
|||||||
<div class="w-full">
|
<div class="w-full">
|
||||||
<div class="form-element">
|
<div class="form-element">
|
||||||
<div class="text-lg">{{ $t("registrierungscode") }}</div>
|
<div class="text-lg">{{ $t("registrierungscode") }}</div>
|
||||||
<img
|
<img alt="Registrierungscode" :src="state.barcode" />
|
||||||
class="w-full md:w-auto mb-2"
|
|
||||||
alt="Registrierungscode"
|
|
||||||
:src="state.barcode"
|
|
||||||
/>
|
|
||||||
<div class="text-lg">{{ $t("vorname") }}</div>
|
<div class="text-lg">{{ $t("vorname") }}</div>
|
||||||
<p
|
<p
|
||||||
class="
|
class="
|
||||||
@ -638,52 +628,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- -->
|
|
||||||
<footer
|
|
||||||
class="
|
|
||||||
p-4
|
|
||||||
bg-white
|
|
||||||
rounded-lg
|
|
||||||
shadow
|
|
||||||
md:flex md:items-center md:justify-between md:p-6
|
|
||||||
dark:bg-gray-800
|
|
||||||
"
|
|
||||||
>
|
|
||||||
<span class="text-sm text-gray-500 sm:text-center dark:text-gray-400"
|
|
||||||
><span class="font-bold">LfK! 2023</span> -
|
|
||||||
<a
|
|
||||||
class="underline"
|
|
||||||
href="https://odit.services/?ref=lfk"
|
|
||||||
target="_blank"
|
|
||||||
>powered by ODIT.Services</a
|
|
||||||
>
|
|
||||||
</span>
|
|
||||||
<ul
|
|
||||||
class="
|
|
||||||
flex flex-wrap
|
|
||||||
items-center
|
|
||||||
mt-3
|
|
||||||
text-sm text-gray-500
|
|
||||||
dark:text-gray-400
|
|
||||||
sm:mt-0
|
|
||||||
"
|
|
||||||
>
|
|
||||||
<li>
|
|
||||||
<a
|
|
||||||
href="https://lauf-fuer-kaya.de/impressum/"
|
|
||||||
class="mr-4 hover:underline md:mr-6"
|
|
||||||
>Impressum</a
|
|
||||||
>
|
|
||||||
</li>
|
|
||||||
<li>
|
|
||||||
<a
|
|
||||||
href="https://lauf-fuer-kaya.de/datenschutz/"
|
|
||||||
class="mr-4 hover:underline md:mr-6"
|
|
||||||
>Datenschutz</a
|
|
||||||
>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</footer>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -703,11 +647,7 @@ function textToBase64Barcode(text) {
|
|||||||
textxalign: "center",
|
textxalign: "center",
|
||||||
backgroundcolor: "ffffff",
|
backgroundcolor: "ffffff",
|
||||||
};
|
};
|
||||||
if (
|
if (codeconfig.bcid === "code39" || codeconfig.bcid === "code128"|| codeconfig.bcid === "ean13") {
|
||||||
codeconfig.bcid === "code39" ||
|
|
||||||
codeconfig.bcid === "code128" ||
|
|
||||||
codeconfig.bcid === "ean13"
|
|
||||||
) {
|
|
||||||
codeconfig.height = 10;
|
codeconfig.height = 10;
|
||||||
}
|
}
|
||||||
bwipjs.toCanvas(canvas, codeconfig);
|
bwipjs.toCanvas(canvas, codeconfig);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user