implemented #10
This commit is contained in:
parent
6e97e3b8fb
commit
b1c1dca495
2
Mk0.Software.ImageSorter/Main.Designer.cs
generated
2
Mk0.Software.ImageSorter/Main.Designer.cs
generated
@ -888,7 +888,7 @@
|
|||||||
this.KeyPreview = true;
|
this.KeyPreview = true;
|
||||||
this.MinimumSize = new System.Drawing.Size(983, 605);
|
this.MinimumSize = new System.Drawing.Size(983, 605);
|
||||||
this.Name = "Main";
|
this.Name = "Main";
|
||||||
this.Text = "Image Sorter v2.8 | © 2015-2024 by kmpr.at";
|
this.Text = "Image Sorter v2.9 | © 2015-2024 by kmpr.at";
|
||||||
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Main_FormClosing);
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Main_FormClosing);
|
||||||
this.Load += new System.EventHandler(this.Main_Load);
|
this.Load += new System.EventHandler(this.Main_Load);
|
||||||
this.Shown += new System.EventHandler(this.Main_Shown);
|
this.Shown += new System.EventHandler(this.Main_Shown);
|
||||||
|
@ -2205,6 +2205,8 @@ namespace Mk0.Software.ImageSorter
|
|||||||
private void ButtonWebRemove_Click(object sender, EventArgs e)
|
private void ButtonWebRemove_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
if (CheckInpaint())
|
if (CheckInpaint())
|
||||||
|
{
|
||||||
|
if (Path.GetExtension(pictureBoxImage.ImageLocation).ToLower() != "heic")
|
||||||
{
|
{
|
||||||
Inpaint ip = new Inpaint(Properties.Settings.Default.inpaintUrl, pictureBoxImage.ImageLocation);
|
Inpaint ip = new Inpaint(Properties.Settings.Default.inpaintUrl, pictureBoxImage.ImageLocation);
|
||||||
ip.ShowDialog();
|
ip.ShowDialog();
|
||||||
@ -2218,6 +2220,11 @@ namespace Mk0.Software.ImageSorter
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
{
|
||||||
|
MessageBox.Show("Das Dateiformat dieses Bildes wird von Inpaint nicht unterstützt.\n\nBitte konvertiere das Bild zuerst in ein unterstütztes Bildformat.", "Inpaint Dateityp", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
{
|
{
|
||||||
MessageBox.Show("Die URL zu IOPaint wurde nicht konfiguriert, oder ist falsch konfiguriert (geben sie diese mit http(s):// ein), oder IOPaint lieferte einen Fehler.\n\nPassen sie die URL in den Einstellungen im Register \"Inpaint\" an.", "Inpaint Konfigurationsfehler", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
MessageBox.Show("Die URL zu IOPaint wurde nicht konfiguriert, oder ist falsch konfiguriert (geben sie diese mit http(s):// ein), oder IOPaint lieferte einen Fehler.\n\nPassen sie die URL in den Einstellungen im Register \"Inpaint\" an.", "Inpaint Konfigurationsfehler", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||||
}
|
}
|
||||||
|
@ -38,7 +38,7 @@
|
|||||||
<PublisherName>manuelkamper.com</PublisherName>
|
<PublisherName>manuelkamper.com</PublisherName>
|
||||||
<OpenBrowserOnPublish>false</OpenBrowserOnPublish>
|
<OpenBrowserOnPublish>false</OpenBrowserOnPublish>
|
||||||
<ApplicationRevision>0</ApplicationRevision>
|
<ApplicationRevision>0</ApplicationRevision>
|
||||||
<ApplicationVersion>2.8.0.0</ApplicationVersion>
|
<ApplicationVersion>2.9.0.0</ApplicationVersion>
|
||||||
<UseApplicationTrust>true</UseApplicationTrust>
|
<UseApplicationTrust>true</UseApplicationTrust>
|
||||||
<CreateDesktopShortcut>true</CreateDesktopShortcut>
|
<CreateDesktopShortcut>true</CreateDesktopShortcut>
|
||||||
<ExcludeDeploymentUrl>true</ExcludeDeploymentUrl>
|
<ExcludeDeploymentUrl>true</ExcludeDeploymentUrl>
|
||||||
@ -62,7 +62,7 @@
|
|||||||
<OutputPath>bin\Release\</OutputPath>
|
<OutputPath>bin\Release\</OutputPath>
|
||||||
<DefineConstants>TRACE</DefineConstants>
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<WarningLevel>0</WarningLevel>
|
<WarningLevel>5</WarningLevel>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<ApplicationIcon>image.ico</ApplicationIcon>
|
<ApplicationIcon>image.ico</ApplicationIcon>
|
||||||
|
@ -32,5 +32,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("2.8.*")]
|
[assembly: AssemblyVersion("2.9.*")]
|
||||||
//[assembly: AssemblyFileVersion("1.6.0.0")]
|
//[assembly: AssemblyFileVersion("1.6.0.0")]
|
||||||
|
Loading…
Reference in New Issue
Block a user