Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - AGA

#141
There is a whole new version of the site in the works, which will address a lot of useability issues like that.  Watch this space!  (Possibly for a long time, I do have a day job too!)
#142
A usual culprit for this is people trying to include a YouTube link with the full "https://youtube.com/" address, rather than just the video ID as specified on the page.  Did you do that?
#143
Yeah, sorry, the MediaWiki plugin we use to understand forums logins was previously bugged.  Luckily it was patched not long ago.
#144
I think it's fixed now?
#145
Let's try to organise it more like we have in the past next year.  Like longlisting destinations late 2023, garnering interest early 2024, booking spring 2024.  I'll stick some reminders in my calendar.
#146
Quote from: Khris on Sun 28/05/2023 13:58:56Here's an optimized version:

Code: JavaScript
window.addEventListener("load", function() {
  document.querySelectorAll('a[href^="https://www.adventuregamestudio.co.uk/forums/profile/"]')
  .forEach(a => a.href = a.href.replace(/%20/g, "+"));
});

Thanks, that's implemented!
#147
Unfortunately this is a known bug in the SMF forums software.  All I can suggest is you try to rephrase your text to avoid using apostrophes for the time being.  "I am" instead of "I'm" sort of thing.
#148
Quote from: AGA on Sat 27/05/2023 01:26:50Thanks!  I've added this to both themes' JS files, so no need for a local GreaseMonkey script.  It's not quite perfect, as there are other places profile links appear, but this is a great starting point I can use to add other classes as I find them.
Thanks, @Khris, I've adjusted it to the following, which is a bit more heavy handed, but should coves all eventualities.  Let's see if it slows things down at all!

Code: JavaScript
window.addEventListener("load", function () {
    document.querySelectorAll('a').forEach(a => {
        if (a.href.includes('https://www.adventuregamestudio.co.uk/forums/')) {
            a.href = a.href.replace(/%20/g, "+");
        }
    });
});
#149
Quote from: Khris on Tue 23/05/2023 23:13:46Here's a GreaseMonkey script that will fix this:

Code: JavaScript
// ==UserScript==
// @name     AGS profile link fix
// @version  1
// @grant    none
// @match https://www.adventuregamestudio.co.uk/forums/*
// ==/UserScript==

window.addEventListener("load", function () {
  document.querySelectorAll(".poster h4 a, .postby a, .moderators a").forEach(a => {
    a.href = a.href.replace(/%20/g, "+");
  });
});

(In case you don't want to use GreaseMonkey, simply replace the spaces in the username with + symbols)

Thanks!  I've added this to both themes' JS files, so no need for a local GreaseMonkey script.  It's not quite perfect, as there are other places profile links appear, but this is a great starting point I can use to add other classes as I find them.
#150
This is a known issue with the rewrite plugin.  All the pages are still accessible via user ID rather than the rewritten name, like https://www.adventuregamestudio.co.uk/forums/pm/?sa=send;u=39 to send me a PM.

It's a bit longwinded, but if you go to https://www.adventuregamestudio.co.uk/forums/mlist/?sa=search and search for the username, the link in the Status column on the results page will include the user ID.  Then plug that into the address format from above, and you'll be able to do what you need.
#151
We don't have any control over search, it's core SMF functionality.

However, in this particular case you could do "ports -reports" and it would exclude any results matching reports.
#152
On the second point, there's a bug in this version of SMF where profile custom text cannot include certain punctuation marks.  Apostrophes at very least.
#153
Quote from: Crimson Wizard on Sat 01/04/2023 07:06:44@AGA thank you,
I noticed one problem: the button remains even though I removed the "in-development version" data (because there's no Beta version currently).

Ah, good point!  I've added a check for the relevant strings' lengths before showing each of the three button types.
#154
Quote from: eri0o on Sun 12/03/2023 15:03:42First thing would be setting a date
:)

Cotswolds looks lovely

Generally numbers come first, with people giving a vague idea of when they might be available if they're interested in attending.  If I know ~10 people are potentially interested, vs ~20, then I can look at possible properties.  All these things determine the dates we have to choose from.
#155
So any more thoughts about this?
#156
I've added buttons for beta and nightlies links to the top of the page.
#157
That's because I completely forgot about this thread, sorry!  I've extended the end date to 9th March.
#158
@cat want me to extend the deadline by a week?  I think it'd make sense under the circumstances.
#159
That seems to happen every time I do anything directly in the database, rather than SMF doing it.  I really need to pin down what the cause is...
#160
Yeah, hide= is no longer supported.  Seems it was mostly only you who even realised it existed, sorry!  I've updated all the instance I could find.

And some people were using HIDE for some reason, which my find / replace will have missed.  I've fixed those now too.
SMF spam blocked by CleanTalk