Skip to content

Commit

Permalink
Merge branch 'release/3.2.15' into v3
Browse files Browse the repository at this point in the history
  • Loading branch information
khalwat committed May 30, 2024
2 parents f974c1c + 1ad26cb commit fe1f484
Show file tree
Hide file tree
Showing 70 changed files with 2,682 additions and 1,710 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Retour Changelog

## 3.2.15 - UNRELEASED
### Fixed
* Fixed an issue where the down and up arrows were reversed for sorting purposes ([#299](https://github.com/nystudio107/craft-retour/issues/299))
* Fixed an issue that would cause new installations to not function do to an error in the `install` migration ([#302](https://github.com/nystudio107/craft-retour/issues/302))

## 3.2.14 - 2024.03.25
### Fixed
* Added the unused `static` to the Tailwind CSS `blocklist` to avoid a name collision with a Craft CSS class ([#1412](https://github.com/nystudio107/craft-seomatic/issues/1412))
Expand Down
830 changes: 404 additions & 426 deletions buildchain/package-lock.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions buildchain/src/css/components/tables.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ table.vuetable {

.retour-menubtn-asc::before {
font-weight: bold;
content: "downangle";
content: "upangle";
}

.retour-menubtn-desc::before {
font-weight: bold;
content: "upangle";
content: "downangle";
}

/**
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "nystudio107/craft-retour",
"description": "Retour allows you to intelligently redirect legacy URLs, so that you don't lose SEO value when rebuilding & restructuring a website",
"type": "craft-plugin",
"version": "3.2.14",
"version": "3.2.15",
"keywords": [
"craftcms",
"craft-plugin",
Expand Down
1,896 changes: 1,437 additions & 459 deletions docs/package-lock.json

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/migrations/Install.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ protected function createTables(): bool
$tablesCreated = false;

$tableSchema = $this->getDb()->getSchema()->getTableSchema('{{%retour_redirects}}');
if ($tableSchema) {
if ($tableSchema === null) {
$tablesCreated = true;
$this->createTable(
'{{%retour_redirects}}',
Expand All @@ -106,7 +106,7 @@ protected function createTables(): bool
}

$tableSchema = $this->getDb()->schema->getTableSchema('{{%retour_static_redirects}}');
if ($tableSchema) {
if ($tableSchema === null) {
$tablesCreated = true;
$this->createTable(
'{{%retour_static_redirects}}',
Expand All @@ -133,7 +133,7 @@ protected function createTables(): bool
}

$tableSchema = $this->getDb()->schema->getTableSchema('{{%retour_stats}}');
if ($tableSchema) {
if ($tableSchema === null) {
$tablesCreated = true;
$this->createTable(
'{{%retour_stats}}',
Expand Down
Binary file removed src/web/assets/dist/assets/LegacyUrl-8NcnlGd1.js.map.gz
Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.

This file was deleted.

Large diffs are not rendered by default.

Binary file not shown.

Large diffs are not rendered by default.

Binary file not shown.
Binary file removed src/web/assets/dist/assets/dashboard-ay4a9V8m.js.gz
Binary file not shown.
Binary file not shown.

Large diffs are not rendered by default.

Binary file added src/web/assets/dist/assets/import-CPZkRHO1.js.gz
Binary file not shown.

Large diffs are not rendered by default.

Binary file not shown.
Binary file removed src/web/assets/dist/assets/import-RCl2TGBp.js.gz
Binary file not shown.
Binary file removed src/web/assets/dist/assets/import-RCl2TGBp.js.map.gz
Binary file not shown.
32 changes: 0 additions & 32 deletions src/web/assets/dist/assets/purify.es-2WhSts9N.js

This file was deleted.

Binary file removed src/web/assets/dist/assets/purify.es-2WhSts9N.js.gz
Binary file not shown.
Binary file not shown.
32 changes: 32 additions & 0 deletions src/web/assets/dist/assets/purify.es-C7lvR1Xa.js

Large diffs are not rendered by default.

Binary file not shown.

Large diffs are not rendered by default.

Binary file not shown.
Binary file removed src/web/assets/dist/assets/redirects-DI2HJJxU.js.gz
Binary file not shown.
Binary file not shown.
Loading

0 comments on commit fe1f484

Please sign in to comment.