Skip to content

Commit ee41d62

Browse files
committed
Merge branch 'release/2.18.0'
2 parents 8d56d2a + 9c6a78f commit ee41d62

4 files changed

Lines changed: 20 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release Notes
22

3+
### Release 2.18.0 (2026-07-02)
4+
- Credit version 1 (up to v1.28.0, by Dario Jozinović) in the README introduction
5+
- Clarify the README "Develop" section (purpose of the local mount, dev port, SHAKEMAP_ENV default)
6+
37
### Release 2.17.0 (2026-06-24)
48
- Plot all reported-intensity (macroseismic) points in the Analysis View intensity chart, selected by intensity instead of PGA/PGV thresholds
59
- Keep the PGA/PGV analysis charts limited to instrumental (seismic) stations

README.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515

1616
This project provides a static web portal to visualize ShakeMap data. It consists of a Bash script to process event data and a frontend (HTML/JS/CSS) to display it.
1717

18+
Version 2 is a redesign that builds on the foundations laid by version 1 (up to [`v1.28.0`](https://github.com/INGV/shakemap4-web/tree/v1.28.0)), originally developed by [Dario Jozinović](https://github.com/djozinovi).
19+
1820
## Features
1921
- **Event List**: View all processed ShakeMap events.
2022
- **Search**: Filter events by Start Time, End Time, and Minimum Magnitude.
@@ -181,6 +183,17 @@ Python's simple HTTP server cannot provide the `/data/...` to `data_storage/` fa
181183
- **Map Layers**: configured in `js/app.js` (`initMap` function).
182184
- **Styles**: `css/style.css`.
183185

186+
## Develop
187+
For local development, mount the whole project directory into the container so that changes to HTML/JS/CSS are served live, without rebuilding the image:
188+
189+
```bash
190+
docker run --rm -p 8085:80 -e ENABLE_CRONTAB=true -e SHAKEMAP_ENV=ingv -v $(pwd):/usr/share/nginx/html --name shakemap4-web__container ingv/shakemap4-web
191+
```
192+
193+
Then open `http://localhost:8085` in your browser.
194+
195+
> **Note:** `SHAKEMAP_ENV` selects the environment profile (`ingv`, `eu`, or custom); `ingv` is the default and is shown here only for clarity. When mounting the full project directory, the entrypoint generates `js/config-env.js` locally — this file is gitignored.
196+
184197
## Thanks to
185198
This work has been partially funded by:
186199
- Seismology and Earthquake Engineering Research Infrastructure Alliance for Europe (SERA) project
@@ -190,13 +203,6 @@ This work has been partially funded by:
190203
## Contribute
191204
Thanks to your contributions!
192205

193-
For develop run:
194-
```bash
195-
docker run --rm -p 8085:80 -e ENABLE_CRONTAB=true -e SHAKEMAP_ENV=ingv -v $(pwd):/usr/share/nginx/html --name shakemap4-web__container ingv/shakemap4-web
196-
```
197-
198-
> **Note:** `SHAKEMAP_ENV` selects the environment profile (`ingv`, `eu`, or custom). When mounting the full project directory, the entrypoint generates `js/config-env.js` locally — this file is gitignored.
199-
200206
Here is a list of users who already contributed to this repository: \
201207
<a href="https://github.com/ingv/shakemap4-web/graphs/contributors">
202208
<img src="https://contrib.rocks/image?repo=ingv/shakemap4-web" />

js/config-base.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const ShakeMap = {
1919
};
2020

2121
const config = {
22-
version: "v2.17.0",
22+
version: "v2.18.0",
2323
githubLink: "https://github.com/INGV/shakemap4-web",
2424
disclaimerPage: './disclaimer-ingv.md',
2525
contributorsPage: './contributors-ingv.md',

publiccode.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44

55
publiccodeYmlVersion: "0"
66
name: "INGV - ShakeMap4 Web Page"
7-
releaseDate: 2026-06-24
7+
releaseDate: 2026-07-02
88
url: "https://github.com/INGV/shakemap4-web"
99
landingURL: "https://github.com/INGV/shakemap4-web"
10-
softwareVersion: v2.17.0
10+
softwareVersion: v2.18.0
1111
developmentStatus: stable
1212
softwareType: standalone/other
1313
platforms:

0 commit comments

Comments
 (0)