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
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.
#142
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!
#143
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.
#144
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, "+");
        }
    });
});
#145
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.
#146
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.
#147
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.
#148
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.
#149
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.
#150
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.
#151
So any more thoughts about this?
#152
I've added buttons for beta and nightlies links to the top of the page.
#153
That's because I completely forgot about this thread, sorry!  I've extended the end date to 9th March.
#154
@cat want me to extend the deadline by a week?  I think it'd make sense under the circumstances.
#155
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...
#156
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.
#157
I switched to a new spoilers plugin, as the old one was no longer supported.

Permissions should be fixed now, but you will need to use the spoiler tag rather than hide. I've updated this in the database, so all existing hide tags should now be swapped with spoiler and work fine.
#158
Sorry about that, should work now!
#159
Quote from: Stupot on Fri 27/01/2023 21:52:04
Quote from: AGA on Fri 27/01/2023 16:33:55You aren't closing your BBCode tags correctly:

...

I've fixed all the instances I noticed for you.

Thanks for fixing my unclosed bold tags. I'm not sure how I let that happen.

This is not related to the issue I described above, though. The issue is about links. Whenever you have multiple links in one row of a table, they all come up orange when you hover over one of them.

Try hovering over one of these two links to two different urls

--Completed Games--General Discussion--


Yeah, what you describe doesn't happen for me.  I am on the dark theme though, not that that should make any difference.  Which browser do you use?  If you look at the same post in another browser does it behave differently?
#160
Quote from: Stupot on Tue 24/01/2023 04:03:35I've noticed that if you have multiple links in a table, hovering over one link will highlight all of the links in the same row of that table, even though all the links definitely point to different pages.


https://www.adventuregamestudio.co.uk/forums/adventure-related-talk-chat/maggies-2022-play-and-vote/msg636653018/

You aren't closing your BBCode tags correctly:

[b][url="https://www.adventuregamestudio.co.uk/site/games/game/2604-saturday-night-is-the-loneliest-night-of-the-week/"]Saturday is the Loneliest Night of the Week[/url][b]

should be:

[b][url="https://www.adventuregamestudio.co.uk/site/games/game/2604-saturday-night-is-the-loneliest-night-of-the-week/"]Saturday is the Loneliest Night of the Week[/url][/b]

I've fixed all the instances I noticed for you.

Quote from: heltenjon on Tue 24/01/2023 14:36:58I noticed today by accident that if you time out while rating a game, the comment field will show up unsigned on the db games page. When I signed back in at the forums and returned to the game page, the comment was there, but my votes/rating had not been registered.

Thanks for reporting, but this is such an edge case it really isn't worth fixing.  I'll make sure this is accounted for in the new site.
SMF spam blocked by CleanTalk