mirror of
https://github.com/greenshot/greenshot
synced 2025-07-16 10:03:44 -07:00
* Bug #3585393: resize issues with some the plugin configuration dialogs.
* Not reported: Flickr configuration for the Family, Friend & Public wasn't stored. git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@2259 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
parent
b3c5eb67fd
commit
929363202b
6 changed files with 10 additions and 5 deletions
|
@ -12,6 +12,8 @@ Bugs resolved:
|
||||||
* Bug #3582282: Exporting captures to Microsoft Office applications give problems when the Office application shows a dialog, this is fixed by displaying a retry dialog with info.
|
* Bug #3582282: Exporting captures to Microsoft Office applications give problems when the Office application shows a dialog, this is fixed by displaying a retry dialog with info.
|
||||||
* Bug #3582282: Exported captures to Powerpoint were displayed cropped, which needed extra actions to correct.
|
* Bug #3582282: Exported captures to Powerpoint were displayed cropped, which needed extra actions to correct.
|
||||||
* Bug #3572995: On Windows XP Firefox captures are mainly black, this fix does not only work for Firefox.
|
* Bug #3572995: On Windows XP Firefox captures are mainly black, this fix does not only work for Firefox.
|
||||||
|
* Bug #3585393: resize issues with some the plugin configuration dialogs.
|
||||||
|
* Not reported: Flickr configuration for the Family, Friend & Public wasn't stored.
|
||||||
* Removed unneeded code from the Confluence Plug-in, this makes the Greenshot installer / .zip a bit smaller.
|
* Removed unneeded code from the Confluence Plug-in, this makes the Greenshot installer / .zip a bit smaller.
|
||||||
|
|
||||||
Features:
|
Features:
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
xmlns:gscp="clr-namespace:GreenshotConfluencePlugin"
|
xmlns:gscp="clr-namespace:GreenshotConfluencePlugin"
|
||||||
xmlns:l="clr-namespace:TranslationByMarkupExtension"
|
xmlns:l="clr-namespace:TranslationByMarkupExtension"
|
||||||
xmlns:gsc="clr-namespace:GreenshotPlugin.Core;assembly=GreenshotPlugin"
|
xmlns:gsc="clr-namespace:GreenshotPlugin.Core;assembly=GreenshotPlugin"
|
||||||
Title="{l:Translate plugin_settings}" SizeToContent="WidthAndHeight" Icon="/GreenshotConfluencePlugin;component/Images/Confluence.ico">
|
Title="{l:Translate plugin_settings}" SizeToContent="WidthAndHeight" ResizeMode="NoResize" Icon="/GreenshotConfluencePlugin;component/Images/Confluence.ico">
|
||||||
<Window.Resources>
|
<Window.Resources>
|
||||||
<gscp:EnumDisplayer Type="{x:Type gsc:OutputFormat}" x:Key="outputFormats"/>
|
<gscp:EnumDisplayer Type="{x:Type gsc:OutputFormat}" x:Key="outputFormats"/>
|
||||||
</Window.Resources>
|
</Window.Resources>
|
||||||
|
|
|
@ -141,6 +141,7 @@ namespace ExternalCommand {
|
||||||
this.Controls.Add(this.listView1);
|
this.Controls.Add(this.listView1);
|
||||||
this.Controls.Add(this.buttonOk);
|
this.Controls.Add(this.buttonOk);
|
||||||
this.Controls.Add(this.buttonCancel);
|
this.Controls.Add(this.buttonCancel);
|
||||||
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
||||||
this.LanguageKey = "externalcommand.settings_title";
|
this.LanguageKey = "externalcommand.settings_title";
|
||||||
this.Name = "SettingsForm";
|
this.Name = "SettingsForm";
|
||||||
this.ResumeLayout(false);
|
this.ResumeLayout(false);
|
||||||
|
|
|
@ -112,7 +112,7 @@ namespace GreenshotFlickrPlugin {
|
||||||
this.checkBoxPublic.LanguageKey = "flickr.public";
|
this.checkBoxPublic.LanguageKey = "flickr.public";
|
||||||
this.checkBoxPublic.Location = new System.Drawing.Point(174, 88);
|
this.checkBoxPublic.Location = new System.Drawing.Point(174, 88);
|
||||||
this.checkBoxPublic.Name = "checkBoxPublic";
|
this.checkBoxPublic.Name = "checkBoxPublic";
|
||||||
this.checkBoxPublic.PropertyName = "IsPublic";
|
this.checkBoxPublic.PropertyName = "flickrIsPublic";
|
||||||
this.checkBoxPublic.SectionName = "Flickr";
|
this.checkBoxPublic.SectionName = "Flickr";
|
||||||
this.checkBoxPublic.Size = new System.Drawing.Size(55, 17);
|
this.checkBoxPublic.Size = new System.Drawing.Size(55, 17);
|
||||||
this.checkBoxPublic.TabIndex = 11;
|
this.checkBoxPublic.TabIndex = 11;
|
||||||
|
@ -125,7 +125,7 @@ namespace GreenshotFlickrPlugin {
|
||||||
this.checkBoxFamily.LanguageKey = "flickr.family";
|
this.checkBoxFamily.LanguageKey = "flickr.family";
|
||||||
this.checkBoxFamily.Location = new System.Drawing.Point(265, 88);
|
this.checkBoxFamily.Location = new System.Drawing.Point(265, 88);
|
||||||
this.checkBoxFamily.Name = "checkBoxFamily";
|
this.checkBoxFamily.Name = "checkBoxFamily";
|
||||||
this.checkBoxFamily.PropertyName = "IsFamily";
|
this.checkBoxFamily.PropertyName = "flickrIsFamily";
|
||||||
this.checkBoxFamily.SectionName = "Flickr";
|
this.checkBoxFamily.SectionName = "Flickr";
|
||||||
this.checkBoxFamily.Size = new System.Drawing.Size(55, 17);
|
this.checkBoxFamily.Size = new System.Drawing.Size(55, 17);
|
||||||
this.checkBoxFamily.TabIndex = 12;
|
this.checkBoxFamily.TabIndex = 12;
|
||||||
|
@ -138,7 +138,7 @@ namespace GreenshotFlickrPlugin {
|
||||||
this.checkBoxFriend.LanguageKey = "flickr.friend";
|
this.checkBoxFriend.LanguageKey = "flickr.friend";
|
||||||
this.checkBoxFriend.Location = new System.Drawing.Point(350, 88);
|
this.checkBoxFriend.Location = new System.Drawing.Point(350, 88);
|
||||||
this.checkBoxFriend.Name = "checkBoxFriend";
|
this.checkBoxFriend.Name = "checkBoxFriend";
|
||||||
this.checkBoxFriend.PropertyName = "IsFriend";
|
this.checkBoxFriend.PropertyName = "flickrIsFriend";
|
||||||
this.checkBoxFriend.SectionName = "Flickr";
|
this.checkBoxFriend.SectionName = "Flickr";
|
||||||
this.checkBoxFriend.Size = new System.Drawing.Size(52, 17);
|
this.checkBoxFriend.Size = new System.Drawing.Size(52, 17);
|
||||||
this.checkBoxFriend.TabIndex = 13;
|
this.checkBoxFriend.TabIndex = 13;
|
||||||
|
|
|
@ -128,6 +128,7 @@ namespace GreenshotJiraPlugin {
|
||||||
this.Controls.Add(this.textBoxUrl);
|
this.Controls.Add(this.textBoxUrl);
|
||||||
this.Controls.Add(this.buttonCancel);
|
this.Controls.Add(this.buttonCancel);
|
||||||
this.Controls.Add(this.buttonOK);
|
this.Controls.Add(this.buttonOK);
|
||||||
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
||||||
this.LanguageKey = "settings_title";
|
this.LanguageKey = "settings_title";
|
||||||
this.MaximizeBox = false;
|
this.MaximizeBox = false;
|
||||||
this.MinimizeBox = false;
|
this.MinimizeBox = false;
|
||||||
|
|
3
PluginExample/SettingsForm.Designer.cs
generated
3
PluginExample/SettingsForm.Designer.cs
generated
|
@ -100,11 +100,12 @@ namespace PluginExample
|
||||||
//
|
//
|
||||||
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(187, 106);
|
this.ClientSize = new System.Drawing.Size(200, 106);
|
||||||
this.Controls.Add(this.checkBox2);
|
this.Controls.Add(this.checkBox2);
|
||||||
this.Controls.Add(this.button2);
|
this.Controls.Add(this.button2);
|
||||||
this.Controls.Add(this.button1);
|
this.Controls.Add(this.button1);
|
||||||
this.Controls.Add(this.checkBox1);
|
this.Controls.Add(this.checkBox1);
|
||||||
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
||||||
this.Name = "SettingsForm";
|
this.Name = "SettingsForm";
|
||||||
this.Text = "Plugin example settings";
|
this.Text = "Plugin example settings";
|
||||||
this.ResumeLayout(false);
|
this.ResumeLayout(false);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue