]> git.openstreetmap.org Git - nominatim-ui.git/commitdiff
version 3.0.0
authormarc tobias <mtmail@gmx.net>
Thu, 25 Feb 2021 20:45:56 +0000 (21:45 +0100)
committermarc tobias <mtmail@gmx.net>
Thu, 25 Feb 2021 20:45:56 +0000 (21:45 +0100)
CHANGES.md
CONTRIBUTE.md
README.md
package.json

index df3b598b5dacf6483dd31e6a974ad8d3ca48372b..716e3697b934dbcc6f5d3ee16a3d4d1a6336cb02 100644 (file)
@@ -1,8 +1,19 @@
 # CHANGES
 
-* unreleased
-    * Add theming
-    * Replace config.js with config.default.js and theme/config.theme.js
+* version 3.0.0 - 2021-02-25
+
+    Version 3 add a new directory dist/theme/. It changes the default welcome, about and
+    help text, and moves the configuration into dist/theme/. Admins should review those
+    (explained in README.md) before deploying the nominatim-ui.
+
+    * Major change: Add theming
+    * Major change: Replace dist/config.js with dist/config.default.js and dist/theme/config.theme.js
+    * Refactored and added API error output
+    * Build: dist/build/bundle.* files are now created by a Github Action upon release, no longer in version control
+    * Documentation: removed TODO.md, we use github issues now
+    * Documentation: README.md is part of the release, moved some development content to CONTRIBUTE.md
+    * Documentation: badge showing latest release version in README.md
+    * Documentation: badge showing latest test (Github CI) output in CONTRIBUTE.md
 
 * version 2.3.0 - 2021-02-19
 
index e8c56e3b08d4c10c8be20cfe0ecdd3ecaa4344d0..66251bebd4be950c08c25dd9fb1f86c428a49ab0 100644 (file)
@@ -44,10 +44,9 @@ Uses [svelte](https://svelte.dev/) framework,
 
 2. Update `CHANGES.md` file
 
-3. Run `yarn build` to make sure the `dist/build/` files don't contain lifereload.js
+3. Commit your changes: `git add... `, `git commit ...`, `git push ...` etc
 
-4. Commit your changes: `git add... `, `git commit ...`, `git push ...` etc
+4. Tag release: `git tag THE_VERSION_NUMBER`, `git push --tags`
 
-5. Tag release: `git tag THE_VERSION_NUMBER`, `git push --tags`
-
-6. Upload release
\ No newline at end of file
+5. Create release on https://github.com/osm-search/nominatim-ui/releases
+   This (a triggered Github Action) will run `yarn build` and add the `dist/build/bundle.*` files.
index 1d4d018e9df329272937e277d09c9cba317b76c5..f650882f3fa38a500fd3945455ad13a3fbff7b89 100644 (file)
--- a/README.md
+++ b/README.md
@@ -1,5 +1,7 @@
 # Nominatim-UI
 
+![GitHub release (latest by date)](https://img.shields.io/github/v/release/osm-search/nominatim-ui)
+
 Debugging user interface for [Nominatim](https://nominatim.org/)
 ([source](https://github.com/osm-search/Nominatim/)) geocoder.
 
index f816e09f839c69b8d6833902d362428a44ce025b..426cd30f89f44095e936690fc562fca98aeb8db9 100644 (file)
@@ -1,7 +1,7 @@
 {
   "name": "nominatim-ui",
   "description": "Debug web interface for Nominatim geocoder",
-  "version": "2.3.0",
+  "version": "3.0.0",
   "license": "GPL-2.0",
   "scripts": {
     "build": "rollup -c",