├── src ├── .vs │ └── PDFBinder │ │ ├── FileContentIndex │ │ ├── read.lock │ │ ├── 9c5dceeb-b9c5-44ae-954e-2a06bd048371.vsidx │ │ └── c98c3d41-9c47-48b4-bb9a-a6d35b9501aa.vsidx │ │ ├── v16 │ │ └── .suo │ │ └── v17 │ │ ├── .suo │ │ └── .sync-conflict-20231109-134454-7W73BE5.suo ├── UpgradeLog.htm ├── PDFBinder │ ├── Binder.cs │ ├── icon.ico │ ├── MainForm.cs │ ├── Resources │ │ ├── add.png │ │ ├── del.png │ │ ├── up.png │ │ ├── down.png │ │ ├── export.png │ │ ├── icon.ico │ │ ├── bookmark.png │ │ ├── sortAsc.png │ │ ├── sortDesc.png │ │ └── sortNone.png │ ├── bin │ │ ├── PDFBinder.exe │ │ ├── iTextSharp.dll │ │ ├── PDFBinder.vshost.exe │ │ ├── en │ │ │ └── PDFBinder.resources.dll │ │ ├── zh │ │ │ └── PDFBinder.resources.dll │ │ ├── zh-CN │ │ │ └── PDFBinder.resources.dll │ │ ├── zh-Hans │ │ │ └── PDFBinder.resources.dll │ │ ├── PDFBinder.exe.config │ │ └── PDFBinder.vshost.exe.manifest │ ├── packages.config │ ├── Properties │ │ ├── Settings.settings │ │ ├── AssemblyInfo.cs │ │ ├── Settings.Designer.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── app.config │ ├── PDFBinder.csproj.user │ ├── Settings.cs │ ├── IpcHelper.cs │ ├── Program.cs │ ├── README.md │ ├── ShellInstaller.cs │ ├── PDFBinder.csproj │ └── MainForm.Designer.cs ├── PDFBInderSetup │ ├── setup-banner.jpg │ └── PDFBinderSetup.vdproj ├── packages │ ├── iTextSharp-LGPL.4.1.6 │ │ ├── lib │ │ │ └── iTextSharp.dll │ │ └── iTextSharp-LGPL.4.1.6.nupkg │ └── repositories.config ├── PDFBinder.sln └── UpgradeLog2.htm ├── docs └── main.png ├── .gitignore ├── README.md ├── LICENSE └── LICENSE.sync-conflict-20210719-175238-7W73BE5 /src/.vs/PDFBinder/FileContentIndex/read.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kacarton/PDFBinder2/HEAD/docs/main.png -------------------------------------------------------------------------------- /src/UpgradeLog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kacarton/PDFBinder2/HEAD/src/UpgradeLog.htm -------------------------------------------------------------------------------- /src/PDFBinder/Binder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kacarton/PDFBinder2/HEAD/src/PDFBinder/Binder.cs -------------------------------------------------------------------------------- /src/PDFBinder/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kacarton/PDFBinder2/HEAD/src/PDFBinder/icon.ico -------------------------------------------------------------------------------- /src/.vs/PDFBinder/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kacarton/PDFBinder2/HEAD/src/.vs/PDFBinder/v16/.suo -------------------------------------------------------------------------------- /src/.vs/PDFBinder/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kacarton/PDFBinder2/HEAD/src/.vs/PDFBinder/v17/.suo -------------------------------------------------------------------------------- /src/PDFBinder/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kacarton/PDFBinder2/HEAD/src/PDFBinder/MainForm.cs -------------------------------------------------------------------------------- /src/PDFBinder/Resources/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kacarton/PDFBinder2/HEAD/src/PDFBinder/Resources/add.png -------------------------------------------------------------------------------- /src/PDFBinder/Resources/del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kacarton/PDFBinder2/HEAD/src/PDFBinder/Resources/del.png -------------------------------------------------------------------------------- /src/PDFBinder/Resources/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kacarton/PDFBinder2/HEAD/src/PDFBinder/Resources/up.png -------------------------------------------------------------------------------- /src/PDFBinder/bin/PDFBinder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kacarton/PDFBinder2/HEAD/src/PDFBinder/bin/PDFBinder.exe -------------------------------------------------------------------------------- /src/PDFBinder/Resources/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kacarton/PDFBinder2/HEAD/src/PDFBinder/Resources/down.png -------------------------------------------------------------------------------- /src/PDFBinder/Resources/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kacarton/PDFBinder2/HEAD/src/PDFBinder/Resources/export.png -------------------------------------------------------------------------------- /src/PDFBinder/Resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kacarton/PDFBinder2/HEAD/src/PDFBinder/Resources/icon.ico -------------------------------------------------------------------------------- /src/PDFBinder/bin/iTextSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kacarton/PDFBinder2/HEAD/src/PDFBinder/bin/iTextSharp.dll -------------------------------------------------------------------------------- /src/PDFBInderSetup/setup-banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kacarton/PDFBinder2/HEAD/src/PDFBInderSetup/setup-banner.jpg -------------------------------------------------------------------------------- /src/PDFBinder/Resources/bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kacarton/PDFBinder2/HEAD/src/PDFBinder/Resources/bookmark.png -------------------------------------------------------------------------------- /src/PDFBinder/Resources/sortAsc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kacarton/PDFBinder2/HEAD/src/PDFBinder/Resources/sortAsc.png -------------------------------------------------------------------------------- /src/PDFBinder/Resources/sortDesc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kacarton/PDFBinder2/HEAD/src/PDFBinder/Resources/sortDesc.png -------------------------------------------------------------------------------- /src/PDFBinder/Resources/sortNone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kacarton/PDFBinder2/HEAD/src/PDFBinder/Resources/sortNone.png -------------------------------------------------------------------------------- /src/PDFBinder/bin/PDFBinder.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kacarton/PDFBinder2/HEAD/src/PDFBinder/bin/PDFBinder.vshost.exe -------------------------------------------------------------------------------- /src/PDFBinder/bin/en/PDFBinder.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kacarton/PDFBinder2/HEAD/src/PDFBinder/bin/en/PDFBinder.resources.dll -------------------------------------------------------------------------------- /src/PDFBinder/bin/zh/PDFBinder.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kacarton/PDFBinder2/HEAD/src/PDFBinder/bin/zh/PDFBinder.resources.dll -------------------------------------------------------------------------------- /src/PDFBinder/bin/zh-CN/PDFBinder.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kacarton/PDFBinder2/HEAD/src/PDFBinder/bin/zh-CN/PDFBinder.resources.dll -------------------------------------------------------------------------------- /src/PDFBinder/bin/zh-Hans/PDFBinder.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kacarton/PDFBinder2/HEAD/src/PDFBinder/bin/zh-Hans/PDFBinder.resources.dll -------------------------------------------------------------------------------- /src/PDFBinder/packages.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/packages/iTextSharp-LGPL.4.1.6/lib/iTextSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kacarton/PDFBinder2/HEAD/src/packages/iTextSharp-LGPL.4.1.6/lib/iTextSharp.dll -------------------------------------------------------------------------------- /src/packages/repositories.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/.vs/PDFBinder/v17/.sync-conflict-20231109-134454-7W73BE5.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kacarton/PDFBinder2/HEAD/src/.vs/PDFBinder/v17/.sync-conflict-20231109-134454-7W73BE5.suo -------------------------------------------------------------------------------- /src/packages/iTextSharp-LGPL.4.1.6/iTextSharp-LGPL.4.1.6.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kacarton/PDFBinder2/HEAD/src/packages/iTextSharp-LGPL.4.1.6/iTextSharp-LGPL.4.1.6.nupkg -------------------------------------------------------------------------------- /src/.vs/PDFBinder/FileContentIndex/9c5dceeb-b9c5-44ae-954e-2a06bd048371.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kacarton/PDFBinder2/HEAD/src/.vs/PDFBinder/FileContentIndex/9c5dceeb-b9c5-44ae-954e-2a06bd048371.vsidx -------------------------------------------------------------------------------- /src/.vs/PDFBinder/FileContentIndex/c98c3d41-9c47-48b4-bb9a-a6d35b9501aa.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kacarton/PDFBinder2/HEAD/src/.vs/PDFBinder/FileContentIndex/c98c3d41-9c47-48b4-bb9a-a6d35b9501aa.vsidx -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # 此 .gitignore 文件已由 Microsoft(R) Visual Studio 自动创建。 3 | ################################################################################ 4 | 5 | /src/PDFBinder/obj/Debug 6 | *.pdb 7 | /src/.vs/PDFBinder/v14 8 | -------------------------------------------------------------------------------- /src/PDFBinder/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/PDFBinder/app.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/PDFBinder/bin/PDFBinder.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/PDFBinder/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.InteropServices; 3 | 4 | [assembly: AssemblyTitle("PDFBinder2")] 5 | [assembly: AssemblyProduct("PDFBinder2")] 6 | [assembly: AssemblyDescription("A simple tool to merge several PDF documents into one")] 7 | [assembly: AssemblyCopyright("Copyright kacarton 2020")] 8 | 9 | [assembly: ComVisible(false)] 10 | 11 | [assembly: AssemblyVersion("2.0.*")] 12 | -------------------------------------------------------------------------------- /src/PDFBinder/PDFBinder.csproj.user: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | publish\ 5 | 6 | 7 | 8 | 9 | 10 | zh-CN 11 | false 12 | 13 | -------------------------------------------------------------------------------- /src/PDFBinder/bin/PDFBinder.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/PDFBinder/Settings.cs: -------------------------------------------------------------------------------- 1 | namespace PDFBinder.Properties { 2 | 3 | 4 | // 通过此类可以处理设置类的特定事件: 5 | // 在更改某个设置的值之前将引发 SettingChanging 事件。 6 | // 在更改某个设置的值之后将引发 PropertyChanged 事件。 7 | // 在加载设置值之后将引发 SettingsLoaded 事件。 8 | // 在保存设置值之前将引发 SettingsSaving 事件。 9 | internal sealed partial class Settings { 10 | 11 | public Settings() { 12 | // // 若要为保存和更改设置添加事件处理程序,请取消注释下列行: 13 | // 14 | // this.SettingChanging += this.SettingChangingEventHandler; 15 | // 16 | // this.SettingsSaving += this.SettingsSavingEventHandler; 17 | // 18 | } 19 | 20 | private void SettingChangingEventHandler(object sender, System.Configuration.SettingChangingEventArgs e) { 21 | // 在此处添加用于处理 SettingChangingEvent 事件的代码。 22 | } 23 | 24 | private void SettingsSavingEventHandler(object sender, System.ComponentModel.CancelEventArgs e) { 25 | // 在此处添加用于处理 SettingsSaving 事件的代码。 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /src/PDFBinder/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本:4.0.30319.42000 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace PDFBinder.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.10.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /src/PDFBinder.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2010 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PDFBinder", "PDFBinder\PDFBinder.csproj", "{C4013FBF-4357-4580-9E6F-8EF23D5B04E4}" 5 | EndProject 6 | Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "PDFBinderSetup", "PDFBinderSetup\PDFBinderSetup.vdproj", "{D3AE3A9A-5943-4C92-8241-1EA35FBF7F63}" 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 | {C4013FBF-4357-4580-9E6F-8EF23D5B04E4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {C4013FBF-4357-4580-9E6F-8EF23D5B04E4}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {C4013FBF-4357-4580-9E6F-8EF23D5B04E4}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {C4013FBF-4357-4580-9E6F-8EF23D5B04E4}.Release|Any CPU.Build.0 = Release|Any CPU 18 | {D3AE3A9A-5943-4C92-8241-1EA35FBF7F63}.Debug|Any CPU.ActiveCfg = Debug 19 | {D3AE3A9A-5943-4C92-8241-1EA35FBF7F63}.Release|Any CPU.ActiveCfg = Release 20 | EndGlobalSection 21 | GlobalSection(SolutionProperties) = preSolution 22 | HideSolutionNode = FALSE 23 | EndGlobalSection 24 | EndGlobal 25 | -------------------------------------------------------------------------------- /src/PDFBinder/IpcHelper.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of PDFBinder2. 3 | * 4 | * PDFBinder2 is free software: you can redistribute it and/or modify 5 | * it under the terms of the GNU General Public License as published by 6 | * the Free Software Foundation, either version 3 of the License, or 7 | * (at your option) any later version. 8 | 9 | * PDFBinder2 is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | * GNU General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public License 15 | * along with PDFBinder2. If not, see . 16 | */ 17 | 18 | using System; 19 | using System.Runtime.Remoting; 20 | using System.Runtime.Remoting.Channels; 21 | using System.Runtime.Remoting.Channels.Ipc; 22 | 23 | namespace PDFBinder 24 | { 25 | public class ProcessLinker 26 | { 27 | IChannel channel; 28 | 29 | public bool IsServer 30 | { 31 | get { return channel is IpcServerChannel; } 32 | } 33 | 34 | public ProcessLinker() 35 | { 36 | try 37 | { 38 | channel = new IpcServerChannel("pdfbinder"); 39 | ChannelServices.RegisterChannel(channel, false); 40 | RemotingConfiguration.RegisterWellKnownServiceType(typeof(IpcInterface), "files", WellKnownObjectMode.Singleton); 41 | } 42 | catch (RemotingException) 43 | { 44 | channel = new IpcClientChannel(); 45 | ChannelServices.RegisterChannel(channel, true); 46 | RemotingConfiguration.RegisterWellKnownClientType(typeof(IpcInterface), "ipc://pdfbinder/files"); 47 | } 48 | } 49 | 50 | public void SendFileList(params string[] files) 51 | { 52 | var ipc = new IpcInterface(); 53 | 54 | foreach (string file in files) 55 | { 56 | ipc.AddInputFile(file); 57 | } 58 | 59 | ipc.UpdateUI(); 60 | } 61 | 62 | class IpcInterface : MarshalByRefObject 63 | { 64 | public void AddInputFile(string path) 65 | { 66 | Program.MainForm.AddInputFile(path); 67 | } 68 | 69 | public void UpdateUI() 70 | { 71 | Program.MainForm.UpdateUI(); 72 | } 73 | } 74 | } 75 | } 76 | -------------------------------------------------------------------------------- /src/PDFBinder/Program.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of PDFBinder2. 3 | * 4 | * PDFBinder2 is free software: you can redistribute it and/or modify 5 | * it under the terms of the GNU General Public License as published by 6 | * the Free Software Foundation, either version 3 of the License, or 7 | * (at your option) any later version. 8 | 9 | * PDFBinder2 is distributed in the hope that it will be useful, 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 | * GNU General Public License for more details. 13 | * 14 | * You should have received a copy of the GNU General Public License 15 | * along with PDFBinder2. If not, see . 16 | */ 17 | 18 | using System; 19 | using System.Diagnostics; 20 | using System.IO; 21 | using System.Windows.Forms; 22 | 23 | namespace PDFBinder 24 | { 25 | static class Program 26 | { 27 | public static MainForm MainForm { get; private set; } 28 | 29 | [STAThread] 30 | static void Main(string[] args) 31 | { 32 | if (Environment.OSVersion.Version.Major >= 6) 33 | SetProcessDPIAware(); 34 | 35 | //System.Threading.Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo("en-US");//zh-CN 36 | 37 | // Start uninstallation if command line is /u {product-code}. 38 | if (args.Length == 2 && args[0].Equals("/u", StringComparison.OrdinalIgnoreCase)) 39 | { 40 | Process msiexec = new Process(); 41 | msiexec.StartInfo.FileName = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.System), "msiexec.exe"); 42 | msiexec.StartInfo.Arguments = "/i " + args[1]; 43 | msiexec.Start(); 44 | } 45 | else 46 | { 47 | Application.EnableVisualStyles(); 48 | Application.SetCompatibleTextRenderingDefault(false); 49 | 50 | Program.MainForm = new MainForm(); 51 | 52 | var fileNames = new string[args.Length]; 53 | Array.Copy(args, fileNames, args.Length); 54 | Array.Sort(fileNames); 55 | 56 | var loader = new ProcessLinker(); 57 | loader.SendFileList(fileNames); 58 | 59 | if (loader.IsServer || args.Length == 0) 60 | { 61 | Application.Run(Program.MainForm); 62 | } 63 | } 64 | } 65 | 66 | [System.Runtime.InteropServices.DllImport("user32.dll")] 67 | private static extern bool SetProcessDPIAware(); 68 | } 69 | } 70 | -------------------------------------------------------------------------------- /src/PDFBinder/README.md: -------------------------------------------------------------------------------- 1 | PDFBinder v2.0 2 | ============== 3 | 4 | Brief: 5 | A simple tool to merge several PDF documents into one or split PDF document. 6 | It's enhance on base project PDFBinder v1.2 [see Original gitHub repository], 7 | it takes more feature, ex:multiple select, batch move up/down, sort, page ranges... 8 | 9 | PDFBinder2是一个简单而易于使用的PDF文档合并/拆分工具。它以PDFBinder v1.2为基础(见 10 | 原项目GitHub资源),增加了列表多选、排序、合并次序调整、设定合并的页码范围等功能,能 11 | 帮助文档工作者快速高效地处理PDF文件。 12 | 13 | ![screenshot](https://github.com/kacarton/PDFBinder2/docs/main.png) 14 | 15 | Contents: 16 | 17 | 1. Installation and usage 18 | 2. Contributing to the project 19 | 3. Licensing 20 | 21 | Installation and usage 22 | ---------------------- 23 | 24 | PDFBinder can be installed on Microsoft Windows systems using a pretty 25 | installer, which can be downloaded from the GitHub repository. 26 | 27 | In order to use PDFBinder on other platforms - or if the installer seems 28 | like a bad choice for other reasons - PDFBinder can be built installed from 29 | source. Grab the latest source package the GitHub repository. Use 30 | whatever C# compiler you have available to build the project, or use the 31 | provided project file for Microsoft Visual Studio 2010 - 2015. 32 | 33 | Hopefully, the user interface of PDFBinder is pretty self-explanatory. You 34 | can add source PDF documents by using the "Add source documents..." button, 35 | or by dragging the files in from a file browser. Documents can be moved up, 36 | moved down or remoevd by pressing the respective buttons in the toolbar. 37 | Press the "Bind!" button when your list of documents seems fine. 38 | 39 | If PDFBinder was installed using the pre-built installer, an extra option 40 | should have been automatically added to your context menu (the menu that on 41 | Windows displays when right clicking a file) for all PDF files. Select any 42 | number of PDFs in a file browser and choose the "Add to PDFBinder..." option 43 | to bring up the PDFBinder interface with those files already in the list. 44 | 45 | Contributing to the project 46 | --------------------------- 47 | 48 | Any kind of contibutions to the project are very welcome. Issues should be 49 | reported directly in the issue tracker on the GitHub repository, and 50 | reporters are very welcome to attach patches to their reports. 51 | 52 | If you wish to encourage further development of PDFBinder by donating to the 53 | project, please get in contact with the project owner (e-mail:kacarton@msn.com), 54 | and we will find some way for you to transfer a reasonable amount of money 55 | or beer to the project. 56 | 57 | Licensing 58 | --------- 59 | 60 | PDFBinder is released under the terms of the GNU General Public License. 61 | Please see LICENSE.txt for the complete legal text. 62 | 63 | All of the PDF magic is done using the iTextSharp 4.1.6 library, released 64 | under both MPL and LGPL. Please refer to the iTextSharp project site. 65 | 66 | 67 | [GitHub repository]: https://github.com/kacarton/pdfbinder2 68 | [Original gitHub repository]: https://github.com/schourode/pdfbinder 69 | [iTextSharp project site]: http://itextsharp.sourceforge.net/ 70 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | PDFBinder v2.0 2 | ============== 3 | 4 | Brief: 5 | A simple tool to merge several PDF documents into one or split PDF document. 6 | It's enhance on base project PDFBinder v1.2 [see Original gitHub repository], 7 | it takes more feature, ex:multiple select, batch move up/down, sort, page ranges... 8 | 9 | PDFBinder2是一个简单而易于使用的PDF文档合并/拆分工具。它以PDFBinder v1.2为基础(见 10 | 原项目GitHub资源),增加了列表多选、排序、合并次序调整、设定合并的页码范围等功能,能 11 | 帮助文档工作者快速高效地处理PDF文件。 12 | 13 | ![screenshot](https://github.com/kacarton/PDFBinder2/blob/main/docs/main.png?raw=true) 14 | 15 | Contents: 16 | 17 | 1. Installation and usage 18 | 2. Contributing to the project 19 | 3. Licensing 20 | 21 | Installation and usage 22 | ---------------------- 23 | 24 | PDFBinder can be installed on Microsoft Windows systems using a pretty 25 | installer, which can be downloaded from the GitHub repository. 26 | 27 | In order to use PDFBinder on other platforms - or if the installer seems 28 | like a bad choice for other reasons - PDFBinder can be built installed from 29 | source. Grab the latest source package the GitHub repository. Use 30 | whatever C# compiler you have available to build the project, or use the 31 | provided project file for Microsoft Visual Studio 2010 - 2015. 32 | 33 | Hopefully, the user interface of PDFBinder is pretty self-explanatory. You 34 | can add source PDF documents by using the "Add source documents..." button, 35 | or by dragging the files in from a file browser. Documents can be moved up, 36 | moved down or remoevd by pressing the respective buttons in the toolbar. 37 | Press the "Bind!" button when your list of documents seems fine. 38 | 39 | If PDFBinder was installed using the pre-built installer, an extra option 40 | should have been automatically added to your context menu (the menu that on 41 | Windows displays when right clicking a file) for all PDF files. Select any 42 | number of PDFs in a file browser and choose the "Add to PDFBinder..." option 43 | to bring up the PDFBinder interface with those files already in the list. 44 | 45 | Contributing to the project 46 | --------------------------- 47 | 48 | Any kind of contibutions to the project are very welcome. Issues should be 49 | reported directly in the issue tracker on the GitHub repository, and 50 | reporters are very welcome to attach patches to their reports. 51 | 52 | If you wish to encourage further development of PDFBinder by donating to the 53 | project, please get in contact with the project owner (e-mail:kacarton@msn.com), 54 | and we will find some way for you to transfer a reasonable amount of money 55 | or beer to the project. 56 | 57 | Licensing 58 | --------- 59 | 60 | PDFBinder is released under the terms of the GNU General Public License. 61 | Please see LICENSE.txt for the complete legal text. 62 | 63 | All of the PDF magic is done using the iTextSharp 4.1.6 library, released 64 | under both MPL and LGPL. Please refer to the iTextSharp project site. 65 | 66 | 67 | [GitHub repository]: https://github.com/kacarton/pdfbinder2 68 | [Original gitHub repository]: https://github.com/schourode/pdfbinder 69 | [iTextSharp project site]: http://itextsharp.sourceforge.net/ 70 | -------------------------------------------------------------------------------- /src/PDFBinder/ShellInstaller.cs: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2009-2011 Joern Schou-Rode 3 | * 4 | * This file is part of PDFBinder. 5 | * 6 | * PDFBinder is free software: you can redistribute it and/or modify 7 | * it under the terms of the GNU General Public License as published by 8 | * the Free Software Foundation, either version 3 of the License, or 9 | * (at your option) any later version. 10 | 11 | * PDFBinder is distributed in the hope that it will be useful, 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | * GNU General Public License for more details. 15 | * 16 | * You should have received a copy of the GNU General Public License 17 | * along with PDFBinder. If not, see . 18 | */ 19 | 20 | using System; 21 | using System.Collections; 22 | using System.ComponentModel; 23 | using System.Configuration.Install; 24 | using System.IO; 25 | 26 | using Microsoft.Win32; 27 | 28 | namespace PDFBinder2 29 | { 30 | [RunInstaller(true)] 31 | public class ShellInstaller : Installer 32 | { 33 | const string SHELL_LABEL = "添加到PDF合并器..."; 34 | 35 | public override void Install(IDictionary stateSaver) 36 | { 37 | base.Install(stateSaver); 38 | AddShellExtension(); 39 | } 40 | 41 | public override void Uninstall(IDictionary savedState) 42 | { 43 | base.Uninstall(savedState); 44 | RemoveShellExtension(); 45 | } 46 | 47 | public override void Rollback(IDictionary savedState) 48 | { 49 | base.Rollback(savedState); 50 | RemoveShellExtension(); 51 | } 52 | 53 | private void AddShellExtension() 54 | { 55 | bool installed; 56 | using (var shell = OpenPdfShellKey(out installed)) 57 | { 58 | if (shell != null && !installed) 59 | { 60 | using (var binder = shell.CreateSubKey(SHELL_LABEL)) 61 | { 62 | using (var command = binder.CreateSubKey("command")) 63 | { 64 | command.SetValue(null, string.Format("\"{0}.exe\" \"%1\"", 65 | Path.Combine(Context.Parameters["pdfbinder"], typeof(ShellInstaller).Assembly.GetName().Name))); 66 | } 67 | } 68 | } 69 | } 70 | } 71 | 72 | private void RemoveShellExtension() 73 | { 74 | bool installed; 75 | using (var shell = OpenPdfShellKey(out installed)) 76 | { 77 | if (installed) 78 | { 79 | shell.DeleteSubKeyTree(SHELL_LABEL); 80 | } 81 | } 82 | } 83 | 84 | private RegistryKey OpenPdfShellKey(out bool installed) 85 | { 86 | installed = false; 87 | 88 | string pdfClientKey; 89 | using (var pdf = Registry.ClassesRoot.OpenSubKey(".pdf", false)) 90 | pdfClientKey = pdf == null ? null : pdf.GetValue(null) as string; 91 | 92 | if (pdfClientKey == null) 93 | return null; 94 | 95 | var shell = Registry.ClassesRoot.OpenSubKey(pdfClientKey + "\\shell", true); 96 | 97 | if (shell == null) 98 | return null; 99 | 100 | using (var binder = shell.OpenSubKey(SHELL_LABEL)) 101 | installed = (binder != null); 102 | 103 | return shell; 104 | } 105 | } 106 | } 107 | -------------------------------------------------------------------------------- /src/PDFBinder/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本:4.0.30319.42000 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace PDFBinder.Properties { 12 | using System; 13 | 14 | 15 | /// 16 | /// 一个强类型的资源类,用于查找本地化的字符串等。 17 | /// 18 | // 此类是由 StronglyTypedResourceBuilder 19 | // 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。 20 | // 若要添加或移除成员,请编辑 .ResX 文件,然后重新运行 ResGen 21 | // (以 /str 作为命令选项),或重新生成 VS 项目。 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// 返回此类使用的缓存的 ResourceManager 实例。 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("PDFBinder.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// 重写当前线程的 CurrentUICulture 属性,对 51 | /// 使用此强类型资源类的所有资源查找执行重写。 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | 63 | /// 64 | /// 查找 System.Drawing.Bitmap 类型的本地化资源。 65 | /// 66 | internal static System.Drawing.Bitmap add { 67 | get { 68 | object obj = ResourceManager.GetObject("add", resourceCulture); 69 | return ((System.Drawing.Bitmap)(obj)); 70 | } 71 | } 72 | 73 | /// 74 | /// 查找 System.Drawing.Bitmap 类型的本地化资源。 75 | /// 76 | internal static System.Drawing.Bitmap bookmark { 77 | get { 78 | object obj = ResourceManager.GetObject("bookmark", resourceCulture); 79 | return ((System.Drawing.Bitmap)(obj)); 80 | } 81 | } 82 | 83 | /// 84 | /// 查找 System.Drawing.Bitmap 类型的本地化资源。 85 | /// 86 | internal static System.Drawing.Bitmap del { 87 | get { 88 | object obj = ResourceManager.GetObject("del", resourceCulture); 89 | return ((System.Drawing.Bitmap)(obj)); 90 | } 91 | } 92 | 93 | /// 94 | /// 查找 System.Drawing.Bitmap 类型的本地化资源。 95 | /// 96 | internal static System.Drawing.Bitmap down { 97 | get { 98 | object obj = ResourceManager.GetObject("down", resourceCulture); 99 | return ((System.Drawing.Bitmap)(obj)); 100 | } 101 | } 102 | 103 | /// 104 | /// 查找 System.Drawing.Bitmap 类型的本地化资源。 105 | /// 106 | internal static System.Drawing.Bitmap export { 107 | get { 108 | object obj = ResourceManager.GetObject("export", resourceCulture); 109 | return ((System.Drawing.Bitmap)(obj)); 110 | } 111 | } 112 | 113 | /// 114 | /// 查找 System.Drawing.Bitmap 类型的本地化资源。 115 | /// 116 | internal static System.Drawing.Bitmap sortAsc { 117 | get { 118 | object obj = ResourceManager.GetObject("sortAsc", resourceCulture); 119 | return ((System.Drawing.Bitmap)(obj)); 120 | } 121 | } 122 | 123 | /// 124 | /// 查找 System.Drawing.Bitmap 类型的本地化资源。 125 | /// 126 | internal static System.Drawing.Bitmap sortDesc { 127 | get { 128 | object obj = ResourceManager.GetObject("sortDesc", resourceCulture); 129 | return ((System.Drawing.Bitmap)(obj)); 130 | } 131 | } 132 | 133 | /// 134 | /// 查找 System.Drawing.Bitmap 类型的本地化资源。 135 | /// 136 | internal static System.Drawing.Bitmap sortNone { 137 | get { 138 | object obj = ResourceManager.GetObject("sortNone", resourceCulture); 139 | return ((System.Drawing.Bitmap)(obj)); 140 | } 141 | } 142 | 143 | /// 144 | /// 查找 System.Drawing.Bitmap 类型的本地化资源。 145 | /// 146 | internal static System.Drawing.Bitmap up { 147 | get { 148 | object obj = ResourceManager.GetObject("up", resourceCulture); 149 | return ((System.Drawing.Bitmap)(obj)); 150 | } 151 | } 152 | } 153 | } 154 | -------------------------------------------------------------------------------- /src/PDFBinder/PDFBinder.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Debug 5 | AnyCPU 6 | 9.0.30729 7 | 2.0 8 | {C4013FBF-4357-4580-9E6F-8EF23D5B04E4} 9 | WinExe 10 | Properties 11 | PDFBinder 12 | PDFBinder 13 | v2.0 14 | 512 15 | icon.ico 16 | 17 | 18 | 3.5 19 | 20 | false 21 | publish\ 22 | true 23 | Disk 24 | false 25 | Foreground 26 | 7 27 | Days 28 | false 29 | false 30 | true 31 | 0 32 | 1.0.0.%2a 33 | false 34 | true 35 | 36 | 37 | 38 | true 39 | full 40 | false 41 | bin\ 42 | DEBUG;TRACE 43 | prompt 44 | 4 45 | false 46 | 47 | 48 | pdbonly 49 | true 50 | bin\ 51 | TRACE 52 | prompt 53 | 4 54 | false 55 | 56 | 57 | 58 | False 59 | ..\packages\iTextSharp-LGPL.4.1.6\lib\iTextSharp.dll 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | Form 75 | 76 | 77 | MainForm.cs 78 | 79 | 80 | 81 | 82 | MainForm.cs 83 | Designer 84 | 85 | 86 | MainForm.cs 87 | Designer 88 | 89 | 90 | MainForm.cs 91 | 92 | 93 | MainForm.cs 94 | 95 | 96 | MainForm.cs 97 | 98 | 99 | ResXFileCodeGenerator 100 | Resources.Designer.cs 101 | Designer 102 | 103 | 104 | True 105 | Resources.resx 106 | True 107 | 108 | 109 | 110 | 111 | SettingsSingleFileGenerator 112 | Settings.Designer.cs 113 | 114 | 115 | True 116 | Settings.settings 117 | True 118 | 119 | 120 | 121 | Component 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | False 136 | .NET Framework 3.5 SP1 137 | true 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 157 | -------------------------------------------------------------------------------- /src/PDFBinder/Properties/Resources.resx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 122 | ..\Resources\sortAsc.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 123 | 124 | 125 | ..\Resources\sortNone.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 126 | 127 | 128 | ..\Resources\sortDesc.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 129 | 130 | 131 | ..\Resources\del.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 132 | 133 | 134 | ..\resources\export.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 135 | 136 | 137 | ..\Resources\up.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 138 | 139 | 140 | ..\Resources\down.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 141 | 142 | 143 | ..\Resources\add.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 144 | 145 | 146 | 147 | ..\Resources\bookmark.png;System.Drawing.Bitmap, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 148 | 149 | -------------------------------------------------------------------------------- /src/UpgradeLog2.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 迁移报告 5 |

