diff --git a/README.md b/README.md index 8ea9085..9063c0d 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,49 @@ -# Word 图片预览插件 (WordPictureViewer Addin) +# Word 图片浏览器插件 (WordPictureViewer Addin) -本项目是一款用于以大图方式浏览 Office Word 文档中图片的 Word VSTO 外接程序 (插件)。启用后,双击文档中的图片即可预览。 +本项目是一款用于**双击放大**浏览 Office Word 文档中图片的 Word VSTO 外接程序 (插件)。 -*This project is a Word VSTO add-in program used to browse images in Office Word documents in a large image way. Once enabled, double-click the image in the document to preview it.* +This project is a Word VSTO add-in program (plug-in) for **double-click to enlarge** browse pictures in Office Word documents. +![Example](https://github.com/theyangfan/WordPictureViewer/blob/main/example.gif) -#### 下载 (Downloads) -- [Word.zip](https://github.com/theyangfan/WordPictureViewer/releases/download/1.0.1/word.zip) - - +## 下载 (Downloads) -使用效果如下: +| Office AddIn | Download | +| ------------ | ---------------------------------------------------------------------------------------------------------- | +| Word | [word_v1.0.2.zip](https://github.com/theyangfan/WordPictureViewer/releases/download/1.0.2/word_v1.0.2.zip) | -![example](https://github.com/theyangfan/WordPictureViewer/blob/main/example.gif) + + +## 安装 (Install) + +解压压缩包,双击 setup.exe,点击安装,完成。 + +Unzip the package, double-click setup.exe, click Install, and finish. + + + +## 卸载 (Uninstall) + +打开 Windows 设置,进入【应用】-【应用和功能】,搜索 WordPictureViewer,点击卸载,完成。 + +Open Windows Settings, go to 【Apps】 - 【Apps and Features】, search for WordPictureViewer, click Uninstall, and done. + + + +## 更新日志 (Release History) + +### v1.0.2 (2023-04-10) + +- 新增Esc键退出浏览功能。 + +### v1.0.1 (2023-03-18) + +- 优化图片打开速度; + +- 优化嵌入式图片浏览效果。 + +### v1.0.0 (2023-01-17) + +- 支持双击放大图片。 diff --git a/Ribbon.Designer.cs b/Ribbon.Designer.cs index 315c721..fd337f3 100644 --- a/Ribbon.Designer.cs +++ b/Ribbon.Designer.cs @@ -13,12 +13,12 @@ public Ribbon() InitializeComponent(); if (System.Globalization.CultureInfo.CurrentCulture.NativeName.StartsWith("中文")) { - tab1.Label = "图片预览"; + tab1.Label = "图片浏览器"; UIEnable.Label = "启用"; } else { - tab1.Label = "PicViewer"; + tab1.Label = "PictureViewer"; UIEnable.Label = "Enable"; } } @@ -55,7 +55,7 @@ private void InitializeComponent() // this.tab1.ControlId.ControlIdType = Microsoft.Office.Tools.Ribbon.RibbonControlIdType.Office; this.tab1.Groups.Add(this.group1); - this.tab1.Label = "图片预览"; + this.tab1.Label = "图片浏览器"; this.tab1.Name = "tab1"; this.tab1.Tag = ""; // diff --git a/WordPictureViewer.csproj b/WordPictureViewer.csproj index 2a8572d..c572ea5 100644 --- a/WordPictureViewer.csproj +++ b/WordPictureViewer.csproj @@ -33,8 +33,8 @@ publish\ zh-chs - 1.0.0.1 - true + 1.0.2.0 + false true 7 days