Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
== Changelog ==

= v3.0.3 – Mar 4, 2026 =
**Fixed:** Resolved an issue where email notifications were not being sent.
**Fixed:** Improved button width handling in the list view.
**Fixed:** Corrected Slovak and other Unicode character capitalization in the `ucfirst` function.
**Fixed:** Automatically infer `link_to_backend` from pages when it is not set.
**Added:** Added support for the `view-all-projects` check and implemented it in the controller.
**Fixed:** Restored missing labels in the tasks list.
**Added:** Feature headway-integration.

= v3.0.2 – Jan 14, 2026 =
**Fixed:** Subscriber Level Authorization issue [#573](https://github.com/weDevsOfficial/wp-project-manager/pull/573).

Expand Down
4 changes: 2 additions & 2 deletions cpm.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Description: WordPress Project Management plugin. Manage your projects and tasks, get things done.
* Author: weDevs
* Author URI: https://wedevs.com
* Version: 3.0.2
* Version: 3.0.3
* Text Domain: wedevs-project-manager
* Domain Path: /languages
* License: GPL2
Expand All @@ -16,7 +16,7 @@
exit;
}
// Define version directly to avoid early translation loading from get_plugin_data()
define('PM_VERSION', '3.0.2');
define('PM_VERSION', '3.0.3');

require __DIR__.'/bootstrap/loaders.php';
require __DIR__.'/libs/configurations.php';
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pmapi",
"version": "3.0.1",
"version": "3.0.3",
"description": "Front-end package manager for project manager",
"main": "index.js",
"directories": {
Expand All @@ -9,7 +9,7 @@
"scripts": {
"start": "webpack --progress --colors --watch",
"build": "cross-env NODE_ENV=production webpack --progress --colors ",
"release": "webpack --progress --colors grunt zip",
"release": "grunt release --force",
"makepot": "wpvuei18n makepot"
},
"repository": {
Expand Down
13 changes: 11 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ Contributors: tareq1988, nizamuddinbabu, wedevs, asaquzzaman
Donate Link: https://tareq.co/donate/
Tags: kanban, project, project management, task management, project manager
Requires at least: 6.2
Tested up to: 6.9
Tested up to: 6.9.1
Requires PHP: 7.4
Stable tag: 3.0.2
Stable tag: 3.0.3
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -241,6 +241,15 @@ A. If you face any issues, you can contact the support team through the official

== Changelog ==

= v3.0.3 – Mar 4, 2026 =
**Fixed:** Resolved an issue where email notifications were not being sent.
**Fixed:** Improved button width handling in the list view.
**Fixed:** Corrected Slovak and other Unicode character capitalization in the `ucfirst` function.
**Fixed:** Automatically infer `link_to_backend` from pages when it is not set.
**Added:** Added support for the `view-all-projects` check and implemented it in the controller.
**Fixed:** Restored missing labels in the tasks list.
**Added:** Feature headway-integration.

= v3.0.2 – Jan 14, 2026 =
**Fixed:** Subscriber Level Authorization issue [#573](https://github.com/weDevsOfficial/wp-project-manager/pull/573).

Expand Down
18 changes: 18 additions & 0 deletions routes/github.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?php

use WeDevs\PM\Core\Router\Router;

$wedevs_pm_router = Router::singleton();
$wedevs_pm_authentic = 'WeDevs\PM\Core\Permissions\Authentic';

// Single GitHub URL preview
$wedevs_pm_router->post( 'github/preview', 'WeDevs/PM/GitHub/Controllers/GitHub_Preview_Controller@preview' )
->permission( [ $wedevs_pm_authentic ] );

// Batch GitHub URLs preview
$wedevs_pm_router->post( 'github/batch-preview', 'WeDevs/PM/GitHub/Controllers/GitHub_Preview_Controller@batch_preview' )
->permission( [ $wedevs_pm_authentic ] );

// Test GitHub connection
$wedevs_pm_router->post( 'github/test-connection', 'WeDevs/PM/GitHub/Controllers/GitHub_Preview_Controller@test_connection' )
->permission( [ 'WeDevs\PM\Core\Permissions\Settings_Page_Access' ] );
18 changes: 18 additions & 0 deletions routes/loom.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?php

use WeDevs\PM\Core\Router\Router;

$wedevs_pm_router = Router::singleton();
$wedevs_pm_authentic = 'WeDevs\PM\Core\Permissions\Authentic';

// Single Loom URL preview
$wedevs_pm_router->post( 'loom/preview', 'WeDevs/PM/Loom/Controllers/Loom_Preview_Controller@preview' )
->permission( [ $wedevs_pm_authentic ] );

// Batch Loom URLs preview
$wedevs_pm_router->post( 'loom/batch-preview', 'WeDevs/PM/Loom/Controllers/Loom_Preview_Controller@batch_preview' )
->permission( [ $wedevs_pm_authentic ] );

// Test Loom connection
$wedevs_pm_router->post( 'loom/test-connection', 'WeDevs/PM/Loom/Controllers/Loom_Preview_Controller@test_connection' )
->permission( [ 'WeDevs\PM\Core\Permissions\Settings_Page_Access' ] );
18 changes: 18 additions & 0 deletions routes/notion.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?php

use WeDevs\PM\Core\Router\Router;

$wedevs_pm_router = Router::singleton();
$wedevs_pm_authentic = 'WeDevs\PM\Core\Permissions\Authentic';

// Single Notion URL preview
$wedevs_pm_router->post( 'notion/preview', 'WeDevs/PM/Notion/Controllers/Notion_Preview_Controller@preview' )
->permission( [ $wedevs_pm_authentic ] );

// Batch Notion URLs preview
$wedevs_pm_router->post( 'notion/batch-preview', 'WeDevs/PM/Notion/Controllers/Notion_Preview_Controller@batch_preview' )
->permission( [ $wedevs_pm_authentic ] );

// Test Notion connection
$wedevs_pm_router->post( 'notion/test-connection', 'WeDevs/PM/Notion/Controllers/Notion_Preview_Controller@test_connection' )
->permission( [ 'WeDevs\PM\Core\Permissions\Settings_Page_Access' ] );
Loading