Skip to content

Commit c42854d

Browse files
authored
Merge pull request #37 from searchcraft-inc/development
1.2.1 Release
2 parents b1c9adf + cf052f9 commit c42854d

3 files changed

Lines changed: 7 additions & 4 deletions

File tree

public/js/searchcraft-sdk-settings.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
const filterPanel = document.querySelector('searchcraft-filter-panel');
8787
if (filterPanel) {
8888
const today = new Date();
89-
const pastDate = new Date(today);
89+
const pastDate = new Date('2000-01-01');
9090
const currentYear = today.getFullYear();
9191
const oldestYear = parseInt(searchcraft_config.oldestPostYear);
9292
pastDate.setFullYear(oldestYear);

readme.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Contributors: searchcraft
44
Tags: search, fuzzy search, better search, instant search, search replacement
55
Requires at least: 5.3
66
Tested up to: 6.9
7-
Stable tag: 1.2.0
7+
Stable tag: 1.2.1
88
License: Apache 2.0
99
License URI: LICENSE.txt
1010

@@ -69,6 +69,9 @@ Searchcraft Cloud customers may also reach out via our Discord server for assist
6969

7070
== Changelog ==
7171

72+
= 1.2.1 =
73+
* Bugfix - Filter panel start date bug.
74+
7275
= 1.2.0 =
7376
* New Feature - Add support for Molongui Authorship authors
7477
* New Feature - Add support to add search input to multiple elements on a page when "send to search page" option is used

searchcraft.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Plugin Name: Searchcraft
1111
* Plugin URI: https://github.com/searchcraft-inc/searchcraft-wordpress
1212
* Description: Bring fast, relevant search to your site. Searchcraft replaces the default search with a customizable, tunable, highly relevant search experience.
13-
* Version: 1.2.0
13+
* Version: 1.2.1
1414
* Author: Searchcraft, Inc.
1515
* Author URI: https://searchcraft.io/
1616
* License: Apache 2.0
@@ -26,7 +26,7 @@
2626

2727
// Define plugin constants.
2828
if ( ! defined( 'SEARCHCRAFT_VERSION' ) ) {
29-
define( 'SEARCHCRAFT_VERSION', '1.2.0' );
29+
define( 'SEARCHCRAFT_VERSION', '1.2.1' );
3030
}
3131

3232
if ( ! defined( 'SEARCHCRAFT_PLUGIN_FILE' ) ) {

0 commit comments

Comments
 (0)