Merge branch 'master' into fix-relative-link-resolution

This commit is contained in:
Dean Herbert
2021-06-01 16:49:02 +09:00
23 changed files with 560 additions and 55 deletions

View File

@ -169,6 +169,9 @@ namespace osu.Game.Online.Chat
case "u":
case "users":
return new LinkDetails(LinkAction.OpenUserProfile, mainArg);
case "wiki":
return new LinkDetails(LinkAction.OpenWiki, string.Join('/', args.Skip(3)));
}
}
@ -313,7 +316,8 @@ namespace osu.Game.Online.Chat
JoinMultiplayerMatch,
Spectate,
OpenUserProfile,
Custom
OpenWiki,
Custom,
}
public class Link : IComparable<Link>