-
-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: 🐛 resource updates and copyright text, change of text
removed google analytics as the site doesn't exist where it connects
- Loading branch information
Showing
84 changed files
with
988 additions
and
933 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// -------------------------------------------------------------------------------------------------------------------- | ||
// <copyright file="App.cs" company="SyndicatedLife"> | ||
// Copyright(c) 2018 Ryan Wilson &lt;[email protected]&gt; (http://syndicated.life/) | ||
// Copyright© 2007 - 2020 Ryan Wilson &lt;[email protected]&gt; (https://syndicated.life/) | ||
// Licensed under the MIT license. See LICENSE.md in the solution root for full license information. | ||
// </copyright> | ||
// <summary> | ||
|
@@ -83,10 +83,10 @@ internal static PluginHost Plugins { | |
/// <summary> | ||
/// Application Entry Point. | ||
/// </summary> | ||
[STAThread] | ||
[DebuggerNonUserCode] | ||
[GeneratedCode("PresentationBuildTasks", "4.0.0.0")] | ||
[LoaderOptimization(LoaderOptimization.MultiDomainHost)] | ||
[STAThread,] | ||
[DebuggerNonUserCode,] | ||
[GeneratedCode("PresentationBuildTasks", "4.0.0.0"),] | ||
[LoaderOptimization(LoaderOptimization.MultiDomainHost),] | ||
public static void Main() { | ||
var app = new App(); | ||
app.Run(); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// -------------------------------------------------------------------------------------------------------------------- | ||
// <copyright file="App.xaml.cs" company="SyndicatedLife"> | ||
// Copyright(c) 2018 Ryan Wilson &lt;[email protected]&gt; (http://syndicated.life/) | ||
// Copyright© 2007 - 2020 Ryan Wilson &lt;[email protected]&gt; (https://syndicated.life/) | ||
// Licensed under the MIT license. See LICENSE.md in the solution root for full license information. | ||
// </copyright> | ||
// <summary> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// -------------------------------------------------------------------------------------------------------------------- | ||
// <copyright file="AppBootstrapper.cs" company="SyndicatedLife"> | ||
// Copyright(c) 2018 Ryan Wilson &lt;[email protected]&gt; (http://syndicated.life/) | ||
// Copyright© 2007 - 2020 Ryan Wilson &lt;[email protected]&gt; (https://syndicated.life/) | ||
// Licensed under the MIT license. See LICENSE.md in the solution root for full license information. | ||
// </copyright> | ||
// <summary> | ||
|
@@ -61,7 +61,7 @@ private AppBootstrapper() { | |
"LS7", | ||
"LS8", | ||
"FC", | ||
"Yell" | ||
"Yell", | ||
}; | ||
AppViewModel.Instance.ScreenShotsPath = Common.Constants.ScreenShotsPath; | ||
AppViewModel.Instance.SoundsPath = Common.Constants.SoundsPath; | ||
|
@@ -73,53 +73,51 @@ private AppBootstrapper() { | |
Language = "English", | ||
ImageURI = Theme.GetImagePackURI("en"), | ||
Title = "English", | ||
CultureInfo = new CultureInfo("en") | ||
CultureInfo = new CultureInfo("en"), | ||
}); | ||
AppViewModel.Instance.UILanguages.Add( | ||
new UILanguage { | ||
Language = "Japanese", | ||
ImageURI = Theme.GetImagePackURI("ja"), | ||
Title = "日本語", | ||
CultureInfo = new CultureInfo("ja") | ||
CultureInfo = new CultureInfo("ja"), | ||
}); | ||
AppViewModel.Instance.UILanguages.Add( | ||
new UILanguage { | ||
Language = "French", | ||
ImageURI = Theme.GetImagePackURI("fr"), | ||
Title = "Français", | ||
CultureInfo = new CultureInfo("fr") | ||
CultureInfo = new CultureInfo("fr"), | ||
}); | ||
AppViewModel.Instance.UILanguages.Add( | ||
new UILanguage { | ||
Language = "German", | ||
ImageURI = Theme.GetImagePackURI("de"), | ||
Title = "Deutsch", | ||
CultureInfo = new CultureInfo("de") | ||
CultureInfo = new CultureInfo("de"), | ||
}); | ||
AppViewModel.Instance.UILanguages.Add( | ||
new UILanguage { | ||
Language = "Chinese", | ||
ImageURI = Theme.GetImagePackURI("cn"), | ||
Title = "中國", | ||
CultureInfo = new CultureInfo("zh") | ||
CultureInfo = new CultureInfo("zh"), | ||
}); | ||
AppViewModel.Instance.UILanguages.Add( | ||
new UILanguage { | ||
Language = "Korean", | ||
ImageURI = Theme.GetImagePackURI("ko"), | ||
Title = "한국어", | ||
CultureInfo = new CultureInfo("ko") | ||
CultureInfo = new CultureInfo("ko"), | ||
}); | ||
AppViewModel.Instance.UILanguages.Add( | ||
new UILanguage { | ||
Language = "Russian", | ||
ImageURI = Theme.GetImagePackURI("ru"), | ||
Title = "Русский", | ||
CultureInfo = new CultureInfo("ru") | ||
CultureInfo = new CultureInfo("ru"), | ||
}); | ||
|
||
|
||
|
||
Initializer.SetupCurrentUICulture(); | ||
Initializer.LoadChatCodes(); | ||
Initializer.LoadAutoTranslate(); | ||
|
@@ -129,8 +127,6 @@ private AppBootstrapper() { | |
Initializer.LoadAvailableNetworkDevices(); | ||
Initializer.LoadSoundsIntoCache(); | ||
Initializer.LoadPlugins(); | ||
|
||
|
||
} | ||
|
||
public event PropertyChangedEventHandler PropertyChanged = delegate { }; | ||
|
@@ -141,7 +137,7 @@ public static AppBootstrapper Instance { | |
} | ||
} | ||
|
||
private void RaisePropertyChanged([CallerMemberName] string caller = "") { | ||
private void RaisePropertyChanged([CallerMemberName,] string caller = "") { | ||
this.PropertyChanged(this, new PropertyChangedEventArgs(caller)); | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// -------------------------------------------------------------------------------------------------------------------- | ||
// <copyright file="AppException.cs" company="SyndicatedLife"> | ||
// Copyright(c) 2018 Ryan Wilson &lt;[email protected]&gt; (http://syndicated.life/) | ||
// Copyright© 2007 - 2020 Ryan Wilson &lt;[email protected]&gt; (https://syndicated.life/) | ||
// Licensed under the MIT license. See LICENSE.md in the solution root for full license information. | ||
// </copyright> | ||
// <summary> | ||
|
@@ -12,17 +12,14 @@ namespace FFXIVAPP.Client { | |
using System; | ||
using System.Runtime.Serialization; | ||
|
||
[Serializable] | ||
[Serializable,] | ||
internal class AppException : Exception { | ||
public AppException() { } | ||
|
||
public AppException(string message) | ||
: base(message) { } | ||
public AppException(string message) : base(message) { } | ||
|
||
public AppException(string message, Exception inner) | ||
: base(message, inner) { } | ||
public AppException(string message, Exception inner) : base(message, inner) { } | ||
|
||
protected AppException(SerializationInfo info, StreamingContext context) | ||
: base(info, context) { } | ||
protected AppException(SerializationInfo info, StreamingContext context) : base(info, context) { } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// -------------------------------------------------------------------------------------------------------------------- | ||
// <copyright file="AppViewModel.cs" company="SyndicatedLife"> | ||
// Copyright(c) 2018 Ryan Wilson &lt;[email protected]&gt; (http://syndicated.life/) | ||
// Copyright© 2007 - 2020 Ryan Wilson &lt;[email protected]&gt; (https://syndicated.life/) | ||
// Licensed under the MIT license. See LICENSE.md in the solution root for full license information. | ||
// </copyright> | ||
// <summary> | ||
|
@@ -32,7 +32,7 @@ namespace FFXIVAPP.Client { | |
|
||
using ContextMenu = System.Windows.Forms.ContextMenu; | ||
|
||
[Export(typeof(AppViewModel))] | ||
[Export(typeof(AppViewModel)),] | ||
internal sealed class AppViewModel : INotifyPropertyChanged { | ||
private static bool _hasPlugins; | ||
|
||
|
@@ -239,7 +239,7 @@ public NotifyIcon NotifyIcon { | |
using (Stream iconStream = ResourceHelper.StreamResource(Constants.AppPack + "FFXIVAPP.ico").Stream) { | ||
this._notifyIcon = new NotifyIcon { | ||
Icon = new Icon(iconStream), | ||
Visible = true | ||
Visible = true, | ||
}; | ||
iconStream.Dispose(); | ||
this._notifyIcon.Text = "FFXIVAPP"; | ||
|
@@ -435,7 +435,7 @@ private static void NotifyIconOnRestoreClick(object sender, EventArgs eventArgs) | |
ShellView.View.Topmost = Settings.Default.TopMost; | ||
} | ||
|
||
private void RaisePropertyChanged([CallerMemberName] string caller = "") { | ||
private void RaisePropertyChanged([CallerMemberName,] string caller = "") { | ||
this.PropertyChanged(this, new PropertyChangedEventArgs(caller)); | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// -------------------------------------------------------------------------------------------------------------------- | ||
// <copyright file="Constants.cs" company="SyndicatedLife"> | ||
// Copyright(c) 2018 Ryan Wilson &lt;[email protected]&gt; (http://syndicated.life/) | ||
// Copyright© 2007 - 2020 Ryan Wilson &lt;[email protected]&gt; (https://syndicated.life/) | ||
// Licensed under the MIT license. See LICENSE.md in the solution root for full license information. | ||
// </copyright> | ||
// <summary> | ||
|
@@ -30,7 +30,7 @@ internal static class Constants { | |
"de", | ||
"zh", | ||
"ru", | ||
"ko" | ||
"ko", | ||
}; | ||
|
||
public static StringComparison CultureComparer = StringComparison.CurrentCultureIgnoreCase; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
// -------------------------------------------------------------------------------------------------------------------- | ||
// <copyright file="NameMultiValueConverter.cs" company="SyndicatedLife"> | ||
// Copyright(c) 2018 Ryan Wilson &lt;[email protected]&gt; (http://syndicated.life/) | ||
// Copyright© 2007 - 2020 Ryan Wilson &lt;[email protected]&gt; (https://syndicated.life/) | ||
// Licensed under the MIT license. See LICENSE.md in the solution root for full license information. | ||
// </copyright> | ||
// <summary> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
|
||
<Weavers></Weavers> | ||
<Weavers xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="FodyWeavers.xsd"></Weavers> |
Oops, something went wrong.