Skip to content

Commit

Permalink
Added banner
Browse files Browse the repository at this point in the history
ver: 3.3.3.1 & changelog
  • Loading branch information
girafffee committed May 20, 2024
1 parent c1713fc commit c2f7c90
Show file tree
Hide file tree
Showing 23 changed files with 58 additions and 53 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ Advanced form builder plugin for Gutenberg. Create forms from the ground up, cus

# ChangeLog

## 3.3.3.1
* Tweak: banner for admin-pages

## 3.3.3
* UPD: The Update Post action will fail if you try to change the post type. Use this filter to allow post type change:
`add_filter( 'jet-form-builder/action/insert-post/allow-change-post-type', '__return_true' );`
Expand Down
2 changes: 1 addition & 1 deletion assets/js/admin/package.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/js/admin/pages/jfb-addons.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/js/admin/pages/jfb-settings.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/js/admin/vuex.package.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/js/editor/default.builder.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/js/editor/form.builder.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/js/editor/package.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/js/frontend/advanced.reporting.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/js/frontend/conditional.block.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/js/frontend/dynamic.value.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/js/frontend/main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/js/frontend/media.field.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/js/frontend/media.field.restrictions.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/js/frontend/multi.step.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/js/frontend/repeater.field.js

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion assets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
"write": "^2.0.0"
},
"dependencies": {
"portal-vue": "2.1.7",
"semver": "^7.3.5",
"svg-url-loader": "^7.1.1",
"v-click-outside-x": "^4.1.3"
Expand Down
5 changes: 0 additions & 5 deletions assets/src/admin-vuex-package/manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,9 @@ import MessagesPlugin from './store/plugins/MessagesPlugin';
import OnUpdateEditableCellPlugin
from './store/plugins/OnUpdateEditableCellPlugin';
import EditCollectorPlugin from './store/plugins/EditCollectorPlugin';
import PortalVue from 'portal-vue';
import { PortalTarget, Portal } from 'portal-vue';
import ActionsWithFilters from './components/ActionsWithFilters';

Vue.use( Vuex );
Vue.use( PortalVue );

window.JetFBComponents = {
...window.JetFBComponents,
Expand All @@ -61,8 +58,6 @@ window.JetFBComponents = {
SideBarBoxes,
FormBuilderPage,
ActionsWithFilters,
PortalTarget,
Portal,
};

window.JetFBMixins = {
Expand Down
55 changes: 27 additions & 28 deletions assets/src/admin/components/Banner.vue

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions assets/src/admin/pages/jfb-addons/AddonsPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
:class="{ 'proccesing-state': proccesingState }"
>
<h1 class="cs-vui-title">{{ 'JetFormBuilder Addons' }}</h1>
<Banner />
<div class="jfb-addons-page__inner cx-vui-panel">
<div class="jfb-addons-page__header">
<div class="jfb-addons-page__header-controls" v-if="isLicenseMode">
Expand Down Expand Up @@ -138,6 +139,7 @@

<script>
import AddonItem from './components/AddonItem.vue';
import Banner from "../../components/Banner.vue";
const { applyFilters, doAction } = wp.hooks;
Expand All @@ -146,6 +148,7 @@ window.jfbEventBus = new Vue();
export default {
name: 'jfb-addons',
components: {
Banner,
AddonItem,
},
data() {
Expand Down
3 changes: 3 additions & 0 deletions assets/src/admin/pages/jfb-settings/SettingsPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<FormBuilderPage
:title="__( 'JetFormBuilder Settings', 'jet-form-builder' )"
>
<Banner utm-source="dashboard/jet-form-builder-settings-page" />
<div class="jfb-content">
<AlertsList/>
<div class="jfb-content-main">
Expand Down Expand Up @@ -56,6 +57,7 @@ import * as getResponse from './tabs/getresponse';
import * as paymentGateways from './tabs/payments-gateways';
import * as options from './tabs/options';
import SettingsSideBar from './sidebar/SettingsSideBar';
import Banner from "../../components/Banner.vue";
const { applyFilters, doAction } = wp.hooks;
Expand Down Expand Up @@ -110,6 +112,7 @@ const getActiveTab = () => {
export default {
name: 'jfb-settings',
components: {
Banner,
AlertsList,
CxVuiTabsPanel,
CxVuiTabs,
Expand Down
4 changes: 2 additions & 2 deletions jet-form-builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: JetFormBuilder
* Plugin URI: https://jetformbuilder.com/
* Description: Advanced form builder plugin for WordPress block editor. Create forms from the ground up, customize the existing ones, and style them up – all in one editor.
* Version: 3.3.3
* Version: 3.3.3.1
* Author: Crocoblock
* Author URI: https://crocoblock.com/
* Text Domain: jet-form-builder
Expand All @@ -17,7 +17,7 @@
die();
}

const JET_FORM_BUILDER_VERSION = '3.3.3';
const JET_FORM_BUILDER_VERSION = '3.3.3.1';

const JET_FORM_BUILDER__FILE__ = __FILE__;
const JET_FORM_BUILDER_SITE = 'https://jetformbuilder.com';
Expand Down
7 changes: 5 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
Contributors: crocoblock, mjhead, hugreed
Tags: blocks, forms, form builder, contact form, gutenberg, gutenberg forms, multi step form.
Requires at least: 6.0
Tested up to: 6.5.2
Tested up to: 6.5.3
Requires PHP: 7.0
Stable tag: 3.3.3
Stable tag: 3.3.3.1
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -272,6 +272,9 @@ Once you set the <a href="https://jetformbuilder.com/features/how-to-use-store-f

== Changelog ==

**3.3.3.1**
- Tweak: banner for admin-pages

**3.3.3**
- UPD: The Update Post action will fail if you try to change the post type. Use this filter to allow post type change:
`add_filter( 'jet-form-builder/action/insert-post/allow-change-post-type', '__return_true' );`
Expand Down

0 comments on commit c2f7c90

Please sign in to comment.