Skip to content

Commit 9e06177

Browse files
authored
Merge pull request #44 from creativecommons/rename-repo
2 parents 7d35ff4 + c3ce55f commit 9e06177

File tree

9 files changed

+64
-62
lines changed

9 files changed

+64
-62
lines changed

composer.json

Lines changed: 45 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,48 @@
11
{
2-
"name":"creativecommons/wp-base-theme",
3-
"description":"The Creative Commons base theme",
4-
"type":"wordpress-theme",
5-
"license":"GPL-2.0-or-later",
6-
"authors": [
7-
{
8-
"name":"Hugo Solar",
9-
"email":"hugo@creativecommons.org"
10-
}
11-
],
12-
"repositories": [
13-
{
14-
"type":"vcs",
15-
"url":"https://github.com/creativecommons/queulat",
16-
"no-api":true
17-
},
18-
{
19-
"type":"composer",
20-
"url":"https://wpackagist.org"
21-
}
22-
],
23-
"require": {
24-
"composer/installers":"~1.0",
25-
"felipelavinz/queulat":"2019.4.2",
26-
"jakub-onderka/php-parallel-lint": "^1.0"
2+
"name": "creativecommons/creativecommons-base",
3+
"description": "The Creative Commons base theme",
4+
"type": "wordpress-theme",
5+
"license": "GPL-2.0-or-later",
6+
"authors": [
7+
{
8+
"name": "Hugo Solar",
9+
"email": "hugo@creativecommons.org"
10+
}
11+
],
12+
"repositories": [
13+
{
14+
"type": "vcs",
15+
"url": "https://github.com/creativecommons/queulat",
16+
"no-api": true
2717
},
28-
"extra": {
29-
"installer-paths" : {
30-
"../../mu-plugins/{$name}" : ["type:wordpress-muplugin"]
31-
}
32-
},
33-
"scripts": {
34-
"compat":"phpcs -p --standard=PHPCompatibility --runtime-set testVersion 7.0 -n . --extensions=php --cache",
35-
"fix":"phpcbf --standard=WordPress . --extensions=php --ignore=vendor",
36-
"lint":"parallel-lint . --blame --exclude vendor",
37-
"sniff":"phpcs --standard=WordPress . --ignore=vendor --extensions=php"
38-
},
39-
"require-dev": {
40-
"dealerdirect/phpcodesniffer-composer-installer":"^0.4.3",
41-
"phpcompatibility/php-compatibility":"^9.1",
42-
"squizlabs/php_codesniffer":"3.*",
43-
"wp-coding-standards/wpcs":"^2.0",
44-
"php-parallel-lint/php-parallel-lint": "^1.1"
45-
}
18+
{
19+
"type": "composer",
20+
"url": "https://wpackagist.org"
21+
}
22+
],
23+
"require": {
24+
"composer/installers": "~1.0",
25+
"felipelavinz/queulat": "2019.4.2",
26+
"jakub-onderka/php-parallel-lint": "^1.0"
27+
},
28+
"extra": {
29+
"installer-paths": {
30+
"../../mu-plugins/{$name}": [
31+
"type:wordpress-muplugin"
32+
]
33+
}
34+
},
35+
"scripts": {
36+
"compat": "phpcs -p --standard=PHPCompatibility --runtime-set testVersion 7.0 -n . --extensions=php --cache",
37+
"fix": "phpcbf --standard=WordPress . --extensions=php --ignore=vendor",
38+
"lint": "parallel-lint . --blame --exclude vendor",
39+
"sniff": "phpcs --standard=WordPress . --ignore=vendor --extensions=php"
40+
},
41+
"require-dev": {
42+
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.3",
43+
"phpcompatibility/php-compatibility": "^9.1",
44+
"squizlabs/php_codesniffer": "3.*",
45+
"wp-coding-standards/wpcs": "^2.0",
46+
"php-parallel-lint/php-parallel-lint": "^1.1"
47+
}
4648
}

front/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "wp-theme-base",
3-
"version": "2020.11.1",
2+
"name": "creativecommons-base",
3+
"version": "2020.11.2",
44
"description": "Base WordPress theme for Creative Commons websites",
55
"main": "index.js",
66
"dependencies": {},
@@ -23,7 +23,7 @@
2323
},
2424
"repository": {
2525
"type": "git",
26-
"url": "git+https://github.com/creativecommons/wp-theme-base.git"
26+
"url": "git+https://github.com/creativecommons/creativecommons-base.git"
2727
},
2828
"keywords": [
2929
"WordPress",
@@ -33,7 +33,7 @@
3333
"author": "Creative Commons",
3434
"license": "MIT",
3535
"bugs": {
36-
"url": "https://github.com/creativecommons/wp-theme-base/issues"
36+
"url": "https://github.com/creativecommons/creativecommons-base/issues"
3737
},
38-
"homepage": "https://github.com/creativecommons/wp-theme-base#readme"
38+
"homepage": "https://github.com/creativecommons/creativecommons-base#readme"
3939
}