267 | 迁移报告 -

-------------------------------------------------------------------------------- /src/PDFBinder/MainForm.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace PDFBinder 2 | { 3 | partial class MainForm 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows Form Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.components = new System.ComponentModel.Container(); 32 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm)); 33 | this.FileListBox = new System.Windows.Forms.ListBox(); 34 | this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components); 35 | this.mnuSetPageRange = new System.Windows.Forms.ToolStripMenuItem(); 36 | this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripSeparator(); 37 | this.mnuClear = new System.Windows.Forms.ToolStripMenuItem(); 38 | this.toolStrip1 = new System.Windows.Forms.ToolStrip(); 39 | this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); 40 | this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); 41 | this.showNameButton = new System.Windows.Forms.ToolStripButton(); 42 | this.saveFileDialog = new System.Windows.Forms.SaveFileDialog(); 43 | this.addFileDialog = new System.Windows.Forms.OpenFileDialog(); 44 | this.progressBar = new System.Windows.Forms.ProgressBar(); 45 | this.helpLabel = new System.Windows.Forms.Label(); 46 | this.addFileButton = new System.Windows.Forms.ToolStripButton(); 47 | this.addBookmarkButton = new System.Windows.Forms.ToolStripButton(); 48 | this.removeButton = new System.Windows.Forms.ToolStripButton(); 49 | this.moveUpButton = new System.Windows.Forms.ToolStripButton(); 50 | this.moveDownButton = new System.Windows.Forms.ToolStripButton(); 51 | this.completeButton = new System.Windows.Forms.ToolStripButton(); 52 | this.sortButton = new System.Windows.Forms.ToolStripButton(); 53 | this.PageSizeButton = new System.Windows.Forms.ToolStripDropDownButton(); 54 | this.mnuPageSize_Original = new System.Windows.Forms.ToolStripMenuItem(); 55 | this.mnuPageSize_A4 = new System.Windows.Forms.ToolStripMenuItem(); 56 | this.mnuPageSize_B4 = new System.Windows.Forms.ToolStripMenuItem(); 57 | this.mnuPageSize_A5 = new System.Windows.Forms.ToolStripMenuItem(); 58 | this.contextMenuStrip1.SuspendLayout(); 59 | this.toolStrip1.SuspendLayout(); 60 | this.SuspendLayout(); 61 | // 62 | // FileListBox 63 | // 64 | resources.ApplyResources(this.FileListBox, "FileListBox"); 65 | this.FileListBox.AllowDrop = true; 66 | this.FileListBox.ContextMenuStrip = this.contextMenuStrip1; 67 | this.FileListBox.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed; 68 | this.FileListBox.FormattingEnabled = true; 69 | this.FileListBox.Name = "FileListBox"; 70 | this.FileListBox.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended; 71 | this.FileListBox.DrawItem += new System.Windows.Forms.DrawItemEventHandler(this.FileListBox_DrawItem); 72 | this.FileListBox.SelectedIndexChanged += new System.EventHandler(this.FileListBox_SelectedIndexChanged); 73 | this.FileListBox.DragDrop += new System.Windows.Forms.DragEventHandler(this.FileListBox_DragDrop); 74 | this.FileListBox.DragEnter += new System.Windows.Forms.DragEventHandler(this.FileListBox_DragEnter); 75 | // 76 | // contextMenuStrip1 77 | // 78 | resources.ApplyResources(this.contextMenuStrip1, "contextMenuStrip1"); 79 | this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { 80 | this.mnuSetPageRange, 81 | this.toolStripMenuItem1, 82 | this.mnuClear}); 83 | this.contextMenuStrip1.Name = "contextMenuStrip1"; 84 | this.contextMenuStrip1.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStrip1_Opening); 85 | // 86 | // mnuSetPageRange 87 | // 88 | resources.ApplyResources(this.mnuSetPageRange, "mnuSetPageRange"); 89 | this.mnuSetPageRange.Name = "mnuSetPageRange"; 90 | this.mnuSetPageRange.Click += new System.EventHandler(this.mnuSetPageRange_Click); 91 | // 92 | // toolStripMenuItem1 93 | // 94 | resources.ApplyResources(this.toolStripMenuItem1, "toolStripMenuItem1"); 95 | this.toolStripMenuItem1.Name = "toolStripMenuItem1"; 96 | // 97 | // mnuClear 98 | // 99 | resources.ApplyResources(this.mnuClear, "mnuClear"); 100 | this.mnuClear.Name = "mnuClear"; 101 | this.mnuClear.Click += new System.EventHandler(this.mnuClear_Click); 102 | // 103 | // toolStrip1 104 | // 105 | resources.ApplyResources(this.toolStrip1, "toolStrip1"); 106 | this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { 107 | this.addFileButton, 108 | this.addBookmarkButton, 109 | this.removeButton, 110 | this.toolStripSeparator1, 111 | this.moveUpButton, 112 | this.moveDownButton, 113 | this.toolStripSeparator2, 114 | this.completeButton, 115 | this.showNameButton, 116 | this.sortButton, 117 | this.PageSizeButton}); 118 | this.toolStrip1.Name = "toolStrip1"; 119 | // 120 | // toolStripSeparator1 121 | // 122 | resources.ApplyResources(this.toolStripSeparator1, "toolStripSeparator1"); 123 | this.toolStripSeparator1.Name = "toolStripSeparator1"; 124 | // 125 | // toolStripSeparator2 126 | // 127 | resources.ApplyResources(this.toolStripSeparator2, "toolStripSeparator2"); 128 | this.toolStripSeparator2.Name = "toolStripSeparator2"; 129 | // 130 | // showNameButton 131 | // 132 | resources.ApplyResources(this.showNameButton, "showNameButton"); 133 | this.showNameButton.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; 134 | this.showNameButton.CheckOnClick = true; 135 | this.showNameButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; 136 | this.showNameButton.Name = "showNameButton"; 137 | this.showNameButton.Click += new System.EventHandler(this.showNameButton_Click); 138 | // 139 | // saveFileDialog 140 | // 141 | this.saveFileDialog.DefaultExt = "pdf"; 142 | resources.ApplyResources(this.saveFileDialog, "saveFileDialog"); 143 | // 144 | // addFileDialog 145 | // 146 | this.addFileDialog.DefaultExt = "pdf"; 147 | resources.ApplyResources(this.addFileDialog, "addFileDialog"); 148 | this.addFileDialog.Multiselect = true; 149 | // 150 | // progressBar 151 | // 152 | resources.ApplyResources(this.progressBar, "progressBar"); 153 | this.progressBar.Name = "progressBar"; 154 | // 155 | // helpLabel 156 | // 157 | resources.ApplyResources(this.helpLabel, "helpLabel"); 158 | this.helpLabel.Name = "helpLabel"; 159 | // 160 | // addFileButton 161 | // 162 | resources.ApplyResources(this.addFileButton, "addFileButton"); 163 | this.addFileButton.Image = global::PDFBinder.Properties.Resources.add; 164 | this.addFileButton.Name = "addFileButton"; 165 | this.addFileButton.Click += new System.EventHandler(this.addFileButton_Click); 166 | // 167 | // addBookmarkButton 168 | // 169 | resources.ApplyResources(this.addBookmarkButton, "addBookmarkButton"); 170 | this.addBookmarkButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; 171 | this.addBookmarkButton.Image = global::PDFBinder.Properties.Resources.bookmark; 172 | this.addBookmarkButton.Name = "addBookmarkButton"; 173 | this.addBookmarkButton.Click += new System.EventHandler(this.addBookmarkButton_Click); 174 | // 175 | // removeButton 176 | // 177 | resources.ApplyResources(this.removeButton, "removeButton"); 178 | this.removeButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; 179 | this.removeButton.Image = global::PDFBinder.Properties.Resources.del; 180 | this.removeButton.Name = "removeButton"; 181 | this.removeButton.Click += new System.EventHandler(this.removeButton_Click); 182 | // 183 | // moveUpButton 184 | // 185 | resources.ApplyResources(this.moveUpButton, "moveUpButton"); 186 | this.moveUpButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; 187 | this.moveUpButton.Image = global::PDFBinder.Properties.Resources.up; 188 | this.moveUpButton.Name = "moveUpButton"; 189 | this.moveUpButton.Click += new System.EventHandler(this.moveUpButton_Click); 190 | // 191 | // moveDownButton 192 | // 193 | resources.ApplyResources(this.moveDownButton, "moveDownButton"); 194 | this.moveDownButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; 195 | this.moveDownButton.Image = global::PDFBinder.Properties.Resources.down; 196 | this.moveDownButton.Name = "moveDownButton"; 197 | this.moveDownButton.Click += new System.EventHandler(this.moveDownButton_Click); 198 | // 199 | // completeButton 200 | // 201 | resources.ApplyResources(this.completeButton, "completeButton"); 202 | this.completeButton.Image = global::PDFBinder.Properties.Resources.export; 203 | this.completeButton.Name = "completeButton"; 204 | this.completeButton.Click += new System.EventHandler(this.combineButton_Click); 205 | // 206 | // sortButton 207 | // 208 | resources.ApplyResources(this.sortButton, "sortButton"); 209 | this.sortButton.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; 210 | this.sortButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; 211 | this.sortButton.Image = global::PDFBinder.Properties.Resources.sortNone; 212 | this.sortButton.Name = "sortButton"; 213 | this.sortButton.Tag = "0"; 214 | this.sortButton.Click += new System.EventHandler(this.sortButton_Click); 215 | // 216 | // PageSizeButton 217 | // 218 | resources.ApplyResources(this.PageSizeButton, "PageSizeButton"); 219 | this.PageSizeButton.Alignment = System.Windows.Forms.ToolStripItemAlignment.Right; 220 | this.PageSizeButton.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { 221 | this.mnuPageSize_Original, 222 | this.mnuPageSize_A4, 223 | this.mnuPageSize_B4, 224 | this.mnuPageSize_A5}); 225 | this.PageSizeButton.Name = "PageSizeButton"; 226 | // 227 | // mnuPageSize_Original 228 | // 229 | resources.ApplyResources(this.mnuPageSize_Original, "mnuPageSize_Original"); 230 | this.mnuPageSize_Original.Checked = true; 231 | this.mnuPageSize_Original.CheckState = System.Windows.Forms.CheckState.Checked; 232 | this.mnuPageSize_Original.Name = "mnuPageSize_Original"; 233 | this.mnuPageSize_Original.Click += new System.EventHandler(this.OnPageSizeChanged); 234 | // 235 | // mnuPageSize_A4 236 | // 237 | resources.ApplyResources(this.mnuPageSize_A4, "mnuPageSize_A4"); 238 | this.mnuPageSize_A4.Name = "mnuPageSize_A4"; 239 | this.mnuPageSize_A4.Click += new System.EventHandler(this.OnPageSizeChanged); 240 | // 241 | // mnuPageSize_B4 242 | // 243 | resources.ApplyResources(this.mnuPageSize_B4, "mnuPageSize_B4"); 244 | this.mnuPageSize_B4.Name = "mnuPageSize_B4"; 245 | this.mnuPageSize_B4.Click += new System.EventHandler(this.OnPageSizeChanged); 246 | // 247 | // mnuPageSize_A5 248 | // 249 | resources.ApplyResources(this.mnuPageSize_A5, "mnuPageSize_A5"); 250 | this.mnuPageSize_A5.Name = "mnuPageSize_A5"; 251 | this.mnuPageSize_A5.Click += new System.EventHandler(this.OnPageSizeChanged); 252 | // 253 | // MainForm 254 | // 255 | resources.ApplyResources(this, "$this"); 256 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 257 | this.Controls.Add(this.progressBar); 258 | this.Controls.Add(this.helpLabel); 259 | this.Controls.Add(this.toolStrip1); 260 | this.Controls.Add(this.FileListBox); 261 | this.Name = "MainForm"; 262 | this.Resize += new System.EventHandler(this.MainForm_Resize); 263 | this.contextMenuStrip1.ResumeLayout(false); 264 | this.toolStrip1.ResumeLayout(false); 265 | this.toolStrip1.PerformLayout(); 266 | this.ResumeLayout(false); 267 | this.PerformLayout(); 268 | 269 | } 270 | 271 | #endregion 272 | 273 | private System.Windows.Forms.ListBox FileListBox; 274 | private System.Windows.Forms.ToolStrip toolStrip1; 275 | private System.Windows.Forms.ToolStripButton addFileButton; 276 | private System.Windows.Forms.ToolStripButton moveUpButton; 277 | private System.Windows.Forms.ToolStripButton moveDownButton; 278 | private System.Windows.Forms.ToolStripButton removeButton; 279 | private System.Windows.Forms.ToolStripButton completeButton; 280 | private System.Windows.Forms.SaveFileDialog saveFileDialog; 281 | private System.Windows.Forms.ToolStripSeparator toolStripSeparator1; 282 | private System.Windows.Forms.ToolStripSeparator toolStripSeparator2; 283 | private System.Windows.Forms.OpenFileDialog addFileDialog; 284 | private System.Windows.Forms.ProgressBar progressBar; 285 | private System.Windows.Forms.Label helpLabel; 286 | private System.Windows.Forms.ToolStripButton showNameButton; 287 | private System.Windows.Forms.ToolStripButton sortButton; 288 | private System.Windows.Forms.ContextMenuStrip contextMenuStrip1; 289 | private System.Windows.Forms.ToolStripMenuItem mnuSetPageRange; 290 | private System.Windows.Forms.ToolStripSeparator toolStripMenuItem1; 291 | private System.Windows.Forms.ToolStripMenuItem mnuClear; 292 | private System.Windows.Forms.ToolStripDropDownButton PageSizeButton; 293 | private System.Windows.Forms.ToolStripMenuItem mnuPageSize_Original; 294 | private System.Windows.Forms.ToolStripMenuItem mnuPageSize_A4; 295 | private System.Windows.Forms.ToolStripMenuItem mnuPageSize_B4; 296 | private System.Windows.Forms.ToolStripMenuItem mnuPageSize_A5; 297 | private System.Windows.Forms.ToolStripButton addBookmarkButton; 298 | } 299 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /LICENSE.sync-conflict-20210719-175238-7W73BE5: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /src/PDFBInderSetup/PDFBinderSetup.vdproj: -------------------------------------------------------------------------------- 1 | "DeployProject" 2 | { 3 | "VSVersion" = "3:800" 4 | "ProjectType" = "8:{978C614F-708E-4E1A-B201-565925725DBA}" 5 | "IsWebType" = "8:FALSE" 6 | "ProjectName" = "8:PDFBinderSetup" 7 | "LanguageId" = "3:1033" 8 | "CodePage" = "3:1252" 9 | "UILanguageId" = "3:1033" 10 | "SccProjectName" = "8:" 11 | "SccLocalPath" = "8:" 12 | "SccAuxPath" = "8:" 13 | "SccProvider" = "8:" 14 | "Hierarchy" 15 | { 16 | "Entry" 17 | { 18 | "MsmKey" = "8:_25297E5AFFCA4729843496065CE8331B" 19 | "OwnerKey" = "8:_UNDEFINED" 20 | "MsmSig" = "8:_UNDEFINED" 21 | } 22 | "Entry" 23 | { 24 | "MsmKey" = "8:_334B958DF4E2498E9F250950853E2FBC" 25 | "OwnerKey" = "8:_UNDEFINED" 26 | "MsmSig" = "8:_UNDEFINED" 27 | } 28 | "Entry" 29 | { 30 | "MsmKey" = "8:_7A7D4121338B9A976525C35D744FC34C" 31 | "OwnerKey" = "8:_25297E5AFFCA4729843496065CE8331B" 32 | "MsmSig" = "8:_UNDEFINED" 33 | } 34 | "Entry" 35 | { 36 | "MsmKey" = "8:_830F5153980D43C59906B09D0D07B2F9" 37 | "OwnerKey" = "8:_UNDEFINED" 38 | "MsmSig" = "8:_UNDEFINED" 39 | } 40 | "Entry" 41 | { 42 | "MsmKey" = "8:_918E5992D7F148B998840F97B733457D" 43 | "OwnerKey" = "8:_UNDEFINED" 44 | "MsmSig" = "8:_UNDEFINED" 45 | } 46 | "Entry" 47 | { 48 | "MsmKey" = "8:_FDF107C20A4A48C6AFC1DAC0DD1D91CA" 49 | "OwnerKey" = "8:_UNDEFINED" 50 | "MsmSig" = "8:_UNDEFINED" 51 | } 52 | "Entry" 53 | { 54 | "MsmKey" = "8:_UNDEFINED" 55 | "OwnerKey" = "8:_25297E5AFFCA4729843496065CE8331B" 56 | "MsmSig" = "8:_UNDEFINED" 57 | } 58 | "Entry" 59 | { 60 | "MsmKey" = "8:_UNDEFINED" 61 | "OwnerKey" = "8:_7A7D4121338B9A976525C35D744FC34C" 62 | "MsmSig" = "8:_UNDEFINED" 63 | } 64 | } 65 | "Configurations" 66 | { 67 | "Debug" 68 | { 69 | "DisplayName" = "8:Debug" 70 | "IsDebugOnly" = "11:TRUE" 71 | "IsReleaseOnly" = "11:FALSE" 72 | "OutputFilename" = "8:Debug\\PDFBinderSetup.msi" 73 | "PackageFilesAs" = "3:2" 74 | "PackageFileSize" = "3:-2147483648" 75 | "CabType" = "3:1" 76 | "Compression" = "3:2" 77 | "SignOutput" = "11:FALSE" 78 | "CertificateFile" = "8:" 79 | "PrivateKeyFile" = "8:" 80 | "TimeStampServer" = "8:" 81 | "InstallerBootstrapper" = "3:2" 82 | "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" 83 | { 84 | "Enabled" = "11:TRUE" 85 | "PromptEnabled" = "11:TRUE" 86 | "PrerequisitesLocation" = "2:1" 87 | "Url" = "8:" 88 | "ComponentsUrl" = "8:" 89 | "Items" 90 | { 91 | "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:Microsoft.Net.Framework.3.5.SP1" 92 | { 93 | "Name" = "8:.NET Framework 3.5 SP1" 94 | "ProductCode" = "8:Microsoft.Net.Framework.3.5.SP1" 95 | } 96 | "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:Microsoft.Windows.Installer.3.1" 97 | { 98 | "Name" = "8:Windows Installer 3.1" 99 | "ProductCode" = "8:Microsoft.Windows.Installer.3.1" 100 | } 101 | } 102 | } 103 | } 104 | "Release" 105 | { 106 | "DisplayName" = "8:Release" 107 | "IsDebugOnly" = "11:FALSE" 108 | "IsReleaseOnly" = "11:TRUE" 109 | "OutputFilename" = "8:Release\\PDFBinderSetup.msi" 110 | "PackageFilesAs" = "3:2" 111 | "PackageFileSize" = "3:-2147483648" 112 | "CabType" = "3:1" 113 | "Compression" = "3:2" 114 | "SignOutput" = "11:FALSE" 115 | "CertificateFile" = "8:" 116 | "PrivateKeyFile" = "8:" 117 | "TimeStampServer" = "8:" 118 | "InstallerBootstrapper" = "3:2" 119 | "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" 120 | { 121 | "Enabled" = "11:TRUE" 122 | "PromptEnabled" = "11:TRUE" 123 | "PrerequisitesLocation" = "2:1" 124 | "Url" = "8:" 125 | "ComponentsUrl" = "8:" 126 | "Items" 127 | { 128 | "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:Microsoft.Net.Framework.3.5.SP1" 129 | { 130 | "Name" = "8:.NET Framework 3.5 SP1" 131 | "ProductCode" = "8:Microsoft.Net.Framework.3.5.SP1" 132 | } 133 | "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:Microsoft.Windows.Installer.3.1" 134 | { 135 | "Name" = "8:Windows Installer 3.1" 136 | "ProductCode" = "8:Microsoft.Windows.Installer.3.1" 137 | } 138 | } 139 | } 140 | } 141 | } 142 | "Deployable" 143 | { 144 | "CustomAction" 145 | { 146 | "{4AA51A2D-7D85-4A59-BA75-B0809FC8B380}:_6B0B42935A85450D9D40B870A7E53323" 147 | { 148 | "Name" = "8:Primary output from PDFBinder (Active)" 149 | "Condition" = "8:" 150 | "Object" = "8:_25297E5AFFCA4729843496065CE8331B" 151 | "FileType" = "3:2" 152 | "InstallAction" = "3:4" 153 | "Arguments" = "8:" 154 | "EntryPoint" = "8:" 155 | "Sequence" = "3:1" 156 | "Identifier" = "8:_87365DC6_E584_4F69_B26B_32AD58BBAB0A" 157 | "InstallerClass" = "11:TRUE" 158 | "CustomActionData" = "8:" 159 | } 160 | "{4AA51A2D-7D85-4A59-BA75-B0809FC8B380}:_882124A54DE44EDF90A28F391334F28B" 161 | { 162 | "Name" = "8:Primary output from PDFBinder (Active)" 163 | "Condition" = "8:" 164 | "Object" = "8:_25297E5AFFCA4729843496065CE8331B" 165 | "FileType" = "3:2" 166 | "InstallAction" = "3:3" 167 | "Arguments" = "8:" 168 | "EntryPoint" = "8:" 169 | "Sequence" = "3:1" 170 | "Identifier" = "8:_8B53ED7C_A989_4C7A_B347_1DA9EB797436" 171 | "InstallerClass" = "11:TRUE" 172 | "CustomActionData" = "8:" 173 | } 174 | "{4AA51A2D-7D85-4A59-BA75-B0809FC8B380}:_F886B9520C2D4BB09DED217D1945D2F0" 175 | { 176 | "Name" = "8:Primary output from PDFBinder (Active)" 177 | "Condition" = "8:" 178 | "Object" = "8:_25297E5AFFCA4729843496065CE8331B" 179 | "FileType" = "3:2" 180 | "InstallAction" = "3:1" 181 | "Arguments" = "8:" 182 | "EntryPoint" = "8:" 183 | "Sequence" = "3:1" 184 | "Identifier" = "8:_784E3704_36B5_4C65_98BB_213FAF516287" 185 | "InstallerClass" = "11:TRUE" 186 | "CustomActionData" = "8:/pdfbinder=\"[TARGETDIR]\\\"" 187 | } 188 | } 189 | "DefaultFeature" 190 | { 191 | "Name" = "8:DefaultFeature" 192 | "Title" = "8:" 193 | "Description" = "8:" 194 | } 195 | "ExternalPersistence" 196 | { 197 | "LaunchCondition" 198 | { 199 | "{A06ECF26-33A3-4562-8140-9B0E340D4F24}:_F4E0707C96334ADFA50B723849421561" 200 | { 201 | "Name" = "8:.NET Framework" 202 | "Message" = "8:[VSDNETMSG]" 203 | "FrameworkVersion" = "8:2.0.50727" 204 | "AllowLaterVersions" = "11:FALSE" 205 | "InstallUrl" = "8:http://go.microsoft.com/fwlink/?LinkId=76617" 206 | } 207 | } 208 | } 209 | "File" 210 | { 211 | "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_334B958DF4E2498E9F250950853E2FBC" 212 | { 213 | "SourcePath" = "8:setup-banner.jpg" 214 | "TargetName" = "8:setup-banner.jpg" 215 | "Tag" = "8:" 216 | "Folder" = "8:_A9D432D1BD184FBBBA449A695853B61D" 217 | "Condition" = "8:" 218 | "Transitive" = "11:FALSE" 219 | "Vital" = "11:TRUE" 220 | "ReadOnly" = "11:FALSE" 221 | "Hidden" = "11:FALSE" 222 | "System" = "11:FALSE" 223 | "Permanent" = "11:FALSE" 224 | "SharedLegacy" = "11:FALSE" 225 | "PackageAs" = "3:1" 226 | "Register" = "3:1" 227 | "Exclude" = "11:FALSE" 228 | "IsDependency" = "11:FALSE" 229 | "IsolateTo" = "8:" 230 | } 231 | "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7A7D4121338B9A976525C35D744FC34C" 232 | { 233 | "AssemblyRegister" = "3:1" 234 | "AssemblyIsInGAC" = "11:FALSE" 235 | "AssemblyAsmDisplayName" = "8:itextsharp, Version=4.1.2.0, Culture=neutral, PublicKeyToken=8354ae6d2174ddca" 236 | "ScatterAssemblies" 237 | { 238 | "_7A7D4121338B9A976525C35D744FC34C" 239 | { 240 | "Name" = "8:itextsharp.dll" 241 | "Attributes" = "3:512" 242 | } 243 | } 244 | "SourcePath" = "8:itextsharp.dll" 245 | "TargetName" = "8:" 246 | "Tag" = "8:" 247 | "Folder" = "8:_A9D432D1BD184FBBBA449A695853B61D" 248 | "Condition" = "8:" 249 | "Transitive" = "11:FALSE" 250 | "Vital" = "11:TRUE" 251 | "ReadOnly" = "11:FALSE" 252 | "Hidden" = "11:FALSE" 253 | "System" = "11:FALSE" 254 | "Permanent" = "11:FALSE" 255 | "SharedLegacy" = "11:FALSE" 256 | "PackageAs" = "3:1" 257 | "Register" = "3:1" 258 | "Exclude" = "11:FALSE" 259 | "IsDependency" = "11:TRUE" 260 | "IsolateTo" = "8:" 261 | } 262 | "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_830F5153980D43C59906B09D0D07B2F9" 263 | { 264 | "SourcePath" = "8:..\\..\\LICENSE.txt" 265 | "TargetName" = "8:LICENSE.txt" 266 | "Tag" = "8:" 267 | "Folder" = "8:_A9D432D1BD184FBBBA449A695853B61D" 268 | "Condition" = "8:" 269 | "Transitive" = "11:FALSE" 270 | "Vital" = "11:TRUE" 271 | "ReadOnly" = "11:FALSE" 272 | "Hidden" = "11:FALSE" 273 | "System" = "11:FALSE" 274 | "Permanent" = "11:FALSE" 275 | "SharedLegacy" = "11:FALSE" 276 | "PackageAs" = "3:1" 277 | "Register" = "3:1" 278 | "Exclude" = "11:FALSE" 279 | "IsDependency" = "11:FALSE" 280 | "IsolateTo" = "8:" 281 | } 282 | "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_918E5992D7F148B998840F97B733457D" 283 | { 284 | "SourcePath" = "8:..\\..\\README.md" 285 | "TargetName" = "8:README.txt" 286 | "Tag" = "8:" 287 | "Folder" = "8:_A9D432D1BD184FBBBA449A695853B61D" 288 | "Condition" = "8:" 289 | "Transitive" = "11:FALSE" 290 | "Vital" = "11:TRUE" 291 | "ReadOnly" = "11:FALSE" 292 | "Hidden" = "11:FALSE" 293 | "System" = "11:FALSE" 294 | "Permanent" = "11:FALSE" 295 | "SharedLegacy" = "11:FALSE" 296 | "PackageAs" = "3:1" 297 | "Register" = "3:1" 298 | "Exclude" = "11:FALSE" 299 | "IsDependency" = "11:FALSE" 300 | "IsolateTo" = "8:" 301 | } 302 | "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_FDF107C20A4A48C6AFC1DAC0DD1D91CA" 303 | { 304 | "SourcePath" = "8:..\\..\\CHANGELOG.txt" 305 | "TargetName" = "8:CHANGELOG.txt" 306 | "Tag" = "8:" 307 | "Folder" = "8:_A9D432D1BD184FBBBA449A695853B61D" 308 | "Condition" = "8:" 309 | "Transitive" = "11:FALSE" 310 | "Vital" = "11:TRUE" 311 | "ReadOnly" = "11:FALSE" 312 | "Hidden" = "11:FALSE" 313 | "System" = "11:FALSE" 314 | "Permanent" = "11:FALSE" 315 | "SharedLegacy" = "11:FALSE" 316 | "PackageAs" = "3:1" 317 | "Register" = "3:1" 318 | "Exclude" = "11:FALSE" 319 | "IsDependency" = "11:FALSE" 320 | "IsolateTo" = "8:" 321 | } 322 | } 323 | "FileType" 324 | { 325 | } 326 | "Folder" 327 | { 328 | "{1525181F-901A-416C-8A58-119130FE478E}:_5F46DB3B812A4C99BFF65EC1F7A69A04" 329 | { 330 | "Name" = "8:#1916" 331 | "AlwaysCreate" = "11:FALSE" 332 | "Condition" = "8:" 333 | "Transitive" = "11:FALSE" 334 | "Property" = "8:DesktopFolder" 335 | "Folders" 336 | { 337 | } 338 | } 339 | "{3C67513D-01DD-4637-8A68-80971EB9504F}:_A9D432D1BD184FBBBA449A695853B61D" 340 | { 341 | "DefaultLocation" = "8:[ProgramFilesFolder][ProductName]" 342 | "Name" = "8:#1925" 343 | "AlwaysCreate" = "11:FALSE" 344 | "Condition" = "8:" 345 | "Transitive" = "11:FALSE" 346 | "Property" = "8:TARGETDIR" 347 | "Folders" 348 | { 349 | } 350 | } 351 | "{1525181F-901A-416C-8A58-119130FE478E}:_D0FC1A5CC6C247E8BE1D6BDA432888AD" 352 | { 353 | "Name" = "8:#1919" 354 | "AlwaysCreate" = "11:FALSE" 355 | "Condition" = "8:" 356 | "Transitive" = "11:FALSE" 357 | "Property" = "8:ProgramMenuFolder" 358 | "Folders" 359 | { 360 | "{9EF0B969-E518-4E46-987F-47570745A589}:_BEFA1965EE97440A81AE2EB0D742ECC6" 361 | { 362 | "Name" = "8:PDFBinder" 363 | "AlwaysCreate" = "11:FALSE" 364 | "Condition" = "8:" 365 | "Transitive" = "11:FALSE" 366 | "Property" = "8:_5D68718D762A4C5EB3EEB583A68C6099" 367 | "Folders" 368 | { 369 | } 370 | } 371 | } 372 | } 373 | } 374 | "LaunchCondition" 375 | { 376 | } 377 | "Locator" 378 | { 379 | } 380 | "MsiBootstrapper" 381 | { 382 | "LangId" = "3:1033" 383 | "RequiresElevation" = "11:FALSE" 384 | } 385 | "Product" 386 | { 387 | "Name" = "8:Microsoft Visual Studio" 388 | "ProductName" = "8:PDFBinder" 389 | "ProductCode" = "8:{8BA03AC2-579F-41CD-A250-740137D86F7A}" 390 | "PackageCode" = "8:{C2BDFFB1-1BF4-4BE1-9DDC-D22E8E551D7E}" 391 | "UpgradeCode" = "8:{9B78857D-281F-4FA4-918F-AE20C1B6C342}" 392 | "AspNetVersion" = "8:4.0.30319.0" 393 | "RestartWWWService" = "11:FALSE" 394 | "RemovePreviousVersions" = "11:TRUE" 395 | "DetectNewerInstalledVersion" = "11:TRUE" 396 | "InstallAllUsers" = "11:TRUE" 397 | "ProductVersion" = "8:1.0.0" 398 | "Manufacturer" = "8:Malamute.dk" 399 | "ARPHELPTELEPHONE" = "8:" 400 | "ARPHELPLINK" = "8:http://code.google.com/p/pdfbinder" 401 | "Title" = "8:PDFBinder" 402 | "Subject" = "8:" 403 | "ARPCONTACT" = "8:Joern Schou-Rode" 404 | "Keywords" = "8:" 405 | "ARPCOMMENTS" = "8:A simple tool to merge several PDF documents into one" 406 | "ARPURLINFOABOUT" = "8:http://malamute.dk/" 407 | "ARPPRODUCTICON" = "8:" 408 | "ARPIconIndex" = "3:0" 409 | "SearchPath" = "8:" 410 | "UseSystemSearchPath" = "11:TRUE" 411 | "TargetPlatform" = "3:0" 412 | "PreBuildEvent" = "8:" 413 | "PostBuildEvent" = "8:" 414 | "RunPostBuildEvent" = "3:0" 415 | } 416 | "Registry" 417 | { 418 | "HKLM" 419 | { 420 | "Keys" 421 | { 422 | "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_80A2251FD9D9471E8DA5EFDD775AC9E0" 423 | { 424 | "Name" = "8:Software" 425 | "Condition" = "8:" 426 | "AlwaysCreate" = "11:FALSE" 427 | "DeleteAtUninstall" = "11:FALSE" 428 | "Transitive" = "11:FALSE" 429 | "Keys" 430 | { 431 | "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_6A522C6F3BC44FFE847D60865216D3A9" 432 | { 433 | "Name" = "8:[Manufacturer]" 434 | "Condition" = "8:" 435 | "AlwaysCreate" = "11:FALSE" 436 | "DeleteAtUninstall" = "11:FALSE" 437 | "Transitive" = "11:FALSE" 438 | "Keys" 439 | { 440 | } 441 | "Values" 442 | { 443 | } 444 | } 445 | } 446 | "Values" 447 | { 448 | } 449 | } 450 | } 451 | } 452 | "HKCU" 453 | { 454 | "Keys" 455 | { 456 | "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_909B93C07BA14B0EA11212937CA88F56" 457 | { 458 | "Name" = "8:Software" 459 | "Condition" = "8:" 460 | "AlwaysCreate" = "11:FALSE" 461 | "DeleteAtUninstall" = "11:FALSE" 462 | "Transitive" = "11:FALSE" 463 | "Keys" 464 | { 465 | "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_BBF54B527C674553AEC92B6CAD6DF656" 466 | { 467 | "Name" = "8:[Manufacturer]" 468 | "Condition" = "8:" 469 | "AlwaysCreate" = "11:FALSE" 470 | "DeleteAtUninstall" = "11:FALSE" 471 | "Transitive" = "11:FALSE" 472 | "Keys" 473 | { 474 | } 475 | "Values" 476 | { 477 | } 478 | } 479 | } 480 | "Values" 481 | { 482 | } 483 | } 484 | } 485 | } 486 | "HKCR" 487 | { 488 | "Keys" 489 | { 490 | } 491 | } 492 | "HKU" 493 | { 494 | "Keys" 495 | { 496 | } 497 | } 498 | "HKPU" 499 | { 500 | "Keys" 501 | { 502 | } 503 | } 504 | } 505 | "Sequences" 506 | { 507 | } 508 | "Shortcut" 509 | { 510 | "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_61B9B99F94A24FFC963E10F7BA4DE28C" 511 | { 512 | "Name" = "8:PDFBinder" 513 | "Arguments" = "8:" 514 | "Description" = "8:Launch PDFBinder." 515 | "ShowCmd" = "3:1" 516 | "IconIndex" = "3:101" 517 | "Transitive" = "11:FALSE" 518 | "Target" = "8:_25297E5AFFCA4729843496065CE8331B" 519 | "Folder" = "8:_BEFA1965EE97440A81AE2EB0D742ECC6" 520 | "WorkingFolder" = "8:_A9D432D1BD184FBBBA449A695853B61D" 521 | "Icon" = "8:_25297E5AFFCA4729843496065CE8331B" 522 | "Feature" = "8:" 523 | } 524 | "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_CD696C55BEFC4D08B27ACCCB6B00C3F4" 525 | { 526 | "Name" = "8:Uninstall" 527 | "Arguments" = "8:/u [ProductCode]" 528 | "Description" = "8:Remove PDFBinder from this computer." 529 | "ShowCmd" = "3:1" 530 | "IconIndex" = "3:102" 531 | "Transitive" = "11:FALSE" 532 | "Target" = "8:_25297E5AFFCA4729843496065CE8331B" 533 | "Folder" = "8:_BEFA1965EE97440A81AE2EB0D742ECC6" 534 | "WorkingFolder" = "8:_A9D432D1BD184FBBBA449A695853B61D" 535 | "Icon" = "8:_25297E5AFFCA4729843496065CE8331B" 536 | "Feature" = "8:" 537 | } 538 | } 539 | "UserInterface" 540 | { 541 | "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_01EF1FA929F541FDB1E125F76482A1A7" 542 | { 543 | "Name" = "8:#1900" 544 | "Sequence" = "3:1" 545 | "Attributes" = "3:1" 546 | "Dialogs" 547 | { 548 | "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_241994D327EC44888178F8051EADF7F8" 549 | { 550 | "Sequence" = "3:200" 551 | "DisplayName" = "8:Installation Folder" 552 | "UseDynamicProperties" = "11:TRUE" 553 | "IsDependency" = "11:FALSE" 554 | "SourcePath" = "8:\\VsdFolderDlg.wid" 555 | "Properties" 556 | { 557 | "BannerBitmap" 558 | { 559 | "Name" = "8:BannerBitmap" 560 | "DisplayName" = "8:#1001" 561 | "Description" = "8:#1101" 562 | "Type" = "3:8" 563 | "ContextData" = "8:Bitmap" 564 | "Attributes" = "3:4" 565 | "Setting" = "3:2" 566 | "Value" = "8:_334B958DF4E2498E9F250950853E2FBC" 567 | "UsePlugInResources" = "11:TRUE" 568 | } 569 | "InstallAllUsersVisible" 570 | { 571 | "Name" = "8:InstallAllUsersVisible" 572 | "DisplayName" = "8:#1059" 573 | "Description" = "8:#1159" 574 | "Type" = "3:5" 575 | "ContextData" = "8:1;True=1;False=0" 576 | "Attributes" = "3:0" 577 | "Setting" = "3:0" 578 | "Value" = "3:1" 579 | "DefaultValue" = "3:1" 580 | "UsePlugInResources" = "11:TRUE" 581 | } 582 | } 583 | } 584 | "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_9B5FFD0CBBDA486881B332C9B608AE6C" 585 | { 586 | "Sequence" = "3:300" 587 | "DisplayName" = "8:Confirm Installation" 588 | "UseDynamicProperties" = "11:TRUE" 589 | "IsDependency" = "11:FALSE" 590 | "SourcePath" = "8:\\VsdConfirmDlg.wid" 591 | "Properties" 592 | { 593 | "BannerBitmap" 594 | { 595 | "Name" = "8:BannerBitmap" 596 | "DisplayName" = "8:#1001" 597 | "Description" = "8:#1101" 598 | "Type" = "3:8" 599 | "ContextData" = "8:Bitmap" 600 | "Attributes" = "3:4" 601 | "Setting" = "3:2" 602 | "Value" = "8:_334B958DF4E2498E9F250950853E2FBC" 603 | "UsePlugInResources" = "11:TRUE" 604 | } 605 | } 606 | } 607 | "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_B3E62F49D26E4A0E9B6A456A642936B6" 608 | { 609 | "Sequence" = "3:100" 610 | "DisplayName" = "8:Welcome" 611 | "UseDynamicProperties" = "11:TRUE" 612 | "IsDependency" = "11:FALSE" 613 | "SourcePath" = "8:\\VsdWelcomeDlg.wid" 614 | "Properties" 615 | { 616 | "BannerBitmap" 617 | { 618 | "Name" = "8:BannerBitmap" 619 | "DisplayName" = "8:#1001" 620 | "Description" = "8:#1101" 621 | "Type" = "3:8" 622 | "ContextData" = "8:Bitmap" 623 | "Attributes" = "3:4" 624 | "Setting" = "3:2" 625 | "Value" = "8:_334B958DF4E2498E9F250950853E2FBC" 626 | "UsePlugInResources" = "11:TRUE" 627 | } 628 | "CopyrightWarning" 629 | { 630 | "Name" = "8:CopyrightWarning" 631 | "DisplayName" = "8:#1002" 632 | "Description" = "8:#1102" 633 | "Type" = "3:3" 634 | "ContextData" = "8:" 635 | "Attributes" = "3:0" 636 | "Setting" = "3:2" 637 | "Value" = "8:" 638 | "DefaultValue" = "8:#1202" 639 | "UsePlugInResources" = "11:TRUE" 640 | } 641 | "Welcome" 642 | { 643 | "Name" = "8:Welcome" 644 | "DisplayName" = "8:#1003" 645 | "Description" = "8:#1103" 646 | "Type" = "3:3" 647 | "ContextData" = "8:" 648 | "Attributes" = "3:0" 649 | "Setting" = "3:1" 650 | "Value" = "8:#1203" 651 | "DefaultValue" = "8:#1203" 652 | "UsePlugInResources" = "11:TRUE" 653 | } 654 | } 655 | } 656 | } 657 | } 658 | "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_036DA22FACE349BBA960979E4752F893" 659 | { 660 | "Name" = "8:#1902" 661 | "Sequence" = "3:2" 662 | "Attributes" = "3:3" 663 | "Dialogs" 664 | { 665 | "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_58E4BC875D2642D1AB70E5F7A0C8F58B" 666 | { 667 | "Sequence" = "3:100" 668 | "DisplayName" = "8:Finished" 669 | "UseDynamicProperties" = "11:TRUE" 670 | "IsDependency" = "11:FALSE" 671 | "SourcePath" = "8:\\VsdAdminFinishedDlg.wid" 672 | "Properties" 673 | { 674 | "BannerBitmap" 675 | { 676 | "Name" = "8:BannerBitmap" 677 | "DisplayName" = "8:#1001" 678 | "Description" = "8:#1101" 679 | "Type" = "3:8" 680 | "ContextData" = "8:Bitmap" 681 | "Attributes" = "3:4" 682 | "Setting" = "3:2" 683 | "Value" = "8:_334B958DF4E2498E9F250950853E2FBC" 684 | "UsePlugInResources" = "11:TRUE" 685 | } 686 | } 687 | } 688 | } 689 | } 690 | "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_21AE346DC23444109ECF305FB74D7E16" 691 | { 692 | "Name" = "8:#1901" 693 | "Sequence" = "3:1" 694 | "Attributes" = "3:2" 695 | "Dialogs" 696 | { 697 | "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_D1D4A8B8D5094177B0E9C0BCB1C24445" 698 | { 699 | "Sequence" = "3:100" 700 | "DisplayName" = "8:Progress" 701 | "UseDynamicProperties" = "11:TRUE" 702 | "IsDependency" = "11:FALSE" 703 | "SourcePath" = "8:\\VsdProgressDlg.wid" 704 | "Properties" 705 | { 706 | "BannerBitmap" 707 | { 708 | "Name" = "8:BannerBitmap" 709 | "DisplayName" = "8:#1001" 710 | "Description" = "8:#1101" 711 | "Type" = "3:8" 712 | "ContextData" = "8:Bitmap" 713 | "Attributes" = "3:4" 714 | "Setting" = "3:2" 715 | "Value" = "8:_334B958DF4E2498E9F250950853E2FBC" 716 | "UsePlugInResources" = "11:TRUE" 717 | } 718 | "ShowProgress" 719 | { 720 | "Name" = "8:ShowProgress" 721 | "DisplayName" = "8:#1009" 722 | "Description" = "8:#1109" 723 | "Type" = "3:5" 724 | "ContextData" = "8:1;True=1;False=0" 725 | "Attributes" = "3:0" 726 | "Setting" = "3:0" 727 | "Value" = "3:1" 728 | "DefaultValue" = "3:1" 729 | "UsePlugInResources" = "11:TRUE" 730 | } 731 | } 732 | } 733 | } 734 | } 735 | "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_768E7612903940C0999C743DDE117CC2" 736 | { 737 | "Name" = "8:#1902" 738 | "Sequence" = "3:1" 739 | "Attributes" = "3:3" 740 | "Dialogs" 741 | { 742 | "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_EF337056BE474DB6817D234A61FACF92" 743 | { 744 | "Sequence" = "3:100" 745 | "DisplayName" = "8:Finished" 746 | "UseDynamicProperties" = "11:TRUE" 747 | "IsDependency" = "11:FALSE" 748 | "SourcePath" = "8:\\VsdFinishedDlg.wid" 749 | "Properties" 750 | { 751 | "BannerBitmap" 752 | { 753 | "Name" = "8:BannerBitmap" 754 | "DisplayName" = "8:#1001" 755 | "Description" = "8:#1101" 756 | "Type" = "3:8" 757 | "ContextData" = "8:Bitmap" 758 | "Attributes" = "3:4" 759 | "Setting" = "3:2" 760 | "Value" = "8:_334B958DF4E2498E9F250950853E2FBC" 761 | "UsePlugInResources" = "11:TRUE" 762 | } 763 | "UpdateText" 764 | { 765 | "Name" = "8:UpdateText" 766 | "DisplayName" = "8:#1058" 767 | "Description" = "8:#1158" 768 | "Type" = "3:15" 769 | "ContextData" = "8:" 770 | "Attributes" = "3:0" 771 | "Setting" = "3:1" 772 | "Value" = "8:#1258" 773 | "DefaultValue" = "8:#1258" 774 | "UsePlugInResources" = "11:TRUE" 775 | } 776 | } 777 | } 778 | } 779 | } 780 | "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_86325E5C388645569C749A81F19BF3FF" 781 | { 782 | "UseDynamicProperties" = "11:FALSE" 783 | "IsDependency" = "11:FALSE" 784 | "SourcePath" = "8:\\VsdUserInterface.wim" 785 | } 786 | "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_A48D2B2983C24A9BB3F709E38B296E9E" 787 | { 788 | "Name" = "8:#1900" 789 | "Sequence" = "3:2" 790 | "Attributes" = "3:1" 791 | "Dialogs" 792 | { 793 | "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_544CD045F1314B538AB51616D6950DC0" 794 | { 795 | "Sequence" = "3:200" 796 | "DisplayName" = "8:Installation Folder" 797 | "UseDynamicProperties" = "11:TRUE" 798 | "IsDependency" = "11:FALSE" 799 | "SourcePath" = "8:\\VsdAdminFolderDlg.wid" 800 | "Properties" 801 | { 802 | "BannerBitmap" 803 | { 804 | "Name" = "8:BannerBitmap" 805 | "DisplayName" = "8:#1001" 806 | "Description" = "8:#1101" 807 | "Type" = "3:8" 808 | "ContextData" = "8:Bitmap" 809 | "Attributes" = "3:4" 810 | "Setting" = "3:2" 811 | "Value" = "8:_334B958DF4E2498E9F250950853E2FBC" 812 | "UsePlugInResources" = "11:TRUE" 813 | } 814 | } 815 | } 816 | "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_985D5ED78D7348448589E847A4E58187" 817 | { 818 | "Sequence" = "3:300" 819 | "DisplayName" = "8:Confirm Installation" 820 | "UseDynamicProperties" = "11:TRUE" 821 | "IsDependency" = "11:FALSE" 822 | "SourcePath" = "8:\\VsdAdminConfirmDlg.wid" 823 | "Properties" 824 | { 825 | "BannerBitmap" 826 | { 827 | "Name" = "8:BannerBitmap" 828 | "DisplayName" = "8:#1001" 829 | "Description" = "8:#1101" 830 | "Type" = "3:8" 831 | "ContextData" = "8:Bitmap" 832 | "Attributes" = "3:4" 833 | "Setting" = "3:2" 834 | "Value" = "8:_334B958DF4E2498E9F250950853E2FBC" 835 | "UsePlugInResources" = "11:TRUE" 836 | } 837 | } 838 | } 839 | "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_A2E4A44C5D7C4B6585B116F8496913E4" 840 | { 841 | "Sequence" = "3:100" 842 | "DisplayName" = "8:Welcome" 843 | "UseDynamicProperties" = "11:TRUE" 844 | "IsDependency" = "11:FALSE" 845 | "SourcePath" = "8:\\VsdAdminWelcomeDlg.wid" 846 | "Properties" 847 | { 848 | "BannerBitmap" 849 | { 850 | "Name" = "8:BannerBitmap" 851 | "DisplayName" = "8:#1001" 852 | "Description" = "8:#1101" 853 | "Type" = "3:8" 854 | "ContextData" = "8:Bitmap" 855 | "Attributes" = "3:4" 856 | "Setting" = "3:2" 857 | "Value" = "8:_334B958DF4E2498E9F250950853E2FBC" 858 | "UsePlugInResources" = "11:TRUE" 859 | } 860 | "CopyrightWarning" 861 | { 862 | "Name" = "8:CopyrightWarning" 863 | "DisplayName" = "8:#1002" 864 | "Description" = "8:#1102" 865 | "Type" = "3:3" 866 | "ContextData" = "8:" 867 | "Attributes" = "3:0" 868 | "Setting" = "3:2" 869 | "Value" = "8:" 870 | "DefaultValue" = "8:#1202" 871 | "UsePlugInResources" = "11:TRUE" 872 | } 873 | "Welcome" 874 | { 875 | "Name" = "8:Welcome" 876 | "DisplayName" = "8:#1003" 877 | "Description" = "8:#1103" 878 | "Type" = "3:3" 879 | "ContextData" = "8:" 880 | "Attributes" = "3:0" 881 | "Setting" = "3:1" 882 | "Value" = "8:#1203" 883 | "DefaultValue" = "8:#1203" 884 | "UsePlugInResources" = "11:TRUE" 885 | } 886 | } 887 | } 888 | } 889 | } 890 | "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_B403EB508719418394870C9272A923E9" 891 | { 892 | "UseDynamicProperties" = "11:FALSE" 893 | "IsDependency" = "11:FALSE" 894 | "SourcePath" = "8:\\VsdBasicDialogs.wim" 895 | } 896 | "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_B802D596A2EB431C9768F7C62B7E07CD" 897 | { 898 | "Name" = "8:#1901" 899 | "Sequence" = "3:2" 900 | "Attributes" = "3:2" 901 | "Dialogs" 902 | { 903 | "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_70B284B419FB41E6B23D219D72D8EB56" 904 | { 905 | "Sequence" = "3:100" 906 | "DisplayName" = "8:Progress" 907 | "UseDynamicProperties" = "11:TRUE" 908 | "IsDependency" = "11:FALSE" 909 | "SourcePath" = "8:\\VsdAdminProgressDlg.wid" 910 | "Properties" 911 | { 912 | "BannerBitmap" 913 | { 914 | "Name" = "8:BannerBitmap" 915 | "DisplayName" = "8:#1001" 916 | "Description" = "8:#1101" 917 | "Type" = "3:8" 918 | "ContextData" = "8:Bitmap" 919 | "Attributes" = "3:4" 920 | "Setting" = "3:2" 921 | "Value" = "8:_334B958DF4E2498E9F250950853E2FBC" 922 | "UsePlugInResources" = "11:TRUE" 923 | } 924 | "ShowProgress" 925 | { 926 | "Name" = "8:ShowProgress" 927 | "DisplayName" = "8:#1009" 928 | "Description" = "8:#1109" 929 | "Type" = "3:5" 930 | "ContextData" = "8:1;True=1;False=0" 931 | "Attributes" = "3:0" 932 | "Setting" = "3:0" 933 | "Value" = "3:1" 934 | "DefaultValue" = "3:1" 935 | "UsePlugInResources" = "11:TRUE" 936 | } 937 | } 938 | } 939 | } 940 | } 941 | } 942 | "MergeModule" 943 | { 944 | } 945 | "ProjectOutput" 946 | { 947 | "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_25297E5AFFCA4729843496065CE8331B" 948 | { 949 | "SourcePath" = "8:..\\PDFBinder\\obj\\Debug\\PDFBinder.exe" 950 | "TargetName" = "8:" 951 | "Tag" = "8:" 952 | "Folder" = "8:_A9D432D1BD184FBBBA449A695853B61D" 953 | "Condition" = "8:" 954 | "Transitive" = "11:FALSE" 955 | "Vital" = "11:TRUE" 956 | "ReadOnly" = "11:FALSE" 957 | "Hidden" = "11:FALSE" 958 | "System" = "11:FALSE" 959 | "Permanent" = "11:FALSE" 960 | "SharedLegacy" = "11:FALSE" 961 | "PackageAs" = "3:1" 962 | "Register" = "3:1" 963 | "Exclude" = "11:FALSE" 964 | "IsDependency" = "11:FALSE" 965 | "IsolateTo" = "8:" 966 | "ProjectOutputGroupRegister" = "3:1" 967 | "OutputConfiguration" = "8:" 968 | "OutputGroupCanonicalName" = "8:Built" 969 | "OutputProjectGuid" = "8:{C4013FBF-4357-4580-9E6F-8EF23D5B04E4}" 970 | "ShowKeyOutput" = "11:TRUE" 971 | "ExcludeFilters" 972 | { 973 | } 974 | } 975 | "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_3CA570C93F074EACBD588E75129C3F52" 976 | { 977 | "SourcePath" = "8:" 978 | "TargetName" = "8:" 979 | "Tag" = "8:" 980 | "Folder" = "8:_A9D432D1BD184FBBBA449A695853B61D" 981 | "Condition" = "8:" 982 | "Transitive" = "11:FALSE" 983 | "Vital" = "11:TRUE" 984 | "ReadOnly" = "11:FALSE" 985 | "Hidden" = "11:FALSE" 986 | "System" = "11:FALSE" 987 | "Permanent" = "11:FALSE" 988 | "SharedLegacy" = "11:FALSE" 989 | "PackageAs" = "3:1" 990 | "Register" = "3:1" 991 | "Exclude" = "11:FALSE" 992 | "IsDependency" = "11:FALSE" 993 | "IsolateTo" = "8:" 994 | "ProjectOutputGroupRegister" = "3:1" 995 | "OutputConfiguration" = "8:" 996 | "OutputGroupCanonicalName" = "8:LocalizedResourceDlls" 997 | "OutputProjectGuid" = "8:{C4013FBF-4357-4580-9E6F-8EF23D5B04E4}" 998 | "ShowKeyOutput" = "11:TRUE" 999 | "ExcludeFilters" 1000 | { 1001 | } 1002 | } 1003 | "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_766B8B7CE2494EFEA38E0B6341332C4B" 1004 | { 1005 | "SourcePath" = "8:" 1006 | "TargetName" = "8:" 1007 | "Tag" = "8:" 1008 | "Folder" = "8:_A9D432D1BD184FBBBA449A695853B61D" 1009 | "Condition" = "8:" 1010 | "Transitive" = "11:FALSE" 1011 | "Vital" = "11:TRUE" 1012 | "ReadOnly" = "11:FALSE" 1013 | "Hidden" = "11:FALSE" 1014 | "System" = "11:FALSE" 1015 | "Permanent" = "11:FALSE" 1016 | "SharedLegacy" = "11:FALSE" 1017 | "PackageAs" = "3:1" 1018 | "Register" = "3:1" 1019 | "Exclude" = "11:FALSE" 1020 | "IsDependency" = "11:FALSE" 1021 | "IsolateTo" = "8:" 1022 | "ProjectOutputGroupRegister" = "3:1" 1023 | "OutputConfiguration" = "8:" 1024 | "OutputGroupCanonicalName" = "8:ContentFiles" 1025 | "OutputProjectGuid" = "8:{C4013FBF-4357-4580-9E6F-8EF23D5B04E4}" 1026 | "ShowKeyOutput" = "11:TRUE" 1027 | "ExcludeFilters" 1028 | { 1029 | } 1030 | } 1031 | } 1032 | } 1033 | } 1034 | --------------------------------------------------------------------------------