Skip to content

Commit

Permalink
Merge pull request #139 from beaverbuilder/fixes
Browse files Browse the repository at this point in the history
Fixes
  • Loading branch information
brentjett committed Apr 16, 2019
2 parents 03a5424 + c6dfe78 commit 9434288
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 9 deletions.
2 changes: 1 addition & 1 deletion fl-assistant.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Assistant
* Author: The Beaver Builder Team
* Author URI: https://www.wpbeaverbuilder.com/?utm_medium=assistant&utm_source=plugins-admin-page&utm_campaign=plugins-admin-author
* Version: 0.2.1
* Version: 0.2.2
* Description: A tool for navigating a site and accomplishing quick tasks without needing the WordPress admin.
* License: GNU General Public License v2.0
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
Expand Down
16 changes: 11 additions & 5 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,13 @@ License URI: http://www.gnu.org/licenses/gpl-2.0.html

Assistant is a new way to work with WordPress. It's an every day productivity tool that lets you navigate your WordPress site and handle quick tasks without needing to go to the WordPress Admin area. For example, you can quickly find a page or post and update its title or slug. You can upload media and navigate to attachment pages.

**Note** - This is an early preview release. A full 1.0 release of Assistant will be coming later this year.

Assistant is an open source project from the same team that makes Beaver Builder. It's free and being developed in public. Try it and let us know what you think!

**Note** - This is an early preview release. A full 1.0 release of Assistant will be coming later this year.
Watch this intro video to see it in action!

[youtube https://youtu.be/_E0tmbd61Cg]

= Assistant Features =

Expand All @@ -23,10 +27,7 @@ Assistant is an open source project from the same team that makes Beaver Builder
* The Notifications app shows your comments as well as available plugin and theme updates.
* Access your user profile.

Watch this intro video to see it in action!

[youtube https://youtu.be/_E0tmbd61Cg]

You can also try Assistant on a [demo site here](http://demo.wpbeaverbuilder.com/?new=assistant).

== Installation ==

Expand Down Expand Up @@ -75,6 +76,11 @@ While we do not currently offer a developer API, that is on our roadmap for the

== Changelog ==

= 0.2.2 (2019-04-16) =

* Fix "Show Dashboard App" button not working
* Edit actions on dashboard now open in same tab

= 0.2.1 (2019-04-15) =

* Dramatically reduce js bundle size
Expand Down
11 changes: 9 additions & 2 deletions src/front/apps/fl-dashboard/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,25 @@ import './style.scss'

export const App = () => {
const { isFirstTime } = useAppState()
const { setIsAppHeaderExpanded } = getAppActions()
const { setIsAppHeaderExpanded, setIsFirstTime } = getAppActions()

useLayoutEffect( () => {
if ( isFirstTime ) {
setIsAppHeaderExpanded( true )
}
} )

const collapse = () => {
setIsAppHeaderExpanded( false )
if ( isFirstTime ) {
setIsFirstTime( false )
}
}

return (
<Fragment>
<Header.Expanded>
<Help />
<Help collapse={collapse} />
</Header.Expanded>

<TilesWidget />
Expand Down
1 change: 0 additions & 1 deletion src/front/apps/fl-dashboard/currently-viewing/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ export const TilesWidget = () => {
<Button
key={i}
href={href}
target="_blank"
appearance="transparent"
>{label}</Button>
)
Expand Down

0 comments on commit 9434288

Please sign in to comment.