mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
Merge branch 'master' of github.com:Ocelot-Social-Community/Ocelot-Social
This commit is contained in:
commit
db0cf69670
8
.github/workflows/test-webapp.yml
vendored
8
.github/workflows/test-webapp.yml
vendored
@ -23,7 +23,7 @@ jobs:
|
|||||||
|
|
||||||
prepare:
|
prepare:
|
||||||
name: Prepare
|
name: Prepare
|
||||||
if: needs.files-changed.outputs.webapp
|
if: needs.files-changed.outputs.webapp == 'true'
|
||||||
needs: files-changed
|
needs: files-changed
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
@ -37,7 +37,7 @@ jobs:
|
|||||||
|
|
||||||
build_test_webapp:
|
build_test_webapp:
|
||||||
name: Docker Build Test - Webapp
|
name: Docker Build Test - Webapp
|
||||||
if: needs.files-changed.outputs.docker == 'true' || needs.files-changed.outputs.webapp
|
if: needs.files-changed.outputs.docker == 'true' || needs.files-changed.outputs.webapp == 'true'
|
||||||
needs: [files-changed, prepare]
|
needs: [files-changed, prepare]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
@ -57,7 +57,7 @@ jobs:
|
|||||||
|
|
||||||
lint_webapp:
|
lint_webapp:
|
||||||
name: Lint Webapp
|
name: Lint Webapp
|
||||||
if: needs.files-changed.outputs.webapp
|
if: needs.files-changed.outputs.webapp == 'true'
|
||||||
needs: files-changed
|
needs: files-changed
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
@ -69,7 +69,7 @@ jobs:
|
|||||||
|
|
||||||
unit_test_webapp:
|
unit_test_webapp:
|
||||||
name: Unit Tests - Webapp
|
name: Unit Tests - Webapp
|
||||||
if: needs.files-changed.outputs.docker == 'true' || needs.files-changed.outputs.webapp
|
if: needs.files-changed.outputs.docker == 'true' || needs.files-changed.outputs.webapp == 'true'
|
||||||
needs: [files-changed, build_test_webapp]
|
needs: [files-changed, build_test_webapp]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
|
|||||||
@ -42,10 +42,7 @@ module.exports = defineConfig({
|
|||||||
baseUrl: "http://localhost:3000",
|
baseUrl: "http://localhost:3000",
|
||||||
specPattern: "cypress/e2e/**/*.feature",
|
specPattern: "cypress/e2e/**/*.feature",
|
||||||
supportFile: "cypress/support/e2e.js",
|
supportFile: "cypress/support/e2e.js",
|
||||||
retries: {
|
retries: 0,
|
||||||
runMode: 2,
|
|
||||||
openMode: 0,
|
|
||||||
},
|
|
||||||
video: false,
|
video: false,
|
||||||
setupNodeEvents,
|
setupNodeEvents,
|
||||||
},
|
},
|
||||||
|
|||||||
@ -2,6 +2,10 @@
|
|||||||
|
|
||||||
When you overtake this deploy and rebrand repo to your network you have to recognize the following changes and doings:
|
When you overtake this deploy and rebrand repo to your network you have to recognize the following changes and doings:
|
||||||
|
|
||||||
|
## Version >= 2.7.0 with 'ocelotDockerVersionTag' 2.7.0-470
|
||||||
|
|
||||||
|
- You have to rename all `.js` files to `.ts` in `branding/constants`
|
||||||
|
|
||||||
## Version >= 2.4.0 with 'ocelotDockerVersionTag' 2.4.0-298
|
## Version >= 2.4.0 with 'ocelotDockerVersionTag' 2.4.0-298
|
||||||
|
|
||||||
- You have to set `SHOW_CONTENT_FILTER_HEADER_MENU` and `SHOW_CONTENT_FILTER_MASONRY_GRID` in `branding/constants/filter.js` originally in main code file `webapp/constants/filter.js` to your preferred value.
|
- You have to set `SHOW_CONTENT_FILTER_HEADER_MENU` and `SHOW_CONTENT_FILTER_MASONRY_GRID` in `branding/constants/filter.js` originally in main code file `webapp/constants/filter.js` to your preferred value.
|
||||||
|
|||||||
@ -580,7 +580,7 @@
|
|||||||
"moreInfo": "Was ist {APPLICATION_NAME}?",
|
"moreInfo": "Was ist {APPLICATION_NAME}?",
|
||||||
"moreInfoHint": "zur Präsentationsseite",
|
"moreInfoHint": "zur Präsentationsseite",
|
||||||
"no-account": "Du hast noch kein Nutzerkonto?",
|
"no-account": "Du hast noch kein Nutzerkonto?",
|
||||||
"no-cookie": "Es kann kein Cookie angelegt werden. Du must Cookies akzeptieren.",
|
"no-cookie": "Es kann kein Cookie angelegt werden. Du musst Cookies akzeptieren.",
|
||||||
"password": "Dein Passwort",
|
"password": "Dein Passwort",
|
||||||
"register": "Nutzerkonto erstellen",
|
"register": "Nutzerkonto erstellen",
|
||||||
"success": "Du bist eingeloggt!"
|
"success": "Du bist eingeloggt!"
|
||||||
@ -759,9 +759,9 @@
|
|||||||
"viewEvent": {
|
"viewEvent": {
|
||||||
"eventEnd": "Ende",
|
"eventEnd": "Ende",
|
||||||
"eventIsOnline": "Online",
|
"eventIsOnline": "Online",
|
||||||
"eventLocationName": "Stadt",
|
"eventLocationName": "Stadt - z.B. Musterstraße 1, 12345 Musterstadt",
|
||||||
"eventStart": "Beginn",
|
"eventStart": "Beginn",
|
||||||
"eventVenue": "Veranstaltungsort",
|
"eventVenue": "Veranstaltungsort - z.B. Hinterhof, 1. OG, ...",
|
||||||
"title": "Veranstaltung"
|
"title": "Veranstaltung"
|
||||||
},
|
},
|
||||||
"viewPost": {
|
"viewPost": {
|
||||||
|
|||||||
@ -759,9 +759,9 @@
|
|||||||
"viewEvent": {
|
"viewEvent": {
|
||||||
"eventEnd": "End",
|
"eventEnd": "End",
|
||||||
"eventIsOnline": "Online",
|
"eventIsOnline": "Online",
|
||||||
"eventLocationName": "City",
|
"eventLocationName": "City - e.g. Example street 1, 12345 City",
|
||||||
"eventStart": "Start",
|
"eventStart": "Start",
|
||||||
"eventVenue": "Venue",
|
"eventVenue": "Venue - e.g. Backyard, 1st Floor, ...",
|
||||||
"title": "Event"
|
"title": "Event"
|
||||||
},
|
},
|
||||||
"viewPost": {
|
"viewPost": {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user