QuestSpamFilter

Quests & Leveling Login to Add Favorites
  • 0 Likes
  • World of Warcraft
  • 14 Monthly Downloads
  • Supports: 4.0.3
  • 1,833 Total Downloads
  • Updated 1/30/2011 8:26:13 PM
  • Created 7/5/2010 1:43:05 AM
  • 12 Favorites
  • Project Site
  • Comments
  • Release Type: Release
  • License: GNU General Public License version 3 (GPLv3)
  • Newest File: v12
or

About QuestSpamFilter


By Myrilandell of Lothar

QuestSpamFilter was chosen as a "Pick of the Week" on WoWInterface! This is a huge honor, thank you!

QuestSpamFilter is an addon that consolidates the "quest sharing" information from 20 lines of quest sharing spam into condensed summaries. In other words, QuestSpamFilter turns this
Sharing quest with Person1.
Person2 has completed that quest.
Person3 is already on that quest.
Person4 is not eligible for that quest.
Person5's quest log is full.
Person6 is already on that quest.
Sharing quest with Person7.
Person8 is already on that quest.
Person9 has completed that quest.

into this
2 Completed: Person2, Person9
1 Not Eligible: Person4
1 Questlog Full: Person5
3 Already On: Person3, Person6, Person8
2 Sharing ...: Person1, Person7

QuestSpamFilter is localized for all languages (English (enUS), British English (enGB), Spanish (esES), Latin American Spanish (esMX), German (deDE), French (frFR), Russian (ruRU), Chinese (zhCN), Traditional Chinese (zhTW), and Korean (koKR)), though some are better than others, due to feedback :). If your localization isn't perfect, give me a better translation (located in qsf_translations.lua).

12

  • Fixed an issue where the code checking for false positives was unnecessarily inefficient.
  • Separated the translations into their own file, so users can more easily make and share changes for their language.

11

  • Updated ToC for beta. Otherwise QSF seems to work just fine.
  • Fixed a bug where the initial state was not "single line".

10

  • Added Global Strings which could be incorrectly filtered by QuestSpamFilter. This should fix the filtered "X Busy: Player right now." message gotten when a player is busy and you try to trade with them.

9

  • Fixed the interface number in the toc file, it was incorrectly 30500 (should be 30300)
  • Fixed a missed special character in the frFR "Questlog Full" title. Thanks oXid_FoX!
  • Fixed a bug introduced in v8 where I'd undone stuff when creating strings for matching. This only affected non-english localizations.

8

  • Updated French translations for "Questlog Full", "Already On", and "Too Far Away". Thanks oXid_FoX!
  • Moved locale-specific stuff to a new file: qsf_translations.lua. This should make it easier for people to find and provide better localizations.
  • Encoded special characters (such as à, è, ì, ò, ù) using Lua escape sequences. That's a fancy way of saying "They should work now". Thanks to oXid_FoX for pointing this out.
  • Changed the code to makeFragments a bit, shouldn't change anything.
  • Fixed a potential bug with the "Colorize" option, where non-English clients would have incorrect output.
  • Changed the code wiping the tables a bit, shouldn't change anything.

7

  • Fixed the ugly code from v2.
  • Fixed an improperly-matching pattern in German.

6

  • Localization! The patterns I am using are the Global Strings in World of Warcraft, so I need feedback on how well this works, if it does at all (for your localization). Works fine for English and German (rather, "it *seems* to work now" :P).

5


  • Added the option to color player names in the summaries based on their class.

4

  • Added a GUI.
  • Added the option to add yourself to the "Already On" table. This way, if you're the kind of person that thinks, "There's 7 people in the raid, but I only shared it with 6 people ... ?", then this is the option for you!
  • Added the option to make the name lists begin on the same line as the consolidated title. I didn't expect to like this option nearly as much as I do. It is now the default display option.
  • Added the option to change the result consolidation pause duration.

3

  • Removed a debugging printout which (left in) defeated the point of the mod, or caused errors.

2

  • Fixed a bug where everything was broken. Apparently the "." character is a wildcard, so I was removing all but 2 letters in people's names. This is now fixed in an ugly but (most important) working manner.

1

  • Initial Release.

