HISE Logo Forum
    • Categories
    • Register
    • Login

    Appdata Company Name , Changed to My Company

    Scheduled Pinned Locked Moved Bug Reports
    28 Posts 6 Posters 1.4k Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • S
      sakorada
      last edited by

      Can anyone confirm ,or just my computer?

      1 Reply Last reply Reply Quote 0
      • orangeO
        orange
        last edited by

        In your project folder, there is a user_info.xml file that includes the company information.

        develop Branch / XCode 13.1
        macOS Monterey / M1 Max

        S 2 Replies Last reply Reply Quote 0
        • S
          sakorada @orange
          last edited by

          @orange I also checked, but everything in file is normal.

          1 Reply Last reply Reply Quote 0
          • S
            sakorada @orange
            last edited by sakorada

            @orange here is my user_info.xml

            <?xml version="1.0" encoding="UTF-8"?>
            
            <UserSettings>
              <Company value="apples"/>
              <CompanyCode value="Abcd"/>
              <CompanyURL value="http://apples.com"/>
              <CompanyCopyright value="(c)2020, apples"/>
              <TeamDevelopmentID value=""/>
            </UserSettings>
            
            
            LindonL 1 Reply Last reply Reply Quote 0
            • LindonL
              Lindon @sakorada
              last edited by

              @sakorada -you def. dont want to use Abcd for the company code...

              HISE Development for hire.
              www.channelrobot.com

              S 1 Reply Last reply Reply Quote 1
              • S
                sakorada @Lindon
                last edited by

                @Lindon thank you , it will be charged later.
                But I still don't know why it happen like that.
                Bug ?

                LindonL 1 Reply Last reply Reply Quote 0
                • LindonL
                  Lindon @sakorada
                  last edited by

                  @sakorada dunno - are you sure you are building out of the correct HISE path?

                  HISE Development for hire.
                  www.channelrobot.com

                  S 1 Reply Last reply Reply Quote 0
                  • S
                    sakorada @Lindon
                    last edited by

                    @Lindon Yes, I'm 100% sure

                    1 Reply Last reply Reply Quote 0
                    • Christoph HartC
                      Christoph Hart
                      last edited by

                      I'll look into it (I noticed that too)...

                      S 1 Reply Last reply Reply Quote 0
                      • S
                        sakorada @Christoph Hart
                        last edited by

                        @Christoph-Hart Thank you ! first i thought only my machine but then try to run with few other computers and still get same thing ..

                        1 Reply Last reply Reply Quote 0
                        • Christoph HartC
                          Christoph Hart
                          last edited by

                          Take a look in the Binaries subfolder. There is a file called AutogeneratedProject.jucer. If you open it (it's a XML file), what does it say at the top under companyName ?

                          S 1 Reply Last reply Reply Quote 0
                          • S
                            sakorada @Christoph Hart
                            last edited by sakorada

                            @Christoph-Hart

                            It changed to Correct Company name after compiled,
                            But it error while working in hise .

                            
                            <?xml version="1.0" encoding="UTF-8"?>
                            
                            <JUCERPROJECT id="Tw64Zd" name="RoneatEk" projectType="audioplug" version="2.0.0"
                                          bundleIdentifier="com.apples.roneatek" includeBinaryInAppConfig="1"
                                          buildVST="0" buildVST3="0" buildAU="1" buildAUv3="0" buildStandalone="0"
                                          buildRTAS="0" buildAAX="0" pluginName="RoneatEk" pluginDesc="RoneatEk"
                                          pluginManufacturer="apples" pluginManufacturerCode="Evoz" pluginCode="Evoz"
                                          pluginChannelConfigs="" pluginIsSynth="1" pluginWantsMidiIn="1%"
                                          pluginProducesMidiOut="0" pluginIsMidiEffectPlugin="0" pluginEditorRequiresKeys="1"
                                          pluginAUExportPrefix="DemoProjectAU" pluginRTASCategory="" aaxIdentifier=""
                                          pluginAAXCategory="AAX_ePlugInCategory_SWGenerators" jucerVersion="5.2.0"
                                          companyName="apples" companyWebsite="http://apples.com" companyCopyright="(c)2020, apples"
                                          displaySplashScreen="0" reportAppUsage="0" splashScreenColour="Dark"
                                          enableIAA="1" cppLanguageStandard="14">
                            
                            
                            1 Reply Last reply Reply Quote 0
                            • Christoph HartC
                              Christoph Hart
                              last edited by

                              Hmm, ok, then look in the Binaries/Source/Plugin.cpp file what it says in ~line 26:

                              String hise::FrontendHandler::getCompanyName() { return "XXX"; };
                              
                              S 1 Reply Last reply Reply Quote 0
                              • S
                                sakorada @Christoph Hart
                                last edited by

                                @Christoph-Hart
                                From Plugin.cpp

                                
                                #include "JuceHeader.h"
                                #include "PresetData.h"
                                
                                BEGIN_EMBEDDED_DATA()
                                DEFINE_EMBEDDED_DATA(hise::FileHandlerBase::AudioFiles, PresetData::impulses, PresetData::impulsesSize);
                                DEFINE_EMBEDDED_DATA(hise::FileHandlerBase::Images, PresetData::images, PresetData::imagesSize);
                                DEFINE_EMBEDDED_DATA(hise::FileHandlerBase::MidiFiles, PresetData::midiFiles, PresetData::midiFilesSize);
                                DEFINE_EMBEDDED_DATA(hise::FileHandlerBase::SampleMaps, PresetData::samplemaps, PresetData::samplemapsSize);
                                DEFINE_EMBEDDED_DATA(hise::FileHandlerBase::Scripts, PresetData::externalFiles, PresetData::externalFilesSize);
                                DEFINE_EMBEDDED_DATA(hise::FileHandlerBase::Presets, PresetData::preset, PresetData::presetSize);
                                DEFINE_EMBEDDED_DATA(hise::FileHandlerBase::UserPresets, PresetData::userPresets, PresetData::userPresetsSize);
                                END_EMBEDDED_DATA()
                                
                                REGISTER_STATIC_DSP_LIBRARIES()
                                {
                                	REGISTER_STATIC_DSP_FACTORY(hise::HiseCoreDspFactory);
                                }
                                #if USE_COPY_PROTECTION
                                RSAKey hise::Unlocker::getPublicKey() { return RSAKey(""); };
                                #endif
                                AudioProcessor* JUCE_CALLTYPE createPluginFilter() { CREATE_PLUGIN(nullptr, nullptr); }
                                
                                AudioProcessor* hise::StandaloneProcessor::createProcessor() { return nullptr; }
                                String hise::FrontendHandler::getProjectName() { return "RoneatEk"; };
                                String hise::FrontendHandler::getCompanyName() { return "EvoPluz"; };
                                String hise::FrontendHandler::getCompanyWebsiteName() { return "http://evopluz.com"; };
                                String hise::FrontendHandler::getVersionString() { return "2.0.0"; };
                                String hise::FrontendHandler::getAppGroupId() { return ""; };
                                
                                
                                1 Reply Last reply Reply Quote 0
                                • Christoph HartC
                                  Christoph Hart
                                  last edited by

                                  Ah, OK, please check that you've really using the newly compiled binary (Clean the build folder and make sure that there's no compilation error). It embeds the proper company ID and there's no way that My Company can end up as folder from here on.

                                  S 3 Replies Last reply Reply Quote 0
                                  • S
                                    sakorada @Christoph Hart
                                    last edited by

                                    @Christoph-Hart No error on Compile ,and I always clean build folder before export or compiling

                                    1 Reply Last reply Reply Quote 0
                                    • S
                                      sakorada @Christoph Hart
                                      last edited by

                                      @Christoph-Hart Here I created a new project for testing

                                      HiseSnippet 1131.3ocsW0raaaDDdor2fHkphFf.jqrpWn.bEzOIosIHnJV1NQnQNBgNoAEBHYE4JyEhbWFxU1VMv.A8Io25SPu2GoduGZmgjRhxU10VMl5hl+186a1gyNrejxgGGqhHFEOXZHmX7YT6oRsWGOlPR5tCw3lz9Q7Xtlr8zPVbL2kXXrwSQqFE2jj77me+1LelzguPEg7Zkvg+bQfPuPa+1+fv2eOlK+.QPNuuW6tNJYGkuZBfjMn0IgLmwrC46yP2JPIF2XWWgVEYqYZdLwXysUtSs8TGKS8+0hXwPeNJzfXCKTp58T9tHhQsjNdBe29yXbLAVk9K3+Fo7+NzdBWwb8KxCeQhAyEQjOeXT3hfWi7vq9kGdF4f2lov61TamHQndgEDa2h1Up4QiXvQPdXk5KovuuIsiB7PpqEvFy2KBDlGg0CpWeKy6Wud0GUtDbLDqMOhEY5O7.N72GaNKxC45NpfPkDDrpjZtBFC9CiHjo8.+2S3ysmFq4AXHITLxJmxmDFtCSypVSqr0QB4gVI6LtBnWWkU.gDl0PaVUz7Sz0zm.fp1wQBMOa0q7LtuuJCoovtFTOm5eksPTOiEBouPxMGMQ5nEJooRt8DsVIaf4fHkukyrDvVPNxeBuZ4RenbohhQVohnfI7fjAWdfLY63gy2QbyRb5SKMQ0UeTohmVtzoIzY0maYDBBNF0mPqNLe+gvKbVmku+W4klqSd4+WYRxxb9mhIlujIglWbRn4kLIz5JlDtzDOF5eXMmTWMt05h4VqbbKGg1Wo4uPZUszGJUrzokLOqoQiVosrEyG3wpLi85itn.sjSBFxilk1l4Hzza4tpzyuqZ9l9No4kbNpjckB8KB4xyqWKIKYB+6UcwzO19MSG3WHORKPHXrC+H3dszlwEo6viGqUg.RmeB.2XpSrVNqU8yYC49DgKdUZZgK4jbWT1d5bgO9SsOV3p8lq3c+RaOt3PuEWg9twswBdhw2Q67vAuJlGEOX2iTl8XPsSzfrZmAuTwBfWYFzapIBLlb5fmIh4Ia9HfU1hedoqeI4f+sRg+mmA+zBlD7Wjl0dHOAZli.jFsEw8TAv5vh.0FEhYGw6Jylf.tQZY9Y5cV98Q6L9cW5OhM2LO.6hdfxLiYDPWP5fBMgftwu8PxegwsPcdsWMZ0LGsBO45gV2g9TtdFYLSe4+5jSsxwo+PjiS+5Qex3Dr8vqZm2IzW8kUVAaF+92mxl+8HNvfVJ2I9L8xSegiblY.ZdrzXN3nLxXgdZ9QRuVFI6xB2aS6KzNdqFuEVAdg1MW23Ma.2xzcGMh6nW.1Mo68lq+oYIuTMQC8j5wfayghR59SBrgpAGNfDoj6iM3MJfE3ox0QYLyXyktIB+M7jYrAJajYrwLij.lSj5sNoWqfiPeyDM.ljIeIQQZOT1rAI4pFHNZ8Z0IAvj8u0wASEeMf8UGSy0HlVqQL2aMh49qQLOXMh4aViX91KLF7ipdxDsJH80DPQ+cSZiXXrqjAUYIUjj+Af+loQc
                                      

                                      hise Error.PNG

                                      1 Reply Last reply Reply Quote 0
                                      • S
                                        sakorada @Christoph Hart
                                        last edited by

                                        @Christoph-Hart Now only Work with Changing value in(\hi_core\hi_core\HiseSettings.cpp) file before Compiling Hise :(

                                        if (id == Project::Name)
                                        	{
                                        		BACKEND_ONLY(return handler_.getWorkDirectory().getFileName());
                                        	}
                                        	else if (id == Project::Version)			    return "1.0.0";
                                        	else if (id == Project::BundleIdentifier)	    return "com.myCompany.product";
                                        	else if (id == Project::PluginCode)			    return "Abcd";
                                        	else if (id == Project::EmbedAudioFiles)		return "Yes";
                                        	else if (id == Project::EmbedImageFiles)		return "Yes";
                                        	else if (id == Project::SupportFullDynamicsHLAC)	return "No";
                                        	else if (id == Project::RedirectSampleFolder)	BACKEND_ONLY(return handler_.isRedirected(ProjectHandler::SubDirectories::Samples) ? handler_.getSubDirectory(ProjectHandler::SubDirectories::Samples).getFullPathName() : "");
                                        	else if (id == Project::AAXCategoryFX)			return "AAX_ePlugInCategory_Modulation";
                                        	else if (id == Project::SupportMonoFX)			return "No";
                                        	else if (id == Project::EnableMidiInputFX)		return "No";
                                        	else if (id == Project::VST3Support)			return "No";
                                        	else if (id == Project::UseRawFrontend)			return "No";
                                        	else if (id == Project::ExpansionType)			return "Disabled";
                                        	else if (id == Other::EnableAutosave)			return "Yes";
                                        	else if (id == Other::AutosaveInterval)			return 5;
                                        	else if (id == Other::AudioThreadGuardEnabled)  return "Yes";
                                        	else if (id == Documentation::DocRepository)	return "";
                                        	else if (id == Documentation::RefreshOnStartup) return "Yes";
                                        	else if (id == Scripting::CodeFontSize)			return 17.0;
                                        	else if (id == Scripting::EnableCallstack)		return "No";
                                        	else if (id == Scripting::CompileTimeout)		return 5.0;
                                        	else if (id == Compiler::VisualStudioVersion)	return "Visual Studio 2017";
                                        	else if (id == Compiler::UseIPP)				return "Yes";
                                        	else if (id == Compiler::LegacyCPUSupport) 		return "No";
                                        	else if (id == Compiler::RebuildPoolFiles)		return "Yes";
                                        	else if (id == Compiler::Support32BitMacOS)		return "Yes";
                                        	else if (id == User::CompanyURL)				return "http://yourcompany.com";
                                        	else if (id == User::CompanyCopyright)			return "(c)2017, Company";
                                        	else if (id == User::CompanyCode)				return "Abcd";
                                        	else if (id == User::Company)					return "EvoPluz";
                                        	else if (id == Other::GlobalSamplePath)         return "";
                                        
                                        
                                        1 Reply Last reply Reply Quote 0
                                        • Christoph HartC
                                          Christoph Hart
                                          last edited by

                                          Ah, I see now, the scripting API call will always fetch the default value. I'll fix this.

                                          1 Reply Last reply Reply Quote 3
                                          • Christoph HartC
                                            Christoph Hart
                                            last edited by

                                            Should be fixed.

                                            d.healeyD S 2 Replies Last reply Reply Quote 1
                                            • First post
                                              Last post

                                            27

                                            Online

                                            1.7k

                                            Users

                                            11.9k

                                            Topics

                                            103.3k

                                            Posts