functions.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
/**
33
* Functions: list
44
*
5-
* @version 2020.11.1
6-
* @package wp-theme-base
5+
* @version 2020.11.2
6+
* @package creativecommons-base
77
*/
88

99
/* Theme Constants (to speed up some common things) ------*/
@@ -105,7 +105,7 @@ class Site {
105105
public $show_welcome = true;
106106

107107
const id = __CLASS__;
108-
const theme_ver = '2020.11.1';
108+
const theme_ver = '2020.11.2';
109109
private function __construct() {
110110
$this->actions_manager();
111111

inc/class-cc-filters.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
*
55
* This file contains a mix of useful filters & actions.
66
*
7-
* @link https://github.com/creativecommons/wp-theme-base
7+
* @link https://github.com/creativecommons/creativecommons-base
88
*
99
* @package WordPress
10-
* @subpackage wp-theme-base
10+
* @subpackage creativecommons-base
1111
* @since 2020.04.1
1212
*/
1313

inc/class-cc-site.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
*
55
* This file contains a mix of useful functions for several uses.
66
*
7-
* @link https://github.com/creativecommons/wp-theme-base
7+
* @link https://github.com/creativecommons/creativecommons-base
88
*
99
* @package WordPress
10-
* @subpackage wp-theme-base
10+
* @subpackage creativecommons-base
1111
* @since 2020.04.1
1212
*/
1313

inc/class-components.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
*
66
* This file contains a component class to work with CC Vocabulary components.
77
*
8-
* @link https://github.com/creativecommons/wp-theme-base
8+
* @link https://github.com/creativecommons/creativecommons-base
99
* @link https://github.com/creativecommons/vocabulary
1010
*
1111
* @package WordPress
12-
* @subpackage wp-theme-base
12+
* @subpackage creativecommons-base
1313
* @since 2020.04.1
1414
*/
1515

inc/class-walkers.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Bulma-Navwalker
44
*
5-
* @package wp-theme-base
5+
* @package creativecommons-base
66
* @since 2020.04.1
77
*/
88

inc/helpers.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
* This file contains a mix of useful functions and classes
66
* to ease the work with the template.
77
*
8-
* @link https://github.com/creativecommons/wp-theme-base
8+
* @link https://github.com/creativecommons/creativecommons-base
99
*
1010
* @package WordPress
11-
* @subpackage wp-theme-base
11+
* @subpackage creativecommons-base
1212
* @since 2020.04.1
1313
*/
1414

style.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/*
2-
Theme Name: Creative Commons Base theme
2+
Theme Name: Creative Commons Base Theme
33
Theme URI: https://creativecommons.org/
44
Author: Creative Commons
55
Author URI: https://creativecommons.org/
66
Description: Creative Commons base theme. Instead of using this theme directly, please create a child theme and use this theme as the parent theme.
7-
Version: 2020.11.1
7+
Version: 2020.11.2
88
License: GPL2 or later
99
License URI: http://www.gnu.org/licenses/gpl-2.0.html
1010

0 commit comments

Comments
 (0)