r24

Details

  • Filename
    Misspelled-r24.zip
  • Uploaded by
  • Uploaded
    May 22, 2009
  • Size
    1.11 MB
  • Downloads
    159
  • MD5
    601c72f0f3cc71db2624b261e51c4482

Supported WoW Retail Versions

  • 3.1.0

Changelog

------------------------------------------------------------------------
r24 | nrpieper | 2009-05-22 10:51:48 +0000 (Fri, 22 May 2009) | 1 line
Changed paths:
   M /trunk/Misspelled.lua
   M /trunk/Misspelled.toc

Changed the misspelled highlighting to a medium-cyan-ish color.  Hopefully this will make it easier to see misspelled words in all the common channels: Say, Party, Raid, Guild, Whisper, Trade, Yell
------------------------------------------------------------------------
r23 | nrpieper | 2009-05-21 15:19:01 +0000 (Thu, 21 May 2009) | 1 line
Changed paths:
   M /trunk/Misspelled.lua
   M /trunk/Misspelled.toc

Added Ace3 OptionDep tag to the .toc so the addon would properly load for those running without libs embedded.
------------------------------------------------------------------------
r22 | nrpieper | 2009-05-21 14:41:07 +0000 (Thu, 21 May 2009) | 3 lines
Changed paths:
   M /trunk/Dict/Dic_en_US.lua
   M /trunk/Misspelled.lua
   M /trunk/Misspelled.toc
   M /trunk/Misspelled.xml

Now uses AceEvent to replace the hidden frame and OnEvent hook needed to load guild members.
Added the "words" LFG and LFM to the US English dictionary.
When a suggestion is selected to replace a given misspelled word (or Ignore or Add to Dic was selected), the cursor was positioned at end of the replaced word.  Now, if there is a space after that word, the cursor is positioned to the right of that space.  This should reduce the spell-checking needed when the only character on the line, to the right of a cursor, is a space.
------------------------------------------------------------------------
r21 | nrpieper | 2009-05-21 11:23:55 +0000 (Thu, 21 May 2009) | 1 line
Changed paths:
   M /trunk/Misspelled.lua
   M /trunk/Misspelled.toc
   M /trunk/Misspelled.xml

Changed some of the frame xlm code, to hopefully hide a phantom dropdown frame that was being seen by some.
------------------------------------------------------------------------
r20 | nrpieper | 2009-05-20 21:16:16 +0000 (Wed, 20 May 2009) | 3 lines
Changed paths:
   M /trunk/.pkgmeta
   A /trunk/Dict/Dic_de_DE.lua
   M /trunk/Dict/Dic_en_US.lua
   M /trunk/Misspelled.lua
   M /trunk/Misspelled.toc
   M /trunk/WordDict.lua
   M /trunk/embeds.xml

A German dictionary has been added and will load if you are using the German client.  Note:  No Warcraft specific proper nouns have been included in the German dictionary.
Misspelled's loading and right-click event wireup routines were converted to use AceAddon and AceHook.  Hopefully this should help make Misspelled more compatible with any other Ace addons (Prat), that also try and hook the ChatFrameEditBox's MouseUp event.
Local variables are now widely used to speed up calls to global functions.
------------------------------------------------------------------------
r19 | nrpieper | 2009-05-18 09:25:51 +0000 (Mon, 18 May 2009) | 1 line
Changed paths:
   M /trunk/Misspelled.lua
   M /trunk/Misspelled.toc
   D /trunk/test.lua
   D /trunk/test1.lua
   D /trunk/test2.lua
   D /trunk/tprint.lua

Fix for errors reported loading friends player named into the dictionary.
------------------------------------------------------------------------
r18 | nrpieper | 2009-05-17 13:51:49 +0000 (Sun, 17 May 2009) | 4 lines
Changed paths:
   M /trunk/Misspelled.lua
   M /trunk/Misspelled.toc
   M /trunk/WordDict.lua

