Skip to content

Commit ab670e5

Browse files
authored
Merge pull request #167 from dshanske/june21refresh
Icon Refresh
2 parents d7c341f + b171fe1 commit ab670e5

File tree

888 files changed

+2984
-584
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

888 files changed

+2984
-584
lines changed

Gruntfile.js

Lines changed: 14 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
module.exports = function (grunt) {
2-
const sass = require('node-sass');
32
// Project configuration.
43
grunt.initConfig({
54
execute: {
@@ -57,25 +56,23 @@ const sass = require('node-sass');
5756
}
5857
}
5958
},
60-
sass: {
61-
options: {
62-
implementation: sass,
63-
sourceMap: true,
64-
outputStyle: 'compressed'
65-
},
66-
// Task
67-
dist: { // Target
68-
files: { // Dictionary of files
69-
'static/css/indieweb.css': 'sass/main.scss', // 'destination': 'source'
70-
'static/css/indieweb-bw.css': 'sass/main-bw.scss',
71-
'static/css/indieweb-admin.css': 'sass/main-admin.scss'
72-
}
73-
}
74-
}
59+
sass : { // Task.
60+
dist: { // Target.
61+
options: { // Target options.
62+
style: 'compressed'
63+
},
64+
files : { // Dictionary of files.
65+
66+
'static/css/indieweb.css': 'sass/main.scss', // 'destination': 'source'
67+
'static/css/indieweb-bw.css': 'sass/main-bw.scss',
68+
'static/css/indieweb-admin.css': 'sass/main-admin.scss'
69+
}
70+
}
71+
}
7572
});
7673

7774
grunt.loadNpmTasks('grunt-wp-readme-to-markdown');
78-
grunt.loadNpmTasks('grunt-sass');
75+
grunt.loadNpmTasks('grunt-contrib-sass');
7976
grunt.loadNpmTasks('grunt-checktextdomain');
8077
grunt.loadNpmTasks('grunt-execute');
8178
grunt.loadNpmTasks('grunt-contrib-copy');

includes/class-relme-domain-icon-map.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public static function get_icon( $name ) {
6262
$icon = self::get_icon_svg( $name );
6363
$title = self::get_title( $name );
6464
if ( $icon ) {
65-
return sprintf( '<span class="svg-icon svg-%1$s" aria-hidden="true" aria-label="%2$s" title="%2$s" >%3$s</span>', esc_attr( $name ), esc_attr( $title ), $icon );
65+
return sprintf( '<span class="relme-icon svg-%1$s" aria-hidden="true" aria-label="%2$s" title="%2$s" >%3$s</span>', esc_attr( $name ), esc_attr( $title ), $icon );
6666
}
6767
return $name;
6868
}

includes/simple-icons.php

Lines changed: 484 additions & 5 deletions
Large diffs are not rendered by default.

indieweb.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Description: Interested in connecting your WordPress site to the IndieWeb?
66
* Author: IndieWebCamp WordPress Outreach Club
77
* Author URI: https://indieweb.org/WordPress_Outreach_Club
8-
* Version: 3.4.4
8+
* Version: 3.4.5
99
* License: MIT
1010
* License URI: http://opensource.org/licenses/MIT
1111
* Text Domain: indieweb
@@ -26,7 +26,7 @@
2626
*/
2727
class IndieWeb_Plugin {
2828

29-
public static $version = '3.4.4';
29+
public static $version = '3.4.5';
3030

3131
/**
3232
* Initialize the plugin, registering WordPress hooks.

languages/wordpress-indieweb.pot

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
# Copyright (C) 2020 IndieWebCamp WordPress Outreach Club
1+
# Copyright (C) 2021 IndieWebCamp WordPress Outreach Club
22
# This file is distributed under the MIT.
33
msgid ""
44
msgstr ""
5-
"Project-Id-Version: IndieWeb 3.4.3\n"
5+
"Project-Id-Version: IndieWeb 3.4.5\n"
66
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wordpress-indieweb\n"
77
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
88
"Language-Team: LANGUAGE <LL@li.org>\n"
99
"MIME-Version: 1.0\n"
1010
"Content-Type: text/plain; charset=UTF-8\n"
1111
"Content-Transfer-Encoding: 8bit\n"
12-
"POT-Creation-Date: 2020-08-16T01:20:48+00:00\n"
12+
"POT-Creation-Date: 2021-06-12T15:40:56+00:00\n"
1313
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14-
"X-Generator: WP-CLI 2.4.0\n"
14+
"X-Generator: WP-CLI 2.5.0\n"
1515
"X-Domain: indieweb\n"
1616

1717
#. Plugin Name of the plugin

package.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,13 @@
1111
},
1212
"devDependencies": {
1313
"genericons-neue": "^4.0.5",
14-
"grunt": "^1.3.0",
14+
"grunt": "^1.4.1",
1515
"grunt-checktextdomain": "^1.0.1",
1616
"grunt-contrib-copy": "^1.0.0",
17+
"grunt-contrib-sass": "^2.0.0",
1718
"grunt-execute": "^0.2.2",
18-
"grunt-sass": "^3.1.0",
1919
"grunt-wp-readme-to-markdown": "~2.0.1",
20-
"node-sass": "^4.14.1",
21-
"simple-icons": "^4.2.0"
20+
"simple-icons": "^4.25.0"
2221
},
2322
"license": "MIT",
2423
"bugs": {

readme.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
**Tags:** indieweb, webmention, POSSE, indieauth
55
**Requires at least:** 4.7
66
**Requires PHP:** 5.6
7-
**Tested up to:** 5.6
8-
**Stable tag:** 3.4.4
7+
**Tested up to:** 5.7.2
8+
**Stable tag:** 3.4.5
99
**License:** MIT
1010
**License URI:** http://opensource.org/licenses/MIT
1111

@@ -82,6 +82,11 @@ One could certainly download, install, and activate some or all of these plugins
8282

8383
Project maintained on github at [indieweb/wordpress-indieweb](https://github.com/indieweb/wordpress-indieweb).
8484

85+
### 3.4.5 ###
86+
* Refresh dependencies
87+
* Refresh icons
88+
* Fix issue with CSS name collision causing black icons to turn green.
89+
8590
### 3.4.4 ###
8691
* Refresh dependencies
8792

readme.txt

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ Donate link: https://indieweb.org/how-to-sponsor
44
Tags: indieweb, webmention, POSSE, indieauth
55
Requires at least: 4.7
66
Requires PHP: 5.6
7-
Tested up to: 5.6
8-
Stable tag: 3.4.4
7+
Tested up to: 5.7.2
8+
Stable tag: 3.4.5
99
License: MIT
1010
License URI: http://opensource.org/licenses/MIT
1111

@@ -82,6 +82,11 @@ One could certainly download, install, and activate some or all of these plugins
8282

8383
Project maintained on github at [indieweb/wordpress-indieweb](https://github.com/indieweb/wordpress-indieweb).
8484

85+
= 3.4.5 =
86+
* Refresh dependencies
87+
* Refresh icons
88+
* Fix issue with CSS name collision causing black icons to turn green.
89+
8590
= 3.4.4 =
8691
* Refresh dependencies
8792

sass/_links.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.svg-icon {
1+
.relme-icon {
22
svg {
33
fill: currentColor;
44
vertical-align: middle;

0 commit comments

Comments
 (0)