Ryan Wilson

Results 52 comments of Ryan Wilson

It's not quite as simple as that; because for the UI to update it's tied to GameLanguage. Let me see if there's something more I can do in the main...

As long as the versions of the following libraries in the plugin are not lower than what is included in the app any plugin should load. https://github.com/Icehunter/ffxivapp/blob/master/FFXIVAPP.Client/PluginHost.cs#L91 Regarding the UI...

If you recompiled any of those dependencies yourself they won't match the ones I released and prevent loading. if you go back to using the versions I have in the...

You can change that locally if you like; but in the event something is upgrade like MahApps.Metro and the other plugins haven't updated it's going to cause the app to...

https://github.com/Icehunter/ffxivapp-plugin-parse/blob/master/FFXIVAPP.Plugin.Parse/Plugin.cs#L135 :)

So far it doesn't support translation at this time however. I'm looking at a way to put that in.

Updated the main app now to support separation of game/ui updates. So you can choose another language for the UI and have a different one for the game. Message boxes...

Here's how you add your own language: - Save a ru.png flag file in resources. - Add a language info item into the bootstrapper here: https://github.com/Icehunter/ffxivapp/blob/master/FFXIVAPP.Client/AppBootstrapper.cs#L143 - Add a Russian.cs...

If you're dealing with the main application you only need to reference something like this: https://github.com/Icehunter/ffxivapp/blob/master/FFXIVAPP.Client/Views/SettingsView.xaml#L29 AppProperties is imported globally for all xaml files. However if it's a plugin make...

Did you build own copies of any of these? ``` "FFXIVAPP.Common", "FFXIVAPP.IPluginInterface", "MahApps.Metro", "HtmlAgilityPack", "NAudio", "Newtonsoft.Json", "NLog", "System.Windows.Interactivity" ``` If you did then you also have to compile the plugin...