Skip to content

Commit

Permalink
release: new version
Browse files Browse the repository at this point in the history
- [Feat] Refactor the dashboard.
- [Feat] Add Telegram social sharing icon.
- [Fix] HomePage reverts to FrontPage if you have Orbit Fox Hestia Enhancements active and switch theme
  • Loading branch information
cristian-ungureanu authored Sep 29, 2021
2 parents cc842b3 + 26e0a25 commit 5d1fe4f
Show file tree
Hide file tree
Showing 49 changed files with 23,556 additions and 13,085 deletions.
2 changes: 1 addition & 1 deletion .distignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ key.enc
.env
docker-compose.yml
init.sh
webpack.config.js
*webpack.config.js
obfx_modules/mystock-import/js/src
3 changes: 3 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": [ "plugin:@wordpress/eslint-plugin/recommended" ]
}
6 changes: 4 additions & 2 deletions .github/workflows/build-dev-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ jobs:
restore-keys: |
${{ runner.os }}-composer-
- name: Install npm deps
run: npm ci
run: |
npm ci
npm run build
- name: Install composer deps
run: composer install --no-dev --prefer-dist --no-progress --no-suggest
- name: Create zip
Expand Down Expand Up @@ -94,4 +96,4 @@ jobs:
with:
comment-id: ${{ steps.find-comment.outputs.comment-id }}
edit-mode: replace
body: ${{ steps.get-comment-body.outputs.body }}
body: ${{ steps.get-comment-body.outputs.body }}
1 change: 1 addition & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
- name: Build
run: |
npm ci
npm run build
composer install --no-dev --prefer-dist --no-progress --no-suggest
npm run dist
- name: WordPress Plugin Deploy
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.idea
node_modules
dashboard/build/*
logs
dist
artifact
vendor
vendor
10 changes: 9 additions & 1 deletion core/app/abstract/class-orbit-fox-module-abstract.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,15 @@ abstract class Orbit_Fox_Module_Abstract {
* @access protected
* @var boolean $active_default The default active state of the module.
*/
protected $active_default = false;
public $active_default = false;
/**
* True if the page should refresh after the module is enabled
*
* @access protected
* @var boolean $refresh_after_enabled Flag for page refresh after activation
*/
public $refresh_after_enabled = false;

/**
* Stores an array of notices
*
Expand Down
Loading

0 comments on commit 5d1fe4f

Please sign in to comment.