Appdata Company Name , Changed to My Company
-
@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 "";
-
Ah, I see now, the scripting API call will always fetch the default value. I'll fix this.
-
Should be fixed.
-
@Christoph-Hart said in Appdata Company Name , Changed to My Company:
Should be fixed.
Think you forgot to push it
-
@Christoph-Hart Just compiled new commit , and still not working....
-
Yeah, as David said, I haven't pushed the fix. Will do it tomorrow...
-
@Christoph-Hart Oh , ....
No wonder why it didn't work ,lol -
@Christoph-Hart Yeah ! it's working like normal , Thank you