Recent content by Xon

  1. X

    Tag Essentials - with AI auto tagging and XFRM support [Paid]

    This only logs when debug mode enabled. probably should be a check for development mode.
  2. X

    Awaiting feedback XF responsive design breakpoints ignore DPI & modern high resolution phones

    I'm guessing it might actually be something wonky with the default samsung's browser, trying to get more details. It wouldn't be the first time I've seen the samsung browser thing do something atrocious.
  3. X

    Awaiting feedback XF responsive design breakpoints ignore DPI & modern high resolution phones

    I've leaned that the Samsung Galaxy A14 reports a 1080x2408px resolution in a 6.6 inch screen-size. The problem? XF's media queries assume >900px is actually at a usable resolution (96 dpi or maybe 144 dpi, and not 400 dpi. well 400 dppx for media queries). I think implementing...
  4. X

    Adding tags to thread silently fails if the xf_tag_content table has exhausted it's ids

    This was exasperated by a custom addon miss-behaving (constantly adding & removing tags), and a mariadb 10.6.x galera cluster which increments ids by 3 every insert, I'm not sure if this is a php bug for why it didn't hit 2^32 or what, but addTagIdsToContent was just silently failing when the...
  5. X

    User Activity by Xon

    XF2.3 will have trending content which supports using the visitor count as a source of how "hot" a thread is, as such I have no plans to re-implement that for XF2.2
  6. X

    Word Count Search

    You should be able to safely run truncate table xf_search_index. This will truncate the table and discard the broken indexes & data. Since you need to rebuild the search index, this is safe.
  7. X

    Word Count Search

    Have you re-run the search indexer after installing the add-on?
  8. X

    Advanced Bb Codes Pack [Paid]

    The add-on ships with a large number of style properties, and practically all of the bb-codes are rendered via the XF template system (sv_bbcode_ generally these templates) instead of via hard-coded html/css output. The bb-code's don't remove information (aka the media bb-code tag), so if you...
  9. X

    Fixed Reliable type hinting when using AbstractCollection/ArrayCollection/FinderCollection collections

    Most of the generics related bugs I saw where solved or still in progress, at least from my initial searching. But I'm not going to hold my breath on it being fixed.
  10. X

    Separate Sticky and Normal Threads (XF +2.x) by Xon - 2.1.0 - Feature update

    Require StandardLib v1.19.0+ Require XenForo 2.2+ Move template code into a macro instead of the template modification Add "Collapsible stickies threads block" style property (default disabled) This feature is not yet XF2.3 compatible
  11. X

    Separate Sticky and Normal Threads (XF +2.x) by Xon

    Xon updated Separate Sticky and Normal Threads (XF +2.x) by Xon with a new update entry: 2.1.0 - Feature update Read the rest of this update entry...
  12. X

    Copying from a code block copies html

    If you copy from a code block (inline or otherwise), instead of formatting being vaguely copied as expected it dumps a bunch of HTML goops into the editor. line1; line2; line3; Copying "line2;" will paste something like line2<span>;</span>
  13. X

    Fixed Reliable type hinting when using AbstractCollection/ArrayCollection/FinderCollection collections

    There is phpstorm type handling bug around ArrayAccess. :(
  14. X

    Image Count Limit by User Group

    Does it allow 3 images? It could just be an off-by-one error.
  15. X

    Word Count Search

    This add-on doesn't depend on XFES, it does require Search Improvements and StandardLibrary add-ons.
Top Bottom