What's new
Install the app
How to install the app on iOS

Follow along with the video below to see how to install our site as a web app on your home screen.

Note: This feature may not be available in some browsers.

Welcome to My Sharing Site

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Resource icon
xF2 Add-on
  • Add controller plugin 'SV\StandardLib\ControllerPlugin\Delete' a plugin helper for implementing soft/hard/undeleting of content
  • Update bundled moment.js library
  • php 8.2 compatibility update
  • If using the Svg Template addon, update to SVG Template 2.4.5 or rendering SVGs to PNGs will stop working
Add a work-around for horribly not recommended add-on updating process.
  • Deleting an addon's files while the add-on is active will very likely break your site.
  • Add is_toggle_set template function and toggle-storage-ex backend for the XF toggle JS.
    The stock is_toggled does not allow setting the default value, while is_toggle_set does.
  • Example of a default collapsed node-list:
<xf:js src="sv/lib/storage.js" addon="SV/StandardLib" min="1" /> <xf:set var="$isActive" value="{{ is_toggle_set($forum.node_id, false, 'node-toggle') ? ' is-active' : '' }}"/> <div class="block block--collapsible-child-nodes"> <div class="block-container"> <h3 class="block-minorHeader collapseTrigger collapseTrigger--block {$isActive} " data-target=".block--collapsible-child-nodes .block-body" data-xf-click="toggle" data-xf-init="toggle-storage-ex" data-storage-type="cookie" data-storage-container="node-toggle" data-storage-key="{$forum.node_id}" data-default-value="0" >{{ phrase('sub_forums') }}</h3> <div class="block-body toggleTarget {$isActive}"> ... </div
Move quick_filter template/js which dynamically updates body/pagenav in an overlay from SV/WhoReplied into SV/StandardLib
  • See Who Replied v2.2.0+ or User Mention Improvements v2.8.0+ for examples of usage
  • Like
Reactions: awkirin
  • Fix type-error when a collection is passed to the removeValue templater filter function
A number of helper utilities designed to ease add-on development, does not have any direct user-facing changes.
  • Uploaded to the resource manager to aid dependency tracking and allow updating without updating every individual add-on
  • Fix for using SqlJoinTrait and EarlyJoinFinderTrait together
    • Resolves compatibility issue when using Bump Thread and Optimized List Queries add-ons together
  • Update EarlyJoinFinderTrait to add support tables with compound primary keys
  • Document using InstallerHelper
  • Add InstallerHelper::getReversedAlterTables (with example usage in README.md), to hopefully simplify uninstaller code.
    • Takes the result of getAlterTables (array of table alters) and reverses simple column adds, renames and index adds.
    • Thanks @TickTackk
  • Fix 32bit support when detecting early-join behaviour (ie Optimize List Queries add-on)
  • Move helper features for extending forum/prefix filters into Standard Lib from a number of other add-ons
Top