Skip to content

Commit

Permalink
Version 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
codestylist committed Jul 3, 2024
1 parent 88b95e4 commit 34c8edd
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 41 deletions.
15 changes: 0 additions & 15 deletions .gitignore

This file was deleted.

14 changes: 0 additions & 14 deletions README.md

This file was deleted.

23 changes: 18 additions & 5 deletions README.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
=== WPCasa Advanced Search ===
Contributors: wpsight, kybernetikservices, joehana
Contributors: wpsight, kybernetikservices
Donate link: https://www.paypal.com/donate/?hosted_button_id=SYJNVSP2BKTQ4
Tags: real estate, realestate, search, advanced search, house, listing, listings, property, properties, wpcasa
Requires at least: 4.6
Tested up to: 6.4
Stable tag: 1.1.0
Requires at least: 6.2
Tested up to: 6.6
Stable tag: 1.1.1
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Expand All @@ -20,7 +20,15 @@ WPCasa is a WordPress solution that provides an intuitive way to manage property

* Website: [wpcasa.com](https://wpcasa.com)
* Demo: [demo.wpcasa.com](https://demo.wpcasa.com)
* Documentation: [docs.wpcasa.com](https://docs.wpsight.com)
* Documentation: [docs.wpcasa.com](https://docs.wpcasa.com)

== Contributors ==
This is a list of contributors to WPCasa Advanced Search.
Many thanks to all of them for contributing and making WPCasa Advanced Search even better.

[Kybernetik Services](https://www.kybernetik-services.com/?utm_source=wordpress_org&utm_medium=plugin&utm_campaign=wpcasa&utm_content=readme)
[Joe Hana](https://wordpress.org/support/users/joehana/)
[codestylist](https://wordpress.org/support/users/codestylist/)

== Installation ==

Expand Down Expand Up @@ -52,6 +60,11 @@ No, this is an add-on plugin for the WPCasa real estate framework and will not w

== Changelog ==

= 1.1.1 =
* Code improvements
* WordPress 6.5-6.6 compatibility
* Updated plugin header

= 1.1.0 =
* Supports translation hosted on WordPress

Expand Down
23 changes: 16 additions & 7 deletions wpcasa-advanced-search.php
Original file line number Diff line number Diff line change
@@ -1,16 +1,25 @@
<?php
/*
/**
* WPCasa Advanced Search
*
* @package WPCasaAdvancedSearch
* @author WPSight
* @copyright 2024 Kybernetik Services GmbH
* @license GPL-2.0-or-later
*
* @wordpress-plugin
* Plugin Name: WPCasa Advanced Search
* Plugin URI: https://wpcasa.com/downloads/wpcasa-advanced-search
* Description: Display an expandable area with advanced options in WPCasa property search form.
* Version: 1.1.0
* Requires at least: 4.6
* Version: 1.1.1
* Requires at least: 6.2
* Requires PHP: 7.2
* Requires Plugins: wpcasa
* Author: WPSight
* Author URI: https://wpcasa.com/
* License: GPL v2 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Author URI: https://wpcasa.com
* Text Domain: wpcasa-advanced-search
* License: GPL v2 or later
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
*/

// Exit if accessed directly
Expand All @@ -37,7 +46,7 @@ public function __construct() {

define( 'WPSIGHT_ADVANCED_SEARCH_NAME', 'WPCasa Advanced Search' );
define( 'WPSIGHT_ADVANCED_SEARCH_DOMAIN', 'wpcasa-advanced-search' );
define( 'WPSIGHT_ADVANCED_SEARCH_VERSION', '1.1.0' );
define( 'WPSIGHT_ADVANCED_SEARCH_VERSION', '1.1.1' );
define( 'WPSIGHT_ADVANCED_SEARCH_PLUGIN_DIR', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
define( 'WPSIGHT_ADVANCED_SEARCH_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) );

Expand Down

0 comments on commit 34c8edd

Please sign in to comment.