[WIP/screenshots] FXTracker

Started by NanoSector, June 22, 2012, 04:08:23 PM

Previous topic - Next topic

Mstcool


NanoSector

Quote from: Mstcool :þ ♂ on August 20, 2012, 03:07:17 PM
Awesome will use ASAP
Cool! :D

If you want to post a link to your site using it, please do :)
Please post issues you find in it, here.

To get started:
- Install the mod (obviously)
- Set up the permissions at Admin > Members > Permissions on a per-membergroup basis
- Go to Admin > FXTracker > Manage Projects and add a new project
- Start tracking!

Do you think I should add dummy data, like "General Project" and a default entry that says "Welcome to FXTracker", like SMF does?
My Mods / Mod Builder - A tool to easily create mods / Blog
"I've heard from a reliable source that the Answer is 42. But, still no word on what the question is."

Robert.

Congrats with the release :) Might use this as well if it works without any problems on 2.1. :)

NanoSector

Quote from: Dr. Deejay on August 20, 2012, 03:40:39 PM
Congrats with the release :) Might use this as well if it works without any problems on 2.1. :)
It works function-wise, though has some visual difficulties in the default theme; a theme build for 2.0 works, though.
I want to build 2.1 templates once at least the alpha/beta is out of 2.1.

Thanks btw :)
My Mods / Mod Builder - A tool to easily create mods / Blog
"I've heard from a reliable source that the Answer is 42. But, still no word on what the question is."

Matthew K.

Congratulations! Any reason you don't submit it to the mod site now?

Mstcool

Yoshi for the dummy data make it so people can customize the welcome thing

NanoSector

Quote from: Labradoodle-360 on August 20, 2012, 05:15:43 PM
Congratulations! Any reason you don't submit it to the mod site now?
It's in Mod Development ;)

Quote from: Mstcool :þ ♂ on August 20, 2012, 09:16:55 PM
Yoshi for the dummy data make it so people can customize the welcome thing

Okay, I'll get to that later :)
The dummy entry is meant to be destroyed, though :P
My Mods / Mod Builder - A tool to easily create mods / Blog
"I've heard from a reliable source that the Answer is 42. But, still no word on what the question is."

Mstcool

Btw did you add like the permissions thingy. Like the admins can change who can and who can't see the boards. Also I don't know if you have this but do you have the thing like mantis bt has like we can have different ranks for people for the bugtracker?

NanoSector

Quote from: Mstcool :þ ♂ on August 21, 2012, 12:28:11 PM
Btw did you add like the permissions thingy. Like the admins can change who can and who can't see the boards.
They're not on a per-project basis (yet), but general permissions can be set at Admin > Members > Permissions on per-membergroup basis.

QuoteAlso I don't know if you have this but do you have the thing like mantis bt has like we can have different ranks for people for the bugtracker?
What do you mean? ???
My Mods / Mod Builder - A tool to easily create mods / Blog
"I've heard from a reliable source that the Answer is 42. But, still no word on what the question is."

Mstcool

Like some people will have powers to change the setiings for the tracker while some people will have power to delete bug tickets etc
Mantis has it
Like there ranks like smf has admin mod etc

NanoSector

Quote from: Mstcool :þ ♂ on August 21, 2012, 01:56:17 PM
Like some people will have powers to change the setiings for the tracker while some people will have power to delete bug tickets etc
Mantis has it
Like there ranks like smf has admin mod etc
That's the permissions' duty ;)

It still needs a whole heck of new ones, though.
My Mods / Mod Builder - A tool to easily create mods / Blog
"I've heard from a reliable source that the Answer is 42. But, still no word on what the question is."

inter

Sorry for my English

NanoSector

Quote from: Inter on September 21, 2012, 03:16:05 AM
cool!
Thanks :)

I've gone into beta testing stage, finding and reporting bugs, etc.

If you love breaking stuff you can help around a bit, download the GitHub release and start breaking!
My Mods / Mod Builder - A tool to easily create mods / Blog
"I've heard from a reliable source that the Answer is 42. But, still no word on what the question is."

inter

my help for your code.
nice menu :)

Bugtracker-Hooks.php

find:
$menu_buttons['bugtracker'] = array(
       'title' => $txt['bugtracker'] . (!empty($modSettings['bt_show_button_important']) && !empty($count) && $count != 0 ? ' <strong>[' . $count . ']</strong>' : ''),
       'href' => $scripturl . '?action=bugtracker',
'show' => allowedTo('bugtracker_view') && !empty($modSettings['bt_enable']),
'sub_buttons' => $subs,
);
}


replace:
$ary = array(
'bugtracker' => array(
'title' => $txt['bugtracker'] . (!empty($modSettings['bt_show_button_important']) && !empty($count) && $count != 0 ? ' <strong>[' . $count . ']</strong>' : ''),
       'href' => $scripturl . '?action=bugtracker',
'show' => allowedTo('bugtracker_view') && !empty($modSettings['bt_enable']),
'sub_buttons' => $subs
));
array_insert ($menu_buttons, 3, $ary);
}

if (!function_exists('array_insert'))
{
function array_insert (&$array, $position, $insert_array)
{
  $first_array = array_splice ($array, 0, $position);
  $array = array_merge ($first_array, $insert_array, $array);
}
}
Sorry for my English

NanoSector

Oh, thanks a lot!

I've been looking at how to perform that for a while now :)
Going to be implementing that bit in a while :)
My Mods / Mod Builder - A tool to easily create mods / Blog
"I've heard from a reliable source that the Answer is 42. But, still no word on what the question is."

Advertisement: