Skip to content

Commit

Permalink
Launch prep chores
Browse files Browse the repository at this point in the history
  • Loading branch information
dcooney committed Jan 25, 2024
1 parent b01057c commit 1afec95
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 21 deletions.
6 changes: 5 additions & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Donate link: <https://connekthq.com/donate/>
Tags: Unsplash, Openverse, Pixabay, Pexels, Stock Photos, media library, prototyping, photos, stock photo, image upload, upload, free photos
Requires at least: 5.0
Tested up to: 6.4
Stable tag: 6.1.0
Stable tag: 6.1.1
License: GPLv2 or later
License URI: <http://www.gnu.org/licenses/gpl-2.0.html>

Expand Down Expand Up @@ -159,6 +159,10 @@ How to install Instant Images.

== Changelog ==

= 6.1.1 - January 25, 2024 =
* FIX: Various security patches.
* FIX: Fixed issue with permissions for accessing Instant Images settings.

= 6.1.0 - November 13, 2023 =
* NEW: Adding localization for all image provider filters.
* FIX: Fixed issue with CSS classname conflict with other plugins.
Expand Down
4 changes: 3 additions & 1 deletion admin/includes/settings/header.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
<nav class="jump-nav">
<h3><?php esc_attr_e( 'Jump to Section', 'instant-images' ); ?></h3>
</nav>
<div class="plugin-version"><?php esc_attr_e( 'Plugin Version:', 'instant-images' ); ?> <strong><?php echo esc_attr( INSTANT_IMAGES_VERSION ); ?></strong></div>
<div class="plugin-version">
<?php esc_attr_e( 'Plugin Version:', 'instant-images' ); ?> <strong><?php echo esc_attr( INSTANT_IMAGES_VERSION ); ?></strong>
</div>
</div>
</div>
20 changes: 10 additions & 10 deletions admin/includes/settings/our-plugins.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,20 @@
</div>
<div class="settings-entry--action other-plugins">
<?php
$instant_images_plugin_array = array(
array(
$instant_images_plugin_array = [
[
'slug' => 'ajax-load-more',
),
array(
],
[
'slug' => 'block-manager',
),
array(
],
[
'slug' => 'easy-query',
),
array(
],
[
'slug' => 'velocity',
),
);
],
];
?>
<?php Connekt_Plugin_Installer::init( $instant_images_plugin_array ); ?>
</div>
Expand Down
2 changes: 1 addition & 1 deletion admin/views/app.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Instant Images Unsplash page layout.
* Instant Images page layout.
*
* @package InstantImages
*/
Expand Down
6 changes: 3 additions & 3 deletions instant-images.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* Twitter: @connekthq
* Author URI: https://connekthq.com
* Text Domain: instant-images
* Version: 6.1.0
* Version: 6.1.1
* License: GPL
* Copyright: Darren Cooney & Connekt Media
*
Expand All @@ -18,8 +18,8 @@
exit;
}

define( 'INSTANT_IMAGES_VERSION', '6.1.0' );
define( 'INSTANT_IMAGES_RELEASE', 'November 13, 2023' );
define( 'INSTANT_IMAGES_VERSION', '6.1.1' );
define( 'INSTANT_IMAGES_RELEASE', 'January 25, 2024' );
define( 'INSTANT_IMAGES_STORE_URL', 'https://getinstantimages.com' );

/**
Expand Down
6 changes: 3 additions & 3 deletions lang/instant-images.pot
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
# This file is distributed under the GPL.
msgid ""
msgstr ""
"Project-Id-Version: Instant Images 6.1.0\n"
"Project-Id-Version: Instant Images 6.1.1\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/instant-images\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2024-01-25T20:43:13+00:00\n"
"POT-Creation-Date: 2024-01-25T20:51:02+00:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.9.0\n"
"X-Domain: instant-images\n"
Expand Down Expand Up @@ -173,7 +173,7 @@ msgstr ""
msgid "Jump to Section"
msgstr ""

#: admin/includes/settings/header.php:25
#: admin/includes/settings/header.php:26
msgid "Plugin Version:"
msgstr ""

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "instant-images",
"version": "6.1.0",
"version": "6.1.1",
"description": "One click image uploads from Unsplash, Openverse, Pixabay and Pexels directly to your WordPress media library.",
"author": "connekthq.com <[email protected]>",
"license": "GPL-2.0-or-later",
Expand Down Expand Up @@ -65,4 +65,4 @@
"webpack-cli": "^5.0.1",
"webpack-merge": "^5.8.0"
}
}
}

0 comments on commit 1afec95

Please sign in to comment.