forked from MapComplete/MapComplete
UX: add theme colours to manifest
This commit is contained in:
parent
4ec74f24b9
commit
7adb7d7c0d
4 changed files with 11 additions and 5 deletions
|
@ -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] Forced questions in the beginning: do not show errors
|
||||||
- [x] Validation: forbid that a mapping starts with "yes" or "no"
|
- [x] Validation: forbid that a mapping starts with "yes" or "no"
|
||||||
- [x] TagRenderings: freeform key cannot be set to 'undefined' again
|
- [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] 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] 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
|
- [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] 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] Changing the icon: the term 'icon badge' is misunderstood and interpreted as "the logo"
|
||||||
- [x] Trying to change the 'iconBadges' does not work
|
- [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
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
import { UIEventSource } from "../../../Logic/UIEventSource";
|
import { UIEventSource } from "../../../Logic/UIEventSource";
|
||||||
import BasicTagInput from "../../Studio/TagInput/BasicTagInput.svelte";
|
import BasicTagInput from "../../Studio/TagInput/BasicTagInput.svelte";
|
||||||
import { TagUtils } from "../../../Logic/Tags/TagUtils";
|
import { TagUtils } from "../../../Logic/Tags/TagUtils";
|
||||||
import * as nmd from "nano-markdown"
|
import nmd from "nano-markdown"
|
||||||
import FromHtml from "../../Base/FromHtml.svelte";
|
import FromHtml from "../../Base/FromHtml.svelte";
|
||||||
export let value: UIEventSource<undefined | string>;
|
export let value: UIEventSource<undefined | string>;
|
||||||
export let args: string[] = [];
|
export let args: string[] = [];
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
"lang": "en",
|
"lang": "en",
|
||||||
"display": "standalone",
|
"display": "standalone",
|
||||||
"background_color": "#fff",
|
"background_color": "#fff",
|
||||||
|
"theme_color": "#fff",
|
||||||
"description": "A thematic map viewer and editor based on OpenStreetMap",
|
"description": "A thematic map viewer and editor based on OpenStreetMap",
|
||||||
"orientation": "portrait-primary, landscape-primary",
|
"orientation": "portrait-primary, landscape-primary",
|
||||||
"icons": [
|
"icons": [
|
||||||
|
@ -68,4 +69,4 @@
|
||||||
"map",
|
"map",
|
||||||
"navigation"
|
"navigation"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
"short_name": "MapComplete",
|
"short_name": "MapComplete",
|
||||||
"start_url": "index.html",
|
"start_url": "index.html",
|
||||||
"lang": "en",
|
"lang": "en",
|
||||||
"theme_color":"white",
|
"theme_color": "#fff",
|
||||||
"display": "standalone",
|
"display": "standalone",
|
||||||
"background_color": "#fff",
|
"background_color": "#fff",
|
||||||
"description": "A thematic map viewer and editor based on OpenStreetMap",
|
"description": "A thematic map viewer and editor based on OpenStreetMap",
|
||||||
|
|
Loading…
Reference in a new issue