Reduced memory needed to store the dictionary in half.  Affix keys and phonetic codes are no longer stored using subtables.  Memory usage went from 11.6Mb to 5.7Mb
The user dictionary storage format was changed to match the, updated, in memory dictionary storage format.  Any existing user dictionaries will be converted the first time you load r18.
Improved the suggestions generation, especially when the word contains a capital letter.
8 suggestions are now returned, not 10.
------------------------------------------------------------------------
r17 | nrpieper | 2009-05-16 19:15:20 +0000 (Sat, 16 May 2009) | 4 lines
Changed paths:
   M /trunk/Misspelled.lua
   M /trunk/Misspelled.toc
   M /trunk/WordDict.lua

No UI or functionality changes in this release.
Removed unnecessary OnUpdate event hook.  r16's cursor positioning code no longer needs to independently track the cursor position using OnUpdate.
Moved creation of local variables outside of loops, wherever possible.  Should help the GC not cry.
Removed some unneeded local variable creation.
------------------------------------------------------------------------
r16 | nrpieper | 2009-05-16 11:05:39 +0000 (Sat, 16 May 2009) | 6 lines
Changed paths:
   M /trunk/Misspelled.lua
   M /trunk/Misspelled.toc

Maximum suggestions increased to 10
Fixed an error where words in all CAPS, or words that contained numbers were throwing a Lua error.
Fixed the chat edit cursor position so it moves naturally as you perform edits in and around misspelled highlighted words.  Wow this was a lot of work.  Did you know you can crash Wow, with an invalid cursor position!
Fixed a problem where the spell checking routine was firing twice, if it found a misspelled word.
More code cleanup.  There shouldn't be any remaining, non reachable code.
We're getting very near release quality!
------------------------------------------------------------------------
r15 | nrpieper | 2009-05-15 15:42:14 +0000 (Fri, 15 May 2009) | 3 lines
Changed paths:
   M /trunk/Misspelled.lua
   M /trunk/Misspelled.toc
   M /trunk/Misspelled.xml

The Misspelled word suggestions pop-up dialog now takes up less space.  Cancel option added to the bottom of the pop-up.
Loading guild members routine delayed until the first ChatEditBox_OnTextChanged event.  I wasn't always getting guild info during addon loading.
ChatEditBox_OnSpacePressed event removed.  We only use OnTextChanged.
------------------------------------------------------------------------
r14 | nrpieper | 2009-05-15 00:04:24 +0000 (Fri, 15 May 2009) | 1 line
Changed paths:
   M /trunk/Misspelled.lua
   M /trunk/Misspelled.toc

Fixed error loading guild members
------------------------------------------------------------------------
r13 | nrpieper | 2009-05-14 22:32:25 +0000 (Thu, 14 May 2009) | 4 lines
Changed paths:
   M /trunk/Misspelled.lua
   M /trunk/Misspelled.toc

Your friends and guild roster are now added, upon zone-in, to the list of correctly spelled words.  Suggestions that match a friend or guild member player name are flagged with either (Friend) or (Guild), in the suggestions right-click pop-up.
Lots of cleanup and remarks added to the code.
Fixed cases where editing near the boundary of a highlighted misspelled word would mangle color tag information leaving only partial color tags.
Started implementing routines to correctly set the cursor position when the chat text is changed by Misspelled.  More work is still needed here.
------------------------------------------------------------------------
r12 | nrpieper | 2009-05-14 22:22:34 +0000 (Thu, 14 May 2009) | 4 lines
Changed paths:
   M /trunk/Misspelled.lua
   M /trunk/Misspelled.toc

Your friends and guild roster are now added, upon zone-in, to the list of correctly spelled words.  Suggestions that match a friend or guild member player name are flagged with either (Friend) or (Guild), in the suggestions right-click pop-up.
Lots of cleanup and remarks added to the code.
Fixed cases where editing near the boundary of a highlighted misspelled word would mangle color tag information leaving only partial color tags.
Started implementing routines to correctly set the cursor position when the chat text is changed by Misspelled.  More work is still needed here.
------------------------------------------------------------------------
r11 | nrpieper | 2009-05-12 02:10:40 +0000 (Tue, 12 May 2009) | 1 line
Changed paths:
   M /trunk/Misspelled.lua
   M /trunk/Misspelled.toc

