Merge branch 'develop' into feature/DatabaseJobs
# Conflicts: # Discord Media Loader.Application/Classes/Core.cs # Discord Media Loader.Application/Classes/JobScheduler.cs # Discord Media Loader.Application/Classes/Settings.cs
This commit is contained in:
commit
f29e9e2b8a
|
@ -8,8 +8,4 @@
|
||||||
<PackageReference Include="Discord.Net" Version="1.0.2" />
|
<PackageReference Include="Discord.Net" Version="1.0.2" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<ProjectReference Include="..\..\SweetLib\SweetLib\SweetLib.csproj" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
@ -22,4 +22,4 @@ namespace DML.Client
|
||||||
return Client.LoginState == LoginState.LoggedIn && Client.ConnectionState == ConnectionState.Connected;
|
return Client.LoginState == LoginState.LoggedIn && Client.ConnectionState == ConnectionState.Connected;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,11 +1,5 @@
|
||||||
using System;
|
using Discord;
|
||||||
using System.Globalization;
|
using Discord.Net;
|
||||||
using System.IO;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Runtime;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
using System.Windows.Forms;
|
|
||||||
using Discord;
|
|
||||||
using Discord.WebSocket;
|
using Discord.WebSocket;
|
||||||
using DML.AppCore.Classes;
|
using DML.AppCore.Classes;
|
||||||
using DML.Application.Classes.RPC;
|
using DML.Application.Classes.RPC;
|
||||||
|
@ -17,6 +11,13 @@ using SharpRaven.Data;
|
||||||
using SweetLib.Utils;
|
using SweetLib.Utils;
|
||||||
using SweetLib.Utils.Logger;
|
using SweetLib.Utils.Logger;
|
||||||
using SweetLib.Utils.Logger.Memory;
|
using SweetLib.Utils.Logger.Memory;
|
||||||
|
using System;
|
||||||
|
using System.Globalization;
|
||||||
|
using System.IO;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Runtime;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using System.Windows.Forms;
|
||||||
using Logger = SweetLib.Utils.Logger.Logger;
|
using Logger = SweetLib.Utils.Logger.Logger;
|
||||||
|
|
||||||
namespace DML.Application.Classes
|
namespace DML.Application.Classes
|
||||||
|
@ -86,7 +87,6 @@ namespace DML.Application.Classes
|
||||||
Logger.Trace("Created log folder.");
|
Logger.Trace("Created log folder.");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
var logFile = Path.Combine(logFolder,
|
var logFile = Path.Combine(logFolder,
|
||||||
SweetUtils.LegalizeFilename($"{DateTime.Now.ToString(CultureInfo.CurrentCulture.DateTimeFormat.SortableDateTimePattern)}.log.zip"));
|
SweetUtils.LegalizeFilename($"{DateTime.Now.ToString(CultureInfo.CurrentCulture.DateTimeFormat.SortableDateTimePattern)}.log.zip"));
|
||||||
|
|
||||||
|
@ -95,12 +95,12 @@ namespace DML.Application.Classes
|
||||||
logMemory.ArchiveFile = logFile;
|
logMemory.ArchiveFile = logFile;
|
||||||
}
|
}
|
||||||
|
|
||||||
Logger.Debug("Loading database...");
|
var databasePath = Path.Combine(DataDirectory, "config.db");
|
||||||
#if DEBUG
|
#if DEBUG
|
||||||
Database = new LiteDatabase(Path.Combine(DataDirectory, "config.debug.db"));
|
databasePath = Path.Combine(DataDirectory, "config.debug.db");
|
||||||
Database.Log.Logging += (message) => Logger.Trace($"LiteDB: {message}");
|
#endif
|
||||||
#else
|
Logger.Debug("Loading database...");
|
||||||
Database = new LiteDatabase(Path.Combine(DataDirectory, "config.db"));
|
Database = new LiteDatabase(databasePath);
|
||||||
Database.Log.Logging += (message) => Logger.Trace($"LiteDB: {message}");
|
Database.Log.Logging += (message) => Logger.Trace($"LiteDB: {message}");
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -118,6 +118,18 @@ namespace DML.Application.Classes
|
||||||
Settings.Store();
|
Settings.Store();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (Settings.ShowStartUpHints)
|
||||||
|
{
|
||||||
|
if (MessageBox.Show(splash, "This tool is considered as a selfbot which may violate the Discord TOS. By using this tool you take the risk to get your account banned. Although this never happened yet (as far as I know) you have to confirm to this.\n\r\n\rDo you wish to continue?", "HOLD UP!!", MessageBoxButtons.YesNo) != DialogResult.Yes)
|
||||||
|
{
|
||||||
|
splash.Close();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
Settings.ShowStartUpHints = false;
|
||||||
|
Settings.Store();
|
||||||
|
}
|
||||||
|
|
||||||
Logger.Debug("Loading jobs collection out of database...");
|
Logger.Debug("Loading jobs collection out of database...");
|
||||||
Scheduler.JobList = Job.RestoreJobs().ToList();
|
Scheduler.JobList = Job.RestoreJobs().ToList();
|
||||||
|
|
||||||
|
@ -173,7 +185,6 @@ namespace DML.Application.Classes
|
||||||
|
|
||||||
|
|
||||||
Logger.Info("Trying to log into discord...");
|
Logger.Info("Trying to log into discord...");
|
||||||
var abort = false;
|
|
||||||
|
|
||||||
DMLClient.Client.Connected += Client_Connected;
|
DMLClient.Client.Connected += Client_Connected;
|
||||||
|
|
||||||
|
@ -181,17 +192,28 @@ namespace DML.Application.Classes
|
||||||
|
|
||||||
while (!loggedIn)
|
while (!loggedIn)
|
||||||
{
|
{
|
||||||
if (!string.IsNullOrEmpty(Settings.LoginToken))
|
try
|
||||||
{
|
{
|
||||||
Logger.Debug("Trying to login with last known token...");
|
if (!string.IsNullOrEmpty(Settings.LoginToken))
|
||||||
loggedIn = await DMLClient.Login(Settings.LoginToken);
|
{
|
||||||
|
Logger.Debug("Trying to login with last known token...");
|
||||||
|
loggedIn = await DMLClient.Login(Settings.LoginToken);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
catch (HttpException)
|
||||||
|
{
|
||||||
|
Logger.Warn("HTTPException occured during login. Probably from login token.");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!loggedIn)
|
if (!loggedIn)
|
||||||
{
|
{
|
||||||
Logger.Debug("Showing dialog for username and password...");
|
Logger.Debug("Showing dialog for username and password...");
|
||||||
var loginDlg = new LoginDialog();
|
var loginDlg = new LoginDialog();
|
||||||
loginDlg.ShowDialog();
|
if (loginDlg.ShowDialog() != DialogResult.OK)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -210,12 +232,16 @@ namespace DML.Application.Classes
|
||||||
var isError = false;
|
var isError = false;
|
||||||
var guild = FindServerById(job.GuildId);
|
var guild = FindServerById(job.GuildId);
|
||||||
if (guild == null)
|
if (guild == null)
|
||||||
|
{
|
||||||
isError = true;
|
isError = true;
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
var channel = FindChannelById(guild, job.ChannelId);
|
var channel = FindChannelById(guild, job.ChannelId);
|
||||||
if (channel == null)
|
if (channel == null)
|
||||||
|
{
|
||||||
isError = true;
|
isError = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isError)
|
if (isError)
|
||||||
|
@ -281,9 +307,11 @@ namespace DML.Application.Classes
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
Logger.Error($"{ex.Message} occured at: {ex.StackTrace}");
|
Logger.Error($"{ex.Message} [{ex.GetType().Name}] occured at: {ex.StackTrace}");
|
||||||
if (MessageBox.Show($"An error occured while running Discord Media Loader:\n{ex.GetType().Name}: {ex.Message}\n\nDo you aggree to sending the error report to the creator of the tool?", "Discord Media Loader", MessageBoxButtons.YesNo) == DialogResult.Yes)
|
if (MessageBox.Show($"An error occured while running Discord Media Loader:\n{ex.GetType().Name}: {ex.Message}\n\nDo you aggree to sending the error report to the creator of the tool?", "Discord Media Loader", MessageBoxButtons.YesNo) == DialogResult.Yes)
|
||||||
|
{
|
||||||
Raven.Capture(new SentryEvent(ex));
|
Raven.Capture(new SentryEvent(ex));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -15,6 +15,7 @@ namespace DML.Application.Classes
|
||||||
public string FileNameScheme { get; set; } = @"%guild%\%channel%\%id%";
|
public string FileNameScheme { get; set; } = @"%guild%\%channel%\%id%";
|
||||||
public bool SkipExistingFiles { get; set; } = true;
|
public bool SkipExistingFiles { get; set; } = true;
|
||||||
public int ThreadLimit { get; set; } = 50;
|
public int ThreadLimit { get; set; } = 50;
|
||||||
|
public bool ShowStartUpHints { get; set; } = true;
|
||||||
public bool RescanRequired { get; set; } = true;
|
public bool RescanRequired { get; set; } = true;
|
||||||
public bool UseRPC { get; set; } = false;
|
public bool UseRPC { get; set; } = false;
|
||||||
|
|
||||||
|
|
|
@ -61,6 +61,9 @@
|
||||||
<Reference Include="Microsoft.Win32.Primitives, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
<Reference Include="Microsoft.Win32.Primitives, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\Microsoft.Win32.Primitives.4.3.0\lib\net46\Microsoft.Win32.Primitives.dll</HintPath>
|
<HintPath>..\packages\Microsoft.Win32.Primitives.4.3.0\lib\net46\Microsoft.Win32.Primitives.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
|
<Reference Include="Microsoft.Win32.Registry, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\packages\Microsoft.Win32.Registry.4.3.0\lib\net46\Microsoft.Win32.Registry.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
<Reference Include="Newtonsoft.Json, Version=10.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
|
<Reference Include="Newtonsoft.Json, Version=10.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\Newtonsoft.Json.10.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
|
<HintPath>..\packages\Newtonsoft.Json.10.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
|
@ -83,6 +86,9 @@
|
||||||
<Reference Include="SharpRaven, Version=2.2.0.0, Culture=neutral, processorArchitecture=MSIL">
|
<Reference Include="SharpRaven, Version=2.2.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\SharpRaven.2.2.0\lib\net45\SharpRaven.dll</HintPath>
|
<HintPath>..\packages\SharpRaven.2.2.0\lib\net45\SharpRaven.dll</HintPath>
|
||||||
</Reference>
|
</Reference>
|
||||||
|
<Reference Include="SweetLib, Version=0.2.1.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\packages\SweetLib.0.2.1-alpha\lib\netstandard1.3\SweetLib.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
<Reference Include="System" />
|
<Reference Include="System" />
|
||||||
<Reference Include="System.AppContext, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
<Reference Include="System.AppContext, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\System.AppContext.4.3.0\lib\net46\System.AppContext.dll</HintPath>
|
<HintPath>..\packages\System.AppContext.4.3.0\lib\net46\System.AppContext.dll</HintPath>
|
||||||
|
@ -177,6 +183,7 @@
|
||||||
<Compile Include="FrmInternalSplash.Designer.cs">
|
<Compile Include="FrmInternalSplash.Designer.cs">
|
||||||
<DependentUpon>FrmInternalSplash.cs</DependentUpon>
|
<DependentUpon>FrmInternalSplash.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
<Compile Include="Helper\IdentifiedString.cs" />
|
||||||
<Compile Include="MainForm.cs">
|
<Compile Include="MainForm.cs">
|
||||||
<SubType>Form</SubType>
|
<SubType>Form</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
|
@ -211,10 +218,6 @@
|
||||||
<None Include="packages.config" />
|
<None Include="packages.config" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\..\SweetLib\SweetLib\SweetLib.csproj">
|
|
||||||
<Project>{02c1f8ef-32f2-4e77-a36d-79129402af37}</Project>
|
|
||||||
<Name>SweetLib</Name>
|
|
||||||
</ProjectReference>
|
|
||||||
<ProjectReference Include="..\DML.Client\DML.Client.csproj">
|
<ProjectReference Include="..\DML.Client\DML.Client.csproj">
|
||||||
<Project>{045eb4a1-34e7-47e0-867e-e10c40505095}</Project>
|
<Project>{045eb4a1-34e7-47e0-867e-e10c40505095}</Project>
|
||||||
<Name>DML.Client</Name>
|
<Name>DML.Client</Name>
|
||||||
|
|
|
@ -44,7 +44,7 @@
|
||||||
this.pnlButtons.Controls.Add(this.btnAbort);
|
this.pnlButtons.Controls.Add(this.btnAbort);
|
||||||
this.pnlButtons.Controls.Add(this.btnOk);
|
this.pnlButtons.Controls.Add(this.btnOk);
|
||||||
this.pnlButtons.Dock = System.Windows.Forms.DockStyle.Bottom;
|
this.pnlButtons.Dock = System.Windows.Forms.DockStyle.Bottom;
|
||||||
this.pnlButtons.Location = new System.Drawing.Point(0, 168);
|
this.pnlButtons.Location = new System.Drawing.Point(0, 189);
|
||||||
this.pnlButtons.Name = "pnlButtons";
|
this.pnlButtons.Name = "pnlButtons";
|
||||||
this.pnlButtons.Size = new System.Drawing.Size(426, 51);
|
this.pnlButtons.Size = new System.Drawing.Size(426, 51);
|
||||||
this.pnlButtons.TabIndex = 0;
|
this.pnlButtons.TabIndex = 0;
|
||||||
|
@ -71,9 +71,11 @@
|
||||||
//
|
//
|
||||||
// lbHowToToken
|
// lbHowToToken
|
||||||
//
|
//
|
||||||
|
this.lbHowToToken.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
||||||
|
| System.Windows.Forms.AnchorStyles.Left)));
|
||||||
this.lbHowToToken.Location = new System.Drawing.Point(7, 58);
|
this.lbHowToToken.Location = new System.Drawing.Point(7, 58);
|
||||||
this.lbHowToToken.Name = "lbHowToToken";
|
this.lbHowToToken.Name = "lbHowToToken";
|
||||||
this.lbHowToToken.Size = new System.Drawing.Size(412, 87);
|
this.lbHowToToken.Size = new System.Drawing.Size(412, 128);
|
||||||
this.lbHowToToken.TabIndex = 5;
|
this.lbHowToToken.TabIndex = 5;
|
||||||
this.lbHowToToken.Text = resources.GetString("lbHowToToken.Text");
|
this.lbHowToToken.Text = resources.GetString("lbHowToToken.Text");
|
||||||
//
|
//
|
||||||
|
@ -97,7 +99,7 @@
|
||||||
//
|
//
|
||||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||||
this.ClientSize = new System.Drawing.Size(426, 219);
|
this.ClientSize = new System.Drawing.Size(426, 240);
|
||||||
this.Controls.Add(this.lbHowToToken);
|
this.Controls.Add(this.lbHowToToken);
|
||||||
this.Controls.Add(this.edToken);
|
this.Controls.Add(this.edToken);
|
||||||
this.Controls.Add(this.lbToken);
|
this.Controls.Add(this.lbToken);
|
||||||
|
|
|
@ -120,7 +120,9 @@
|
||||||
<data name="lbHowToToken.Text" xml:space="preserve">
|
<data name="lbHowToToken.Text" xml:space="preserve">
|
||||||
<value>To find your login token please start Discord and press Ctrl + Shift + I shortcut. A browser inspector will open.
|
<value>To find your login token please start Discord and press Ctrl + Shift + I shortcut. A browser inspector will open.
|
||||||
Navigate into the "Application" tab and select "Local Storage" / "https://discordapp.com". If the right site keeps blank use "Session Storage" instead.
|
Navigate into the "Application" tab and select "Local Storage" / "https://discordapp.com". If the right site keeps blank use "Session Storage" instead.
|
||||||
Look for the token key and copy its value without the quotation marks.</value>
|
Look for the token key and copy its value without the quotation marks.
|
||||||
|
|
||||||
|
IF YOU CANNOT FIND YOUR TOKEN you can try pressing Ctrl + R while having the inspector open. While reloading you still should be able to grab the token. It may disappear after discord has finished loading.</value>
|
||||||
</data>
|
</data>
|
||||||
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
|
||||||
<data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
<data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
|
22
Discord Media Loader.Application/Helper/IdentifiedString.cs
Normal file
22
Discord Media Loader.Application/Helper/IdentifiedString.cs
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace DML.Application.Helper
|
||||||
|
{
|
||||||
|
internal class IdentifiedString<T>
|
||||||
|
{
|
||||||
|
internal T Id { get; set; }
|
||||||
|
internal string Caption { get; set; }
|
||||||
|
|
||||||
|
internal IdentifiedString(T id, string caption)
|
||||||
|
{
|
||||||
|
Id = id;
|
||||||
|
Caption = caption;
|
||||||
|
}
|
||||||
|
|
||||||
|
public override string ToString() => Caption;
|
||||||
|
}
|
||||||
|
}
|
116
Discord Media Loader.Application/MainForm.Designer.cs
generated
116
Discord Media Loader.Application/MainForm.Designer.cs
generated
|
@ -46,6 +46,11 @@
|
||||||
this.cbGuild = new System.Windows.Forms.ComboBox();
|
this.cbGuild = new System.Windows.Forms.ComboBox();
|
||||||
this.lbGuild = new System.Windows.Forms.Label();
|
this.lbGuild = new System.Windows.Forms.Label();
|
||||||
this.statusStrip = new System.Windows.Forms.StatusStrip();
|
this.statusStrip = new System.Windows.Forms.StatusStrip();
|
||||||
|
this.lbStatus = new System.Windows.Forms.ToolStripDropDownButton();
|
||||||
|
this.invisibleToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||||
|
this.doNotDisturbToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||||
|
this.doNotDenyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||||
|
this.onlineToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||||
this.pgbProgress = new System.Windows.Forms.ToolStripProgressBar();
|
this.pgbProgress = new System.Windows.Forms.ToolStripProgressBar();
|
||||||
this.lbProgress = new System.Windows.Forms.ToolStripStatusLabel();
|
this.lbProgress = new System.Windows.Forms.ToolStripStatusLabel();
|
||||||
this.lblVersionPlaceholder = new System.Windows.Forms.ToolStripStatusLabel();
|
this.lblVersionPlaceholder = new System.Windows.Forms.ToolStripStatusLabel();
|
||||||
|
@ -57,12 +62,9 @@
|
||||||
this.btnDelete = new System.Windows.Forms.Button();
|
this.btnDelete = new System.Windows.Forms.Button();
|
||||||
this.lbxJobs = new System.Windows.Forms.ListBox();
|
this.lbxJobs = new System.Windows.Forms.ListBox();
|
||||||
this.tmrRefreshProgress = new System.Windows.Forms.Timer(this.components);
|
this.tmrRefreshProgress = new System.Windows.Forms.Timer(this.components);
|
||||||
this.lbStatus = new System.Windows.Forms.ToolStripDropDownButton();
|
|
||||||
this.onlineToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
||||||
this.doNotDenyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
||||||
this.doNotDisturbToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
||||||
this.invisibleToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
||||||
this.tmrTriggerRefresh = new System.Windows.Forms.Timer(this.components);
|
this.tmrTriggerRefresh = new System.Windows.Forms.Timer(this.components);
|
||||||
|
this.showTokenToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||||
|
this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
|
||||||
this.pnlSettings.SuspendLayout();
|
this.pnlSettings.SuspendLayout();
|
||||||
((System.ComponentModel.ISupportInitialize)(this.edThreadLimit)).BeginInit();
|
((System.ComponentModel.ISupportInitialize)(this.edThreadLimit)).BeginInit();
|
||||||
this.groupBox1.SuspendLayout();
|
this.groupBox1.SuspendLayout();
|
||||||
|
@ -254,6 +256,45 @@
|
||||||
this.statusStrip.TabIndex = 2;
|
this.statusStrip.TabIndex = 2;
|
||||||
this.statusStrip.Text = "statusStrip1";
|
this.statusStrip.Text = "statusStrip1";
|
||||||
//
|
//
|
||||||
|
// lbStatus
|
||||||
|
//
|
||||||
|
this.lbStatus.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||||
|
this.invisibleToolStripMenuItem,
|
||||||
|
this.doNotDisturbToolStripMenuItem,
|
||||||
|
this.doNotDenyToolStripMenuItem,
|
||||||
|
this.onlineToolStripMenuItem});
|
||||||
|
this.lbStatus.Name = "lbStatus";
|
||||||
|
this.lbStatus.Size = new System.Drawing.Size(13, 20);
|
||||||
|
this.lbStatus.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.toolStripDropDownButton1_DropDownItemClicked);
|
||||||
|
//
|
||||||
|
// invisibleToolStripMenuItem
|
||||||
|
//
|
||||||
|
this.invisibleToolStripMenuItem.Name = "invisibleToolStripMenuItem";
|
||||||
|
this.invisibleToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
||||||
|
this.invisibleToolStripMenuItem.Tag = "3";
|
||||||
|
this.invisibleToolStripMenuItem.Text = "Invisible";
|
||||||
|
//
|
||||||
|
// doNotDisturbToolStripMenuItem
|
||||||
|
//
|
||||||
|
this.doNotDisturbToolStripMenuItem.Name = "doNotDisturbToolStripMenuItem";
|
||||||
|
this.doNotDisturbToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
||||||
|
this.doNotDisturbToolStripMenuItem.Tag = "2";
|
||||||
|
this.doNotDisturbToolStripMenuItem.Text = "Do not disturb";
|
||||||
|
//
|
||||||
|
// doNotDenyToolStripMenuItem
|
||||||
|
//
|
||||||
|
this.doNotDenyToolStripMenuItem.Name = "doNotDenyToolStripMenuItem";
|
||||||
|
this.doNotDenyToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
||||||
|
this.doNotDenyToolStripMenuItem.Tag = "1";
|
||||||
|
this.doNotDenyToolStripMenuItem.Text = "Idle";
|
||||||
|
//
|
||||||
|
// onlineToolStripMenuItem
|
||||||
|
//
|
||||||
|
this.onlineToolStripMenuItem.Name = "onlineToolStripMenuItem";
|
||||||
|
this.onlineToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
||||||
|
this.onlineToolStripMenuItem.Tag = "0";
|
||||||
|
this.onlineToolStripMenuItem.Text = "Online";
|
||||||
|
//
|
||||||
// pgbProgress
|
// pgbProgress
|
||||||
//
|
//
|
||||||
this.pgbProgress.Name = "pgbProgress";
|
this.pgbProgress.Name = "pgbProgress";
|
||||||
|
@ -267,19 +308,21 @@
|
||||||
// lblVersionPlaceholder
|
// lblVersionPlaceholder
|
||||||
//
|
//
|
||||||
this.lblVersionPlaceholder.Name = "lblVersionPlaceholder";
|
this.lblVersionPlaceholder.Name = "lblVersionPlaceholder";
|
||||||
this.lblVersionPlaceholder.Size = new System.Drawing.Size(426, 17);
|
this.lblVersionPlaceholder.Size = new System.Drawing.Size(459, 17);
|
||||||
this.lblVersionPlaceholder.Spring = true;
|
this.lblVersionPlaceholder.Spring = true;
|
||||||
//
|
//
|
||||||
// lbVersion
|
// lbVersion
|
||||||
//
|
//
|
||||||
this.lbVersion.Name = "lbVersion";
|
this.lbVersion.Name = "lbVersion";
|
||||||
this.lbVersion.Size = new System.Drawing.Size(118, 17);
|
this.lbVersion.Size = new System.Drawing.Size(54, 17);
|
||||||
this.lbVersion.Text = "v https://github.com";
|
this.lbVersion.Text = "VERSION";
|
||||||
//
|
//
|
||||||
// btnDropDown
|
// btnDropDown
|
||||||
//
|
//
|
||||||
this.btnDropDown.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
this.btnDropDown.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
|
||||||
this.btnDropDown.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
this.btnDropDown.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||||
|
this.showTokenToolStripMenuItem,
|
||||||
|
this.toolStripSeparator2,
|
||||||
this.visitGithubToolStripMenuItem,
|
this.visitGithubToolStripMenuItem,
|
||||||
this.aboutToolStripMenuItem});
|
this.aboutToolStripMenuItem});
|
||||||
this.btnDropDown.ImageTransparentColor = System.Drawing.Color.Magenta;
|
this.btnDropDown.ImageTransparentColor = System.Drawing.Color.Magenta;
|
||||||
|
@ -290,14 +333,14 @@
|
||||||
// visitGithubToolStripMenuItem
|
// visitGithubToolStripMenuItem
|
||||||
//
|
//
|
||||||
this.visitGithubToolStripMenuItem.Name = "visitGithubToolStripMenuItem";
|
this.visitGithubToolStripMenuItem.Name = "visitGithubToolStripMenuItem";
|
||||||
this.visitGithubToolStripMenuItem.Size = new System.Drawing.Size(135, 22);
|
this.visitGithubToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
||||||
this.visitGithubToolStripMenuItem.Text = "Visit Github";
|
this.visitGithubToolStripMenuItem.Text = "Visit Github";
|
||||||
this.visitGithubToolStripMenuItem.Click += new System.EventHandler(this.visitGithubToolStripMenuItem_Click);
|
this.visitGithubToolStripMenuItem.Click += new System.EventHandler(this.visitGithubToolStripMenuItem_Click);
|
||||||
//
|
//
|
||||||
// aboutToolStripMenuItem
|
// aboutToolStripMenuItem
|
||||||
//
|
//
|
||||||
this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
|
this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
|
||||||
this.aboutToolStripMenuItem.Size = new System.Drawing.Size(135, 22);
|
this.aboutToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
||||||
this.aboutToolStripMenuItem.Text = "About";
|
this.aboutToolStripMenuItem.Text = "About";
|
||||||
this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
|
this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
|
||||||
//
|
//
|
||||||
|
@ -341,50 +384,23 @@
|
||||||
this.tmrRefreshProgress.Interval = 500;
|
this.tmrRefreshProgress.Interval = 500;
|
||||||
this.tmrRefreshProgress.Tick += new System.EventHandler(this.tmrRefreshProgress_Tick);
|
this.tmrRefreshProgress.Tick += new System.EventHandler(this.tmrRefreshProgress_Tick);
|
||||||
//
|
//
|
||||||
// lbStatus
|
|
||||||
//
|
|
||||||
this.lbStatus.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
||||||
this.invisibleToolStripMenuItem,
|
|
||||||
this.doNotDisturbToolStripMenuItem,
|
|
||||||
this.doNotDenyToolStripMenuItem,
|
|
||||||
this.onlineToolStripMenuItem});
|
|
||||||
this.lbStatus.Name = "lbStatus";
|
|
||||||
this.lbStatus.Size = new System.Drawing.Size(13, 20);
|
|
||||||
this.lbStatus.DropDownItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.toolStripDropDownButton1_DropDownItemClicked);
|
|
||||||
//
|
|
||||||
// onlineToolStripMenuItem
|
|
||||||
//
|
|
||||||
this.onlineToolStripMenuItem.Name = "onlineToolStripMenuItem";
|
|
||||||
this.onlineToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
|
|
||||||
this.onlineToolStripMenuItem.Tag = "0";
|
|
||||||
this.onlineToolStripMenuItem.Text = "Online";
|
|
||||||
//
|
|
||||||
// doNotDenyToolStripMenuItem
|
|
||||||
//
|
|
||||||
this.doNotDenyToolStripMenuItem.Name = "doNotDenyToolStripMenuItem";
|
|
||||||
this.doNotDenyToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
|
|
||||||
this.doNotDenyToolStripMenuItem.Tag = "1";
|
|
||||||
this.doNotDenyToolStripMenuItem.Text = "Idle";
|
|
||||||
//
|
|
||||||
// doNotDisturbToolStripMenuItem
|
|
||||||
//
|
|
||||||
this.doNotDisturbToolStripMenuItem.Name = "doNotDisturbToolStripMenuItem";
|
|
||||||
this.doNotDisturbToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
|
|
||||||
this.doNotDisturbToolStripMenuItem.Tag = "2";
|
|
||||||
this.doNotDisturbToolStripMenuItem.Text = "Do not disturb";
|
|
||||||
//
|
|
||||||
// invisibleToolStripMenuItem
|
|
||||||
//
|
|
||||||
this.invisibleToolStripMenuItem.Name = "invisibleToolStripMenuItem";
|
|
||||||
this.invisibleToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
|
|
||||||
this.invisibleToolStripMenuItem.Tag = "3";
|
|
||||||
this.invisibleToolStripMenuItem.Text = "Invisible";
|
|
||||||
//
|
|
||||||
// tmrTriggerRefresh
|
// tmrTriggerRefresh
|
||||||
//
|
//
|
||||||
this.tmrTriggerRefresh.Interval = 5000;
|
this.tmrTriggerRefresh.Interval = 5000;
|
||||||
this.tmrTriggerRefresh.Tick += new System.EventHandler(this.tmrTriggerRefresh_Tick);
|
this.tmrTriggerRefresh.Tick += new System.EventHandler(this.tmrTriggerRefresh_Tick);
|
||||||
//
|
//
|
||||||
|
// showTokenToolStripMenuItem
|
||||||
|
//
|
||||||
|
this.showTokenToolStripMenuItem.Name = "showTokenToolStripMenuItem";
|
||||||
|
this.showTokenToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
||||||
|
this.showTokenToolStripMenuItem.Text = "Copy login token";
|
||||||
|
this.showTokenToolStripMenuItem.Click += new System.EventHandler(this.showTokenToolStripMenuItem_Click);
|
||||||
|
//
|
||||||
|
// toolStripSeparator2
|
||||||
|
//
|
||||||
|
this.toolStripSeparator2.Name = "toolStripSeparator2";
|
||||||
|
this.toolStripSeparator2.Size = new System.Drawing.Size(177, 6);
|
||||||
|
//
|
||||||
// MainForm
|
// MainForm
|
||||||
//
|
//
|
||||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||||
|
@ -448,5 +464,7 @@
|
||||||
private System.Windows.Forms.ToolStripMenuItem doNotDenyToolStripMenuItem;
|
private System.Windows.Forms.ToolStripMenuItem doNotDenyToolStripMenuItem;
|
||||||
private System.Windows.Forms.ToolStripMenuItem onlineToolStripMenuItem;
|
private System.Windows.Forms.ToolStripMenuItem onlineToolStripMenuItem;
|
||||||
private System.Windows.Forms.Timer tmrTriggerRefresh;
|
private System.Windows.Forms.Timer tmrTriggerRefresh;
|
||||||
|
private System.Windows.Forms.ToolStripMenuItem showTokenToolStripMenuItem;
|
||||||
|
private System.Windows.Forms.ToolStripSeparator toolStripSeparator2;
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,4 +1,5 @@
|
||||||
using System;
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
|
@ -8,8 +9,10 @@ using Discord;
|
||||||
using Discord.WebSocket;
|
using Discord.WebSocket;
|
||||||
using DML.AppCore.Classes;
|
using DML.AppCore.Classes;
|
||||||
using DML.Application.Classes;
|
using DML.Application.Classes;
|
||||||
|
using DML.Application.Helper;
|
||||||
using DML.Application.Classes.RPC;
|
using DML.Application.Classes.RPC;
|
||||||
using DML.Client;
|
using DML.Client;
|
||||||
|
using static DML.Client.DMLClient;
|
||||||
using static SweetLib.Utils.Logger.Logger;
|
using static SweetLib.Utils.Logger.Logger;
|
||||||
|
|
||||||
namespace DML.Application
|
namespace DML.Application
|
||||||
|
@ -60,7 +63,9 @@ namespace DML.Application
|
||||||
if (cbGuild.Items.Count == 0)
|
if (cbGuild.Items.Count == 0)
|
||||||
{
|
{
|
||||||
Trace("Adding guilds to component...");
|
Trace("Adding guilds to component...");
|
||||||
cbGuild.Items.AddRange(DMLClient.Client.Guilds.OrderBy(g => g.Name).Select(g => g.Name).ToArray());
|
|
||||||
|
cbGuild.Items.AddRange(DMLClient.Client.Guilds.Where(g => g.Name != null).OrderBy(g => g.Name).Select(g => new IdentifiedString<ulong>(g.Id, g.Name)).ToArray());
|
||||||
|
|
||||||
cbGuild.SelectedIndex = 0;
|
cbGuild.SelectedIndex = 0;
|
||||||
Trace("Guild component initialized.");
|
Trace("Guild component initialized.");
|
||||||
}
|
}
|
||||||
|
@ -70,8 +75,7 @@ namespace DML.Application
|
||||||
lbxJobs.Items.Clear();
|
lbxJobs.Items.Clear();
|
||||||
foreach (var job in Core.Scheduler.JobList)
|
foreach (var job in Core.Scheduler.JobList)
|
||||||
{
|
{
|
||||||
lbxJobs.Items.Add(
|
lbxJobs.Items.Add(new IdentifiedString<int>(job.Id, $"{FindServerById(job.GuildId)?.Name}:{FindChannelById(FindServerById(job.GuildId), job.ChannelId)?.Name}"));
|
||||||
$"{FindServerById(job.GuildId)?.Name}:{FindChannelById(FindServerById(job.GuildId), job.ChannelId)?.Name}");
|
|
||||||
}
|
}
|
||||||
lbxJobs.SelectedIndex = oldIndex;
|
lbxJobs.SelectedIndex = oldIndex;
|
||||||
|
|
||||||
|
@ -156,7 +160,7 @@ namespace DML.Application
|
||||||
UseWaitCursor = true;
|
UseWaitCursor = true;
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var guild = FindServerByName(cbGuild.Text);
|
var guild = FindServerById(((IdentifiedString<ulong>)cbGuild.SelectedItem).Id);
|
||||||
|
|
||||||
if (guild != null)
|
if (guild != null)
|
||||||
{
|
{
|
||||||
|
@ -164,7 +168,9 @@ namespace DML.Application
|
||||||
cbChannel.Items.Clear();
|
cbChannel.Items.Clear();
|
||||||
|
|
||||||
Trace("Adding new channels...");
|
Trace("Adding new channels...");
|
||||||
cbChannel.Items.AddRange(guild.TextChannels.OrderBy(c => c.Position).Select(c => c.Name).ToArray());
|
|
||||||
|
cbChannel.Items.AddRange(guild.TextChannels.OrderBy(c => c.Position).Select(c => new IdentifiedString<ulong>(c.Id, c.Name)).ToArray());
|
||||||
|
|
||||||
Trace($"Added {cbChannel.Items.Count} channels.");
|
Trace($"Added {cbChannel.Items.Count} channels.");
|
||||||
|
|
||||||
cbChannel.SelectedIndex = 0;
|
cbChannel.SelectedIndex = 0;
|
||||||
|
@ -186,8 +192,8 @@ namespace DML.Application
|
||||||
{
|
{
|
||||||
var job = new Job
|
var job = new Job
|
||||||
{
|
{
|
||||||
GuildId = FindServerByName(cbGuild.Text).Id,
|
GuildId = ((IdentifiedString<ulong>)cbGuild.SelectedItem).Id,
|
||||||
ChannelId = FindChannelByName(FindServerByName(cbGuild.Text), cbChannel.Text).Id
|
ChannelId = ((IdentifiedString<ulong>)cbChannel.SelectedItem).Id
|
||||||
};
|
};
|
||||||
|
|
||||||
if (!(from j in Core.Scheduler.JobList
|
if (!(from j in Core.Scheduler.JobList
|
||||||
|
@ -211,28 +217,15 @@ namespace DML.Application
|
||||||
MessageBox.Show("No job has been seleted.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Warning);
|
MessageBox.Show("No job has been seleted.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Warning);
|
||||||
}
|
}
|
||||||
|
|
||||||
var jobNameData = lbxJobs.SelectedItem.ToString().Split(':');
|
var jobId = ((IdentifiedString<int>)lbxJobs.SelectedItem).Id;
|
||||||
|
|
||||||
var guildName = "";
|
var job = Core.Scheduler.JobList.FirstOrDefault(j => j.Id == jobId);
|
||||||
for (var i = 0; i < jobNameData.Length - 1; i++)
|
if (job != null)
|
||||||
guildName += jobNameData[i] + ":";
|
|
||||||
guildName = guildName.Substring(0, guildName.Length - 1);
|
|
||||||
|
|
||||||
var channelName = jobNameData[jobNameData.Length - 1];
|
|
||||||
|
|
||||||
var guild = FindServerByName(guildName);
|
|
||||||
var channel = FindChannelByName(guild, channelName);
|
|
||||||
|
|
||||||
foreach (var job in Core.Scheduler.JobList)
|
|
||||||
{
|
{
|
||||||
if (job.GuildId == guild.Id && job.ChannelId == channel.Id)
|
Core.Scheduler.JobList.Remove(job);
|
||||||
{
|
Core.Scheduler.RunningJobs.Remove(job.Id);
|
||||||
Core.Scheduler.JobList.Remove(job);
|
job.Stop();
|
||||||
Core.Scheduler.RunningJobs.Remove(job.Id);
|
job.Delete();
|
||||||
job.Stop();
|
|
||||||
job.Delete();
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
lbxJobs.SelectedIndex = -1;
|
lbxJobs.SelectedIndex = -1;
|
||||||
|
@ -304,5 +297,12 @@ namespace DML.Application
|
||||||
lbStatus.Text = DMLClient.Client.CurrentUser.Status.ToString();
|
lbStatus.Text = DMLClient.Client.CurrentUser.Status.ToString();
|
||||||
tmrTriggerRefresh.Stop();
|
tmrTriggerRefresh.Stop();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void showTokenToolStripMenuItem_Click(object sender, EventArgs e)
|
||||||
|
{
|
||||||
|
Clipboard.SetText(Core.Settings.LoginToken);
|
||||||
|
MessageBox.Show(this, "Your login token has been copied to your clipboard.", "Discord Media Loader",
|
||||||
|
MessageBoxButtons.OK);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,7 +9,7 @@ using System.Runtime.InteropServices;
|
||||||
[assembly: AssemblyConfiguration("")]
|
[assembly: AssemblyConfiguration("")]
|
||||||
[assembly: AssemblyCompany("Serraniel")]
|
[assembly: AssemblyCompany("Serraniel")]
|
||||||
[assembly: AssemblyProduct("Discord Media Loader.Application")]
|
[assembly: AssemblyProduct("Discord Media Loader.Application")]
|
||||||
[assembly: AssemblyCopyright("Copyright © 2017 - 2018 by Serraniel")]
|
[assembly: AssemblyCopyright("Copyright © 2017 - 2019 by Serraniel")]
|
||||||
[assembly: AssemblyTrademark("")]
|
[assembly: AssemblyTrademark("")]
|
||||||
[assembly: AssemblyCulture("")]
|
[assembly: AssemblyCulture("")]
|
||||||
|
|
||||||
|
@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
|
||||||
// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern
|
// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern
|
||||||
// übernehmen, indem Sie "*" eingeben:
|
// übernehmen, indem Sie "*" eingeben:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("1.1.0.0")]
|
[assembly: AssemblyVersion("1.2.1.0")]
|
||||||
[assembly: AssemblyFileVersion("1.1.0.0")]
|
[assembly: AssemblyFileVersion("1.2.1.0")]
|
||||||
|
|
|
@ -18,6 +18,22 @@
|
||||||
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
|
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-10.0.0.0" newVersion="10.0.0.0" />
|
<bindingRedirect oldVersion="0.0.0.0-10.0.0.0" newVersion="10.0.0.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity name="System.Console" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
|
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
|
||||||
|
</dependentAssembly>
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity name="System.IO.FileSystem" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
|
<bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
|
||||||
|
</dependentAssembly>
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity name="System.IO.Compression" publicKeyToken="b77a5c561934e089" culture="neutral" />
|
||||||
|
<bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0" />
|
||||||
|
</dependentAssembly>
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity name="Microsoft.Win32.Registry" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
|
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
|
||||||
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
</runtime>
|
</runtime>
|
||||||
</configuration>
|
</configuration>
|
|
@ -11,11 +11,13 @@
|
||||||
<package id="Microsoft.Extensions.DependencyInjection.Abstractions" version="1.1.1" targetFramework="net461" />
|
<package id="Microsoft.Extensions.DependencyInjection.Abstractions" version="1.1.1" targetFramework="net461" />
|
||||||
<package id="Microsoft.NETCore.Platforms" version="1.1.0" targetFramework="net461" />
|
<package id="Microsoft.NETCore.Platforms" version="1.1.0" targetFramework="net461" />
|
||||||
<package id="Microsoft.Win32.Primitives" version="4.3.0" targetFramework="net461" />
|
<package id="Microsoft.Win32.Primitives" version="4.3.0" targetFramework="net461" />
|
||||||
|
<package id="Microsoft.Win32.Registry" version="4.3.0" targetFramework="net461" />
|
||||||
<package id="NETStandard.Library" version="1.6.1" targetFramework="net461" />
|
<package id="NETStandard.Library" version="1.6.1" targetFramework="net461" />
|
||||||
<package id="Newtonsoft.Json" version="10.0.2" targetFramework="net461" />
|
<package id="Newtonsoft.Json" version="10.0.2" targetFramework="net461" />
|
||||||
<package id="Nito.AsyncEx" version="3.0.1" targetFramework="net461" />
|
<package id="Nito.AsyncEx" version="3.0.1" targetFramework="net461" />
|
||||||
<package id="RestSharp" version="105.2.3" targetFramework="net461" />
|
<package id="RestSharp" version="105.2.3" targetFramework="net461" />
|
||||||
<package id="SharpRaven" version="2.2.0" targetFramework="net461" />
|
<package id="SharpRaven" version="2.2.0" targetFramework="net461" />
|
||||||
|
<package id="SweetLib" version="0.2.1-alpha" targetFramework="net461" />
|
||||||
<package id="System.AppContext" version="4.3.0" targetFramework="net461" />
|
<package id="System.AppContext" version="4.3.0" targetFramework="net461" />
|
||||||
<package id="System.Collections" version="4.3.0" targetFramework="net461" />
|
<package id="System.Collections" version="4.3.0" targetFramework="net461" />
|
||||||
<package id="System.Collections.Concurrent" version="4.3.0" targetFramework="net461" />
|
<package id="System.Collections.Concurrent" version="4.3.0" targetFramework="net461" />
|
||||||
|
|
|
@ -7,9 +7,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Discord Media Loader", "Dis
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DML.Application", "Discord Media Loader.Application\DML.Application.csproj", "{C130DE6A-3237-42B5-BE9F-783D1CD104C6}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DML.Application", "Discord Media Loader.Application\DML.Application.csproj", "{C130DE6A-3237-42B5-BE9F-783D1CD104C6}"
|
||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SweetLib", "..\SweetLib\SweetLib\SweetLib.csproj", "{02C1F8EF-32F2-4E77-A36D-79129402AF37}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DML.Client", "DML.Client\DML.Client.csproj", "{045EB4A1-34E7-47E0-867E-E10C40505095}"
|
||||||
EndProject
|
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DML.Client", "DML.Client\DML.Client.csproj", "{045EB4A1-34E7-47E0-867E-E10C40505095}"
|
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
@ -25,10 +23,6 @@ Global
|
||||||
{C130DE6A-3237-42B5-BE9F-783D1CD104C6}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{C130DE6A-3237-42B5-BE9F-783D1CD104C6}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{C130DE6A-3237-42B5-BE9F-783D1CD104C6}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{C130DE6A-3237-42B5-BE9F-783D1CD104C6}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{C130DE6A-3237-42B5-BE9F-783D1CD104C6}.Release|Any CPU.Build.0 = Release|Any CPU
|
{C130DE6A-3237-42B5-BE9F-783D1CD104C6}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
{02C1F8EF-32F2-4E77-A36D-79129402AF37}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
|
||||||
{02C1F8EF-32F2-4E77-A36D-79129402AF37}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
|
||||||
{02C1F8EF-32F2-4E77-A36D-79129402AF37}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
|
||||||
{02C1F8EF-32F2-4E77-A36D-79129402AF37}.Release|Any CPU.Build.0 = Release|Any CPU
|
|
||||||
{045EB4A1-34E7-47E0-867E-E10C40505095}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
{045EB4A1-34E7-47E0-867E-E10C40505095}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
{045EB4A1-34E7-47E0-867E-E10C40505095}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{045EB4A1-34E7-47E0-867E-E10C40505095}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{045EB4A1-34E7-47E0-867E-E10C40505095}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{045EB4A1-34E7-47E0-867E-E10C40505095}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
|
|
@ -21,6 +21,22 @@
|
||||||
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
|
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
|
||||||
<bindingRedirect oldVersion="0.0.0.0-10.0.0.0" newVersion="10.0.0.0" />
|
<bindingRedirect oldVersion="0.0.0.0-10.0.0.0" newVersion="10.0.0.0" />
|
||||||
</dependentAssembly>
|
</dependentAssembly>
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity name="System.Console" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
|
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
|
||||||
|
</dependentAssembly>
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity name="System.IO.FileSystem" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
|
<bindingRedirect oldVersion="0.0.0.0-4.0.2.0" newVersion="4.0.2.0" />
|
||||||
|
</dependentAssembly>
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity name="System.IO.Compression" publicKeyToken="b77a5c561934e089" culture="neutral" />
|
||||||
|
<bindingRedirect oldVersion="0.0.0.0-4.1.2.0" newVersion="4.1.2.0" />
|
||||||
|
</dependentAssembly>
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity name="Microsoft.Win32.Registry" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
|
||||||
|
<bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0" />
|
||||||
|
</dependentAssembly>
|
||||||
</assemblyBinding>
|
</assemblyBinding>
|
||||||
</runtime>
|
</runtime>
|
||||||
</configuration>
|
</configuration>
|
||||||
|
|
|
@ -9,7 +9,7 @@ using System.Runtime.InteropServices;
|
||||||
[assembly: AssemblyConfiguration("")]
|
[assembly: AssemblyConfiguration("")]
|
||||||
[assembly: AssemblyCompany("Serraniel")]
|
[assembly: AssemblyCompany("Serraniel")]
|
||||||
[assembly: AssemblyProduct("Discord Media Loader")]
|
[assembly: AssemblyProduct("Discord Media Loader")]
|
||||||
[assembly: AssemblyCopyright("Copyright © 2017 - 2018 by Serraniel")]
|
[assembly: AssemblyCopyright("Copyright © 2017 - 2019 by Serraniel")]
|
||||||
[assembly: AssemblyTrademark("")]
|
[assembly: AssemblyTrademark("")]
|
||||||
[assembly: AssemblyCulture("")]
|
[assembly: AssemblyCulture("")]
|
||||||
|
|
||||||
|
@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
|
||||||
// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern
|
// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern
|
||||||
// übernehmen, indem Sie "*" eingeben:
|
// übernehmen, indem Sie "*" eingeben:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("1.0.2.0")]
|
[assembly: AssemblyVersion("1.0.3.0")]
|
||||||
[assembly: AssemblyFileVersion("1.0.2.0")]
|
[assembly: AssemblyFileVersion("1.0.3.0")]
|
||||||
|
|
|
@ -1,7 +1,10 @@
|
||||||
# Discord Media Loader
|
# Discord Media Loader
|
||||||
|
|
||||||
|
## IMPORTANT: This selfbot may violate discord TOS. Use at own risk!!!
|
||||||
|
|
||||||
*Discord Media Loader* is a small tool for downloading all attachments of *Discord* servers.
|
*Discord Media Loader* is a small tool for downloading all attachments of *Discord* servers.
|
||||||
|
|
||||||
**[Download](https://github.com/Serraniel/DiscordMediaLoader/releases)**
|
**[Download](https://github.com/Serraniel/DiscordMediaLoader/releases)** **Build:** [![build status badge](https://ci.serraniel.com/app/rest/builds/buildType:(DiscordMediaLoader_BuildMaster)/statusIcon)](https://ci.serraniel.com/viewType.html?buildTypeId=DiscordMediaLoader_BuildMaster)
|
||||||
|
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
Loading…
Reference in a new issue