Dashboard

Summary of problems caused by the limit:
1) The items beyond 40000 are not seen, and so are not recorded
2) Because not all items were seen, the scanner cannot determine sold (early expired) auctions. Note that expired auctions should currently be getting removed, though
3) Does not count as a Full Scan - LastFullScan timestamp will not get set, possibly other issues.

We have confirmed that auctions in paged scans are in the same order as in a getall. Starting a scan from page 800 should therefore pick up where the getall left off - solving (1)
However it is likely that some auctions will change pages between the getall and the first page scan - same problem that we have with normal paged scans. Because of this it would be preferable to start paged scanning as soon as possible after the getall - as soon as it has finished storing, and before the Processing stage.

(2) & (3) will need more work.

  • More
  • changed the Summary to 'Faster Getall scans (Hybrid Scans)'
  • More
  • changed the Summary to 'Faster Getall scans (Hrbird Scans)'
  • More
  • changed the Priority to 'Trivial'

r5296

Fixes [APPR-279] Appraiser Price Rounding feature should no longer set the bid price higher than the buyout price
Fixes [APPR-279] Appraiser Price Rounding feature should no longer set the bid price higher than the buyout price
    • -3
    • +15
    /trunk/Auc-Util-Appraiser/AprSettings.lua
    • -20
    • +8
    /trunk/Auc-Util-Appraiser/AprFrame.lua

r5295

Completes [SDBG-10] <developer> Adds support for the new ScanProcessors 'fallbackcreate' message
Completes [SDBG-10] <developer> Adds support for the new ScanProcessors 'fallbackcreate' message
    • -30
    • +30
    /trunk/Auc-Stat-Debug/StatDebug.lua

r5294: As prevous entry.
Also CoreStrings update for the text for new settings.

Completes [ADV-509] When ScanData is not loaded, scanner will not send possibly invalid entries to the Stat modules. Also user may disable the warning popup when ScanData cannot be loaded.
Completes [ADV-509] When ScanData is not loaded, scanner will not send possibly invalid entries to the Stat modules. Also user may disable the warning popup when ScanData cannot be loaded.

r322 - discards the tip pool during lib:Deactivate

  • More
  • stopped progress
Fixes [LTT-45] <internal> Fix potential problem to do with tooltip versions in LibExtraTip (see ticket for details)
Fixes [LTT-45] <internal> Fix potential problem to do with tooltip versions in LibExtraTip (see ticket for details)
  • More
  • changed the status to Open

Perhaps when the bid price is invalid, have the "Bid" button change to "Reset Bid"? (with colour change? require holding down shift, ctrl, or alt?)

Reset when the user blanks all the input boxes, or enters all 0. (Perhaps also on entering invalid characters, but not sure those input boxes will even allow any invalid characters to be entered?)

  • More
  • changed the Priority to 'Minor'
  • More
  • changed the Priority to 'Trivial'
  • More
  • changed the Priority to 'Trivial'

Will add a new function lib.RoundBuyBid that rounds both then ensures that bid does not exceed buy.
Auctioneer convention is that buy is the lead value and bid is derived from it. Therefore we shall reduce bid to match buy.

Found some sections of code that do the opposite of what we want: if bid is greater than buy, the code increases buy to match bid - with the new function, these lines shall be removed.

  • More
  • started progress