Merge pull request #282 from HeyPuter/eric/task-manager

Add a task manager
This commit is contained in:
Eric Dubé
2024-04-15 03:53:51 -04:00
committed by GitHub
10 changed files with 627 additions and 4 deletions

View File

@@ -35,6 +35,7 @@ import new_context_menu_item from "../helpers/new_context_menu_item.js"
import refresh_item_container from "../helpers/refresh_item_container.js"
import changeLanguage from "../i18n/i18nChangeLanguage.js"
import UIWindowSettings from "./Settings/UIWindowSettings.js"
import UIWindowTaskManager from "./UIWindowTaskManager.js"
async function UIDesktop(options){
let h = '';
@@ -1190,7 +1191,7 @@ $(document).on('click', '.user-options-menu-btn', async function(e){
}
},
//--------------------------------------------------
// Change Password
// Settings
//--------------------------------------------------
{
html: i18n('settings'),
@@ -1199,6 +1200,15 @@ $(document).on('click', '.user-options-menu-btn', async function(e){
}
},
//--------------------------------------------------
// Task Manager
//--------------------------------------------------
{
html: i18n('task_manager'),
onClick: async function(){
UIWindowTaskManager();
}
},
//--------------------------------------------------
// Contact Us
//--------------------------------------------------
{