Compare commits
7 Commits
121022c843
...
bugfix/31-
| Author | SHA1 | Date | |
|---|---|---|---|
| 51d058bf96 | |||
| ad13bae068 | |||
| 152e74190d | |||
| 4c83e2e738 | |||
| cb1b9d330b | |||
| 3b4c11e4c0 | |||
| 89820d4450 |
15
CHANGELOG.md
15
CHANGELOG.md
@@ -2,8 +2,23 @@
|
|||||||
|
|
||||||
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.7.0](https://git.odit.services/lfk/selfservice/compare/0.6.1...0.7.0)
|
||||||
|
|
||||||
|
- Merge pull request 'Donation list feature/39-donation_list' (#40) from feature/39-donation_list into dev [`4c83e2e`](https://git.odit.services/lfk/selfservice/commit/4c83e2e738a075354383dca4d500808f761247d2)
|
||||||
|
- Added total to bottom of page [`89820d4`](https://git.odit.services/lfk/selfservice/commit/89820d44501793365248b8e778522cdc188afa70)
|
||||||
|
- Sorted translations 🌍 [`cb1b9d3`](https://git.odit.services/lfk/selfservice/commit/cb1b9d330b28f11cceed9691aee4ccee5246d346)
|
||||||
|
- Added basic sponsoring table [`f141130`](https://git.odit.services/lfk/selfservice/commit/f141130db5ede60a623747f4e324f66259e5bc75)
|
||||||
|
- Added translations 🌍 [`d713fbe`](https://git.odit.services/lfk/selfservice/commit/d713fbef94e75fbbc62254ea8f0ca50dc4e93d79)
|
||||||
|
- Now w/ formatted currency amount [`815a36f`](https://git.odit.services/lfk/selfservice/commit/815a36f20271f47f49c3814b001c3404d43113cd)
|
||||||
|
- Fixed spaces in name [`baa6da3`](https://git.odit.services/lfk/selfservice/commit/baa6da3dd06c493fccc61945b9bcbd9b2e79d910)
|
||||||
|
- Updated env description [`5a123b0`](https://git.odit.services/lfk/selfservice/commit/5a123b0cf89f49d450becbbc03b28c5bb6416b7c)
|
||||||
|
- added distance formatting [`121022c`](https://git.odit.services/lfk/selfservice/commit/121022c8434484a363a3f2ea68aba4d8ef7cad2d)
|
||||||
|
|
||||||
#### [0.6.1](https://git.odit.services/lfk/selfservice/compare/0.6.0...0.6.1)
|
#### [0.6.1](https://git.odit.services/lfk/selfservice/compare/0.6.0...0.6.1)
|
||||||
|
|
||||||
|
> 6 April 2021
|
||||||
|
|
||||||
|
- 🚀Bumped version to v0.6.1 [`f5ae214`](https://git.odit.services/lfk/selfservice/commit/f5ae2145df07413329f60c229d9571fd1de2ca79)
|
||||||
- Fixed imprint/privacy default links [`96c0e56`](https://git.odit.services/lfk/selfservice/commit/96c0e5698697361e65c5aa80c9a0aada5c3d5f30)
|
- Fixed imprint/privacy default links [`96c0e56`](https://git.odit.services/lfk/selfservice/commit/96c0e5698697361e65c5aa80c9a0aada5c3d5f30)
|
||||||
|
|
||||||
#### [0.6.0](https://git.odit.services/lfk/selfservice/compare/0.5.1...0.6.0)
|
#### [0.6.0](https://git.odit.services/lfk/selfservice/compare/0.5.1...0.6.0)
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ WORKDIR /app
|
|||||||
COPY . .
|
COPY . .
|
||||||
RUN yarn
|
RUN yarn
|
||||||
RUN yarn build
|
RUN yarn build
|
||||||
|
RUN yarn postbuild
|
||||||
# final image
|
# final image
|
||||||
FROM fholzer/nginx-brotli:v1.19.1
|
FROM fholzer/nginx-brotli:v1.19.1
|
||||||
COPY --from=0 /app/dist /usr/share/nginx/html
|
COPY --from=0 /app/dist /usr/share/nginx/html
|
||||||
|
|||||||
6
env_fix.js
Normal file
6
env_fix.js
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
const fs = require('fs');
|
||||||
|
if (fs.existsSync('./dist/index.html')) {
|
||||||
|
const content = fs.readFileSync('./dist/index.html', { encoding: 'utf8' });
|
||||||
|
const newcontent = content.replace(`"/env.js"`, `"./env.js"`);
|
||||||
|
fs.writeFileSync('./dist/index.html', newcontent);
|
||||||
|
}
|
||||||
101
package.json
101
package.json
@@ -1,50 +1,51 @@
|
|||||||
{
|
{
|
||||||
"name": "@odit/lfk-selfservice",
|
"name": "@odit/lfk-selfservice",
|
||||||
"version": "0.6.1",
|
"version": "0.7.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
"build": "vite build",
|
"build": "vite build",
|
||||||
"release": "release-it --only-version"
|
"release": "release-it --only-version",
|
||||||
},
|
"postbuild": "node env_fix.js"
|
||||||
"dependencies": {
|
},
|
||||||
"marked": "2.0.1",
|
"dependencies": {
|
||||||
"redaxios": "0.4.1",
|
"marked": "2.0.3",
|
||||||
"toastify-js": "1.10.0",
|
"redaxios": "0.4.1",
|
||||||
"validator": "13.5.2",
|
"toastify-js": "1.10.0",
|
||||||
"vue-i18n": "9.0.0",
|
"validator": "13.5.2",
|
||||||
"vue-toastification": "2.0.0-rc.1",
|
"vue-i18n": "9.1.4",
|
||||||
"vue": "3.0.9",
|
"vue-toastification": "2.0.0-rc.1",
|
||||||
"vue-router": "4.0.5"
|
"vue": "3.0.9",
|
||||||
},
|
"vue-router": "4.0.5"
|
||||||
"devDependencies": {
|
},
|
||||||
"@tailwindcss/jit": "0.1.18",
|
"devDependencies": {
|
||||||
"@tailwindcss/aspect-ratio": "0.2.0",
|
"@tailwindcss/jit": "0.1.18",
|
||||||
"@tailwindcss/forms": "0.3.2",
|
"@tailwindcss/aspect-ratio": "0.2.0",
|
||||||
"@tailwindcss/line-clamp": "0.2.0",
|
"@tailwindcss/forms": "0.3.2",
|
||||||
"@tailwindcss/typography": "0.4.0",
|
"@tailwindcss/line-clamp": "0.2.0",
|
||||||
"@vitejs/plugin-vue": "1.2.1",
|
"@tailwindcss/typography": "0.4.0",
|
||||||
"@vue/compiler-sfc": "3.0.10",
|
"@vitejs/plugin-vue": "1.2.1",
|
||||||
"autoprefixer": "10.2.5",
|
"@vue/compiler-sfc": "3.0.11",
|
||||||
"tailwindcss": "2.0.4",
|
"autoprefixer": "10.2.5",
|
||||||
"release-it": "14.5.0",
|
"tailwindcss": "2.1.1",
|
||||||
"vite": "2.1.5"
|
"release-it": "14.6.1",
|
||||||
},
|
"vite": "2.1.5"
|
||||||
"release-it": {
|
},
|
||||||
"git": {
|
"release-it": {
|
||||||
"commit": true,
|
"git": {
|
||||||
"requireCleanWorkingDir": false,
|
"commit": true,
|
||||||
"commitMessage": "🚀Bumped version to v${version}",
|
"requireCleanWorkingDir": false,
|
||||||
"requireBranch": "dev",
|
"commitMessage": "🚀Bumped version to v${version}",
|
||||||
"push": false,
|
"requireBranch": "dev",
|
||||||
"tag": true,
|
"push": false,
|
||||||
"tagName": null,
|
"tag": true,
|
||||||
"tagAnnotation": "v${version}"
|
"tagName": null,
|
||||||
},
|
"tagAnnotation": "v${version}"
|
||||||
"npm": {
|
},
|
||||||
"publish": false
|
"npm": {
|
||||||
},
|
"publish": false
|
||||||
"hooks": {
|
},
|
||||||
"after:bump": "npx auto-changelog --commit-limit false -p -u --hide-credit && git add CHANGELOG.md && node order_i18n.js && git add src/locales"
|
"hooks": {
|
||||||
}
|
"after:bump": "npx auto-changelog --commit-limit false -p -u --hide-credit && git add CHANGELOG.md && node order_i18n.js && git add src/locales"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -50,6 +50,7 @@
|
|||||||
"the_system_is_not_properly_configured_please_contact_the_system_administrator_for_help": "Das System ist nicht richtig konfiguriert. Bitte wenden Sie sich an den Systemadministrator, um Hilfe zu erhalten.",
|
"the_system_is_not_properly_configured_please_contact_the_system_administrator_for_help": "Das System ist nicht richtig konfiguriert. Bitte wenden Sie sich an den Systemadministrator, um Hilfe zu erhalten.",
|
||||||
"this_is_not_a_valid_international_phone_number": "Dies ist keine gültige internationale Telefonnummer",
|
"this_is_not_a_valid_international_phone_number": "Dies ist keine gültige internationale Telefonnummer",
|
||||||
"tos": "AGBs",
|
"tos": "AGBs",
|
||||||
|
"total": "Gesamt",
|
||||||
"view_my_data": "Meine Läuferdaten einsehen",
|
"view_my_data": "Meine Läuferdaten einsehen",
|
||||||
"vorname": "Vorname",
|
"vorname": "Vorname",
|
||||||
"you_have_been_registered": "Sie wurden registriert!",
|
"you_have_been_registered": "Sie wurden registriert!",
|
||||||
|
|||||||
@@ -50,6 +50,7 @@
|
|||||||
"the_system_is_not_properly_configured_please_contact_the_system_administrator_for_help": "The system is not properly configured. Please contact the system administrator for help.",
|
"the_system_is_not_properly_configured_please_contact_the_system_administrator_for_help": "The system is not properly configured. Please contact the system administrator for help.",
|
||||||
"this_is_not_a_valid_international_phone_number": "This is not a valid international phone number",
|
"this_is_not_a_valid_international_phone_number": "This is not a valid international phone number",
|
||||||
"tos": "Terms of Service",
|
"tos": "Terms of Service",
|
||||||
|
"total": "Total",
|
||||||
"view_my_data": "View my data",
|
"view_my_data": "View my data",
|
||||||
"vorname": "Firstname",
|
"vorname": "Firstname",
|
||||||
"you_have_been_registered": "You have been registered!",
|
"you_have_been_registered": "You have been registered!",
|
||||||
|
|||||||
@@ -282,6 +282,29 @@
|
|||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
|
<tfoot class="text-gray-900 dark:text-gray-50">
|
||||||
|
<tr>
|
||||||
|
<td class="px-4 py-3">{{ $t('total') }}</td>
|
||||||
|
<td class="px-4 py-3">
|
||||||
|
<span
|
||||||
|
v-text="(state.sponsorings.reduce(function(sum, current) {
|
||||||
|
return sum + current.amountPerDistance;
|
||||||
|
}, 0) / 100)
|
||||||
|
.toFixed(2)
|
||||||
|
.toLocaleString('de-DE', { valute: 'EUR' })"
|
||||||
|
></span>€
|
||||||
|
</td>
|
||||||
|
<td class="px-4 py-3">
|
||||||
|
<span
|
||||||
|
v-text="(state.sponsorings.reduce(function(sum, current) {
|
||||||
|
return sum + current.amount;
|
||||||
|
}, 0) / 100)
|
||||||
|
.toFixed(2)
|
||||||
|
.toLocaleString('de-DE', { valute: 'EUR' })"
|
||||||
|
></span>€
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tfoot>
|
||||||
</table>
|
</table>
|
||||||
<div v-else class="text-center font-bold text-black dark:text-white text-2xl">
|
<div v-else class="text-center font-bold text-black dark:text-white text-2xl">
|
||||||
<img
|
<img
|
||||||
|
|||||||
Reference in New Issue
Block a user