Skip to content

Commit 88959a7

Browse files
authored
Merge pull request #318 from pattonwebz/update/change-composer-package-type
Update/change composer package type
2 parents cce05d0 + 4c2ae91 commit 88959a7

File tree

4 files changed

+24
-10
lines changed

4 files changed

+24
-10
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
#CHANGELOG
22

3+
## [3.0.0]
4+
5+
- Fix untranslated string in fallback.
6+
- Instruct screenreaders to ignore icons when present.
7+
- Added basic unit tests and travis config.
8+
- Swapped to IF statements with curly braces.
9+
- Adds `$depth` arg for nav_menu_css_class filter.
10+
- Fix sanitization function used for class output in fallback.
11+
- Changed composer package type to `library` from `wordpress-plugin`.
12+
313
## [2.0.5] - 2016-011-15
414

515
- Fixed all reported issues by WP Enforcer.

README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,15 @@
88
[![Code Coverage](https://scrutinizer-ci.com/g/wp-bootstrap/wp-bootstrap-navwalker/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/wp-bootstrap/wp-bootstrap-navwalker/?branch=master)
99
[![Build Status](https://scrutinizer-ci.com/g/wp-bootstrap/wp-bootstrap-navwalker/badges/build.png?b=master)](https://scrutinizer-ci.com/g/wp-bootstrap/wp-bootstrap-navwalker/build-status/master)
1010

11-
A custom WordPress nav walker class to fully implement the Bootstrap 3.0+ navigation style in a custom theme using the WordPress built in menu manager.
11+
A custom WordPress nav walker class to fully implement the Bootstrap 3.0+ navigation style in a custom theme using the WordPress built in menu manager. A working version of the walker for Bootstrap 4.0.0 can be found in the [`v4` branch](https://github.com/wp-bootstrap/wp-bootstrap-navwalker/tree/v4)
1212

1313
## NOTES
1414

1515
This is a utility class that is intended to format your WordPress theme menu with the correct syntax and classes to utilize the Bootstrap dropdown navigation. It does not include the required Bootstrap JS and CSS files. You will have to include those dependancies separately.
1616

1717
### Bootstrap 4
1818

19-
Bootstrap 4 beta is available and is now the default branch offered at the GitHub repo and on [GetBootstrap](https://getbootstrap.com). A working version of the walker for Bootstrap 4 can be found in the `v4` branch.
20-
21-
Acording to @mdo & team:
22-
23-
> Long story short, shipping a beta means we’re done breaking all your stuff until our next major version (v5).
19+
Bootstrap 4.0.0 released January 2018 and is the default branch offered at the GitHub repo and on [GetBootstrap](https://getbootstrap.com).
2420

2521
## Installation
2622

composer.json

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,21 @@
11
{
22
"name": "wp-bootstrap/wp-bootstrap-navwalker",
33
"description": "A custom WordPress nav walker class to fully implement the Bootstrap 3.0+ navigation style in a custom theme using the WordPress built in menu manager.",
4-
"type": "wordpress-plugin",
4+
"type": "library",
55
"license": "GPL-3.0+",
66
"authors": [
77
{
88
"name": "Brandon Hubbard"
9-
}
9+
},
10+
{
11+
"name": "William Patton",
12+
"email": "will@pattonwebz.com"
13+
}
1014
],
15+
"support": {
16+
"issues": "https://github.com/wp-bootstrap/wp-bootstrap-navwalker/issues/",
17+
"source": "https://github.com/wp-bootstrap/wp-bootstrap-navwalker/"
18+
},
1119
"require": {
1220
"composer/installers": "~1.0"
1321
},

wp-bootstrap-navwalker.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
* Plugin Name: WP Bootstrap Navwalker
1111
* Plugin URI: https://github.com/wp-bootstrap/wp-bootstrap-navwalker
1212
* Description: A custom WordPress nav walker class to implement the Bootstrap 3 navigation style in a custom theme using the WordPress built in menu manager.
13-
* Author: Edward McIntyre - @twittem, WP Bootstrap
14-
* Version: 2.0.5
13+
* Author: Edward McIntyre - @twittem, WP Bootstrap, William Patton - @pattonwebz
14+
* Version: 3.0.0
1515
* Author URI: https://github.com/wp-bootstrap
1616
* GitHub Plugin URI: https://github.com/wp-bootstrap/wp-bootstrap-navwalker
1717
* GitHub Branch: master

0 commit comments

Comments
 (0)