diff --git a/Bin/Interop.WrlApplet.dll b/Bin/Interop.WrlApplet.dll deleted file mode 100644 index 4777fceaa9271e48409e2bc39791f4ede9beafd2..0000000000000000000000000000000000000000 Binary files a/Bin/Interop.WrlApplet.dll and /dev/null differ diff --git a/Net/Interop.ZbaApplet.dll b/Net/Interop.ZbaApplet.dll deleted file mode 100644 index 00d1d60105f07b9499e794f2761a5c0fd44b0df6..0000000000000000000000000000000000000000 Binary files a/Net/Interop.ZbaApplet.dll and /dev/null differ diff --git a/PluginOK_Install.iss b/PluginOK_Install.iss new file mode 100644 index 0000000000000000000000000000000000000000..041c4becc4a6e3511a6346ed8c529e01aee8bc4f --- /dev/null +++ b/PluginOK_Install.iss @@ -0,0 +1,51 @@ +; 脚本由 Inno Setup 脚本向导 生成! +; 有关创建 Inno Setup 脚本文件的详细资料请查阅帮助文档! + +#define MyAppName "PluginOK中间件" +#define MyAppVersion "1.3.1.2" +#define MyAppPublisher "成都佐罗软件有限公司" +#define MyAppURL "http://www.zorrosoft.com/" +#define MyAppExeName "WrlSetup.exe" + +[Setup] +; 注: AppId的值为单独标识该应用程序。 +; 不要为其他安装程序使用相同的AppId值。 +; (若要生成新的 GUID,可在菜单中点击 "工具|生成 GUID"。) +AppId={{20BAC19B-5557-453A-877A-3B6DEAC4C907} +AppName={#MyAppName} +AppVersion={#MyAppVersion} +;AppVerName={#MyAppName} {#MyAppVersion} +AppPublisher={#MyAppPublisher} +AppPublisherURL={#MyAppURL} +AppSupportURL={#MyAppURL} +AppUpdatesURL={#MyAppURL} +DefaultDirName={pf}\PluginOK +DefaultGroupName={#MyAppName} +AllowNoIcons=yes +; 以下行修改为实际的路径。 +LicenseFile=F:\Zorro\PluginOK\Bin\license.txt +InfoAfterFile=F:\Zorro\PluginOK\Bin\TestWrl.txt +; 以下行取消注释,以在非管理安装模式下运行(仅为当前用户安装)。 +PrivilegesRequired=admin +OutputDir=F:\Zorro\PluginOK +OutputBaseFilename=PluginOK +Compression=lzma +SolidCompression=yes +WizardStyle=modern + +[Languages] +Name: "chinesesimp"; MessagesFile: "compiler:Default.isl" + +[Files] +Source: "F:\Zorro\PluginOK\Bin\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs +; 注意: 不要在任何共享系统文件上使用“Flags: ignoreversion” + +[Icons] +Name: "{group}\{cm:UninstallProgram,{#MyAppName}}"; Filename: "{uninstallexe}" + +[Run] +Filename: "{app}\WrlSetup.exe";Parameters: "/S /I";Description: "安装服务";StatusMsg:"正在安装服务,请稍后..." + +[UninstallRun] +Filename: "{app}\WrlSetup.exe";Parameters: "/S /U";StatusMsg:"正在停止服务并卸载,请稍后..." + diff --git a/PluginOK_Net.iss b/PluginOK_Net.iss new file mode 100644 index 0000000000000000000000000000000000000000..35a6678510d5f3b9db9ad72f4ca9408257b31e80 --- /dev/null +++ b/PluginOK_Net.iss @@ -0,0 +1,51 @@ +; 脚本由 Inno Setup 脚本向导 生成! +; 有关创建 Inno Setup 脚本文件的详细资料请查阅帮助文档! + +#define MyAppName "PluginOK中间件网络版" +#define MyAppVersion "2.1.1.2" +#define MyAppPublisher "成都佐罗软件有限公司" +#define MyAppURL "http://www.zorrosoft.com/" +#define MyAppExeName "ZbaSetup.exe" + +[Setup] +; 注: AppId的值为单独标识该应用程序。 +; 不要为其他安装程序使用相同的AppId值。 +; (若要生成新的 GUID,可在菜单中点击 "工具|生成 GUID"。) +AppId={{908D7515-15F9-4A48-B36D-5FE2A52DE3E6} +AppName={#MyAppName} +AppVersion={#MyAppVersion} +;AppVerName={#MyAppName} {#MyAppVersion} +AppPublisher={#MyAppPublisher} +AppPublisherURL={#MyAppURL} +AppSupportURL={#MyAppURL} +AppUpdatesURL={#MyAppURL} +DefaultDirName={pf}\PluginOKNet +DefaultGroupName={#MyAppName} +AllowNoIcons=yes +; 以下行修改为实际的路径。 +LicenseFile=F:\Zorro\PluginOK\Net\license.txt +InfoAfterFile=F:\Zorro\PluginOK\Net\TestWrl.txt +; 以下行取消注释,以在非管理安装模式下运行(仅为当前用户安装)。 +PrivilegesRequired=admin +OutputDir=F:\Zorro\PluginOK +OutputBaseFilename=PluginOKNet +Compression=lzma +SolidCompression=yes +WizardStyle=modern + +[Languages] +Name: "chinesesimp"; MessagesFile: "compiler:Default.isl" + +[Files] +Source: "F:\Zorro\PluginOK\Net\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs +; 注意: 不要在任何共享系统文件上使用“Flags: ignoreversion” + +[Icons] +Name: "{group}\{cm:UninstallProgram,{#MyAppName}}"; Filename: "{uninstallexe}" + +[Run] +Filename: "{app}\ZbaSetup.exe";Parameters: "/S /I";Description: "安装服务";StatusMsg:"正在安装服务,请稍后..." + +[UninstallRun] +Filename: "{app}\ZbaSetup.exe";Parameters: "/S /U";StatusMsg:"正在停止服务并卸载,请稍后..." + diff --git a/PluginOK_Server.iss b/PluginOK_Server.iss new file mode 100644 index 0000000000000000000000000000000000000000..76cee21b6271431d7fe5945bc263949405723533 --- /dev/null +++ b/PluginOK_Server.iss @@ -0,0 +1,50 @@ +; 脚本由 Inno Setup 脚本向导 生成! +; 有关创建 Inno Setup 脚本文件的详细资料请查阅帮助文档! + +#define MyAppName "PluginOK中间件服务器" +#define MyAppVersion "2.1.1.2" +#define MyAppPublisher "成都佐罗软件有限公司" +#define MyAppURL "http://www.zorrosoft.com/" +#define MyAppExeName "ZbaSetup.exe" + +[Setup] +; 注: AppId的值为单独标识该应用程序。 +; 不要为其他安装程序使用相同的AppId值。 +; (若要生成新的 GUID,可在菜单中点击 "工具|生成 GUID"。) +AppId={{9EDC5C47-7F4B-4EAD-AE07-C24938298689} +AppName={#MyAppName} +AppVersion={#MyAppVersion} +;AppVerName={#MyAppName} {#MyAppVersion} +AppPublisher={#MyAppPublisher} +AppPublisherURL={#MyAppURL} +AppSupportURL={#MyAppURL} +AppUpdatesURL={#MyAppURL} +DefaultDirName={pf}\PluginOKServer +DefaultGroupName={#MyAppName} +AllowNoIcons=yes +; 以下行修改为实际的路径。 +LicenseFile=F:\Zorro\PluginOK\Server\license.txt +; 以下行取消注释,以在非管理安装模式下运行(仅为当前用户安装)。 +PrivilegesRequired=admin +OutputDir=F:\Zorro\PluginOK +OutputBaseFilename=PluginOKServer +Compression=lzma +SolidCompression=yes +WizardStyle=modern + +[Languages] +Name: "chinesesimp"; MessagesFile: "compiler:Default.isl" + +[Files] +Source: "F:\Zorro\PluginOK\Server\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs +; 注意: 不要在任何共享系统文件上使用“Flags: ignoreversion” + +[Icons] +Name: "{group}\{cm:UninstallProgram,{#MyAppName}}"; Filename: "{uninstallexe}" + +[Run] +Filename: "{app}\ZbaSetup.exe";Parameters: "/S /AI";Description: "安装服务器";StatusMsg:"正在安装服务器,请稍后..." + +[UninstallRun] +Filename: "{app}\ZbaSetup.exe";Parameters: "/S /AR";StatusMsg:"正在停止服务器并卸载,请稍后..." + diff --git a/Test/AcadFrame1.html b/Test/AcadFrame1.html new file mode 100644 index 0000000000000000000000000000000000000000..b668997896769df8000d555912cae01187273800 --- /dev/null +++ b/Test/AcadFrame1.html @@ -0,0 +1,81 @@ +锘 + + + + + + AutoCAD Applet Test + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ + + + + +
+
+
+ + +
+
+
+
+
閫氳璁板綍
+
+
+
+
+
+ + diff --git a/Test/TXFrame1.html b/Test/TXFrame1.html new file mode 100644 index 0000000000000000000000000000000000000000..89c509261589def75dcd074384bf59036c63d835 --- /dev/null +++ b/Test/TXFrame1.html @@ -0,0 +1,81 @@ +锘 + + + + + + Tencent Web Applet Test + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ + + + + +
+
+
+ + +
+
+
+
+
閫氳璁板綍
+
+
+
+
+
+ + diff --git a/Test/aipframe1.html b/Test/aipframe1.html new file mode 100644 index 0000000000000000000000000000000000000000..75de80687980dfee67d8a364bef944db05c6a1bf --- /dev/null +++ b/Test/aipframe1.html @@ -0,0 +1,81 @@ +锘 + + + + + + 褰撳墠椤靛唴宓岀偣鑱氱數瀛愮绔犲皬绋嬪簭娴嬭瘯(PluginOK) + + + + + + + + + + + + + + + + + + + +
+ +
+ +
+
+
+ + + + + +
+
+
+ + +
+
+
+
+
閫氳璁板綍
+
+
+
+
+
+ + diff --git a/Test/flashframe1.html b/Test/flashframe1.html new file mode 100644 index 0000000000000000000000000000000000000000..2df7aa6fc0721773669c9b104374b81f9b93128e --- /dev/null +++ b/Test/flashframe1.html @@ -0,0 +1,82 @@ +锘 + + + + + + 褰撳墠椤靛唴宓孎lash鎾斁灏忕▼搴忔祴璇(PluginOK) +