-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
647 changed files
with
10,141 additions
and
4,838 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 |
---|---|---|
|
@@ -38,6 +38,7 @@ | |
"AppVeyor", | ||
"AzurePipelines", | ||
"Bamboo", | ||
"Bitbucket", | ||
"Bitrise", | ||
"GitHubActions", | ||
"GitLab", | ||
|
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,12 @@ | ||
// ---------------------------------------------------- | ||
// AIMP DotNet SDK | ||
// | ||
// Copyright (c) 2014 - 2022 Evgeniy Bogdan | ||
// https://github.com/martin211/aimp_dotnet | ||
// | ||
// Mail: [email protected] | ||
// ---------------------------------------------------- | ||
|
||
using Nuke.Common.Git; | ||
|
||
internal class ApiProject | ||
|
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,4 +1,13 @@ | ||
using System.Collections.Generic; | ||
// ---------------------------------------------------- | ||
// AIMP DotNet SDK | ||
// | ||
// Copyright (c) 2014 - 2022 Evgeniy Bogdan | ||
// https://github.com/martin211/aimp_dotnet | ||
// | ||
// Mail: [email protected] | ||
// ---------------------------------------------------- | ||
|
||
using System.Collections.Generic; | ||
using System.IO; | ||
using Nuke.Common; | ||
using Nuke.Common.IO; | ||
|
@@ -46,7 +55,7 @@ partial class Build | |
.Executes(() => | ||
{ | ||
GlobFiles(DocumentationApiDirectory, "**/toc.yml").ForEach(File.Delete); | ||
WriteCustomTocs(DocumentationApiDirectory, DocumentationRoot, GlobFiles(SourceDirectory / Configuration, "AIMP.SDK.dll")); | ||
WriteCustomTocs(DocumentationApiDirectory, DocumentationRoot, GlobFiles(SDKBinFolder / "x86" / Configuration, "AIMP.SDK.dll")); | ||
}); | ||
|
||
Target BuildDocumentation => _ => _ | ||
|
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,4 +1,13 @@ | ||
using System.Collections.Generic; | ||
// ---------------------------------------------------- | ||
// AIMP DotNet SDK | ||
// | ||
// Copyright (c) 2014 - 2022 Evgeniy Bogdan | ||
// https://github.com/martin211/aimp_dotnet | ||
// | ||
// Mail: [email protected] | ||
// ---------------------------------------------------- | ||
|
||
using System.Collections.Generic; | ||
using System.IO; | ||
using System.Text; | ||
using System.Text.RegularExpressions; | ||
|
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,12 @@ | ||
// ---------------------------------------------------- | ||
// AIMP DotNet SDK | ||
// | ||
// Copyright (c) 2014 - 2022 Evgeniy Bogdan | ||
// https://github.com/martin211/aimp_dotnet | ||
// | ||
// Mail: [email protected] | ||
// ---------------------------------------------------- | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
|
@@ -401,6 +410,12 @@ bool validatePluginFolder(string plugin, IEnumerable<FileInfo> files) | |
Assert.True(isValid, $"Artifacts not valid. Platform {targetPlatform}"); | ||
|
||
Log.Information("Compress artifacts"); | ||
|
||
if (File.Exists(OutputDirectory / $"aimp.sdk-{targetPlatform}.zip")) | ||
{ | ||
File.Delete(OutputDirectory / $"aimp.sdk-{targetPlatform}.zip"); | ||
} | ||
|
||
ZipFile.CreateFromDirectory(artifactsFolder, OutputDirectory / $"aimp.sdk-{targetPlatform}.zip"); | ||
} | ||
|
||
|
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,12 @@ | ||
// ---------------------------------------------------- | ||
// AIMP DotNet SDK | ||
// | ||
// Copyright (c) 2014 - 2022 Evgeniy Bogdan | ||
// https://github.com/martin211/aimp_dotnet | ||
// | ||
// Mail: [email protected] | ||
// ---------------------------------------------------- | ||
|
||
using System; | ||
using System.ComponentModel; | ||
using System.Linq; | ||
|
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,11 @@ | ||
// Copyright Eugeniy Bogdan 2018. | ||
// Distributed under the MIT License. | ||
// https://github.com/nuke-build/web/blob/master/LICENSE | ||
// ---------------------------------------------------- | ||
// AIMP DotNet SDK | ||
// | ||
// Copyright (c) 2014 - 2022 Evgeniy Bogdan | ||
// https://github.com/martin211/aimp_dotnet | ||
// | ||
// Mail: [email protected] | ||
// ---------------------------------------------------- | ||
|
||
using System.IO; | ||
using System.Linq; | ||
|
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,11 @@ | ||
// Copyright Eugeniy Bogdan 2018. | ||
// Distributed under the MIT License. | ||
// https://github.com/nuke-build/web/blob/master/LICENSE | ||
// ---------------------------------------------------- | ||
// AIMP DotNet SDK | ||
// | ||
// Copyright (c) 2014 - 2022 Evgeniy Bogdan | ||
// https://github.com/martin211/aimp_dotnet | ||
// | ||
// Mail: [email protected] | ||
// ---------------------------------------------------- | ||
|
||
using System.Collections.Generic; | ||
using System.IO; | ||
|
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,4 +1,13 @@ | ||
using System.Collections; | ||
// ---------------------------------------------------- | ||
// AIMP DotNet SDK | ||
// | ||
// Copyright (c) 2014 - 2022 Evgeniy Bogdan | ||
// https://github.com/martin211/aimp_dotnet | ||
// | ||
// Mail: [email protected] | ||
// ---------------------------------------------------- | ||
|
||
using System.Collections; | ||
using System.Collections.Generic; | ||
using Newtonsoft.Json; | ||
|
||
|
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,4 +1,13 @@ | ||
using System; | ||
// ---------------------------------------------------- | ||
// AIMP DotNet SDK | ||
// | ||
// Copyright (c) 2014 - 2022 Evgeniy Bogdan | ||
// https://github.com/martin211/aimp_dotnet | ||
// | ||
// Mail: [email protected] | ||
// ---------------------------------------------------- | ||
|
||
using System; | ||
using System.Diagnostics.CodeAnalysis; | ||
using JetBrains.Annotations; | ||
using Nuke.Common.Tooling; | ||
|
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,4 +1,13 @@ | ||
using JetBrains.Annotations; | ||
// ---------------------------------------------------- | ||
// AIMP DotNet SDK | ||
// | ||
// Copyright (c) 2014 - 2022 Evgeniy Bogdan | ||
// https://github.com/martin211/aimp_dotnet | ||
// | ||
// Mail: [email protected] | ||
// ---------------------------------------------------- | ||
|
||
using JetBrains.Annotations; | ||
using Nuke.Common.Tooling; | ||
|
||
namespace Aimp.DotNet.Build | ||
|
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
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
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
Binary file not shown.
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,13 +1,11 @@ | ||
// ---------------------------------------------------- | ||
// ---------------------------------------------------- | ||
// AIMP DotNet SDK | ||
// | ||
// AIMP DotNet SDK | ||
// Copyright (c) 2014 - 2022 Evgeniy Bogdan | ||
// https://github.com/martin211/aimp_dotnet | ||
// | ||
// Copyright (c) 2014 - 2022 Evgeniy Bogdan | ||
// https://github.com/martin211/aimp_dotnet | ||
// | ||
// Mail: [email protected] | ||
// | ||
// ---------------------------------------------------- | ||
// Mail: [email protected] | ||
// ---------------------------------------------------- | ||
|
||
using System.Reflection; | ||
|
||
|
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,13 +1,11 @@ | ||
// ---------------------------------------------------- | ||
// ---------------------------------------------------- | ||
// AIMP DotNet SDK | ||
// | ||
// AIMP DotNet SDK | ||
// Copyright (c) 2014 - 2022 Evgeniy Bogdan | ||
// https://github.com/martin211/aimp_dotnet | ||
// | ||
// Copyright (c) 2014 - 2020 Evgeniy Bogdan | ||
// https://github.com/martin211/aimp_dotnet | ||
// | ||
// Mail: [email protected] | ||
// | ||
// ---------------------------------------------------- | ||
// Mail: [email protected] | ||
// ---------------------------------------------------- | ||
|
||
using System.Collections.Generic; | ||
using System.Windows; | ||
|
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,13 +1,11 @@ | ||
// ---------------------------------------------------- | ||
// ---------------------------------------------------- | ||
// AIMP DotNet SDK | ||
// | ||
// AIMP DotNet SDK | ||
// Copyright (c) 2014 - 2022 Evgeniy Bogdan | ||
// https://github.com/martin211/aimp_dotnet | ||
// | ||
// Copyright (c) 2014 - 2020 Evgeniy Bogdan | ||
// https://github.com/martin211/aimp_dotnet | ||
// | ||
// Mail: [email protected] | ||
// | ||
// ---------------------------------------------------- | ||
// Mail: [email protected] | ||
// ---------------------------------------------------- | ||
|
||
using System; | ||
using System.IO; | ||
|
14 changes: 6 additions & 8 deletions
14
src/Plugins/dotnet_CustomFileSystem/Properties/PluginAssemblyInfo.cs
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,13 +1,11 @@ | ||
// ---------------------------------------------------- | ||
// ---------------------------------------------------- | ||
// AIMP DotNet SDK | ||
// | ||
// AIMP DotNet SDK | ||
// Copyright (c) 2014 - 2022 Evgeniy Bogdan | ||
// https://github.com/martin211/aimp_dotnet | ||
// | ||
// Copyright (c) 2014 - 2020 Evgeniy Bogdan | ||
// https://github.com/martin211/aimp_dotnet | ||
// | ||
// Mail: [email protected] | ||
// | ||
// ---------------------------------------------------- | ||
// Mail: [email protected] | ||
// ---------------------------------------------------- | ||
|
||
using System.Reflection; | ||
using System.Runtime.InteropServices; | ||
|
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,22 +1,19 @@ | ||
// ---------------------------------------------------- | ||
// ---------------------------------------------------- | ||
// AIMP DotNet SDK | ||
// | ||
// AIMP DotNet SDK | ||
// Copyright (c) 2014 - 2022 Evgeniy Bogdan | ||
// https://github.com/martin211/aimp_dotnet | ||
// | ||
// Copyright (c) 2014 - 2020 Evgeniy Bogdan | ||
// https://github.com/martin211/aimp_dotnet | ||
// | ||
// Mail: [email protected] | ||
// | ||
// ---------------------------------------------------- | ||
// Mail: [email protected] | ||
// ---------------------------------------------------- | ||
|
||
using System; | ||
using AIMP.SDK; | ||
using AIMP.SDK.Options; | ||
using AIMP.SDK.Player; | ||
|
||
namespace dotnet_ExtendDialogWindow | ||
{ | ||
public class OptionsFrame : IAimpOptionsDialogFrame, IAimpOptionsDialogFrameKeyboardHelper, IDisposable | ||
public class OptionsFrame : IAimpOptionsDialogFrame, IAimpOptionsDialogFrameKeyboardHelper2, IDisposable | ||
{ | ||
private IAimpPlayer _player; | ||
private SettingsForm _settingsForm; | ||
|
@@ -58,9 +55,14 @@ public bool SelectFirstControl() | |
return true; | ||
} | ||
|
||
public bool SelectNextControl(int findForward, int isTabKeyAction) | ||
public bool SelectNextControl(bool findForward, bool isTabKeyAction) | ||
{ | ||
return true; | ||
throw new NotImplementedException(); | ||
} | ||
|
||
public bool SelectLastControl() | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
|
||
public void Dispose() | ||
|
Oops, something went wrong.