Skip to content

Commit

Permalink
1.3.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mwjames committed Jul 9, 2016
1 parent f203878 commit 1c4859e
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ This [video](https://vimeo.com/129347298) demonstrates the functionality of the

- PHP 5.3.2 or later
- MediaWiki 1.23 or later
- [Semantic MediaWiki][smw] 2.1 or later
- [Semantic MediaWiki][smw] 2.4 or later

## Installation

Expand All @@ -30,12 +30,12 @@ The recommended way to install Semantic Breadcrumb Links is by using [Composer][
```json
{
"require": {
"mediawiki/semantic-breadcrumb-links": "~1.2"
"mediawiki/semantic-breadcrumb-links": "~1.3"
}
}
```
1. From your MediaWiki installation directory, execute
`composer require mediawiki/semantic-breadcrumb-links:~1.2`
`composer require mediawiki/semantic-breadcrumb-links:~1.3`
2. Navigate to _Special:Version_ on your wiki and verify that the package
have been successfully installed.

Expand Down
17 changes: 13 additions & 4 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
This file contains the RELEASE-NOTES of the Semantic Breadcrumb Links (a.k.a. SBL) extension.

### 1.3.0 (2016-06-??)
### 1.3.0

Released on July 9, 2016.

* Requires SMW 2.4+
* Added `onoi/shared-resources` dependency
* Support for `Display title of` provided by SMW 2.4
* Added `$GLOBALS['egSBLEnabledSubpageParentAnnotation']` to allow for subpage
Expand All @@ -10,20 +13,26 @@ This file contains the RELEASE-NOTES of the Semantic Breadcrumb Links (a.k.a. SB
when building the breadcrumb title
* Apply italic styles for "hasChildren" early to avoid JS async display clutter

### 1.2.0 (2015-12-19)
### 1.2.0

Released on December 19, 2015.

* #9 Added a tooltip to display all closest descendants
* #8 Fixed failure for cases when a subpage contains an extra slash
* #7 Fixed breadcrumb trail for when a subject is a redirect
* Localization updates from https://translatewiki.net

### 1.1.0 (2015-06-02)
### 1.1.0

Released on June 2, 2015.

* Fixed unstyled content flashing observed in MW 1.25
* Added `$GLOBALS['egSBLBreadcrumbDividerStyleClass']` to assign styling options such as `sbl-breadcrumb-pipe` or `sbl-breadcrumb-arrow`
* Localization updates from https://translatewiki.net

### 1.0.0 (2015-02-14)
### 1.0.0

Released on Februray 14, 2015.

* Initial release
* `ByPropertyHierarchicalLinksFinder` to match a property hierarchy defined by `egSBLPropertySearchPatternByNamespace`
Expand Down
2 changes: 1 addition & 1 deletion SemanticBreadcrumbLinks.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public static function initExtension() {
// Load DefaultSettings
require_once __DIR__ . '/DefaultSettings.php';

define( 'SBL_VERSION', '1.3.0-alpha' );
define( 'SBL_VERSION', '1.3.0' );

define( 'SBL_PROP_PARENTPAGE', 'Has parent page' );

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"require": {
"php": ">=5.3.0",
"composer/installers": "1.*,>=1.0.12",
"mediawiki/semantic-media-wiki": "~2.1",
"mediawiki/semantic-media-wiki": "~2.4",
"onoi/shared-resources":"~0.2"
},
"require-dev": {
Expand Down

2 comments on commit 1c4859e

@mwjames
Copy link
Contributor Author

@mwjames mwjames commented on 1c4859e Jul 9, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@kghbln FYI

@kghbln
Copy link
Member

@kghbln kghbln commented on 1c4859e Jul 11, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The wiki is now updated.

Please sign in to comment.