├── FluidNGPermissionGranter ├── App.xaml.cs ├── Resources │ ├── allow.png │ ├── connect.png │ └── fnglogo.png ├── packages.config ├── App.config ├── Properties │ ├── Settings.settings │ ├── Settings.Designer.cs │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── App.xaml ├── AuthorizeWindow.xaml.cs ├── ConnectGuideWindow.xaml.cs ├── DoneWindow.xaml.cs ├── ConnectGuideWindow.xaml ├── AuthorizeWindow.xaml ├── DoneWindow.xaml ├── IconHelper.cs ├── MainWindow.xaml ├── ADBGuide.xaml.cs ├── ADBGuide.xaml ├── FluidNGPermissionGranter.csproj └── MainWindow.xaml.cs ├── .whitesource ├── FluidNGPermissionGranter.sln ├── README.md ├── .gitignore └── LICENSE /FluidNGPermissionGranter/App.xaml.cs: -------------------------------------------------------------------------------- 1 | namespace FluidNGPermissionGranter 2 | { 3 | public partial class App 4 | { 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /FluidNGPermissionGranter/Resources/allow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubzer/FluidNGPermissionGranter/HEAD/FluidNGPermissionGranter/Resources/allow.png -------------------------------------------------------------------------------- /FluidNGPermissionGranter/Resources/connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubzer/FluidNGPermissionGranter/HEAD/FluidNGPermissionGranter/Resources/connect.png -------------------------------------------------------------------------------- /FluidNGPermissionGranter/Resources/fnglogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dubzer/FluidNGPermissionGranter/HEAD/FluidNGPermissionGranter/Resources/fnglogo.png -------------------------------------------------------------------------------- /FluidNGPermissionGranter/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /FluidNGPermissionGranter/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /FluidNGPermissionGranter/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /.whitesource: -------------------------------------------------------------------------------- 1 | ########################################################## 2 | #### WhiteSource "Bolt for Github" configuration file #### 3 | ########################################################## 4 | 5 | # Configuration # 6 | #---------------# 7 | ws.repo.scan=true 8 | vulnerable.check.run.conclusion.level=failure 9 | -------------------------------------------------------------------------------- /FluidNGPermissionGranter/App.xaml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /FluidNGPermissionGranter/AuthorizeWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace FluidNGPermissionGranter 4 | { 5 | public partial class AuthorizeWindow 6 | { 7 | public AuthorizeWindow() 8 | { 9 | InitializeComponent(); 10 | } 11 | 12 | private void Window_SourceInitialized(object sender, EventArgs e) 13 | { 14 | IconHelper.RemoveIcon(this); 15 | } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /FluidNGPermissionGranter/ConnectGuideWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace FluidNGPermissionGranter 4 | { 5 | /// 6 | /// Логика взаимодействия для ConnectGuide.xaml 7 | /// 8 | public partial class ConnectGuide 9 | { 10 | public ConnectGuide() 11 | { 12 | InitializeComponent(); 13 | } 14 | private void Window_SourceInitialized(object sender, System.EventArgs e) 15 | { 16 | IconHelper.RemoveIcon(this); 17 | } 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /FluidNGPermissionGranter/DoneWindow.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Windows; 3 | 4 | namespace FluidNGPermissionGranter 5 | { 6 | 7 | public partial class DoneWindow 8 | { 9 | public DoneWindow() 10 | { 11 | InitializeComponent(); 12 | } 13 | private void Window_SourceInitialized(object sender, EventArgs e) 14 | { 15 | IconHelper.RemoveIcon(this); 16 | } 17 | 18 | private void Window_Closing(object sender, System.ComponentModel.CancelEventArgs e) 19 | { 20 | MainWindow.StopApplication(); 21 | } 22 | 23 | private void Button_Click(object sender, RoutedEventArgs e) 24 | { 25 | MainWindow.StopApplication(); 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /FluidNGPermissionGranter/ConnectGuideWindow.xaml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /FluidNGPermissionGranter/AuthorizeWindow.xaml: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 16 | 17 | -------------------------------------------------------------------------------- /FluidNGPermissionGranter/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace FluidNGPermissionGranter.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /FluidNGPermissionGranter.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.28010.2050 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FluidNGPermissionGranter", "FluidNGPermissionGranter\FluidNGPermissionGranter.csproj", "{F4ACF5AD-DE73-4784-815A-B1A7ADA3AF4A}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {F4ACF5AD-DE73-4784-815A-B1A7ADA3AF4A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {F4ACF5AD-DE73-4784-815A-B1A7ADA3AF4A}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {F4ACF5AD-DE73-4784-815A-B1A7ADA3AF4A}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {F4ACF5AD-DE73-4784-815A-B1A7ADA3AF4A}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {72BE1FA2-9B99-460A-B011-D1F641518E3B} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /FluidNGPermissionGranter/DoneWindow.xaml: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 |