UX: add theme colours to manifest

This commit is contained in:
Pieter Vander Vennet 2023-11-09 16:22:48 +01:00
parent 4ec74f24b9
commit 7adb7d7c0d
4 changed files with 11 additions and 5 deletions

View file

@ -27,7 +27,6 @@ User has used mapcomplete a few times before but has very little OSM-knowledge.
- [x] Forced questions in the beginning: do not show errors
- [x] Validation: forbid that a mapping starts with "yes" or "no"
- [x] TagRenderings: freeform key cannot be set to 'undefined' again
- [ ] How to create a mapping for `key=yes` or `key=no` is unclear. Person searched for a 'binary'-type instead
- [x] When a new tagRendering is added, the floatover should open immediately
- [x] Mappings with different keys do not erase each other/freeform (e.g. noname=yes should erase `name`)
- [x] Rename `mapping` to `predifined icon`, perhaps add a clarifying icon
@ -37,4 +36,10 @@ User has used mapcomplete a few times before but has very little OSM-knowledge.
- [x] There should be some space for the 'close'-button in the tagRendering
- [x] Changing the icon: the term 'icon badge' is misunderstood and interpreted as "the logo"
- [x] Trying to change the 'iconBadges' does not work
- [ ] Creating a preset: initially very unclear
### Wont fix
Should be clear to seasoned OSM-people
- [-] How to create a mapping for `key=yes` or `key=no` is unclear. Person searched for a 'binary'-type instead
- [-] Creating a preset: initially very unclear

View file

@ -4,7 +4,7 @@
import { UIEventSource } from "../../../Logic/UIEventSource";
import BasicTagInput from "../../Studio/TagInput/BasicTagInput.svelte";
import { TagUtils } from "../../../Logic/Tags/TagUtils";
import * as nmd from "nano-markdown"
import nmd from "nano-markdown"
import FromHtml from "../../Base/FromHtml.svelte";
export let value: UIEventSource<undefined | string>;
export let args: string[] = [];

View file

@ -5,6 +5,7 @@
"lang": "en",
"display": "standalone",
"background_color": "#fff",
"theme_color": "#fff",
"description": "A thematic map viewer and editor based on OpenStreetMap",
"orientation": "portrait-primary, landscape-primary",
"icons": [

View file

@ -3,7 +3,7 @@
"short_name": "MapComplete",
"start_url": "index.html",
"lang": "en",
"theme_color":"white",
"theme_color": "#fff",
"display": "standalone",
"background_color": "#fff",
"description": "A thematic map viewer and editor based on OpenStreetMap",