Github user daserge commented on a diff in the pull request:

    https://github.com/apache/cordova-docs/pull/558#discussion_r56040443
  
    --- Diff: www/docs/en/6.x/config_ref/images.md ---
    @@ -135,6 +136,22 @@ different screen resolutions.
             <icon src="res/Windows/Wide310x150Logo.scale-240.png" width="744" 
height="360" />
         </platform>
     ```
    +
    +For Windows it's also possible to specify icons destination using `target` 
attribute. This approach has the following advantages:
    +
    +  * it is possible to define group of icons for different device scale 
factors using one `<icon ...>` element, for example:
    +```xml
    +    <icon src="res/Windows/AppListIcon.png" target="Square44x44Logo.png" />
    +```
    +  which is equal to the following lines:
    +```xml
    +    <icon src="res/Windows/Square44x44Logo.scale-100.png" width="44" 
height="44" />
    +    <icon src="res/Windows/Square44x44Logo.scale-150.png" width="66" 
height="66" />
    +    <icon src="res/Windows/Square44x44Logo.scale-150.png" width="88" 
height="88" />
    --- End diff --
    
    This looks like a copy-paste typo.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org

Reply via email to