mics fixes
This commit is contained in:
parent
bb8d1067b5
commit
35c26e930f
3 changed files with 6 additions and 3 deletions
3
.github/workflows/gh-pages.yaml
vendored
3
.github/workflows/gh-pages.yaml
vendored
|
@ -3,7 +3,8 @@
|
|||
on:
|
||||
push:
|
||||
tags:
|
||||
- 'release/*'
|
||||
- 'release/*.*'
|
||||
- 'release/*.*.*'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
|
|
@ -17,6 +17,8 @@
|
|||
// along with alterNERDtive VoiceAttack profiles for Elite Dangerous. If not, see <https://www.gnu.org/licenses/>.
|
||||
// </copyright>
|
||||
|
||||
#nullable enable
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Windows;
|
||||
|
@ -105,7 +107,7 @@ namespace alterNERDtive
|
|||
|
||||
foreach (Setting setting in this.values)
|
||||
{
|
||||
dynamic state = null;
|
||||
dynamic? state = null;
|
||||
|
||||
try
|
||||
{
|
||||
|
|
|
@ -39,7 +39,7 @@ namespace alterNERDtive
|
|||
[System.Diagnostics.CodeAnalysis.SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1649:File name should match first type name", Justification = "F off :)")]
|
||||
public class BasePlugin
|
||||
{
|
||||
private static readonly Version VERSION = new ("4.4.1-dev");
|
||||
private static readonly Version VERSION = new ("4.4.1");
|
||||
|
||||
private static readonly Dictionary<Guid, string> Profiles = new ()
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue