Skip to content

Commit

Permalink
Merge pull request #523 from Terralego/fix_front_build
Browse files Browse the repository at this point in the history
Support for layers grouped by variables and other fixes
  • Loading branch information
submarcos authored Jan 24, 2024
2 parents 4b02b90 + 7404db6 commit c12cb7c
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
if: steps.cache-front.outputs.cache-hit != 'true'
working-directory: ./front
run: |
npx react-scripts build
npm run build
- uses: docker/setup-buildx-action@v3

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ build_admin:

build_front:
docker compose -f .docker/frontend/docker-compose.yml pull
docker compose -f .docker/frontend/docker-compose.yml run --rm front bash -c "git config --global url.\"https://github.com/\".insteadOf ssh://[email protected]/ && npm ci --production && npx react-scripts build"
docker compose -f .docker/frontend/docker-compose.yml run --rm front bash -c "git config --global url.\"https://github.com/\".insteadOf ssh://[email protected]/ && npm ci --production && npm run build"
find ./public -maxdepth 1 -type f -exec rm {} \;
if [ -e ./public/static ]; then rm -r ./public/static ./public/images ./public/locales; fi
mv ./front/build/* ./public/
Expand Down
14 changes: 14 additions & 0 deletions docs/source/others/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@
Changelog
==========

2024.01.1 (2024-01-22)
---------------------------

**Improvements:**
- Terra-front is now part of Visu-front

**New features:**
- Support for layers grouped by variables (admin & front)

**Bug fixes:**
- New icon for layer's informations (front)
- Fix piecharts going over legends (front)
- Remove options to display labels on secondary styles (admin)

2024.01.0 (2024-01-12)
---------------------------

Expand Down
2 changes: 1 addition & 1 deletion front
Submodule front updated 440 files
2 changes: 1 addition & 1 deletion project/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2024.01.0
2024.01.1

0 comments on commit c12cb7c

Please sign in to comment.