Skip to content
This repository has been archived by the owner on Apr 22, 2021. It is now read-only.

Commit

Permalink
Merge branch 'fix/domain-replace'
Browse files Browse the repository at this point in the history
  • Loading branch information
straube committed Oct 26, 2019
2 parents 129247a + cc8dd86 commit 9c92478
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 7 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
Since `0.7.1` this project adheres to
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.1] - 2019-10-25

### Fixed

* Fixed issue with regex used in domain replacement. ([#59])

## [1.0.0] - 2019-10-21

### Added
Expand Down Expand Up @@ -247,7 +253,8 @@ e.g.
* Option base path for each domain.


[Unreleased]: https://github.com/straube/multiple-domain/compare/v1.0.0...HEAD
[Unreleased]: https://github.com/straube/multiple-domain/compare/v1.0.1...HEAD
[1.0.1]: https://github.com/straube/multiple-domain/compare/v1.0.0...v1.0.1
[1.0.0]: https://github.com/straube/multiple-domain/compare/v0.11.2...v1.0.0
[0.11.2]: https://github.com/straube/multiple-domain/compare/v0.11.1...v0.11.2
[0.11.1]: https://github.com/straube/multiple-domain/compare/v0.11.0...v0.11.1
Expand All @@ -274,6 +281,7 @@ e.g.
[0.1]: https://github.com/straube/multiple-domain/releases/tag/v0.1

[#61]: https://github.com/straube/multiple-domain/issues/61
[#59]: https://github.com/straube/multiple-domain/issues/59
[#58]: https://github.com/straube/multiple-domain/issues/58
[#56]: https://github.com/straube/multiple-domain/issues/56
[#55]: https://github.com/straube/multiple-domain/issues/55
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ and your page will be redirected. In this case, there are two ways to solve this
1. Delete the plugin directory `wp-content/plugins/multiple-domain`. You should be able to do that from the hosting
panel, from an FTP client, or via SSH. The downside of this technique is that it won’t be possible to install the
plugin again since the configuration will still be in the database.
2. Remove the plugin configuration from the database using the following SQL query `DELETE FROM {YOUR-PREFIX}_options
2. Remove the plugin configuration from the database using the following SQL query `DELETE FROM {YOUR-PREFIX}_options
WHERE option_name LIKE 'multiple-domain-%'`; (Remember to replace the prefix from your own table name). This can be
done from the hosting panel when PHPMyAdmin is available or using a MySQL client.

Expand All @@ -96,7 +96,7 @@ Refer to [CHANGELOG.md](CHANGELOG.md) for release notes and changes.
Contributors: GustavoStraube, cyberaleks, jffaria
Tags: multiple, domains, redirect
Requires at least: 4.0
Tested up to: 5.1.1
Tested up to: 5.2.4
Stable tag: trunk
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Expand Down
2 changes: 1 addition & 1 deletion multiple-domain/MultipleDomain.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* @author João Faria <https://github.com/jffaria>
* @author Raphael Stäbler <https://github.com/blazer82>
* @author Tobias Keller <https://github.com/Tobias-Keller>
* @version 1.0.0
* @version 1.0.1
* @package multiple-domain
*/
class MultipleDomain
Expand Down
2 changes: 1 addition & 1 deletion multiple-domain/MultipleDomainSettings.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Integration with WordPress admin.
*
* @author Gustavo Straube <https://github.com/straube>
* @version 1.0.0
* @version 1.0.1
* @since 0.11.0
* @package multiple-domain
*/
Expand Down
2 changes: 1 addition & 1 deletion multiple-domain/multiple-domain.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Plugin Name: Multiple Domain
Plugin URI: https://github.com/straube/multiple-domain
Description: This plugin allows you to have multiple domains in a single WordPress installation and enables custom redirects for each domain.
Version: 1.0.0
Version: 1.0.1
Author: Gustavo Straube (straube.co)
Author URI: http://straube.co
License: GPLv2 or later
Expand Down
6 changes: 5 additions & 1 deletion multiple-domain/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Contributors: GustavoStraube, cyberaleks, jffaria
Tags: multiple, domains, redirect
Requires at least: 4.0
Tested up to: 5.1.1
Tested up to: 5.2.4
Stable tag: trunk
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Expand Down Expand Up @@ -101,6 +101,10 @@ https://github.com/straube/multiple-domain/issues/51.

== Changelog ==

= 1.0.1

* Fixed issue with regex used in domain replacement.

= 1.0.0

* Locked out instructions to readme file.
Expand Down

0 comments on commit 9c92478

Please sign in to comment.