Changeset 16902 in josm


Ignore:
Timestamp:
2020-08-22T22:13:30+02:00 (4 years ago)
Author:
simon04
Message:

see #19694 - Obtain social logos from Font Awesome

Location:
trunk
Files:
3 added
3 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/CONTRIBUTION

    r16854 r16902  
    127127https://wiki.openstreetmap.org/wiki/File:Logo_simple.svg
    128128
    129 Social logos come from https://github.com/Automattic/social-logos (GPLv2 or later)
     129Social logos come from https://github.com/FortAwesome/Font-Awesome (CC BY 4.0)
    130130
    131131See also the commit message of each icon for its source
  • trunk/src/org/openstreetmap/josm/actions/AboutAction.java

    r16505 r16902  
    114114        logos.add(createImageLink("OpenStreetMap", /* ICON(dialogs/about/) */ "openstreetmap",
    115115                "https://www.openstreetmap.org/user/josmeditor/diary"));
    116         logos.add(createImageLink("Twitter", /* ICON(dialogs/about/) */ "twitter", "https://twitter.com/josmeditor"));
    117         logos.add(createImageLink("Facebook", /* ICON(dialogs/about/) */ "facebook", "https://www.facebook.com/josmeditor"));
    118         logos.add(createImageLink("GitHub", /* ICON(dialogs/about/) */ "github", "https://github.com/JOSM"));
     116        logos.add(createImageLink("Twitter", /* ICON(dialogs/about/) */ "twitter-square", "https://twitter.com/josmeditor"));
     117        logos.add(createImageLink("Facebook", /* ICON(dialogs/about/) */ "facebook-square", "https://www.facebook.com/josmeditor"));
     118        logos.add(createImageLink("GitHub", /* ICON(dialogs/about/) */ "github-square", "https://github.com/JOSM"));
    119119        info.add(logos, GBC.eol().insets(0, 10, 0, 0));
    120120        info.add(GBC.glue(0, 5), GBC.eol());
Note: See TracChangeset for help on using the changeset viewer.