Saved user dictionary fixes, and new code to start tracking the cursor position.
------------------------------------------------------------------------
r10 | nrpieper | 2009-05-10 23:01:09 +0000 (Sun, 10 May 2009) | 3 lines
Changed paths:
   M /trunk/Misspelled.lua
   M /trunk/Misspelled.toc

Cleaned up more bugs.  Added the char "?" as a word boundary indicator.

Debug print statements turned off.
------------------------------------------------------------------------
r9 | nrpieper | 2009-05-10 20:49:51 +0000 (Sun, 10 May 2009) | 2 lines
Changed paths:
   M /trunk/Misspelled.lua
   M /trunk/Misspelled.toc

Fix Fix implemented for Chatter.  Chatter users can now right click highlighted words to view suggestions.

------------------------------------------------------------------------
r8 | nrpieper | 2009-05-10 20:47:31 +0000 (Sun, 10 May 2009) | 1 line
Changed paths:
   M /trunk/Misspelled.lua

Fix implemented for Chatter.  Chatter users can now right click highlighted words to view suggestions.
------------------------------------------------------------------------
r7 | nrpieper | 2009-05-09 22:25:54 +0000 (Sat, 09 May 2009) | 1 line
Changed paths:
   M /trunk/Dict/Dic_en_US.lua

Added Wrath dungeon and raid boss names to the standard Dictionary.
------------------------------------------------------------------------
r6 | nrpieper | 2009-05-09 20:16:51 +0000 (Sat, 09 May 2009) | 1 line
Changed paths:
   M /trunk/Misspelled.lua
   M /trunk/Misspelled.toc

Fixed problem with links not being parsed and ignored.
------------------------------------------------------------------------
r5 | nrpieper | 2009-05-09 14:05:26 +0000 (Sat, 09 May 2009) | 3 lines
Changed paths:
   M /trunk/Dict/Dic_en_US.lua
   M /trunk/Misspelled.lua

Remarked out debug prints and added the words
Jewelcrafting, Leatherworking, and Warcraft to the std dictionary.
beta
------------------------------------------------------------------------
r4 | nrpieper | 2009-05-09 13:25:14 +0000 (Sat, 09 May 2009) | 1 line
Changed paths:
   M /trunk/Misspelled.lua
   M /trunk/Misspelled.toc
   M /trunk/WordDict.lua

Add to User Dictionary an Ignore All features implemented.
------------------------------------------------------------------------
r3 | nrpieper | 2009-05-08 21:09:04 +0000 (Fri, 08 May 2009) | 1 line
Changed paths:
   M /trunk/Misspelled.lua

Minor comment updates
------------------------------------------------------------------------
r2 | nrpieper | 2009-05-08 20:06:36 +0000 (Fri, 08 May 2009) | 1 line
Changed paths:
   M /trunk
   A /trunk/.pkgmeta
   A /trunk/Bindings.xml
   A /trunk/Dict
   A /trunk/Dict/Dic_en_US.lua
   A /trunk/Misspelled.lua
   A /trunk/Misspelled.toc
   A /trunk/Misspelled.xml
   A /trunk/WordDict.lua
   A /trunk/embeds.xml
   A /trunk/test.lua
   A /trunk/test1.lua
   A /trunk/test2.lua
   A /trunk/tprint.lua

Initial check-in
------------------------------------------------------------------------
r1 | root | 2009-05-08 18:13:17 +0000 (Fri, 08 May 2009) | 1 line
Changed paths:
   A /branches
   A /tags
   A /trunk

"misspelled/mainline: Initial Import"
------------------------------------------------------------------------

Additional Files

Type Name Size Uploaded Game Version Downloads
1.09 MB May 22, 2009 3.1.0 22