All posts by Shadnix

Mizus RaidTracker v0.16-Beta released

Mizus RaidTracker Version 0.16 beta is now available for download. Check the MRT page for the download link.

0.16 Changelog:

New:

  • Added option for changing the slash command. (Please relog after changing)
  • Added option for changing the currency of the text based export formats.

Changes:

  • The RaidLog browser will now save the last selected raid event and boss event (unless new raid/boss events are tracked).
  • The RaidLog browser will now show raid loot, if a raid event but no boss event is selected (the title of the table will change accordingly).
  • Changed localization files for supporting the CurseForge localization system.

Bug Fixes:

  • Fixed boss detection of the horde gunship battle (ICC – untested)

Mizus RaidTracker v0.15-Beta released

Mizus RaidTracker Version 0.15 beta is now available for download. Check the MRT page for the download link.

0.15 Changelog:

New:

  • Added two new export formats: plain text and BBCode formatted text (choose your export format in the options panel)
  • Added new option panel for export options
  • CTRT-Export: Added option for automatically adding one item of poor item quality to each boss at data export. This should fix a bug in the EQDKP-CTRT-Import-Plugin boss detection. Boss detection fails, if no loot is connected to a boss event (i.e. attendance checks).
  • Added settings for text export
  • Added function to make a snapshot of the current raid composition
  • Added slash command for taking a snapshot (/mrt snapshot)
  • Added GUI button for taking a snapshot

Changes:

  • Changed slash command handler to work with uppercase and mixed upper-/lowercase commands
  • Changed DataExportFrame to support multiline export data
  • CTRT-Export: Optimized the length of the export string

Bug Fixes:

  • Some manually added boss events were saved with wrong difficulty
  • Fixed export-error, which happened if extended information in playerDB is missing

You may ask what happened to v0.13 and v0.14. Well, v0.13 was left out and v0.14 contains only changes for making this addon compatible with curseforge.com. My goal is to get this addon on curse.com.

Creating EditBoxes in option panels

I stumbled across a few issues while creating a new option panel, so this might be an interesting sidenote for other addon authors:
If you want to implement an EditBox-Widget in an option panel, you must disable the autoFocus for this EditBox. Otherwise, it would catch all inputs from the keyboard after login and you won’t be able to do anything. There are two ways to do that:

  • XML: When creating the EditBox, set the attribute to false
    <EditBox (...) autoFocus="false">
  • LUA:
    EditBox:SetAutoFocus(false)

If you fill in text via ‘EditBox:SetText(<string>)’ you will also need to set the cursor position to zero in order to actually see the text you filled in. To do this, use: ‘EditBox:SetCursorPosition(0)’.

Mizus RaidTracker v0.9 beta released

Mizus RaidTracker Version 0.9 beta is now available for download. Check the MRT page for the download link.

0.9 Changelog:

New:

  • Added BossID of Halion (Ruby Sanctum)
  • Added item icons and tooltips to loot list
  • Added support for TAB and ESC in raidlog dialogs
  • Added option to enable/disable tracking of offline players (as boss attendees)
  • Added option to enable/disable tracking of only first 2/5 groups in 10/25 player raids (as boss attendees)
  • Updated deDE localization

Bug Fixes:

  • fixed raid export for raids without boss kill event
  • fixed a bug, where the guild data may be crawled incorrectly
  • fixed ‘/mrt o’ and ‘/mrt options’ slash commands