···4545 <label>
4646 BSky PDS:
4747 <input type="text" name="bskyUserPDS" placeholder={placeholderPDS} />
4848- <small>If you have not changed your PDS (or do not know what that means), you should leave this blank!</small>
4848+ <small>If you have not changed your PDS (or do not know what that means), you should leave this blank to use your current value!</small>
4949 </label>
5050 </form>
5151 <progress id="spinner" class="htmx-indicator" />
+2-1
src/layout/helpers/footer.tsx
···2727 data-tooltip="Tips are not required, the service is free, but if you like this service they are appreciated <3"
2828 title="Tip the dev" href="/tip">Tip</a> -
2929 <a class="secondary" {...newWinAttr} href="/tos" title="Terms of Service">Terms</a> -
3030- <a class="secondary" {...newWinAttr} href="/privacy" title="Privacy Policy">Privacy</a>
3030+ <a class="secondary" {...newWinAttr} href="/privacy" title="Privacy Policy">Privacy</a> -
3131+ <a class="secondary" target="_blank" href="/contact" title="Contact">Contact</a>
3132 {props.showVersion ? <span><br /><small class="secondary">version {CURRENT_SCRIPT_VERSION}</small></span> : null}
3233 </small>
3334 </span>
+1-1
src/utils/appScripts.ts
···11// Change this value to break out of any caching that might be happening
22// for the runtime scripts (ex: main.js & postHelper.js)
33-export const CURRENT_SCRIPT_VERSION: string = "1.6.3";
33+export const CURRENT_SCRIPT_VERSION: string = "1.6.4";
4455export const getAppScriptStr = (scriptName: string) => `/js/${scriptName}.min.js?v=${CURRENT_SCRIPT_VERSION}`;
66