Changes between Version 93 and Version 94 of Styles/Coloured_Streets
- Timestamp:
- 2014-12-18T18:50:30+01:00 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Styles/Coloured_Streets
v93 v94 59 59 == Changelog == 60 60 ^(Latest change first)^ 61 ==== Version 3.40.xx to 3.41.xx ==== 62 * Fix size of tagged waynodes at zoomlevel 17 63 * Add a style setting to hide the warning message if JOSM is too old for Coloured Streets 61 64 ==== Version 3.39.xx to 3.40.xx ==== 62 65 * Do not colour highway=emergency_access_point. 63 66 ==== Version 3.38.xx to 3.39.xx ==== 64 * Do not ask for "name?" on streets with junction=roundabout. 67 * Do not ask for "name?" on streets with junction=roundabout. (Thanks to user feedback.) 65 68 ==== Version 3.37.xx to 3.38.xx ==== 66 69 * Replace .png icon by .svg version. … … 206 209 { 207 210 title: "Coloured Streets"; 208 version: "3.4 0.[[revision]]_[[date]]";211 version: "3.41.[[revision]]_[[date]]"; 209 212 description: "Colouring of buildings, address nodes and streets with the same street name in the same colour. Makes working with addresses a lot easier. Check out the linked page to read how to change some settings of this mappaint style. Min. JOSM version is 7480."; 210 213 icon: "http://upload.wikimedia.org/wikipedia/commons/5/5d/IconColouredStreets.svg"; … … 253 256 default: true; 254 257 } 258 setting::display_old_josm { 259 type: boolean; 260 label: tr("Display a message if your JOSM version is too old for this style"); 261 default: true; 262 } 255 263 256 264 /* create crc32checksums. They are use later in the stylesheet to determine the colour. … … 336 344 /* ------------------------------------------------------------------------------------------------------------------------ */ 337 345 /* ------------------------------------------------------------------------------------------------------------------------ */ 338 /* Display a warning message if the josm version is to old*/346 /* Display a warning message if the josm version is too old, can be hidden by a style setting */ 339 347 @media (max-josm-version: 7479) 340 348 { 341 node[fixme]::core_fixme, 342 node[note]::core_note, 343 node[place]::oldJOSM, 344 node[natural]::oldJOSM, 345 node:new::oldJOSM 346 { 347 text: tr("Your JOSM version is to old for the mappaint style Coloured Streets. Please update JOSM."); 349 node[setting("display_old_josm")][fixme]::core_fixme, 350 node[setting("display_old_josm")][note]::core_note, 351 node[setting("display_old_josm")][place]::oldJOSM, 352 node[setting("display_old_josm")][natural]::oldJOSM, 353 node[setting("display_old_josm")]:new::oldJOSM 354 { 355 text: tr("Your JOSM version is too old for the mappaint style Coloured Streets. Please update JOSM."); 348 356 text-color: orange; 349 357 text-halo-radius: 2; … … 362 370 363 371 node|z17 { symbol-size: 2; } 364 way > node|z17 { symbol-size: 1; }372 way > node|z17!:tagged { symbol-size: 1; } 365 373 node|z17:connection { symbol-size: 2; } 366 374