Comments

  • #14
    /farnsworth Bad news everyone!

    It seems that my WoW subscription has expired, leaving me no way to continue development on BuffWatcher (or any of my addons, really) since I will have no way to test that the changes I make actually work.

    If anyone wishes to pick up development of QSF or any of my other addons, send me an email or a PM (my email is in the ToC) and we can work something out.
  • #13
    Version 12 is out!
    * Fixed an issue where the code checking for false positives was unnecessarily inefficient.
    * Separated the translations into their own file, so users can more easily make and share changes for their language.

    Not much new for this version, I think this addon is pretty much feature-complete (nobody's been asking for anything new, anyway).
  • #12
    Version 11 is out!
    * Updated ToC for beta. Otherwise QSF seems to work just fine.
    * Fixed a bug where the initial state was not "single line".


    Forgot to update this, sorry. Also, QSF seems to work fine, no real changes. So let me know if you run into a bug and i'll fix it
  • #11
    QuestSpamFilter is available for the Cataclysm Beta!

    http://www.wowinterface.com/downloads/info17977-QuestSpamFilterCataclysmBeta.html
  • #10
    Version 10 is out!
    * Added Global Strings which could be incorrectly filtered by QuestSpamFilter. This should fix the filtered "X Busy: Player right now." message gotten when a player is busy and you try to trade with them.
  • #9
    Version 9 is out!
    * Fixed the interface number in the toc file, it was incorrectly 30500 (should be 30300)
    * Fixed a missed special character in the frFR "Questlog Full" title. Thanks oXid_FoX!
    * Fixed a bug introduced in v8 where I'd undone stuff when creating strings for matching. This only affected non-english localizations.

    As always, bug reports and suggestions are more than welcome :)
  • #8
    Version 8 is out!
    * Updated French translations for "Questlog Full", "Already On", and "Too Far Away". Thanks oXid_FoX!
    * Moved locale-specific stuff to a new file: qsf_translations.lua. This should make it easier for people to find and provide better localizations.
    * Encoded special characters (such as à, è, ì, ò, ù) using Lua escape sequences. That's a fancy way of saying "They should work now". Thanks to oXid_FoX for pointing this out.
    * Changed the code to makeFragments a bit, shouldn't change anything.
    * Fixed a potential bug with the "Colorize" option, where non-English clients would have incorrect output.
    * Changed the code wiping the tables a bit, shouldn't change anything.

    I'm not positive that the special character encoding works properly, let me know of any mistakes I made.
  • #7
    Version 7 is out!
    * Fixed the ugly code from v2.
    * Fixed an improperly-matching pattern in German.

    This should fix the problem in German in v6. As always, let me know of any bugs in your localization :)
  • #6
    Version 6 is out!
    * Localization! The patterns I am using are the Global Strings in World of Warcraft, so I need feedback on how well this works, if it does at all (for your localization). Works fine for English and German (rather, "it *seems* to work now" :P).

    This version should work for any language WoW is localized for. A big thanks to Wolf936 for all his help debugging in German!
  • #5
    Version 5 is out!
    * Added the option to color player names in the summaries based on their class.

    The only thing I can think to add to this addon is localization. If you wish to contribute a localization, please say which region the localization is for, and then provide translations for the QSF_addon.patterns and QSF_addon.title tables in questspamfilter.lua.

    If you have a localization, suggestion, comment, bug report, or whatever, please feel free to share it!
  • #4
    Version 4 is out!
    * Added a GUI.
    * Added the option to add yourself to the "Already On" table. This way, if you're the kind of person that thinks, "There's 7 people in the raid, but I only shared it with 6 people ... ?", then this is the option for you!
    * Added the option to make the name lists begin on the same line as the consolidated title. I didn't expect to like this option nearly as much as I do. It is now the default display option.
    * Added the option to change the result consolidation pause duration.

    Let me know of any suggestions or requests :)
  • #3
    Version 3 is out!
    * Removed a debugging printout which (left in) defeated the point of the mod, or caused errors.

    :(
  • #2
    Version 2 is out!
    * Fixed a bug where everything was broken. Apparently the "." character is a wildcard, so I was removing all but 2 letters in people's names. This is now fixed in an ugly but (most important) working manner.

    this is so embarassing :(
  • #1
    ok so, this version is slightly broken

    please don't download it, or download v2 that i will be posting very soon
  • To post a comment, please login or register a new account.
Learn how to disable ads
Learn how to disable ads
Login to Curse

Don't have an account? Create One.

Get an epic experience with Curse Premium
  • Faster addon downloads
  • Premium-Only Beta Giveaways
  • Ad-Free Curse experience
  • Premium Curse Client
  • and many More Features
  • Learn More »

Diablo III Giveaway

Enter Now!