Skip to content
This repository has been archived by the owner on Mar 4, 2022. It is now read-only.

Commit

Permalink
Merge pull request #18 from wp-graphql/release/v0.1.3
Browse files Browse the repository at this point in the history
Release v0.1.3
  • Loading branch information
jasonbahl authored Jan 18, 2022
2 parents 7f5fb1d + 42b51d0 commit 6f05164
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
9 changes: 8 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: jasonbahl
Tags: GraphQL, WPGraphQL, GraphiQL, IDE, DevTools, Developer Tools, Tooling, Testing, Productivity, Headless, Gatsby, React, NextJS
Requires at least: 5.5
Requires PHP: 7.1
Stable Tag: 0.1.2
Stable Tag: 0.1.3
License: GPL-3
License URI: https://www.gnu.org/licenses/gpl-3.0.html

Expand All @@ -15,6 +15,13 @@ This plugin is intended to be used with WPGraphQL (https://wordpress.org/plugins

== Changelog ==

= 0.1.3 =

**Chores/Bugfixes**

- ([#16](https://github.com/wp-graphql/wp-graphiql-2/pull/16)): Fixes a bug where the variables were always being reset to a hardcoded value.


= 0.1.2 =

**New Feature**
Expand Down
8 changes: 4 additions & 4 deletions wp-graphiql-2.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/**
* Plugin Name: WPGraphiQL 2.0
* Version: 0.1.2
* Version: 0.1.3
* Description: This is the temporary home of the WPGraphiQL 2.0 plugin which will eventually be merged into WPGraphQL core. New features will be iterated on in this repo and progressively added to WPGraphQL core.
* Plugin URI: https://github.com/wp-graphql/wp-graphiql-2
* Author: WPGraphQL
Expand Down Expand Up @@ -144,7 +144,7 @@ function graphiql_enqueue_query_composer() {
* that allows the user to toggle the fullscreen mode
*/
function graphiql_enqueue_fullscreen_toggle() {

$fullscreen_toggle_asset_file = include( plugin_dir_path( __FILE__ ) . 'build/graphiqlFullscreenToggle.asset.php');

wp_enqueue_script(
Expand All @@ -161,5 +161,5 @@ function graphiql_enqueue_fullscreen_toggle() {
[ 'wp-components' ],
$fullscreen_toggle_asset_file['version']
);
}

}

0 comments on commit 6f05164

Please sign in to comment.