configure.ac | 4 cui/source/dialogs/about.cxx | 2 framework/source/helper/titlebarupdate.cxx | 2 include/default.rc | 2 instsetoo_native/CustomTarget_setup.mk | 2 instsetoo_native/util/openoffice.lst.in | 75 ++++----- postprocess/CustomTarget_registry.mk | 2 scp2/inc/macros.inc | 30 +-- scp2/source/base/folderitem_base.scp | 2 scp2/source/base/registryitem_base.scp | 26 +-- scp2/source/calc/folderitem_calc.scp | 2 scp2/source/calc/registryitem_calc.scp | 66 ++++---- scp2/source/draw/folderitem_draw.scp | 2 scp2/source/draw/registryitem_draw.scp | 66 ++++---- scp2/source/impress/folderitem_impress.scp | 2 scp2/source/impress/registryitem_impress.scp | 70 ++++---- scp2/source/math/folderitem_math.scp | 2 scp2/source/math/registryitem_math.scp | 56 +++---- scp2/source/ooo/folderitem_ooo.scp | 6 scp2/source/writer/folderitem_writer.scp | 2 scp2/source/writer/registryitem_writer.scp | 184 +++++++++++------------ sfx2/source/dialog/backingwindow.cxx | 4 solenv/bin/modules/installer/download.pm | 2 solenv/bin/modules/installer/setupscript.pm | 2 sysui/desktop/freedesktop/freedesktop-menus.spec | 4 sysui/desktop/share/create_tree.sh | 8 - sysui/productlist.mk | 10 - vcl/win/app/salinst.cxx | 2 28 files changed, 319 insertions(+), 318 deletions(-)
New commits: commit 5ce7a548004c9e5cdcd8ee7eb5424f234219d180 Author: Balazs Varga <balazs.varga.ext...@allotropia.de> AuthorDate: Wed Aug 16 15:19:28 2023 +0200 Commit: Balazs Varga <balazs.varga.ext...@allotropia.de> CommitDate: Thu Oct 17 11:26:27 2024 +0200 Branding for ZetaOffice without any branding image Branding ZetaOffice part 1. Also includes: Branding ZetaOffice part 2. I13be548a74b07a8a639208c0b21e9dca195c6b5e Branding ZetaOffice part 3. Ic27257e001005110375401ec2cc02cb4f52f0a88 Change-Id: I1e4c5cb54e1f15c1e5291fda0def92b81b00eea0 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/155744 Reviewed-by: Thorsten Behrens <thorsten.behr...@allotropia.de> Tested-by: Thorsten Behrens <thorsten.behr...@allotropia.de> (cherry picked from commit 21385708d1dad4087fe113f293fb50980a8e7460) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/174791 Tested-by: Balazs Varga <balazs.varga.ext...@allotropia.de> Reviewed-by: Balazs Varga <balazs.varga.ext...@allotropia.de> diff --git a/configure.ac b/configure.ac index 712cefcca6e8..cd27f1754f3a 100644 --- a/configure.ac +++ b/configure.ac @@ -9,7 +9,7 @@ dnl in order to create a configure script. # several non-alphanumeric characters, those are split off and used only for the # ABOUTBOXPRODUCTVERSIONSUFFIX in openoffice.lst. Why that is necessary, no idea. -AC_INIT([LibreOffice],[24.2.6.2],[],[],[http://documentfoundation.org/]) +AC_INIT([ZetaOffice],[24.2.6.2],[],[],[http://documentfoundation.org/]) dnl libnumbertext needs autoconf 2.68, but that can pick up autoconf268 just fine if it is installed dnl whereas aclocal (as run by autogen.sh) insists on using autoconf and fails hard @@ -496,7 +496,7 @@ if test -n "$with_product_name" -a "$with_product_name" != no; then PRODUCTNAME="$with_product_name" fi if test "$enable_release_build" = "" -o "$enable_release_build" = "no"; then - PRODUCTNAME="${PRODUCTNAME}Dev" + PRODUCTNAME=AC_PACKAGE_NAME fi AC_MSG_RESULT([$PRODUCTNAME]) AC_SUBST(PRODUCTNAME) diff --git a/cui/source/dialogs/about.cxx b/cui/source/dialogs/about.cxx index ce82e418cf9e..0ead4b573700 100644 --- a/cui/source/dialogs/about.cxx +++ b/cui/source/dialogs/about.cxx @@ -125,7 +125,7 @@ AboutDialog::AboutDialog(weld::Window *pParent) m_pCreditsButton->set_uri(officecfg::Office::Common::Menus::CreditsURL::get()); OUString sURL(officecfg::Office::Common::Help::StartCenter::InfoURL::get()); - localizeWebserviceURI(sURL); + // localizeWebserviceURI(sURL); m_pWebsiteButton->set_uri(sURL); // See also SID_WHATSNEW in sfx2/source/appl/appserv.cxx diff --git a/framework/source/helper/titlebarupdate.cxx b/framework/source/helper/titlebarupdate.cxx index add4ea9709b8..05a1e0278904 100644 --- a/framework/source/helper/titlebarupdate.cxx +++ b/framework/source/helper/titlebarupdate.cxx @@ -143,7 +143,7 @@ void TitleBarUpdate::impl_updateApplicationID(const css::uno::Reference< css::fr sDesktopName = "Startcenter"; #if defined(_WIN32) // We use a hardcoded product name matching the registry keys so applications can be associated with file types - sApplicationID = "TheDocumentFoundation.LibreOffice." + sDesktopName; + sApplicationID = "Allotropia.ZetaOffice." + sDesktopName; #else sApplicationID = utl::ConfigManager::getProductName().toAsciiLowerCase() + "-" + sDesktopName.toAsciiLowerCase(); #endif diff --git a/include/default.rc b/include/default.rc index 5474d55c4c0a..a0c1f7536600 100644 --- a/include/default.rc +++ b/include/default.rc @@ -45,7 +45,7 @@ VS_VERSION_INFO VERSIONINFO { // International StringTable VALUE "CompanyName", PPS(RES_APP_VENDOR) " - VALUE "ProductName", "LibreOffice + VALUE "ProductName", "ZetaOffice VALUE "ProductVersion", PPS(VER_LEVEL) " VALUE "FileVersion", PPS(VER_LEVEL) " VALUE "OriginalFilename", PPS(ORG_NAME) " diff --git a/instsetoo_native/CustomTarget_setup.mk b/instsetoo_native/CustomTarget_setup.mk index b78899a2c10b..3c8a8772d81c 100644 --- a/instsetoo_native/CustomTarget_setup.mk +++ b/instsetoo_native/CustomTarget_setup.mk @@ -41,7 +41,7 @@ $(gb_CustomTarget_workdir)/instsetoo_native/setup/$(call gb_Helper_get_rcfile,bo && echo 'InstallMode=<installmode>' \ && echo 'ProductKey=$(PRODUCTNAME) $(PRODUCTVERSION)' \ $(if $(ENABLE_RELEASE_BUILD),\ - && echo 'UserInstallation=$$SYSUSERCONFIG/$(shell echo $(PRODUCTNAME) | sed -e 's/ /%20/g' $(if $(filter-out HAIKU MACOSX WNT,$(OS)),| tr "[:upper:]" "[:lower:]"))/4', \ + && echo 'UserInstallation=$$SYSUSERCONFIG/$(if $(filter-out HAIKU MACOSX WNT,$(OS)),$(shell echo $(PRODUCTNAME_WITHOUT_SPACES) | tr "[:upper:]" "[:lower:]"),$(PRODUCTNAME_WITHOUT_SPACES))/4', \ && echo 'UserInstallation=$$ORIGIN/..') \ ) > $@ $(call gb_Trace_EndRange,$(subst $(WORKDIR)/,,$@),ECH) diff --git a/instsetoo_native/util/openoffice.lst.in b/instsetoo_native/util/openoffice.lst.in index b5da0bfb6697..e482ea2ad78a 100644 --- a/instsetoo_native/util/openoffice.lst.in +++ b/instsetoo_native/util/openoffice.lst.in @@ -5,15 +5,15 @@ Globals variables { LIBO_VERSION_MAJOR @LIBO_VERSION_MAJOR@ - UREPACKAGEVERSION @LIBO_VERSION_MAJOR@.@LIBO_VERSION_MINOR@.@LIBO_VERSION_MICRO@.@LIBO_VERSION_PATCH@@LIBO_VERSION_SUFFIX@ + UREPACKAGEVERSION @LIBO_VERSION_MAJOR@.@LIBO_VERSION_MINOR@.@LIBO_VERSION_MICRO@ URELAYERVERSION 1 REFERENCEOOOMAJORMINOR 4.1 - WINDOWSBASISROOTNAME LibreOffice - UNIXBASISROOTNAME libreoffice@LIBO_VERSION_MAJOR@.@LIBO_VERSION_MINOR@ + WINDOWSBASISROOTNAME ZetaOffice + UNIXBASISROOTNAME zetaoffice HIDELICENSEDIALOG 1 PACKAGEPREFIX - BASISPACKAGEPREFIX libobasis - UREPACKAGEPREFIX libreoffice + BASISPACKAGEPREFIX zetaofficebasis + UREPACKAGEPREFIX zetaoffice SOLSUREPACKAGEPREFIX libreoffice PROGRESSBARCOLOR 0,0,0 PROGRESSFRAMECOLOR 102,102,102 @@ -29,7 +29,8 @@ Globals UPDATE_DATABASE 1 UPDATE_DATABASE_LISTNAME finals_instsetoo.txt PACKAGEMAP package_names.txt,package_names_ext.txt - WINDOWSPATCHLEVEL 8 + WINDOWSPATCHLEVEL @LIBO_VERSION_MICRO@ + OOOVENDOR Allotropia Software GmbH 64BITPRODUCT @WINDOWS_X64@ WINDOWSSDKVERSION @WINDOWS_SDK_VERSION@ CRASHDUMPENABLE @DEFAULT_CRASHDUMP_VALUE@ @@ -37,15 +38,15 @@ Globals } } -LibreOffice +ZetaOffice { Settings { variables { - PRODUCTNAME @PRODUCTNAME@ + PRODUCTNAME ZetaOffice PRODUCTVERSION @LIBO_VERSION_MAJOR@.@LIBO_VERSION_MINOR@ - PRODUCTEXTENSION .@LIBO_VERSION_MICRO@.@LIBO_VERSION_PATCH@@LIBO_VERSION_SUFFIX@ + PRODUCTEXTENSION .@LIBO_VERSION_MICRO@.@LIBO_VERSION_PATCH@ POSTVERSIONEXTENSION BUNDLEIDENTIFIER @MACOSX_BUNDLE_IDENTIFIER@ BRANDPACKAGEVERSION @LIBO_VERSION_MAJOR@.@LIBO_VERSION_MINOR@ @@ -55,7 +56,7 @@ LibreOffice UPDATEURL https://update.libreoffice.org/check.php ADD_INCLUDE_FILES cli_ure/version/version.txt,unoil/climaker/version.txt ADDSYSTEMINTEGRATION 1 - PACKAGEVERSION @LIBO_VERSION_MAJOR@.@LIBO_VERSION_MINOR@.@LIBO_VERSION_MICRO@.@LIBO_VERSION_PATCH@@LIBO_VERSION_SUFFIX@ + PACKAGEVERSION @LIBO_VERSION_MAJOR@.@LIBO_VERSION_MINOR@.@LIBO_VERSION_MICRO@ PACKAGEREVISION {buildid} LICENSENAME @LICENSE@ ROOTMODULEGID gid_Module_Root @@ -67,33 +68,33 @@ LibreOffice active 1 compression 5 script setup_osl - downloadname LibreOffice_{productversion}_{os}_install_{languages} - langpackdownloadname LibreOffice_{productversion}_languagepack_{os}_install_{languages} - helppackdownloadname LibreOffice_{productversion}_helppack_{os}_install_{languages} - include {installscriptdir},{customtargetpath}/readlicense_oo/readme,{customtargetpath}/sysui/{pkgtype},{customtargetpath}/setup_native,{filelistpath}/PackageSet,{filelistpath}/GeneratedPackage,{filelistpath}/Package,{filelistpath}/ExtensionPackage,{filelistpath}/CustomTarget/helpcontent2/help3xsl/filelists,{extensionsdir},{licensepath},{packinfopath} + downloadname ZetaOffice_{productversion}_{os}_install_{languages} + langpackdownloadname ZetaOffice_{productversion}_languagepack_{os}_install_{languages} + helppackdownloadname ZetaOffice_{productversion}_helppack_{os}_install_{languages} + include {installscriptdir},{customtargetpath}/readlicense_oo/readme,{customtargetpath}/sysui/{pkgtype},{customtargetpath}/setup_native,{filelistpath}/PackageSet,{filelistpath}/GeneratedPackage,{filelistpath}/Package,{filelistpath}/ExtensionPackage,{filelistpath}/CustomTarget/helpcontent2/help3xsl/filelists,{extensionsdir},{licensepath},{customtargetpath}/readlicense_oo/license,{packinfopath} } } -LibreOfficeDev +ZetaOfficeDev { Settings { variables { - PRODUCTNAME LibreOfficeDev + PRODUCTNAME ZetaOfficeDev PRODUCTVERSION @LIBO_VERSION_MAJOR@.@LIBO_VERSION_MINOR@ PRODUCTEXTENSION .@LIBO_VERSION_MICRO@.@LIBO_VERSION_PATCH@@LIBO_VERSION_SUFFIX@ - WINDOWSBASISROOTNAME LibreOfficeDev @LIBO_VERSION_MAJOR@ - UNIXBASISROOTNAME libreofficedev@LIBO_VERSION_MAJOR@.@LIBO_VERSION_MINOR@ + WINDOWSBASISROOTNAME ZetaOfficeDev @LIBO_VERSION_MAJOR@ + UNIXBASISROOTNAME zetaofficedev@LIBO_VERSION_MAJOR@.@LIBO_VERSION_MINOR@ POSTVERSIONEXTENSION BUNDLEIDENTIFIER @MACOSX_BUNDLE_IDENTIFIER@ BRANDPACKAGEVERSION @LIBO_VERSION_MAJOR@.@LIBO_VERSION_MINOR@ USERDIRPRODUCTVERSION 4 BASEPRODUCTVERSION @LIBO_VERSION_MAJOR@.@LIBO_VERSION_MINOR@ DEVELOPMENTPRODUCT 1 - BASISPACKAGEPREFIX lodevbasis - UREPACKAGEPREFIX libreofficedev - SOLSUREPACKAGEPREFIX libreofficedev + BASISPACKAGEPREFIX zetaofficedevbasis + UREPACKAGEPREFIX zetaofficedev + SOLSUREPACKAGEPREFIX zetaofficedev REGISTRYLAYERNAME LayerDev UPDATEURL https://update.libreoffice.org/check.php ADD_INCLUDE_FILES cli_ure/version/version.txt,unoil/climaker/version.txt @@ -112,21 +113,21 @@ LibreOfficeDev active 1 compression 5 script setup_osl - downloadname LibreOfficeDev_{productversion}_{os}_install_{languages} - langpackdownloadname LibreOfficeDev_{productversion}_languagepack_{os}_install_{languages} - helppackdownloadname LibreOfficeDev_{productversion}_helppack_{os}_install_{languages} - include {installscriptdir},{customtargetpath}/readlicense_oo/readme,{customtargetpath}/sysui/{pkgtype},{customtargetpath}/setup_native,{filelistpath}/PackageSet,{filelistpath}/GeneratedPackage,{filelistpath}/Package,{filelistpath}/ExtensionPackage,{filelistpath}/CustomTarget/helpcontent2/help3xsl/filelists,{extensionsdir},{licensepath},{packinfopath} + downloadname ZetaOfficeDev_{productversion}_{os}_install_{languages} + langpackdownloadname ZetaOfficeDev_{productversion}_languagepack_{os}_install_{languages} + helppackdownloadname ZetaOfficeDev_{productversion}_helppack_{os}_install_{languages} + include {installscriptdir},{customtargetpath}/readlicense_oo/readme,{customtargetpath}/sysui/{pkgtype},{customtargetpath}/setup_native,{filelistpath}/PackageSet,{filelistpath}/GeneratedPackage,{filelistpath}/Package,{filelistpath}/ExtensionPackage,{filelistpath}/CustomTarget/helpcontent2/help3xsl/filelists,{extensionsdir},{licensepath},{customtargetpath}/readlicense_oo/license,{packinfopath} } } -LibreOffice_SDK +ZetaOffice_SDK { Settings { - downloadname LibreOffice-SDK_{packageversion}_{os}_install_{languages} + downloadname ZetaOffice-SDK_{packageversion}_{os}_install_{languages} variables { - PRODUCTNAME LibreOffice + PRODUCTNAME ZetaOffice PRODUCTVERSION @LIBO_VERSION_MAJOR@.@LIBO_VERSION_MINOR@ PRODUCTEXTENSION .@LIBO_VERSION_MICRO@.@LIBO_VERSION_PATCH@@LIBO_VERSION_SUFFIX@ POSTVERSIONEXTENSION SDK @@ -149,30 +150,30 @@ LibreOffice_SDK active 1 compression 5 script sdkoo - include {installscriptdir},{filelistpath}/PackageSet,{filelistpath}/GeneratedPackage,{filelistpath}/Package,{licensepath},{packinfopath} + include {installscriptdir},{filelistpath}/PackageSet,{filelistpath}/GeneratedPackage,{filelistpath}/Package,{licensepath},{customtargetpath}/readlicense_oo/license,{packinfopath} } } -LibreOfficeDev_SDK +ZetaOfficeDev_SDK { Settings { - downloadname LibreOfficeDev-SDK_{packageversion}_{os}_install_{languages} + downloadname ZetaOfficeDev-SDK_{packageversion}_{os}_install_{languages} variables { - PRODUCTNAME LibreOfficeDev + PRODUCTNAME ZetaOfficeDev PRODUCTVERSION @LIBO_VERSION_MAJOR@.@LIBO_VERSION_MINOR@ PRODUCTEXTENSION .@LIBO_VERSION_MICRO@.@LIBO_VERSION_PATCH@@LIBO_VERSION_SUFFIX@ - WINDOWSBASISROOTNAME LibreOfficeDev @LIBO_VERSION_MAJOR@ - UNIXBASISROOTNAME libreofficedev@LIBO_VERSION_MAJOR@.@LIBO_VERSION_MINOR@ + WINDOWSBASISROOTNAME ZetaOfficeDev @LIBO_VERSION_MAJOR@ + UNIXBASISROOTNAME zetaofficedev@LIBO_VERSION_MAJOR@.@LIBO_VERSION_MINOR@ POSTVERSIONEXTENSION SDK BUNDLEIDENTIFIER @MACOSX_BUNDLE_IDENTIFIER@.SDK BRANDPACKAGEVERSION @LIBO_VERSION_MAJOR@.@LIBO_VERSION_MINOR@ PACKAGEVERSION @LIBO_VERSION_MAJOR@.@LIBO_VERSION_MINOR@.@LIBO_VERSION_MICRO@.@LIBO_VERSION_PATCH@@LIBO_VERSION_SUFFIX@ PACKAGEREVISION {buildid} BASISPACKAGEPREFIX lodevbasis - UREPACKAGEPREFIX libreofficedev - SOLSUREPACKAGEPREFIX libreofficedev + UREPACKAGEPREFIX zetaofficedev + SOLSUREPACKAGEPREFIX zetaofficedev REGISTRYLAYERNAME LayerDev DEVELOPMENTPRODUCT 1 PACK_INSTALLED 1 @@ -190,6 +191,6 @@ LibreOfficeDev_SDK active 1 compression 5 script sdkoo - include {installscriptdir},{filelistpath}/PackageSet,{filelistpath}/GeneratedPackage,{filelistpath}/Package,{licensepath},{packinfopath} + include {installscriptdir},{filelistpath}/PackageSet,{filelistpath}/GeneratedPackage,{filelistpath}/Package,{licensepath},{customtargetpath}/readlicense_oo/license,{packinfopath} } } diff --git a/postprocess/CustomTarget_registry.mk b/postprocess/CustomTarget_registry.mk index a74455bcd385..26171871cf6c 100644 --- a/postprocess/CustomTarget_registry.mk +++ b/postprocess/CustomTarget_registry.mk @@ -575,7 +575,7 @@ postprocess_main_SED := \ -e 's,$${PRODUCTNAME},$(PRODUCTNAME),g' \ -e 's,$${PRODUCTVERSION},$(PRODUCTVERSION),g' \ -e 's,$${PRODUCTEXTENSION},.$(LIBO_VERSION_MICRO).$(LIBO_VERSION_PATCH)$(LIBO_VERSION_SUFFIX),g' \ - -e 's,$${STARTCENTER_INFO_URL},https://www.libreoffice.org/,g' \ + -e 's,$${STARTCENTER_INFO_URL},https://www.allotropia.de/,g' \ -e 's,$${SYSTEM_LIBEXTTEXTCAT_DATA},$(SYSTEM_LIBEXTTEXTCAT_DATA),g' \ -e 's,$${SYSTEM_LIBNUMBERTEXT_DATA},$(SYSTEM_LIBNUMBERTEXT_DATA),g' \ -e 's,$${PRIVACY_POLICY_URL},$(PRIVACY_POLICY_URL),g' \ diff --git a/scp2/inc/macros.inc b/scp2/inc/macros.inc index 8f507c510346..4a2d8b4f6a43 100644 --- a/scp2/inc/macros.inc +++ b/scp2/inc/macros.inc @@ -240,7 +240,7 @@ End ParentID = PREDEFINED_HKEY_CLASSES_ROOT; \ ModuleID = modid; \ Subkey = STRING(CONCAT3(.,key,\OpenWithProgIDs)); \ - Name = STRING(CONCAT2(LibreOffice.,name)); \ + Name = STRING(CONCAT2(ZetaOffice.,name)); \ Value = " "; \ End @@ -249,7 +249,7 @@ End ParentID = PREDEFINED_HKEY_CLASSES_ROOT; \ ModuleID = modid; \ Subkey = STRING(CONCAT3(.,key,\OpenWithProgIDs)); \ - Name = STRING(CONCAT2(LibreOffice.,name)); \ + Name = STRING(CONCAT2(ZetaOffice.,name)); \ Value = " "; \ End @@ -258,7 +258,7 @@ End ParentID = PREDEFINED_HKEY_CLASSES_ROOT; \ ModuleID = gid_Module_Root_Reg_##name; \ Subkey = STRING(CONCAT2(.,key)); \ - Value = STRING(CONCAT2(LibreOffice.,name)); \ + Value = STRING(CONCAT2(ZetaOffice.,name)); \ ComponentCondition = STRING(CONCAT3(REGISTER_,cond,=1)); \ End @@ -276,7 +276,7 @@ End RegistryItem CONCAT2(gid_Regitem_Openoffice_,name) \ ParentID = PREDEFINED_HKEY_CLASSES_ROOT; \ ModuleID = modid; \ - Subkey = STRING(CONCAT2(LibreOffice.,name)); \ + Subkey = STRING(CONCAT2(ZetaOffice.,name)); \ REG_VALUE_LNG(disp_name) \ End @@ -284,16 +284,16 @@ End RegistryItem CONCAT3(gid_Regitem_Openoffice_,name,_AppUserModelID) \ ParentID = PREDEFINED_HKEY_CLASSES_ROOT; \ ModuleID = modid; \ - Subkey = STRING(CONCAT2(LibreOffice.,name)); \ + Subkey = STRING(CONCAT2(ZetaOffice.,name)); \ Name = STRING(AppUserModelID); \ - Value = STRING(CONCAT2(TheDocumentFoundation.LibreOffice.,doc_type)); \ + Value = STRING(CONCAT2(TheDocumentFoundation.ZetaOffice.,doc_type)); \ End #define REGISTRY_ENTRY_ICON(name,modid,icon_id) \ RegistryItem CONCAT3(gid_Regitem_Openoffice_,name,_Defaulticon) \ ParentID = PREDEFINED_HKEY_CLASSES_ROOT; \ ModuleID = modid; \ - Subkey = STRING(CONCAT3(LibreOffice.,name,\DefaultIcon)); \ + Subkey = STRING(CONCAT3(ZetaOffice.,name,\DefaultIcon)); \ Value = "<progpath>\program\soffice.bin," STRING(icon_id); \ End @@ -301,7 +301,7 @@ End RegistryItem CONCAT3(gid_Regitem_Openoffice_,name,_Shell) \ ParentID = PREDEFINED_HKEY_CLASSES_ROOT; \ ModuleID = modid; \ - Subkey = STRING(CONCAT3(LibreOffice.,name,\shell)); \ + Subkey = STRING(CONCAT3(ZetaOffice.,name,\shell)); \ Value = STRING(default); \ End @@ -309,13 +309,13 @@ End RegistryItem CONCAT3(gid_Regitem_Openoffice_,name,_Shell_New) \ ParentID = PREDEFINED_HKEY_CLASSES_ROOT; \ ModuleID = modid; \ - Subkey = STRING(CONCAT3(LibreOffice.,name,\shell ew)); \ + Subkey = STRING(CONCAT3(ZetaOffice.,name,\shell ew)); \ REG_VALUE_LNG(NEW) \ End \ RegistryItem CONCAT3(gid_Regitem_Openoffice_,name,_Shell_New_Command) \ ParentID = PREDEFINED_HKEY_CLASSES_ROOT; \ ModuleID = modid; \ - Subkey = STRING(CONCAT3(LibreOffice.,name,\shell ew+ Subkey = STRING(CONCAT3(ZetaOffice.,name,\shell ew Value = "\"" STRING(progpath_program_app) "\" -n \"%1\""; \ End @@ -326,7 +326,7 @@ End RegistryItem CONCAT3(gid_Regitem_Openoffice_,name,_Shell_Open_Command) \ ParentID = PREDEFINED_HKEY_CLASSES_ROOT; \ ModuleID = modid; \ - Subkey = STRING(CONCAT3(LibreOffice.,name,\shell\open+ Subkey = STRING(CONCAT3(ZetaOffice.,name,\shell\open Value = "\"" STRING(progpath_program_app) "\" -o \"%1\""; \ End @@ -337,7 +337,7 @@ End RegistryItem CONCAT3(gid_Regitem_Openoffice_,name,_Shell_Print_Command) \ ParentID = PREDEFINED_HKEY_CLASSES_ROOT; \ ModuleID = modid; \ - Subkey = STRING(CONCAT3(LibreOffice.,name,\shell\print+ Subkey = STRING(CONCAT3(ZetaOffice.,name,\shell\print Value = "\"" STRING(progpath_program_app) "\" -p \"%1\""; \ End @@ -348,7 +348,7 @@ End RegistryItem CONCAT3(gid_Regitem_Openoffice_,name,_Shell_Printto_Command) \ ParentID = PREDEFINED_HKEY_CLASSES_ROOT; \ ModuleID = modid; \ - Subkey = STRING(CONCAT3(LibreOffice.,name,\shell\printto+ Subkey = STRING(CONCAT3(ZetaOffice.,name,\shell\printto Value = "\"" STRING(progpath_program_app) "\" -pt \"%2\" \"%1\""; \ End @@ -361,7 +361,7 @@ End ModuleID = modid; \ Subkey = STRING(Software\%MANUFACTURER\%PRODUCTNAME%PRODUCTADDON\%PRODUCTVERSION\Capabilities\FileAssociations); \ Name = STRING(CONCAT2(.,key)); \ - Value = STRING(CONCAT2(LibreOffice.,name)); \ + Value = STRING(CONCAT2(ZetaOffice.,name)); \ Styles = (); \ End @@ -371,7 +371,7 @@ End ModuleID = modid; \ Subkey = STRING(Software\%MANUFACTURER\%PRODUCTNAME%PRODUCTADDON\%PRODUCTVERSION\Capabilities\FileAssociations); \ Name = STRING(CONCAT2(.,key)); \ - Value = STRING(CONCAT2(LibreOffice.,name)); \ + Value = STRING(CONCAT2(ZetaOffice.,name)); \ Styles = (); \ End diff --git a/scp2/source/base/folderitem_base.scp b/scp2/source/base/folderitem_base.scp index 75e1d5d05b01..9d80f2b7b0de 100644 --- a/scp2/source/base/folderitem_base.scp +++ b/scp2/source/base/folderitem_base.scp @@ -35,6 +35,6 @@ End FolderItemProperty gid_Fip_Sbase_AppID ShortcutID = gid_Folderitem_Sbase; Key = "System.AppUserModel.ID"; - Value = "TheDocumentFoundation.LibreOffice.Base"; + Value = "Allotropia.ZetaOffice.Base"; End #endif diff --git a/scp2/source/base/registryitem_base.scp b/scp2/source/base/registryitem_base.scp index ee7932ccd451..ced009487ab8 100644 --- a/scp2/source/base/registryitem_base.scp +++ b/scp2/source/base/registryitem_base.scp @@ -24,7 +24,7 @@ RegistryItem gid_Regitem_Odb ParentID = PREDEFINED_HKEY_CLASSES_ROOT; Subkey = ".odb"; ModuleID = gid_Module_Prg_Base_Bin; - Value = "LibreOffice.DatabaseDocument.1"; + Value = "ZetaOffice.DatabaseDocument.1"; End RegistryItem gid_Regitem_Odb_PersistentHandler @@ -44,7 +44,7 @@ End RegistryItem gid_Regitem_DatabaseDocument_1_Shellex_PropertySheetHandlers_MyPropSheet1 ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Base_Bin; - Subkey = "LibreOffice.DatabaseDocument.1\shellex\PropertySheetHandlers\MyPropSheet1"; + Subkey = "ZetaOffice.DatabaseDocument.1\shellex\PropertySheetHandlers\MyPropSheet1"; Value = "{63542C48-9552-494A-84F7-73AA6A7C99C1}"; End @@ -66,14 +66,14 @@ End RegistryItem gid_Regitem_Openoffice_Databasedocument_1 ParentID = PREDEFINED_HKEY_CLASSES_ROOT; - Subkey = "LibreOffice.DatabaseDocument.1"; + Subkey = "ZetaOffice.DatabaseDocument.1"; ModuleID = gid_Module_Prg_Base_Bin; REG_VALUE_LNG(OO_DATABASE) End RegistryItem gid_Regitem_Openoffice_Databasedocument_1_Defaulticon ParentID = PREDEFINED_HKEY_CLASSES_ROOT; - Subkey = "LibreOffice.DatabaseDocument.1\DefaultIcon"; + Subkey = "ZetaOffice.DatabaseDocument.1\DefaultIcon"; ModuleID = gid_Module_Prg_Base_Bin; Value = "<progpath>\program\soffice.bin,11"; End @@ -81,15 +81,15 @@ End RegistryItem gid_Regitem_Openoffice_Databasedocument_1_AppUserModelID ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Base_Bin; - Subkey = "LibreOffice.DatabaseDocument.1"; + Subkey = "ZetaOffice.DatabaseDocument.1"; Name = "AppUserModelID"; - Value = "TheDocumentFoundation.LibreOffice.Base"; + Value = "Allotropia.ZetaOffice.Base"; End RegistryItem gid_Regitem_Openoffice_Databasedocument_1_FriendlyTypeName ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Base_Bin; - Subkey = "LibreOffice.DatabaseDocument.1"; + Subkey = "ZetaOffice.DatabaseDocument.1"; Name = "FriendlyTypeName"; REG_VALUE_LNG(OO_DATABASE) End @@ -98,7 +98,7 @@ End RegistryItem gid_Regitem_odb_FullDetails ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Optional_Winexplorerext; - Subkey = "LibreOffice.DatabaseDocument.1"; + Subkey = "ZetaOffice.DatabaseDocument.1"; Name = "FullDetails"; Value = "prop:System.PropGroup.Description;System.Title;System.Author;System.Subject;System.Keywords;System.Comment;System.PropGroup.FileSystem;System.ItemNameDisplay;System.ItemType;System.ItemFolderPathDisplay;System.Size;System.DateCreated;System.DateModified;System.FileAttributes;System.ComputerName"; End @@ -114,21 +114,21 @@ End RegistryItem gid_Regitem_Openoffice_Databasedocument_1_Shell ParentID = PREDEFINED_HKEY_CLASSES_ROOT; - Subkey = "LibreOffice.DatabaseDocument.1\shell"; + Subkey = "ZetaOffice.DatabaseDocument.1\shell"; ModuleID = gid_Module_Prg_Base_Bin; Value = "open"; End // RegistryItem gid_Regitem_Openoffice_Databasedocument_1_Shell_Open_Command // ParentID = PREDEFINED_HKEY_CLASSES_ROOT; -// Subkey = "LibreOffice.DatabaseDocument.1\shell\open+// Subkey = "ZetaOffice.DatabaseDocument.1\shell\open // ModuleID = gid_Module_Prg_Base_Bin; // Value = "\"<progpath>\program\soffice.exe\" -o \"%1\""; // End RegistryItem gid_Regitem_Openoffice_Databasedocument_1_Shell_Open_Command ParentID = PREDEFINED_HKEY_CLASSES_ROOT; - Subkey = "LibreOffice.DatabaseDocument.1\shell\open+ Subkey = "ZetaOffice.DatabaseDocument.1\shell\open ModuleID = gid_Module_Prg_Base_Bin; Value = "\"<progpath>\program\sbase.exe\" -o \"%1\""; Styles = (); @@ -140,7 +140,7 @@ RegistryItem gid_Regitem_OpenOffice_ODB_OpenWith_Database ParentID = PREDEFINED_HKEY_CLASSES_ROOT; Subkey = ".odb\OpenWithProgIDs"; ModuleID = gid_Module_Prg_Base_Bin; - Name = "LibreOffice.DatabaseDocument.1"; + Name = "ZetaOffice.DatabaseDocument.1"; Value = " "; End @@ -149,7 +149,7 @@ RegistryItem gid_Regitem_Software_Manufacturer_Productname_Productversion_Capabi Subkey = "Software\%MANUFACTURER\%PRODUCTNAME%PRODUCTADDON\%PRODUCTVERSION\Capabilities\FileAssociations"; ModuleID = gid_Module_Prg_Base_Bin; Name = ".odb"; - Value = "LibreOffice.DatabaseDocument.1"; + Value = "ZetaOffice.DatabaseDocument.1"; Styles = (); End diff --git a/scp2/source/calc/folderitem_calc.scp b/scp2/source/calc/folderitem_calc.scp index a41ade695864..9da57822662b 100644 --- a/scp2/source/calc/folderitem_calc.scp +++ b/scp2/source/calc/folderitem_calc.scp @@ -35,6 +35,6 @@ End FolderItemProperty gid_Fip_Scalc_AppID ShortcutID = gid_Folderitem_Scalc; Key = "System.AppUserModel.ID"; - Value = "TheDocumentFoundation.LibreOffice.Calc"; + Value = "Allotropia.ZetaOffice.Calc"; End #endif diff --git a/scp2/source/calc/registryitem_calc.scp b/scp2/source/calc/registryitem_calc.scp index b6cf9c3df5c3..74768b70a8ac 100644 --- a/scp2/source/calc/registryitem_calc.scp +++ b/scp2/source/calc/registryitem_calc.scp @@ -219,7 +219,7 @@ RegistryItem gid_Regitem_Clsid__7fa8ae11_B3e3_4d88_Aabf_255526cd1ce8__Progid ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Calc_Bin; Subkey = "CLSID\{7FA8AE11-B3E3-4D88-AABF-255526CD1CE8}\ProgID"; - Value = "LibreOffice.CalcDocument.1"; + Value = "ZetaOffice.CalcDocument.1"; End RegistryItem gid_Regitem_Clsid__7fa8ae11_B3e3_4d88_Aabf_255526cd1ce8__Programmable @@ -253,7 +253,7 @@ RegistryItem gid_Regitem_Clsid__7fa8ae11_B3e3_4d88_Aabf_255526cd1ce8__Versionind ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Calc_Bin; Subkey = "CLSID\{7FA8AE11-B3E3-4D88-AABF-255526CD1CE8}\VersionIndependentProgID"; - Value = "LibreOffice.CalcDocument.1"; + Value = "ZetaOffice.CalcDocument.1"; End RegistryItem gid_Regitem_Soffice_Starcalcdocument_6 @@ -282,7 +282,7 @@ RegistryItem gid_Regitem_Soffice_Starcalcdocument_6_AppUserModelID ModuleID = gid_Module_Prg_Calc_Bin; Subkey = "soffice.StarCalcDocument.6"; Name = "AppUserModelID"; - Value = "TheDocumentFoundation.LibreOffice.Calc"; + Value = "Allotropia.ZetaOffice.Calc"; End RegistryItem gid_Regitem_Soffice_Starcalcdocument_6_FriendlyTypeName @@ -395,7 +395,7 @@ RegistryItem gid_Regitem_Soffice_Starcalctemplate_6_AppUserModelID ModuleID = gid_Module_Prg_Calc_Bin; Subkey = "soffice.StarCalcTemplate.6"; Name = "AppUserModelID"; - Value = "TheDocumentFoundation.LibreOffice.Calc"; + Value = "Allotropia.ZetaOffice.Calc"; End RegistryItem gid_Regitem_Soffice_Starcalctemplate_6_FriendlyTypeName @@ -614,7 +614,7 @@ End RegistryItem gid_Regitem_CalcDocument_1_Shellex_PropertySheetHandlers_MyPropSheet1 ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Calc_Bin; - Subkey = "LibreOffice.CalcDocument.1\shellex\PropertySheetHandlers\MyPropSheet1"; + Subkey = "ZetaOffice.CalcDocument.1\shellex\PropertySheetHandlers\MyPropSheet1"; Value = "{63542C48-9552-494A-84F7-73AA6A7C99C1}"; End @@ -622,7 +622,7 @@ RegistryItem gid_Regitem__Ods ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Calc_Bin; Subkey = ".ods"; - Value = "LibreOffice.CalcDocument.1"; + Value = "ZetaOffice.CalcDocument.1"; End RegistryItem gid_Regitem_Software_Manufacturer_Productname_Productversion_Capabilities_FileAssociations_ods @@ -630,7 +630,7 @@ RegistryItem gid_Regitem_Software_Manufacturer_Productname_Productversion_Capabi Subkey = "Software\%MANUFACTURER\%PRODUCTNAME%PRODUCTADDON\%PRODUCTVERSION\Capabilities\FileAssociations"; ModuleID = gid_Module_Prg_Calc_Bin; Name = ".ods"; - Value = "LibreOffice.CalcDocument.1"; + Value = "ZetaOffice.CalcDocument.1"; Styles = (); End @@ -639,7 +639,7 @@ RegistryItem gid_Regitem_Software_Manufacturer_Productname_Productversion_Capabi Subkey = "Software\%MANUFACTURER\%PRODUCTNAME%PRODUCTADDON\%PRODUCTVERSION\Capabilities\MimeAssociations"; ModuleID = gid_Module_Prg_Calc_Bin; Name = "application/vnd.oasis.opendocument.spreadsheet"; - Value = "LibreOffice.CalcDocument.1"; + Value = "ZetaOffice.CalcDocument.1"; Styles = (); End @@ -662,7 +662,7 @@ End RegistryItem gid_Regitem_Ods_Openoffice_Calcdocument_1_Shellnew ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Calc_Bin; - Subkey = ".ods\LibreOffice.CalcDocument.1\ShellNew"; + Subkey = ".ods\ZetaOffice.CalcDocument.1\ShellNew"; Name = "FileName"; Value = "<progpath>\share emplate\shellnew\soffice.ods"; End @@ -670,43 +670,43 @@ End RegistryItem gid_Regitem_Openoffice_Calcdocument_Curver ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Calc_Bin; - Subkey = "LibreOffice.CalcDocument\CurVer"; - Value = "LibreOffice.CalcDocument.1"; + Subkey = "ZetaOffice.CalcDocument\CurVer"; + Value = "ZetaOffice.CalcDocument.1"; End RegistryItem gid_Regitem_Openoffice_Calcdocument_1 ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Calc_Bin; - Subkey = "LibreOffice.CalcDocument.1"; + Subkey = "ZetaOffice.CalcDocument.1"; REG_VALUE_LNG(OO_CALC) End RegistryItem gid_Regitem_Openoffice_Calcdocument_1_Clsid ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Calc_Bin; - Subkey = "LibreOffice.CalcDocument.1\CLSID"; + Subkey = "ZetaOffice.CalcDocument.1\CLSID"; Value = "{7FA8AE11-B3E3-4D88-AABF-255526CD1CE8}"; End RegistryItem gid_Regitem_Openoffice_Calcdocument_1_Defaulticon ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Calc_Bin; - Subkey = "LibreOffice.CalcDocument.1\DefaultIcon"; + Subkey = "ZetaOffice.CalcDocument.1\DefaultIcon"; Value = "<progpath>\program\soffice.bin,3"; End RegistryItem gid_Regitem_Openoffice_Calcdocument_1_AppUserModelID ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Calc_Bin; - Subkey = "LibreOffice.CalcDocument.1"; + Subkey = "ZetaOffice.CalcDocument.1"; Name = "AppUserModelID"; - Value = "TheDocumentFoundation.LibreOffice.Calc"; + Value = "Allotropia.ZetaOffice.Calc"; End RegistryItem gid_Regitem_Openoffice_Calcdocument_1_FriendlyTypeName ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Calc_Bin; - Subkey = "LibreOffice.CalcDocument.1"; + Subkey = "ZetaOffice.CalcDocument.1"; Name = "FriendlyTypeName"; REG_VALUE_LNG(OO_CALC) End @@ -715,7 +715,7 @@ End RegistryItem gid_Regitem_ods_FullDetails ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Optional_Winexplorerext; - Subkey = "LibreOffice.CalcDocument.1"; + Subkey = "ZetaOffice.CalcDocument.1"; Name = "FullDetails"; Value = "prop:System.PropGroup.Description;System.Title;System.Author;System.Subject;System.Keywords;System.Comment;System.PropGroup.FileSystem;System.ItemNameDisplay;System.ItemType;System.ItemFolderPathDisplay;System.Size;System.DateCreated;System.DateModified;System.FileAttributes;System.ComputerName"; End @@ -732,62 +732,62 @@ End RegistryItem gid_Regitem_Openoffice_Calcdocument_1_Insertable ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Calc_Bin; - Subkey = "LibreOffice.CalcDocument.1\Insertable"; + Subkey = "ZetaOffice.CalcDocument.1\Insertable"; End RegistryItem gid_Regitem_Openoffice_Calcdocument_1_Protocol_Stdfileediting_Server ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Calc_Bin; - Subkey = "LibreOffice.CalcDocument.1\protocol\StdFileEditing\server"; + Subkey = "ZetaOffice.CalcDocument.1\protocol\StdFileEditing\server"; Value = "<progpath>\program\soffice.exe"; End RegistryItem gid_Regitem_Openoffice_Calcdocument_1_Protocol_Stdfileediting_Verb_0 ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Calc_Bin; - Subkey = "LibreOffice.CalcDocument.1\protocol\StdFileEditingerb + Subkey = "ZetaOffice.CalcDocument.1\protocol\StdFileEditingerb Value = "&Edit"; End RegistryItem gid_Regitem_Openoffice_Calcdocument_1_Protocol_Stdfileediting_Verb__1 ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Calc_Bin; - Subkey = "LibreOffice.CalcDocument.1\protocol\StdFileEditingerb\-1"; + Subkey = "ZetaOffice.CalcDocument.1\protocol\StdFileEditingerb\-1"; Value = "&Show"; End RegistryItem gid_Regitem_Openoffice_Calcdocument_1_Protocol_Stdfileediting_Verb__2 ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Calc_Bin; - Subkey = "LibreOffice.CalcDocument.1\protocol\StdFileEditingerb\-2"; + Subkey = "ZetaOffice.CalcDocument.1\protocol\StdFileEditingerb\-2"; Value = "&Open"; End RegistryItem gid_Regitem_Openoffice_Calcdocument_1_Shell ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Calc_Bin; - Subkey = "LibreOffice.CalcDocument.1\shell"; + Subkey = "ZetaOffice.CalcDocument.1\shell"; Value = "open"; End RegistryItem gid_Regitem_Openoffice_Calcdocument_1_Shell_New ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Calc_Bin; - Subkey = "LibreOffice.CalcDocument.1\shell ew"; + Subkey = "ZetaOffice.CalcDocument.1\shell ew"; REG_VALUE_LNG(NEW) End RegistryItem gid_Regitem_Openoffice_Calcdocument_1_Shell_New_Command ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Calc_Bin; - Subkey = "LibreOffice.CalcDocument.1\shell ew+ Subkey = "ZetaOffice.CalcDocument.1\shell ew Value = "\"<progpath>\program\soffice.exe\" -n \"%1\""; End RegistryItem gid_Regitem_Openoffice_Calcdocument_1_Shell_Open_Command ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Calc_Bin; - Subkey = "LibreOffice.CalcDocument.1\shell\open+ Subkey = "ZetaOffice.CalcDocument.1\shell\open Value = "\"<progpath>\program\soffice.exe\" -o \"%1\""; Styles = (); End @@ -795,14 +795,14 @@ End RegistryItem gid_Regitem_Openoffice_Calcdocument_1_Shell_Print_Command ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Calc_Bin; - Subkey = "LibreOffice.CalcDocument.1\shell\print+ Subkey = "ZetaOffice.CalcDocument.1\shell\print Value = "\"<progpath>\program\soffice.exe\" -p \"%1\""; End RegistryItem gid_Regitem_Openoffice_Calcdocument_1_Shell_Printto_Command ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Calc_Bin; - Subkey = "LibreOffice.CalcDocument.1\shell\printto+ Subkey = "ZetaOffice.CalcDocument.1\shell\printto Value = "\"<progpath>\program\soffice.exe\" -pt \"%2\" \"%1\""; End @@ -827,7 +827,7 @@ RegistryItem gid_Regitem__Fods ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Calc_Bin; Subkey = ".fods"; - Value = "LibreOffice.CalcDocument.1"; + Value = "ZetaOffice.CalcDocument.1"; End RegistryItem gid_Regitem_Software_Manufacturer_Productname_Productversion_Capabilities_FileAssociations_fods @@ -835,7 +835,7 @@ RegistryItem gid_Regitem_Software_Manufacturer_Productname_Productversion_Capabi Subkey = "Software\%MANUFACTURER\%PRODUCTNAME%PRODUCTADDON\%PRODUCTVERSION\Capabilities\FileAssociations"; ModuleID = gid_Module_Root; Name = ".fods"; - Value = "LibreOffice.CalcDocument.1"; + Value = "ZetaOffice.CalcDocument.1"; End RegistryItem gid_Regitem_Fods_Contenttype @@ -918,7 +918,7 @@ RegistryItem gid_Regitem_Openoffice_Calctemplate_1_AppUserModelID ModuleID = gid_Module_Prg_Calc_Bin; Subkey = "LibreOffice.CalcTemplate.1"; Name = "AppUserModelID"; - Value = "TheDocumentFoundation.LibreOffice.Calc"; + Value = "Allotropia.ZetaOffice.Calc"; End RegistryItem gid_Regitem_Openoffice_Calctemplate_1_FriendlyTypeName @@ -996,7 +996,7 @@ RegistryItem gid_Regitem_OpenOffice_ODS_OpenWith_Calc ParentID = PREDEFINED_HKEY_CLASSES_ROOT; Subkey = ".ods\OpenWithProgIDs"; ModuleID = gid_Module_Prg_Calc_Bin; - Name = "LibreOffice.CalcDocument.1"; + Name = "ZetaOffice.CalcDocument.1"; Value = " "; End diff --git a/scp2/source/draw/folderitem_draw.scp b/scp2/source/draw/folderitem_draw.scp index 5dc8757e96f3..cd20cc4860d5 100644 --- a/scp2/source/draw/folderitem_draw.scp +++ b/scp2/source/draw/folderitem_draw.scp @@ -35,6 +35,6 @@ End FolderItemProperty gid_Fip_Sdraw_AppID ShortcutID = gid_Folderitem_Sdraw; Key = "System.AppUserModel.ID"; - Value = "TheDocumentFoundation.LibreOffice.Draw"; + Value = "Allotropia.ZetaOffice.Draw"; End #endif diff --git a/scp2/source/draw/registryitem_draw.scp b/scp2/source/draw/registryitem_draw.scp index 515b55fb58f7..b494b7e396f4 100644 --- a/scp2/source/draw/registryitem_draw.scp +++ b/scp2/source/draw/registryitem_draw.scp @@ -219,7 +219,7 @@ RegistryItem gid_Regitem_Clsid__448bb771_Cfe2_47c4_Bcdf_1fbf378e202c__Progid ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Draw_Bin; Subkey = "CLSID\{448BB771-CFE2-47C4-BCDF-1FBF378E202C}\ProgID"; - Value = "LibreOffice.DrawDocument.1"; + Value = "ZetaOffice.DrawDocument.1"; End RegistryItem gid_Regitem_Clsid__448bb771_Cfe2_47c4_Bcdf_1fbf378e202c__Programmable @@ -253,7 +253,7 @@ RegistryItem gid_Regitem_Clsid__448bb771_Cfe2_47c4_Bcdf_1fbf378e202c__Versionind ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Draw_Bin; Subkey = "CLSID\{448BB771-CFE2-47C4-BCDF-1FBF378E202C}\VersionIndependentProgID"; - Value = "LibreOffice.DrawDocument.1"; + Value = "ZetaOffice.DrawDocument.1"; End RegistryItem gid_Regitem_Soffice_Stardrawdocument_6 @@ -282,7 +282,7 @@ RegistryItem gid_Regitem_Soffice_Stardrawdocument_6_AppUserModelID ModuleID = gid_Module_Prg_Draw_Bin; Subkey = "soffice.StarDrawDocument.6"; Name = "AppUserModelID"; - Value = "TheDocumentFoundation.LibreOffice.Draw"; + Value = "Allotropia.ZetaOffice.Draw"; End RegistryItem gid_Regitem_Soffice_Stardrawdocument_6_FriendlyTypeName @@ -395,7 +395,7 @@ RegistryItem gid_Regitem_Soffice_Stardrawtemplate_6_AppUserModelID ModuleID = gid_Module_Prg_Draw_Bin; Subkey = "soffice.StarDrawTemplate.6"; Name = "AppUserModelID"; - Value = "TheDocumentFoundation.LibreOffice.Draw"; + Value = "Allotropia.ZetaOffice.Draw"; End RegistryItem gid_Regitem_Soffice_Stardrawtemplate_6_FriendlyTypeName @@ -613,7 +613,7 @@ End RegistryItem gid_Regitem_DrawDocument_1_Shellex_PropertySheetHandlers_MyPropSheet1 ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Draw_Bin; - Subkey = "LibreOffice.DrawDocument.1\shellex\PropertySheetHandlers\MyPropSheet1"; + Subkey = "ZetaOffice.DrawDocument.1\shellex\PropertySheetHandlers\MyPropSheet1"; Value = "{63542C48-9552-494A-84F7-73AA6A7C99C1}"; End @@ -637,7 +637,7 @@ RegistryItem gid_Regitem__Odg ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Draw_Bin; Subkey = ".odg"; - Value = "LibreOffice.DrawDocument.1"; + Value = "ZetaOffice.DrawDocument.1"; End RegistryItem gid_Regitem_Software_Manufacturer_Productname_Productversion_Capabilities_FileAssociations_odg @@ -645,7 +645,7 @@ RegistryItem gid_Regitem_Software_Manufacturer_Productname_Productversion_Capabi Subkey = "Software\%MANUFACTURER\%PRODUCTNAME%PRODUCTADDON\%PRODUCTVERSION\Capabilities\FileAssociations"; ModuleID = gid_Module_Prg_Draw_Bin; Name = ".odg"; - Value = "LibreOffice.DrawDocument.1"; + Value = "ZetaOffice.DrawDocument.1"; Styles = (); End @@ -654,58 +654,58 @@ RegistryItem gid_Regitem_Software_Manufacturer_Productname_Productversion_Capabi Subkey = "Software\%MANUFACTURER\%PRODUCTNAME%PRODUCTADDON\%PRODUCTVERSION\Capabilities\MimeAssociations"; ModuleID = gid_Module_Prg_Draw_Bin; Name = "application/vnd.oasis.opendocument.graphics"; - Value = "LibreOffice.DrawDocument.1"; + Value = "ZetaOffice.DrawDocument.1"; Styles = (); End RegistryItem gid_Regitem_Odg_Openoffice_Drawdocument_1_Shellnew ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Draw_Bin; - Subkey = ".odg\LibreOffice.DrawDocument.1\ShellNew"; + Subkey = ".odg\ZetaOffice.DrawDocument.1\ShellNew"; Name = "FileName"; Value = "<progpath>\share emplate\shellnew\soffice.odg"; End RegistryItem gid_Regitem_Openoffice_Drawdocument_Curver ParentID = PREDEFINED_HKEY_CLASSES_ROOT; - Subkey = "LibreOffice.DrawDocument\CurVer"; + Subkey = "ZetaOffice.DrawDocument\CurVer"; ModuleID = gid_Module_Prg_Draw_Bin; - Value = "LibreOffice.DrawDocument.1"; + Value = "ZetaOffice.DrawDocument.1"; End RegistryItem gid_Regitem_Openoffice_Drawdocument_1 ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Draw_Bin; - Subkey = "LibreOffice.DrawDocument.1"; + Subkey = "ZetaOffice.DrawDocument.1"; REG_VALUE_LNG(OO_DRAW) End RegistryItem gid_Regitem_Openoffice_Drawdocument_1_Clsid ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Draw_Bin; - Subkey = "LibreOffice.DrawDocument.1\CLSID"; + Subkey = "ZetaOffice.DrawDocument.1\CLSID"; Value = "{448BB771-CFE2-47C4-BCDF-1FBF378E202C}"; End RegistryItem gid_Regitem_Openoffice_Drawdocument_1_Defaulticon ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Draw_Bin; - Subkey = "LibreOffice.DrawDocument.1\DefaultIcon"; + Subkey = "ZetaOffice.DrawDocument.1\DefaultIcon"; Value = "<progpath>\program\soffice.bin,5"; End RegistryItem gid_Regitem_Openoffice_Drawdocument_1_AppUserModelID ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Draw_Bin; - Subkey = "LibreOffice.DrawDocument.1"; + Subkey = "ZetaOffice.DrawDocument.1"; Name = "AppUserModelID"; - Value = "TheDocumentFoundation.LibreOffice.Draw"; + Value = "Allotropia.ZetaOffice.Draw"; End RegistryItem gid_Regitem_Openoffice_Drawdocument_1_FriendlyTypeName ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Draw_Bin; - Subkey = "LibreOffice.DrawDocument.1"; + Subkey = "ZetaOffice.DrawDocument.1"; Name = "FriendlyTypeName"; REG_VALUE_LNG(OO_DRAW) End @@ -714,7 +714,7 @@ End RegistryItem gid_Regitem_odg_FullDetails ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Optional_Winexplorerext; - Subkey = "LibreOffice.DrawDocument.1"; + Subkey = "ZetaOffice.DrawDocument.1"; Name = "FullDetails"; Value = "prop:System.PropGroup.Description;System.Title;System.Author;System.Subject;System.Keywords;System.Comment;System.PropGroup.FileSystem;System.ItemNameDisplay;System.ItemType;System.ItemFolderPathDisplay;System.Size;System.DateCreated;System.DateModified;System.FileAttributes;System.ComputerName"; End @@ -731,28 +731,28 @@ End RegistryItem gid_Regitem_Openoffice_Drawdocument_1_Shell ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Draw_Bin; - Subkey = "LibreOffice.DrawDocument.1\shell"; + Subkey = "ZetaOffice.DrawDocument.1\shell"; Value = "open"; End RegistryItem gid_Regitem_Openoffice_Drawdocument_1_Shell_New ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Draw_Bin; - Subkey = "LibreOffice.DrawDocument.1\shell ew"; + Subkey = "ZetaOffice.DrawDocument.1\shell ew"; REG_VALUE_LNG(NEW) End RegistryItem gid_Regitem_Openoffice_Drawdocument_1_Shell_New_Command ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Draw_Bin; - Subkey = "LibreOffice.DrawDocument.1\shell ew+ Subkey = "ZetaOffice.DrawDocument.1\shell ew Value = "\"<progpath>\program\soffice.exe\" -n \"%1\""; End RegistryItem gid_Regitem_Openoffice_Drawdocument_1_Shell_Open_Command ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Draw_Bin; - Subkey = "LibreOffice.DrawDocument.1\shell\open+ Subkey = "ZetaOffice.DrawDocument.1\shell\open Value = "\"<progpath>\program\soffice.exe\" -o \"%1\""; Styles = (); End @@ -760,48 +760,48 @@ End RegistryItem gid_Regitem_Openoffice_Drawdocument_1_Shell_Print_Command ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Draw_Bin; - Subkey = "LibreOffice.DrawDocument.1\shell\print+ Subkey = "ZetaOffice.DrawDocument.1\shell\print Value = "\"<progpath>\program\soffice.exe\" -p \"%1\""; End RegistryItem gid_Regitem_Openoffice_Drawdocument_1_Shell_Printto_Command ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Draw_Bin; - Subkey = "LibreOffice.DrawDocument.1\shell\printto+ Subkey = "ZetaOffice.DrawDocument.1\shell\printto Value = "\"<progpath>\program\soffice.exe\" -pt \"%2\" \"%1\""; End RegistryItem gid_Regitem_Openoffice_Drawingdocument_1_Insertable ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Draw_Bin; - Subkey = "LibreOffice.DrawDocument.1\Insertable"; + Subkey = "ZetaOffice.DrawDocument.1\Insertable"; End RegistryItem gid_Regitem_Openoffice_Drawingdocument_1_Protocol_Stdfileediting_Server ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Draw_Bin; - Subkey = "LibreOffice.DrawDocument.1\protocol\StdFileEditing\server"; + Subkey = "ZetaOffice.DrawDocument.1\protocol\StdFileEditing\server"; Value = "<progpath>\program\soffice.exe"; End RegistryItem gid_Regitem_Openoffice_Drawingdocument_1_Protocol_Stdfileediting_Verb_0 ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Draw_Bin; - Subkey = "LibreOffice.DrawDocument.1\protocol\StdFileEditingerb + Subkey = "ZetaOffice.DrawDocument.1\protocol\StdFileEditingerb Value = "&Edit"; End RegistryItem gid_Regitem_Openoffice_Drawingdocument_1_Protocol_Stdfileediting_Verb__1 ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Draw_Bin; - Subkey = "LibreOffice.DrawDocument.1\protocol\StdFileEditingerb\-1"; + Subkey = "ZetaOffice.DrawDocument.1\protocol\StdFileEditingerb\-1"; Value = "&Show"; End RegistryItem gid_Regitem_Openoffice_Drawingdocument_1_Protocol_Stdfileediting_Verb__2 ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Draw_Bin; - Subkey = "LibreOffice.DrawDocument.1\protocol\StdFileEditingerb\-2"; + Subkey = "ZetaOffice.DrawDocument.1\protocol\StdFileEditingerb\-2"; Value = "&Open"; End @@ -819,7 +819,7 @@ RegistryItem gid_Regitem__Fodg ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Draw_Bin; Subkey = ".fodg"; - Value = "LibreOffice.DrawDocument.1"; + Value = "ZetaOffice.DrawDocument.1"; End RegistryItem gid_Regitem_Software_Manufacturer_Productname_Productversion_Capabilities_FileAssociations_fodg @@ -827,7 +827,7 @@ RegistryItem gid_Regitem_Software_Manufacturer_Productname_Productversion_Capabi Subkey = "Software\%MANUFACTURER\%PRODUCTNAME%PRODUCTADDON\%PRODUCTVERSION\Capabilities\FileAssociations"; ModuleID = gid_Module_Root; Name = ".fodg"; - Value = "LibreOffice.DrawDocument.1"; + Value = "ZetaOffice.DrawDocument.1"; End RegistryItem gid_Regitem_fodg_KindMap @@ -902,7 +902,7 @@ RegistryItem gid_Regitem_Openoffice_Drawtemplate_1_AppUserModelID ModuleID = gid_Module_Prg_Draw_Bin; Subkey = "LibreOffice.DrawTemplate.1"; Name = "AppUserModelID"; - Value = "TheDocumentFoundation.LibreOffice.Draw"; + Value = "Allotropia.ZetaOffice.Draw"; End RegistryItem gid_Regitem_Openoffice_Drawtemplate_1_FriendlyTypeName @@ -980,7 +980,7 @@ RegistryItem gid_Regitem_OpenOffice_ODG_OpenWith_Draw ParentID = PREDEFINED_HKEY_CLASSES_ROOT; Subkey = ".odg\OpenWithProgIDs"; ModuleID = gid_Module_Prg_Draw_Bin; - Name = "LibreOffice.DrawDocument.1"; + Name = "ZetaOffice.DrawDocument.1"; Value = " "; End diff --git a/scp2/source/impress/folderitem_impress.scp b/scp2/source/impress/folderitem_impress.scp index c35221b533b4..05f58cfb99b6 100644 --- a/scp2/source/impress/folderitem_impress.scp +++ b/scp2/source/impress/folderitem_impress.scp @@ -35,6 +35,6 @@ End FolderItemProperty gid_Fip_Simpress_AppID ShortcutID = gid_Folderitem_Simpress; Key = "System.AppUserModel.ID"; - Value = "TheDocumentFoundation.LibreOffice.Impress"; + Value = "Allotropia.ZetaOffice.Impress"; End #endif diff --git a/scp2/source/impress/registryitem_impress.scp b/scp2/source/impress/registryitem_impress.scp index c0b173dc2f04..599adc48b094 100644 --- a/scp2/source/impress/registryitem_impress.scp +++ b/scp2/source/impress/registryitem_impress.scp @@ -219,7 +219,7 @@ RegistryItem gid_Regitem_Clsid__Ee5d1ea4_D445_4289_B2fc_55fc93693917__Progid ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Impress_Bin; Subkey = "CLSID\{EE5D1EA4-D445-4289-B2FC-55FC93693917}\ProgID"; - Value = "LibreOffice.ImpressDocument.1"; + Value = "ZetaOffice.ImpressDocument.1"; End RegistryItem gid_Regitem_Clsid__Ee5d1ea4_D445_4289_B2fc_55fc93693917__Programmable @@ -253,7 +253,7 @@ RegistryItem gid_Regitem_Clsid__Ee5d1ea4_D445_4289_B2fc_55fc93693917__Versionind ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Impress_Bin; Subkey = "CLSID\{EE5D1EA4-D445-4289-B2FC-55FC93693917}\VersionIndependentProgID"; - Value = "LibreOffice.ImpressDocument.1"; + Value = "ZetaOffice.ImpressDocument.1"; End RegistryItem gid_Regitem_Soffice_Starimpressdocument_6 @@ -282,7 +282,7 @@ RegistryItem gid_Regitem_Soffice_Starimpressdocument_6_AppUserModelID ModuleID = gid_Module_Prg_Impress_Bin; Subkey = "soffice.StarImpressDocument.6"; Name = "AppUserModelID"; - Value = "TheDocumentFoundation.LibreOffice.Impress"; + Value = "Allotropia.ZetaOffice.Impress"; End RegistryItem gid_Regitem_Soffice_Starimpressdocument_6_FriendlyTypeName @@ -409,7 +409,7 @@ RegistryItem gid_Regitem_Soffice_Starimpresstemplate_6_AppUserModelID ModuleID = gid_Module_Prg_Impress_Bin; Subkey = "soffice.StarImpressTemplate.6"; Name = "AppUserModelID"; - Value = "TheDocumentFoundation.LibreOffice.Impress"; + Value = "Allotropia.ZetaOffice.Impress"; End RegistryItem gid_Regitem_Soffice_Starimpresstemplate_6_FriendlyTypeName @@ -627,7 +627,7 @@ End RegistryItem gid_Regitem_ImpressDocument_1_Shellex_PropertySheetHandlers_MyPropSheet1 ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Impress_Bin; - Subkey = "LibreOffice.ImpressDocument.1\shellex\PropertySheetHandlers\MyPropSheet1"; + Subkey = "ZetaOffice.ImpressDocument.1\shellex\PropertySheetHandlers\MyPropSheet1"; Value = "{63542C48-9552-494A-84F7-73AA6A7C99C1}"; End @@ -635,7 +635,7 @@ RegistryItem gid_Regitem__Odp ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Impress_Bin; Subkey = ".odp"; - Value = "LibreOffice.ImpressDocument.1"; + Value = "ZetaOffice.ImpressDocument.1"; End RegistryItem gid_Regitem_Software_Manufacturer_Productname_Productversion_Capabilities_FileAssociations_odp @@ -643,7 +643,7 @@ RegistryItem gid_Regitem_Software_Manufacturer_Productname_Productversion_Capabi Subkey = "Software\%MANUFACTURER\%PRODUCTNAME%PRODUCTADDON\%PRODUCTVERSION\Capabilities\FileAssociations"; ModuleID = gid_Module_Prg_Impress_Bin; Name = ".odp"; - Value = "LibreOffice.ImpressDocument.1"; + Value = "ZetaOffice.ImpressDocument.1"; Styles = (); End @@ -652,7 +652,7 @@ RegistryItem gid_Regitem_Software_Manufacturer_Productname_Productversion_Capabi Subkey = "Software\%MANUFACTURER\%PRODUCTNAME%PRODUCTADDON\%PRODUCTVERSION\Capabilities\MimeAssociations"; ModuleID = gid_Module_Prg_Impress_Bin; Name = "application/vnd.oasis.opendocument.presentation"; - Value = "LibreOffice.ImpressDocument.1"; + Value = "ZetaOffice.ImpressDocument.1"; Styles = (); End @@ -676,7 +676,7 @@ End RegistryItem gid_Regitem_Odp_Openoffice_Impressdocument_1_Shellnew ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Impress_Bin; - Subkey = ".odp\LibreOffice.ImpressDocument.1\ShellNew"; + Subkey = ".odp\ZetaOffice.ImpressDocument.1\ShellNew"; Name = "FileName"; Value = "<progpath>\share emplate\shellnew\soffice.odp"; End @@ -685,42 +685,42 @@ RegistryItem gid_Regitem_Openoffice_Starimpressdocument_Curver ParentID = PREDEFINED_HKEY_CLASSES_ROOT; Subkey = "soffice.StarImpressDocument\CurVer"; ModuleID = gid_Module_Prg_Impress_Bin; - Value = "LibreOffice.ImpressDocument.1"; + Value = "ZetaOffice.ImpressDocument.1"; End RegistryItem gid_Regitem_Openoffice_Impressdocument_1 ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Impress_Bin; - Subkey = "LibreOffice.ImpressDocument.1"; + Subkey = "ZetaOffice.ImpressDocument.1"; REG_VALUE_LNG(OO_PRESENT) End RegistryItem gid_Regitem_Openoffice_Impressdocument_1_Clsid ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Impress_Bin; - Subkey = "LibreOffice.ImpressDocument.1\CLSID"; + Subkey = "ZetaOffice.ImpressDocument.1\CLSID"; Value = "{EE5D1EA4-D445-4289-B2FC-55FC93693917}"; End RegistryItem gid_Regitem_Openoffice_Impressdocument_1_Defaulticon ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Impress_Bin; - Subkey = "LibreOffice.ImpressDocument.1\DefaultIcon"; + Subkey = "ZetaOffice.ImpressDocument.1\DefaultIcon"; Value = "<progpath>\program\soffice.bin,7"; End RegistryItem gid_Regitem_Openoffice_Impressdocument_1_AppUserModelID ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Impress_Bin; - Subkey = "LibreOffice.ImpressDocument.1"; + Subkey = "ZetaOffice.ImpressDocument.1"; Name = "AppUserModelID"; - Value = "TheDocumentFoundation.LibreOffice.Impress"; + Value = "Allotropia.ZetaOffice.Impress"; End RegistryItem gid_Regitem_Openoffice_Impressdocument_1_FriendlyTypeName ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Impress_Bin; - Subkey = "LibreOffice.ImpressDocument.1"; + Subkey = "ZetaOffice.ImpressDocument.1"; Name = "FriendlyTypeName"; REG_VALUE_LNG(OO_PRESENT) End @@ -729,7 +729,7 @@ End RegistryItem gid_Regitem_odp_FullDetails ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Optional_Winexplorerext; - Subkey = "LibreOffice.ImpressDocument.1"; + Subkey = "ZetaOffice.ImpressDocument.1"; Name = "FullDetails"; Value = "prop:System.PropGroup.Description;System.Title;System.Author;System.Subject;System.Keywords;System.Comment;System.PropGroup.FileSystem;System.ItemNameDisplay;System.ItemType;System.ItemFolderPathDisplay;System.Size;System.DateCreated;System.DateModified;System.FileAttributes;System.ComputerName"; End @@ -746,62 +746,62 @@ End RegistryItem gid_Regitem_Openoffice_Impressdocument_1_Insertable ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Impress_Bin; - Subkey = "LibreOffice.ImpressDocument.1\Insertable"; + Subkey = "ZetaOffice.ImpressDocument.1\Insertable"; End RegistryItem gid_Regitem_Openoffice_Impressdocument_1_Protocol_Stdfileediting_Server ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Impress_Bin; - Subkey = "LibreOffice.ImpressDocument.1\protocol\StdFileEditing\server"; + Subkey = "ZetaOffice.ImpressDocument.1\protocol\StdFileEditing\server"; Value = "<progpath>\program\soffice.exe"; End RegistryItem gid_Regitem_Openoffice_Impressdocument_1_Protocol_Stdfileediting_Verb_0 ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Impress_Bin; - Subkey = "LibreOffice.ImpressDocument.1\protocol\StdFileEditingerb + Subkey = "ZetaOffice.ImpressDocument.1\protocol\StdFileEditingerb Value = "&Edit"; End RegistryItem gid_Regitem_Openoffice_Impressdocument_1_Protocol_Stdfileediting_Verb__1 ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Impress_Bin; - Subkey = "LibreOffice.ImpressDocument.1\protocol\StdFileEditingerb\-1"; + Subkey = "ZetaOffice.ImpressDocument.1\protocol\StdFileEditingerb\-1"; Value = "&Show"; End RegistryItem gid_Regitem_Openoffice_Impressdocument_1_Protocol_Stdfileediting_Verb__2 ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Impress_Bin; - Subkey = "LibreOffice.ImpressDocument.1\protocol\StdFileEditingerb\-2"; + Subkey = "ZetaOffice.ImpressDocument.1\protocol\StdFileEditingerb\-2"; Value = "&Open"; End RegistryItem gid_Regitem_Openoffice_Impressdocument_1_Shell ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Impress_Bin; - Subkey = "LibreOffice.ImpressDocument.1\shell"; + Subkey = "ZetaOffice.ImpressDocument.1\shell"; Value = "open"; End RegistryItem gid_Regitem_Openoffice_Impressdocument_1_Shell_New ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Impress_Bin; - Subkey = "LibreOffice.ImpressDocument.1\shell ew"; + Subkey = "ZetaOffice.ImpressDocument.1\shell ew"; REG_VALUE_LNG(NEW) End RegistryItem gid_Regitem_Openoffice_Impressdocument_1_Shell_New_Command ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Impress_Bin; - Subkey = "LibreOffice.ImpressDocument.1\shell ew+ Subkey = "ZetaOffice.ImpressDocument.1\shell ew Value = "\"<progpath>\program\soffice.exe\" -n \"%1\""; End RegistryItem gid_Regitem_Openoffice_Impressdocument_1_Shell_Open_Command ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Impress_Bin; - Subkey = "LibreOffice.ImpressDocument.1\shell\open+ Subkey = "ZetaOffice.ImpressDocument.1\shell\open Value = "\"<progpath>\program\soffice.exe\" -o \"%1\""; Styles = (); End @@ -809,28 +809,28 @@ End RegistryItem gid_Regitem_Openoffice_Impressdocument_1_Shell_Print_Command ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Impress_Bin; - Subkey = "LibreOffice.ImpressDocument.1\shell\print+ Subkey = "ZetaOffice.ImpressDocument.1\shell\print Value = "\"<progpath>\program\soffice.exe\" -p \"%1\""; End RegistryItem gid_Regitem_Openoffice_Impressdocument_1_Shell_Printto_Command ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Impress_Bin; - Subkey = "LibreOffice.ImpressDocument.1\shell\printto+ Subkey = "ZetaOffice.ImpressDocument.1\shell\printto Value = "\"<progpath>\program\soffice.exe\" -pt \"%2\" \"%1\""; End RegistryItem gid_Regitem_Openoffice_Impressdocument_1_Shell_Show ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Impress_Bin; - Subkey = "LibreOffice.ImpressDocument.1\shell\show"; + Subkey = "ZetaOffice.ImpressDocument.1\shell\show"; REG_VALUE_LNG(SO60_SHOW) End RegistryItem gid_Regitem_Openoffice_Impressdocument_1_Shell_Show_Command ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Impress_Bin; - Subkey = "LibreOffice.ImpressDocument.1\shell\show+ Subkey = "ZetaOffice.ImpressDocument.1\shell\show Value = "\"<progpath>\program\soffice.exe\" -show \"%1\""; End @@ -840,7 +840,7 @@ RegistryItem gid_Regitem__Fodp ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Impress_Bin; Subkey = ".fodp"; - Value = "LibreOffice.ImpressDocument.1"; + Value = "ZetaOffice.ImpressDocument.1"; End RegistryItem gid_Regitem_Software_Manufacturer_Productname_Productversion_Capabilities_FileAssociations_fodp @@ -848,7 +848,7 @@ RegistryItem gid_Regitem_Software_Manufacturer_Productname_Productversion_Capabi Subkey = "Software\%MANUFACTURER\%PRODUCTNAME%PRODUCTADDON\%PRODUCTVERSION\Capabilities\FileAssociations"; ModuleID = gid_Module_Root; Name = ".fodp"; - Value = "LibreOffice.ImpressDocument.1"; + Value = "ZetaOffice.ImpressDocument.1"; End RegistryItem gid_Regitem_Fodp_Contenttype @@ -931,7 +931,7 @@ RegistryItem gid_Regitem_Openoffice_Impresstemplate_1_AppUserModelID ModuleID = gid_Module_Prg_Impress_Bin; Subkey = "LibreOffice.ImpressTemplate.1"; Name = "AppUserModelID"; - Value = "TheDocumentFoundation.LibreOffice.Impress"; + Value = "Allotropia.ZetaOffice.Impress"; End RegistryItem gid_Regitem_Openoffice_Impresstemplate_1_FriendlyTypeName @@ -1009,7 +1009,7 @@ RegistryItem gid_Regitem_OpenOffice_ODP_OpenWith_Impress ParentID = PREDEFINED_HKEY_CLASSES_ROOT; Subkey = ".odp\OpenWithProgIDs"; ModuleID = gid_Module_Prg_Impress_Bin; - Name = "LibreOffice.ImpressDocument.1"; + Name = "ZetaOffice.ImpressDocument.1"; Value = " "; End @@ -1054,7 +1054,7 @@ RegistryItem gid_Regitem_OpenOffice_ODG_OpenWith_Impress ParentID = PREDEFINED_HKEY_CLASSES_ROOT; Subkey = ".odg\OpenWithProgIDs"; ModuleID = gid_Module_Prg_Impress_Bin; - Name = "LibreOffice.ImpressDocument.1"; + Name = "ZetaOffice.ImpressDocument.1"; Value = " "; End diff --git a/scp2/source/math/folderitem_math.scp b/scp2/source/math/folderitem_math.scp index 44ddc078e47b..f9aeeace73d3 100644 --- a/scp2/source/math/folderitem_math.scp +++ b/scp2/source/math/folderitem_math.scp @@ -35,6 +35,6 @@ End FolderItemProperty gid_Fip_Smath_AppID ShortcutID = gid_Folderitem_Smath; Key = "System.AppUserModel.ID"; - Value = "TheDocumentFoundation.LibreOffice.Math"; + Value = "Allotropia.ZetaOffice.Math"; End #endif diff --git a/scp2/source/math/registryitem_math.scp b/scp2/source/math/registryitem_math.scp index bf59735883d9..41fc6503b4a5 100644 --- a/scp2/source/math/registryitem_math.scp +++ b/scp2/source/math/registryitem_math.scp @@ -218,7 +218,7 @@ RegistryItem gid_Regitem_Clsid__D2d59cd1_0a6a_4d36_Ae20_47817077d57c__Progid ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Math_Bin; Subkey = "CLSID\{D2D59CD1-0A6A-4D36-AE20-47817077D57C}\ProgID"; - Value = "LibreOffice.MathDocument.1"; + Value = "ZetaOffice.MathDocument.1"; End RegistryItem gid_Regitem_Clsid__D2d59cd1_0a6a_4d36_Ae20_47817077d57c__Programmable @@ -252,7 +252,7 @@ RegistryItem gid_Regitem_Clsid__D2d59cd1_0a6a_4d36_Ae20_47817077d57c__Versionind ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Math_Bin; Subkey = "CLSID\{D2D59CD1-0A6A-4D36-AE20-47817077D57C}\VersionIndependentProgID"; - Value = "LibreOffice.MathDocument.1"; + Value = "ZetaOffice.MathDocument.1"; End RegistryItem gid_Regitem_Soffice_Starmathdocument_6 @@ -281,7 +281,7 @@ RegistryItem gid_Regitem_Soffice_Starmathdocument_6_AppUserModelID ModuleID = gid_Module_Prg_Math_Bin; Subkey = "soffice.StarMathDocument.6"; Name = "AppUserModelID"; - Value = "TheDocumentFoundation.LibreOffice.Math"; + Value = "Allotropia.ZetaOffice.Math"; End RegistryItem gid_Regitem_Soffice_Starmathdocument_6_FriendlyTypeName @@ -479,7 +479,7 @@ End RegistryItem gid_Regitem_MathDocument_1_Shellex_PropertySheetHandlers_MyPropSheet1 ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Math_Bin; - Subkey = "LibreOffice.MathDocument.1\shellex\PropertySheetHandlers\MyPropSheet1"; + Subkey = "ZetaOffice.MathDocument.1\shellex\PropertySheetHandlers\MyPropSheet1"; Value = "{63542C48-9552-494A-84F7-73AA6A7C99C1}"; End @@ -503,7 +503,7 @@ RegistryItem gid_Regitem__Odf ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Math_Bin; Subkey = ".odf"; - Value = "LibreOffice.MathDocument.1"; + Value = "ZetaOffice.MathDocument.1"; End RegistryItem gid_Regitem_Software_Manufacturer_Productname_Productversion_Capabilities_FileAssociations_odf @@ -511,7 +511,7 @@ RegistryItem gid_Regitem_Software_Manufacturer_Productname_Productversion_Capabi Subkey = "Software\%MANUFACTURER\%PRODUCTNAME%PRODUCTADDON\%PRODUCTVERSION\Capabilities\FileAssociations"; ModuleID = gid_Module_Prg_Math_Bin; Name = ".odf"; - Value = "LibreOffice.MathDocument.1"; + Value = "ZetaOffice.MathDocument.1"; Styles = (); End @@ -520,50 +520,50 @@ RegistryItem gid_Regitem_Software_Manufacturer_Productname_Productversion_Capabi Subkey = "Software\%MANUFACTURER\%PRODUCTNAME%PRODUCTADDON\%PRODUCTVERSION\Capabilities\MimeAssociations"; ModuleID = gid_Module_Prg_Math_Bin; Name = "application/vnd.oasis.opendocument.formula"; - Value = "LibreOffice.MathDocument.1"; + Value = "ZetaOffice.MathDocument.1"; Styles = (); End RegistryItem gid_Regitem_Openoffice_Mathdocument_Curver ParentID = PREDEFINED_HKEY_CLASSES_ROOT; - Subkey = "LibreOffice.MathDocument\CurVer"; + Subkey = "ZetaOffice.MathDocument\CurVer"; ModuleID = gid_Module_Prg_Math_Bin; - Value = "LibreOffice.MathDocument.1"; + Value = "ZetaOffice.MathDocument.1"; End RegistryItem gid_Regitem_Openoffice_Mathdocument_1 ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Math_Bin; - Subkey = "LibreOffice.MathDocument.1"; + Subkey = "ZetaOffice.MathDocument.1"; REG_VALUE_LNG(OO_FORMULA) End RegistryItem gid_Regitem_Openoffice_Mathdocument_1_Clsid ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Math_Bin; - Subkey = "LibreOffice.MathDocument.1\CLSID"; + Subkey = "ZetaOffice.MathDocument.1\CLSID"; Value = "{D2D59CD1-0A6A-4D36-AE20-47817077D57C}"; End RegistryItem gid_Regitem_Openoffice_Mathdocument_1_Defaulticon ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Math_Bin; - Subkey = "LibreOffice.MathDocument.1\DefaultIcon"; + Subkey = "ZetaOffice.MathDocument.1\DefaultIcon"; Value = "<progpath>\program\soffice.bin,12"; End RegistryItem gid_Regitem_Openoffice_Mathdocument_1_AppUserModelID ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Math_Bin; - Subkey = "LibreOffice.MathDocument.1"; + Subkey = "ZetaOffice.MathDocument.1"; Name = "AppUserModelID"; - Value = "TheDocumentFoundation.LibreOffice.Math"; + Value = "Allotropia.ZetaOffice.Math"; End RegistryItem gid_Regitem_Openoffice_Mathdocument_1_FriendlyTypeName ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Math_Bin; - Subkey = "LibreOffice.MathDocument.1"; + Subkey = "ZetaOffice.MathDocument.1"; Name = "FriendlyTypeName"; REG_VALUE_LNG(OO_FORMULA) End @@ -572,7 +572,7 @@ End RegistryItem gid_Regitem_odf_FullDetails ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Optional_Winexplorerext; - Subkey = "LibreOffice.MathDocument.1"; + Subkey = "ZetaOffice.MathDocument.1"; Name = "FullDetails"; Value = "prop:System.PropGroup.Description;System.Title;System.Author;System.Subject;System.Keywords;System.Comment;System.PropGroup.FileSystem;System.ItemNameDisplay;System.ItemType;System.ItemFolderPathDisplay;System.Size;System.DateCreated;System.DateModified;System.FileAttributes;System.ComputerName"; End @@ -589,62 +589,62 @@ End RegistryItem gid_Regitem_Openoffice_Mathdocument_1_Insertable ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Math_Bin; - Subkey = "LibreOffice.MathDocument.1\Insertable"; + Subkey = "ZetaOffice.MathDocument.1\Insertable"; End RegistryItem gid_Regitem_Openoffice_Mathdocument_1_Protocol_Stdfileediting_Server ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Math_Bin; - Subkey = "LibreOffice.MathDocument.1\protocol\StdFileEditing\server"; + Subkey = "ZetaOffice.MathDocument.1\protocol\StdFileEditing\server"; Value = "<progpath>\program\soffice.exe"; End RegistryItem gid_Regitem_Openoffice_Mathdocument_1_Protocol_Stdfileediting_Verb_0 ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Math_Bin; - Subkey = "LibreOffice.MathDocument.1\protocol\StdFileEditingerb + Subkey = "ZetaOffice.MathDocument.1\protocol\StdFileEditingerb Value = "&Edit"; End RegistryItem gid_Regitem_Openoffice_Mathdocument_1_Protocol_Stdfileediting_Verb__1 ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Math_Bin; - Subkey = "LibreOffice.MathDocument.1\protocol\StdFileEditingerb\-1"; + Subkey = "ZetaOffice.MathDocument.1\protocol\StdFileEditingerb\-1"; Value = "&Show"; End RegistryItem gid_Regitem_Openoffice_Mathdocument_1_Protocol_Stdfileediting_Verb__2 ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Math_Bin; - Subkey = "LibreOffice.MathDocument.1\protocol\StdFileEditingerb\-2"; + Subkey = "ZetaOffice.MathDocument.1\protocol\StdFileEditingerb\-2"; Value = "&Open"; End RegistryItem gid_Regitem_Openoffice_Mathdocument_1_Shell ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Math_Bin; - Subkey = "LibreOffice.MathDocument.1\shell"; + Subkey = "ZetaOffice.MathDocument.1\shell"; Value = "open"; End RegistryItem gid_Regitem_Openoffice_Mathdocument_1_Shell_New ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Math_Bin; - Subkey = "LibreOffice.MathDocument.1\shell ew"; + Subkey = "ZetaOffice.MathDocument.1\shell ew"; REG_VALUE_LNG(NEW) End RegistryItem gid_Regitem_Openoffice_Mathdocument_1_Shell_New_Command ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Math_Bin; - Subkey = "LibreOffice.MathDocument.1\shell ew+ Subkey = "ZetaOffice.MathDocument.1\shell ew Value = "\"<progpath>\program\soffice.exe\" -n \"%1\""; End RegistryItem gid_Regitem_Openoffice_Mathdocument_1_Shell_Open_Command ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Math_Bin; - Subkey = "LibreOffice.MathDocument.1\shell\open+ Subkey = "ZetaOffice.MathDocument.1\shell\open Value = "\"<progpath>\program\soffice.exe\" -o \"%1\""; Styles = (); End @@ -652,14 +652,14 @@ End RegistryItem gid_Regitem_Openoffice_Mathdocument_1_Shell_Print_Command ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Math_Bin; - Subkey = "LibreOffice.MathDocument.1\shell\print+ Subkey = "ZetaOffice.MathDocument.1\shell\print Value = "\"<progpath>\program\soffice.exe\" -p \"%1\""; End RegistryItem gid_Regitem_Openoffice_Mathdocument_1_Shell_Printto_Command ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Math_Bin; - Subkey = "LibreOffice.MathDocument.1\shell\printto+ Subkey = "ZetaOffice.MathDocument.1\shell\printto Value = "\"<progpath>\program\soffice.exe\" -pt \"%2\" \"%1\""; End @@ -670,7 +670,7 @@ RegistryItem gid_Regitem_OpenOffice_ODF_OpenWith_Math ParentID = PREDEFINED_HKEY_CLASSES_ROOT; Subkey = ".odf\OpenWithProgIDs"; ModuleID = gid_Module_Prg_Math_Bin; - Name = "LibreOffice.MathDocument.1"; + Name = "ZetaOffice.MathDocument.1"; Value = " "; End diff --git a/scp2/source/ooo/folderitem_ooo.scp b/scp2/source/ooo/folderitem_ooo.scp index a9f68ffd3dea..33ea212eb514 100644 --- a/scp2/source/ooo/folderitem_ooo.scp +++ b/scp2/source/ooo/folderitem_ooo.scp @@ -38,7 +38,7 @@ End FolderItemProperty gid_Fip_LibreOffice_AppID ShortcutID = gid_Folderitem_LibreOffice; Key = "System.AppUserModel.ID"; - Value = "TheDocumentFoundation.LibreOffice.Startcenter"; + Value = "Allotropia.ZetaOffice.Startcenter"; End FolderItem gid_Folderitem_Soffice_Desktop @@ -63,7 +63,7 @@ End FolderItemProperty gid_Fip_Soffice_Desktop_AppID ShortcutID = gid_Folderitem_Soffice_Desktop; Key = "System.AppUserModel.ID"; - Value = "TheDocumentFoundation.LibreOffice.Startcenter"; + Value = "Allotropia.ZetaOffice.Startcenter"; End FolderItem gid_Folderitem_LibreOffice_SafeMode @@ -86,5 +86,5 @@ End FolderItemProperty gid_Fip_LibreOffice_SafeMode ShortcutID = gid_Folderitem_LibreOffice_SafeMode; Key = "System.AppUserModel.ID"; - Value = "TheDocumentFoundation.LibreOffice.SafeMode"; + Value = "Allotropia.ZetaOffice.SafeMode"; End diff --git a/scp2/source/writer/folderitem_writer.scp b/scp2/source/writer/folderitem_writer.scp index 306fc888d230..6100b549093d 100644 --- a/scp2/source/writer/folderitem_writer.scp +++ b/scp2/source/writer/folderitem_writer.scp @@ -35,6 +35,6 @@ End FolderItemProperty gid_Fip_Swriter_AppID ShortcutID = gid_Folderitem_Swriter; Key = "System.AppUserModel.ID"; - Value = "TheDocumentFoundation.LibreOffice.Writer"; + Value = "Allotropia.ZetaOffice.Writer"; End #endif diff --git a/scp2/source/writer/registryitem_writer.scp b/scp2/source/writer/registryitem_writer.scp index e8b931314a90..013aa9de9c78 100644 --- a/scp2/source/writer/registryitem_writer.scp +++ b/scp2/source/writer/registryitem_writer.scp @@ -219,7 +219,7 @@ RegistryItem gid_Regitem_Clsid__F616b81f_7bb8_4f22_B8a5_47428d59f8ad__Progid ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Wrt_Bin; Subkey = "CLSID\{F616B81F-7BB8-4F22-B8A5-47428D59F8AD}\ProgID"; - Value = "LibreOffice.WriterDocument.1"; + Value = "ZetaOffice.WriterDocument.1"; End RegistryItem gid_Regitem_Clsid__F616b81f_7bb8_4f22_B8a5_47428d59f8ad__Programmable @@ -253,7 +253,7 @@ RegistryItem gid_Regitem_Clsid__F616b81f_7bb8_4f22_B8a5_47428d59f8ad__Versionind ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Wrt_Bin; Subkey = "CLSID\{F616B81F-7BB8-4F22-B8A5-47428D59F8AD}\VersionIndependentProgID"; - Value = "LibreOffice.WriterDocument.1"; + Value = "ZetaOffice.WriterDocument.1"; End RegistryItem gid_Regitem_Soffice_Starwriterdocument_6 @@ -282,7 +282,7 @@ RegistryItem gid_Regitem_Soffice_Starwriterdocument_6_AppUserModelID ModuleID = gid_Module_Prg_Wrt_Bin; Subkey = "soffice.StarWriterDocument.6"; Name = "AppUserModelID"; - Value = "TheDocumentFoundation.LibreOffice.Writer"; + Value = "Allotropia.ZetaOffice.Writer"; End RegistryItem gid_Regitem_Soffice_Starwriterdocument_6_FriendlyTypeName @@ -402,7 +402,7 @@ RegistryItem gid_Regitem_Soffice_Starwriterglobaldocument_6_AppUserModelID ModuleID = gid_Module_Prg_Wrt_Bin; Subkey = "soffice.StarWriterGlobalDocument.6"; Name = "AppUserModelID"; - Value = "TheDocumentFoundation.LibreOffice.Writer"; + Value = "Allotropia.ZetaOffice.Writer"; End RegistryItem gid_Regitem_Soffice_Starwriterglobaldocument_6_FriendlyTypeName @@ -488,7 +488,7 @@ RegistryItem gid_Regitem_Soffice_Starwritertemplate_6_AppUserModelID ModuleID = gid_Module_Prg_Wrt_Bin; Subkey = "soffice.StarWriterTemplate.6"; Name = "AppUserModelID"; - Value = "TheDocumentFoundation.LibreOffice.Writer"; + Value = "Allotropia.ZetaOffice.Writer"; End RegistryItem gid_Regitem_Soffice_Starwritertemplate_6_FriendlyTypeName @@ -761,7 +761,7 @@ End RegistryItem gid_Regitem_WriterDocument_1_Shellex_PropertySheetHandlers_MyPropSheet1 ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Wrt_Bin; - Subkey = "LibreOffice.WriterDocument.1\shellex\PropertySheetHandlers\MyPropSheet1"; + Subkey = "ZetaOffice.WriterDocument.1\shellex\PropertySheetHandlers\MyPropSheet1"; Value = "{63542C48-9552-494A-84F7-73AA6A7C99C1}"; End @@ -769,7 +769,7 @@ RegistryItem gid_Regitem__Odt ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Wrt_Bin; Subkey = ".odt"; - Value = "LibreOffice.WriterDocument.1"; + Value = "ZetaOffice.WriterDocument.1"; End RegistryItem gid_Regitem_Software_Manufacturer_Productname_Productversion_Capabilities_FileAssociations_odt @@ -777,7 +777,7 @@ RegistryItem gid_Regitem_Software_Manufacturer_Productname_Productversion_Capabi Subkey = "Software\%MANUFACTURER\%PRODUCTNAME%PRODUCTADDON\%PRODUCTVERSION\Capabilities\FileAssociations"; ModuleID = gid_Module_Prg_Wrt_Bin; Name = ".odt"; - Value = "LibreOffice.WriterDocument.1"; + Value = "ZetaOffice.WriterDocument.1"; Styles = (); End @@ -786,7 +786,7 @@ RegistryItem gid_Regitem_Software_Manufacturer_Productname_Productversion_Capabi Subkey = "Software\%MANUFACTURER\%PRODUCTNAME%PRODUCTADDON\%PRODUCTVERSION\Capabilities\MimeAssociations"; ModuleID = gid_Module_Prg_Wrt_Bin; Name = "application/vnd.oasis.opendocument.text"; - Value = "LibreOffice.WriterDocument.1"; + Value = "ZetaOffice.WriterDocument.1"; Styles = (); End @@ -809,7 +809,7 @@ End RegistryItem gid_Regitem_Odt_Openoffice_Writerdocument_1_Shellnew ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Wrt_Bin; - Subkey = ".odt\LibreOffice.WriterDocument.1\ShellNew"; + Subkey = ".odt\ZetaOffice.WriterDocument.1\ShellNew"; Name = "FileName"; Value = "<progpath>\share emplate\shellnew\soffice.odt"; End @@ -817,43 +817,43 @@ End RegistryItem gid_Regitem_Openoffice_Writerdocument_Curver ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Wrt_Bin; - Subkey = "LibreOffice.WriterDocument\CurVer"; - Value = "LibreOffice.WriterDocument.1"; + Subkey = "ZetaOffice.WriterDocument\CurVer"; + Value = "ZetaOffice.WriterDocument.1"; End RegistryItem gid_Regitem_Openoffice_Writerdocument_1 ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Wrt_Bin; - Subkey = "LibreOffice.WriterDocument.1"; + Subkey = "ZetaOffice.WriterDocument.1"; REG_VALUE_LNG(OO_WRITER) End RegistryItem gid_Regitem_Openoffice_Writerdocument_1_Clsid ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Wrt_Bin; - Subkey = "LibreOffice.WriterDocument.1\CLSID"; + Subkey = "ZetaOffice.WriterDocument.1\CLSID"; Value = "{F616B81F-7BB8-4F22-B8A5-47428D59F8AD}"; End RegistryItem gid_Regitem_Openoffice_Writerdocument_1_Defaulticon ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Wrt_Bin; - Subkey = "LibreOffice.WriterDocument.1\DefaultIcon"; + Subkey = "ZetaOffice.WriterDocument.1\DefaultIcon"; Value = "<progpath>\program\soffice.bin,1"; End RegistryItem gid_Regitem_Openoffice_Writerdocument_1_AppUserModelID ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Wrt_Bin; - Subkey = "LibreOffice.WriterDocument.1"; + Subkey = "ZetaOffice.WriterDocument.1"; Name = "AppUserModelID"; - Value = "TheDocumentFoundation.LibreOffice.Writer"; + Value = "Allotropia.ZetaOffice.Writer"; End RegistryItem gid_Regitem_Openoffice_Writerdocument_1_FriendlyTypeName ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Wrt_Bin; - Subkey = "LibreOffice.WriterDocument.1"; + Subkey = "ZetaOffice.WriterDocument.1"; Name = "FriendlyTypeName"; REG_VALUE_LNG(OO_WRITER) End @@ -861,14 +861,14 @@ End RegistryItem gid_Regitem_Openoffice_Writerdocument_1_Insertable ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Wrt_Bin; - Subkey = "LibreOffice.WriterDocument.1\Insertable"; + Subkey = "ZetaOffice.WriterDocument.1\Insertable"; End #ifdef _MSC_VER RegistryItem gid_Regitem_odt_FullDetails ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Optional_Winexplorerext; - Subkey = "LibreOffice.WriterDocument.1"; + Subkey = "ZetaOffice.WriterDocument.1"; Name = "FullDetails"; Value = "prop:System.PropGroup.Description;System.Title;System.Author;System.Subject;System.Keywords;System.Comment;System.PropGroup.FileSystem;System.ItemNameDisplay;System.ItemType;System.ItemFolderPathDisplay;System.Size;System.DateCreated;System.DateModified;System.FileAttributes;System.ComputerName"; End @@ -885,56 +885,56 @@ End RegistryItem gid_Regitem_Openoffice_Writerdocument_1_Protocol_Stdfileediting_Server ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Wrt_Bin; - Subkey = "LibreOffice.WriterDocument.1\protocol\StdFileEditing\server"; + Subkey = "ZetaOffice.WriterDocument.1\protocol\StdFileEditing\server"; Value = "<progpath>\program\soffice.exe"; End RegistryItem gid_Regitem_Openoffice_Writerdocument_1_Protocol_Stdfileediting_Verb_0 ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Wrt_Bin; - Subkey = "LibreOffice.WriterDocument.1\protocol\StdFileEditingerb + Subkey = "ZetaOffice.WriterDocument.1\protocol\StdFileEditingerb Value = "&Edit"; End RegistryItem gid_Regitem_Openoffice_Writerdocument_1_Protocol_Stdfileediting_Verb__1 ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Wrt_Bin; - Subkey = "LibreOffice.WriterDocument.1\protocol\StdFileEditingerb\-1"; + Subkey = "ZetaOffice.WriterDocument.1\protocol\StdFileEditingerb\-1"; Value = "&Show"; End RegistryItem gid_Regitem_Openoffice_Writerdocument_1_Protocol_Stdfileediting_Verb__2 ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Wrt_Bin; - Subkey = "LibreOffice.WriterDocument.1\protocol\StdFileEditingerb\-2"; + Subkey = "ZetaOffice.WriterDocument.1\protocol\StdFileEditingerb\-2"; Value = "&Open"; End RegistryItem gid_Regitem_Openoffice_Writerdocument_1_Shell ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Wrt_Bin; - Subkey = "LibreOffice.WriterDocument.1\shell"; + Subkey = "ZetaOffice.WriterDocument.1\shell"; Value = "open"; End RegistryItem gid_Regitem_Openoffice_Writerdocument_1_Shell_New ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Wrt_Bin; - Subkey = "LibreOffice.WriterDocument.1\shell ew"; + Subkey = "ZetaOffice.WriterDocument.1\shell ew"; REG_VALUE_LNG(NEW) End RegistryItem gid_Regitem_Openoffice_Writerdocument_1_Shell_New_Command ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Wrt_Bin; - Subkey = "LibreOffice.WriterDocument.1\shell ew+ Subkey = "ZetaOffice.WriterDocument.1\shell ew Value = "\"<progpath>\program\soffice.exe\" -n \"%1\""; End RegistryItem gid_Regitem_Openoffice_Writerdocument_1_Shell_Open_Command ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Wrt_Bin; - Subkey = "LibreOffice.WriterDocument.1\shell\open+ Subkey = "ZetaOffice.WriterDocument.1\shell\open Value = "\"<progpath>\program\soffice.exe\" -o \"%1\""; Styles = (); End @@ -942,14 +942,14 @@ End RegistryItem gid_Regitem_Openoffice_Writerdocument_1_Shell_Print_Command ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Wrt_Bin; - Subkey = "LibreOffice.WriterDocument.1\shell\print+ Subkey = "ZetaOffice.WriterDocument.1\shell\print Value = "\"<progpath>\program\soffice.exe\" -p \"%1\""; End RegistryItem gid_Regitem_Openoffice_Writerdocument_1_Shell_Printto_Command ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Wrt_Bin; - Subkey = "LibreOffice.WriterDocument.1\shell\printto+ Subkey = "ZetaOffice.WriterDocument.1\shell\printto Value = "\"<progpath>\program\soffice.exe\" -pt \"%2\" \"%1\""; End @@ -957,21 +957,21 @@ End RegistryItem gid_Regitem_Openoffice_Writerwebdocument_Curver ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Wrt_Bin; - Subkey = "LibreOffice.WriterWebDocument\CurVer"; - Value = "LibreOffice.WriterWebDocument.1"; + Subkey = "ZetaOffice.WriterWebDocument\CurVer"; + Value = "ZetaOffice.WriterWebDocument.1"; End RegistryItem gid_Regitem_Openoffice_Writerwebdocument_1 ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Wrt_Bin; - Subkey = "LibreOffice.WriterWebDocument.1"; + Subkey = "ZetaOffice.WriterWebDocument.1"; REG_VALUE_LNG(OO_WRITER) End RegistryItem gid_Regitem_Openoffice_Writerwebdocument_1_Shell_Open_Command ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Wrt_Bin; - Subkey = "LibreOffice.WriterWebDocument.1\shell\open+ Subkey = "ZetaOffice.WriterWebDocument.1\shell\open Value = "\"<progpath>\program\soffice.exe\" -o \"%1\""; Styles = (); End @@ -997,7 +997,7 @@ RegistryItem gid_Regitem__Fodt ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Wrt_Bin; Subkey = ".fodt"; - Value = "LibreOffice.WriterDocument.1"; + Value = "ZetaOffice.WriterDocument.1"; End RegistryItem gid_Regitem_Software_Manufacturer_Productname_Productversion_Capabilities_FileAssociations_fodt @@ -1005,7 +1005,7 @@ RegistryItem gid_Regitem_Software_Manufacturer_Productname_Productversion_Capabi Subkey = "Software\%MANUFACTURER\%PRODUCTNAME%PRODUCTADDON\%PRODUCTVERSION\Capabilities\FileAssociations"; ModuleID = gid_Module_Root; Name = ".fodt"; - Value = "LibreOffice.WriterDocument.1"; + Value = "ZetaOffice.WriterDocument.1"; End RegistryItem gid_Regitem_Fodt_Contenttype @@ -1050,7 +1050,7 @@ End RegistryItem gid_Regitem_WriterTemplate_1_Shellex_PropertySheetHandlers_MyPropSheet1 ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Wrt_Bin; - Subkey = "LibreOffice.WriterTemplate.1\shellex\PropertySheetHandlers\MyPropSheet1"; + Subkey = "ZetaOffice.WriterTemplate.1\shellex\PropertySheetHandlers\MyPropSheet1"; Value = "{63542C48-9552-494A-84F7-73AA6A7C99C1}"; End @@ -1058,7 +1058,7 @@ RegistryItem gid_Regitem_Ott ParentID = PREDEFINED_HKEY_CLASSES_ROOT; Subkey = ".ott"; ModuleID = gid_Module_Prg_Wrt_Bin; - Value = "LibreOffice.WriterTemplate.1"; + Value = "ZetaOffice.WriterTemplate.1"; End RegistryItem gid_Regitem_Ott_Contenttype @@ -1079,14 +1079,14 @@ End RegistryItem gid_Regitem_Soffice_Starwritertemplate_1 ParentID = PREDEFINED_HKEY_CLASSES_ROOT; - Subkey = "LibreOffice.WriterTemplate.1"; + Subkey = "ZetaOffice.WriterTemplate.1"; ModuleID = gid_Module_Prg_Wrt_Bin; REG_VALUE_LNG(OO_WRITER_TEMPLATE) End RegistryItem gid_Regitem_Openoffice_Writertemplate_1_Defaulticon ParentID = PREDEFINED_HKEY_CLASSES_ROOT; - Subkey = "LibreOffice.WriterTemplate.1\DefaultIcon"; + Subkey = "ZetaOffice.WriterTemplate.1\DefaultIcon"; ModuleID = gid_Module_Prg_Wrt_Bin; Value = "<progpath>\program\soffice.bin,2"; End @@ -1094,15 +1094,15 @@ End RegistryItem gid_Regitem_Openoffice_Writertemplate_1_AppUserModelID ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Wrt_Bin; - Subkey = "LibreOffice.WriterTemplate.1"; + Subkey = "ZetaOffice.WriterTemplate.1"; Name = "AppUserModelID"; - Value = "TheDocumentFoundation.LibreOffice.Writer"; + Value = "Allotropia.ZetaOffice.Writer"; End RegistryItem gid_Regitem_Openoffice_Writertemplate_1_FriendlyTypeName ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Wrt_Bin; - Subkey = "LibreOffice.WriterTemplate.1"; + Subkey = "ZetaOffice.WriterTemplate.1"; Name = "FriendlyTypeName"; REG_VALUE_LNG(OO_WRITER_TEMPLATE) End @@ -1111,7 +1111,7 @@ End RegistryItem gid_Regitem_ott_FullDetails ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Optional_Winexplorerext; - Subkey = "LibreOffice.WriterTemplate.1"; + Subkey = "ZetaOffice.WriterTemplate.1"; Name = "FullDetails"; Value = "prop:System.PropGroup.Description;System.Title;System.Author;System.Subject;System.Keywords;System.Comment;System.PropGroup.FileSystem;System.ItemNameDisplay;System.ItemType;System.ItemFolderPathDisplay;System.Size;System.DateCreated;System.DateModified;System.FileAttributes;System.ComputerName"; End @@ -1128,41 +1128,41 @@ End RegistryItem gid_Regitem_Openoffice_Writertemplate_1_Shell ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Wrt_Bin; - Subkey = "LibreOffice.WriterTemplate.1\shell"; + Subkey = "ZetaOffice.WriterTemplate.1\shell"; Value = "new"; End RegistryItem gid_Regitem_Openoffice_Writertemplate_1_Shell_New ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Wrt_Bin; - Subkey = "LibreOffice.WriterTemplate.1\shell ew"; + Subkey = "ZetaOffice.WriterTemplate.1\shell ew"; REG_VALUE_LNG(NEW) End RegistryItem gid_Regitem_Openoffice_Writertemplate_1_Shell_New_Command ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Wrt_Bin; - Subkey = "LibreOffice.WriterTemplate.1\shell ew+ Subkey = "ZetaOffice.WriterTemplate.1\shell ew Value = "\"<progpath>\program\soffice.exe\" -n \"%1\""; End RegistryItem gid_Regitem_Openoffice_Writertemplate_1_Shell_Open_Command ParentID = PREDEFINED_HKEY_CLASSES_ROOT; - Subkey = "LibreOffice.WriterTemplate.1\shell\open+ Subkey = "ZetaOffice.WriterTemplate.1\shell\open ModuleID = gid_Module_Prg_Wrt_Bin; Value = "\"<progpath>\program\soffice.exe\" -o \"%1\""; End RegistryItem gid_Regitem_Openoffice_Writertemplate_1_Shell_Print_Command ParentID = PREDEFINED_HKEY_CLASSES_ROOT; - Subkey = "LibreOffice.WriterTemplate.1\shell\print+ Subkey = "ZetaOffice.WriterTemplate.1\shell\print ModuleID = gid_Module_Prg_Wrt_Bin; Value = "\"<progpath>\program\soffice.exe\" -p \"%1\""; End RegistryItem gid_Regitem_Openoffice_Writertemplate_1_Shell_Printto_Command ParentID = PREDEFINED_HKEY_CLASSES_ROOT; - Subkey = "LibreOffice.WriterTemplate.1\shell\printto+ Subkey = "ZetaOffice.WriterTemplate.1\shell\printto ModuleID = gid_Module_Prg_Wrt_Bin; Value = "\"<progpath>\program\soffice.exe\" -pt \"%2\" \"%1\""; End @@ -1193,7 +1193,7 @@ End RegistryItem gid_Regitem_WriterGlobalDocument_1_Shellex_PropertySheetHandlers_MyPropSheet1 ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Wrt_Bin; - Subkey = "LibreOffice.WriterGlobalDocument.1\shellex\PropertySheetHandlers\MyPropSheet1"; + Subkey = "ZetaOffice.WriterGlobalDocument.1\shellex\PropertySheetHandlers\MyPropSheet1"; Value = "{63542C48-9552-494A-84F7-73AA6A7C99C1}"; End @@ -1201,7 +1201,7 @@ RegistryItem gid_Regitem_Odm ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Wrt_Bin; Subkey = ".odm"; - Value = "LibreOffice.WriterGlobalDocument.1"; + Value = "ZetaOffice.WriterGlobalDocument.1"; End RegistryItem gid_Regitem_Odm_Contenttype @@ -1222,21 +1222,21 @@ End RegistryItem gid_Regitem_Openoffice_Writerglobaldocument_Curver ParentID = PREDEFINED_HKEY_CLASSES_ROOT; - Subkey = "LibreOffice.WriterGlobalDocument\CurVer"; + Subkey = "ZetaOffice.WriterGlobalDocument\CurVer"; ModuleID = gid_Module_Prg_Wrt_Bin; - Value = "LibreOffice.WriterGlobalDocument.1"; + Value = "ZetaOffice.WriterGlobalDocument.1"; End RegistryItem gid_Regitem_Openoffice_Writerglobaldocument_1 ParentID = PREDEFINED_HKEY_CLASSES_ROOT; - Subkey = "LibreOffice.WriterGlobalDocument.1"; + Subkey = "ZetaOffice.WriterGlobalDocument.1"; ModuleID = gid_Module_Prg_Wrt_Bin; REG_VALUE_LNG(OO_MASTERDOC) End RegistryItem gid_Regitem_Openoffice_Writerglobaldocument_1_Defaulticon ParentID = PREDEFINED_HKEY_CLASSES_ROOT; - Subkey = "LibreOffice.WriterGlobalDocument.1\DefaultIcon"; + Subkey = "ZetaOffice.WriterGlobalDocument.1\DefaultIcon"; ModuleID = gid_Module_Prg_Wrt_Bin; Value = "<progpath>\program\soffice.bin,9"; End @@ -1244,15 +1244,15 @@ End RegistryItem gid_Regitem_Openoffice_Writerglobaldocument_1_AppUserModelID ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Wrt_Bin; - Subkey = "LibreOffice.WriterGlobalDocument.1"; + Subkey = "ZetaOffice.WriterGlobalDocument.1"; Name = "AppUserModelID"; - Value = "TheDocumentFoundation.LibreOffice.Writer"; + Value = "Allotropia.ZetaOffice.Writer"; End RegistryItem gid_Regitem_Openoffice_Writerglobaldocument_1_FriendlyTypeName ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Wrt_Bin; - Subkey = "LibreOffice.WriterGlobalDocument.1"; + Subkey = "ZetaOffice.WriterGlobalDocument.1"; Name = "FriendlyTypeName"; REG_VALUE_LNG(OO_MASTERDOC) End @@ -1261,7 +1261,7 @@ End RegistryItem gid_Regitem_odm_FullDetails ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Optional_Winexplorerext; - Subkey = "LibreOffice.WriterGlobalDocument.1"; + Subkey = "ZetaOffice.WriterGlobalDocument.1"; Name = "FullDetails"; Value = "prop:System.PropGroup.Description;System.Title;System.Author;System.Subject;System.Keywords;System.Comment;System.PropGroup.FileSystem;System.ItemNameDisplay;System.ItemType;System.ItemFolderPathDisplay;System.Size;System.DateCreated;System.DateModified;System.FileAttributes;System.ComputerName"; End @@ -1277,42 +1277,42 @@ End RegistryItem gid_Regitem_Openoffice_Writerglobaldocument_1_Shell ParentID = PREDEFINED_HKEY_CLASSES_ROOT; - Subkey = "LibreOffice.WriterGlobalDocument.1\shell"; + Subkey = "ZetaOffice.WriterGlobalDocument.1\shell"; ModuleID = gid_Module_Prg_Wrt_Bin; Value = "open"; End RegistryItem gid_Regitem_Openoffice_Writerglobaldocument_1_Shell_New ParentID = PREDEFINED_HKEY_CLASSES_ROOT; - Subkey = "LibreOffice.WriterGlobalDocument.1\shell ew"; + Subkey = "ZetaOffice.WriterGlobalDocument.1\shell ew"; ModuleID = gid_Module_Prg_Wrt_Bin; REG_VALUE_LNG(NEW) End RegistryItem gid_Regitem_Openoffice_Writerglobaldocument_1_Shell_New_Command ParentID = PREDEFINED_HKEY_CLASSES_ROOT; - Subkey = "LibreOffice.WriterGlobalDocument.1\shell ew+ Subkey = "ZetaOffice.WriterGlobalDocument.1\shell ew ModuleID = gid_Module_Prg_Wrt_Bin; Value = "\"<progpath>\program\soffice.exe\" -n \"%1\""; End RegistryItem gid_Regitem_Openoffice_Writerglobaldocument_1_Shell_Open_Command ParentID = PREDEFINED_HKEY_CLASSES_ROOT; - Subkey = "LibreOffice.WriterGlobalDocument.1\shell\open+ Subkey = "ZetaOffice.WriterGlobalDocument.1\shell\open ModuleID = gid_Module_Prg_Wrt_Bin; Value = "\"<progpath>\program\soffice.exe\" -o \"%1\""; End RegistryItem gid_Regitem_Openoffice_Writerglobaldocument_1_Shell_Print_Command ParentID = PREDEFINED_HKEY_CLASSES_ROOT; - Subkey = "LibreOffice.WriterGlobalDocument.1\shell\print+ Subkey = "ZetaOffice.WriterGlobalDocument.1\shell\print ModuleID = gid_Module_Prg_Wrt_Bin; Value = "\"<progpath>\program\soffice.exe\" -p \"%1\""; End RegistryItem gid_Regitem_Openoffice_Writerglobaldocument_1_Shell_Printto_Command ParentID = PREDEFINED_HKEY_CLASSES_ROOT; - Subkey = "LibreOffice.WriterGlobalDocument.1\shell\printto+ Subkey = "ZetaOffice.WriterGlobalDocument.1\shell\printto ModuleID = gid_Module_Prg_Wrt_Bin; Value = "\"<progpath>\program\soffice.exe\" -pt \"%2\" \"%1\""; End @@ -1343,7 +1343,7 @@ End RegistryItem gid_Regitem_WriterWebTemplate_Shellex_PropertySheetHandlers_MyPropSheet1 ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Wrt_Bin; - Subkey = "LibreOffice.WriterWebTemplate.1\shellex\PropertySheetHandlers\MyPropSheet1"; + Subkey = "ZetaOffice.WriterWebTemplate.1\shellex\PropertySheetHandlers\MyPropSheet1"; Value = "{63542C48-9552-494A-84F7-73AA6A7C99C1}"; End @@ -1351,7 +1351,7 @@ RegistryItem gid_Regitem_Oth ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Wrt_Bin; Subkey = ".oth"; - Value = "LibreOffice.WriterWebTemplate.1"; + Value = "ZetaOffice.WriterWebTemplate.1"; End RegistryItem gid_Regitem_Oth_Contenttype @@ -1372,21 +1372,21 @@ End RegistryItem gid_Regitem_Openoffice_WriterWebTemplate_Curver ParentID = PREDEFINED_HKEY_CLASSES_ROOT; - Subkey = "LibreOffice.WriterWebTemplate\CurVer"; + Subkey = "ZetaOffice.WriterWebTemplate\CurVer"; ModuleID = gid_Module_Prg_Wrt_Bin; - Value = "LibreOffice.WriterWebTemplate.1"; + Value = "ZetaOffice.WriterWebTemplate.1"; End RegistryItem gid_Regitem_Openoffice_WriterWebTemplate_1 ParentID = PREDEFINED_HKEY_CLASSES_ROOT; - Subkey = "LibreOffice.WriterWebTemplate.1"; + Subkey = "ZetaOffice.WriterWebTemplate.1"; ModuleID = gid_Module_Prg_Wrt_Bin; REG_VALUE_LNG(OO_WEBDOC) End RegistryItem gid_Regitem_Openoffice_WriterWebTemplate_1_Defaulticon ParentID = PREDEFINED_HKEY_CLASSES_ROOT; - Subkey = "LibreOffice.WriterWebTemplate.1\DefaultIcon"; + Subkey = "ZetaOffice.WriterWebTemplate.1\DefaultIcon"; ModuleID = gid_Module_Prg_Wrt_Bin; Value = "<progpath>\program\soffice.bin,10"; End @@ -1394,57 +1394,57 @@ End RegistryItem gid_Regitem_Openoffice_WriterWebTemplate_1_AppUserModelID ParentID = PREDEFINED_HKEY_CLASSES_ROOT; ModuleID = gid_Module_Prg_Wrt_Bin; - Subkey = "LibreOffice.WriterWebTemplate.1"; -e ... etc. - the rest is truncated