@@ -67,10 +67,10 @@ const projectConfigs = {
6767 } ,
6868 yukiHookApiConfig : {
6969 entryClassName : '' ,
70- debugTagName : '' ,
70+ debugLogTagName : '' ,
7171 supportResourcesHook : 0 ,
7272 enableDebug : 0 ,
73- enablePrintLogcat : 0 ,
73+ enableDebugLog : 0 ,
7474 enableYPrefsCache : 0 ,
7575 enableResourcesCache : 0 ,
7676 enableModuleStatus : 0 ,
@@ -301,13 +301,13 @@ const configForm = {
301301 appTargetApiText : ( ) => $ ( '#app_target_api_text' ) . val ( ) ,
302302 xposedMinApiText : ( ) => $ ( '#xposed_min_api_text' ) . val ( ) ,
303303 entryClassNameText : ( ) => $ ( '#entry_class_name_text' ) . val ( ) ,
304- debugTagNameText : ( ) => $ ( '#debug_tag_name_text ' ) . val ( ) ,
304+ debugLogTagNameText : ( ) => $ ( '#debug_log_tag_name_text ' ) . val ( ) ,
305305 compomentSelect : ( ) => valUtils . integerOf ( $ ( '#compoment_select option:selected' ) . val ( ) ) ,
306306 targetXposedPlatformSelect : ( ) => valUtils . integerOf ( $ ( '#target_xposed_platform_select option:selected' ) . val ( ) ) ,
307307 newXSharePrefsSelect : ( ) => valUtils . integerOf ( $ ( '#new_xshare_prefs_select option:selected' ) . val ( ) ) ,
308308 supportResourcesHookSelect : ( ) => valUtils . integerOf ( $ ( '#support_resources_hook_select option:selected' ) . val ( ) ) ,
309309 enableDebugSelect : ( ) => valUtils . integerOf ( $ ( '#enable_debug_select option:selected' ) . val ( ) ) ,
310- enablePrintLogcatSelect : ( ) => valUtils . integerOf ( $ ( '#enable_print_logcat_select option:selected' ) . val ( ) ) ,
310+ enableDebugLogSelect : ( ) => valUtils . integerOf ( $ ( '#enable_debug_log_select option:selected' ) . val ( ) ) ,
311311 enableYPrefsCacheSelect : ( ) => valUtils . integerOf ( $ ( '#enable_yprefs_cache_select option:selected' ) . val ( ) ) ,
312312 enableResourcesCacheSelect : ( ) => valUtils . integerOf ( $ ( '#enable_resources_cache_select option:selected' ) . val ( ) ) ,
313313 enableModuleStatusSelect : ( ) => valUtils . integerOf ( $ ( '#enable_module_status_select option:selected' ) . val ( ) ) ,
@@ -343,10 +343,10 @@ const build = {
343343 projectConfigs . basicConfig . newXSharePrefs = configForm . newXSharePrefsSelect ( ) ;
344344 projectConfigs . basicConfig . moduleScopes = moduleScope . moduleScopesData ( ) ;
345345 projectConfigs . yukiHookApiConfig . entryClassName = configForm . entryClassNameText ( ) ;
346- projectConfigs . yukiHookApiConfig . debugTagName = configForm . debugTagNameText ( ) ;
346+ projectConfigs . yukiHookApiConfig . debugLogTagName = configForm . debugLogTagNameText ( ) ;
347347 projectConfigs . yukiHookApiConfig . supportResourcesHook = configForm . supportResourcesHookSelect ( ) ;
348348 projectConfigs . yukiHookApiConfig . enableDebug = configForm . enableDebugSelect ( ) ;
349- projectConfigs . yukiHookApiConfig . enablePrintLogcat = configForm . enablePrintLogcatSelect ( ) ;
349+ projectConfigs . yukiHookApiConfig . enableDebugLog = configForm . enableDebugLogSelect ( ) ;
350350 projectConfigs . yukiHookApiConfig . enableYPrefsCache = configForm . enableYPrefsCacheSelect ( ) ;
351351 projectConfigs . yukiHookApiConfig . enableResourcesCache = configForm . enableResourcesCacheSelect ( ) ;
352352 projectConfigs . yukiHookApiConfig . enableModuleStatus = configForm . enableModuleStatusSelect ( ) ;
@@ -615,13 +615,13 @@ const configTemplate = {
615615 $ ( '#app_target_api_text' ) . val ( data . basicConfig . appTargetApi ) ;
616616 $ ( '#xposed_min_api_text' ) . val ( data . basicConfig . xposedMinApi ) ;
617617 $ ( '#entry_class_name_text' ) . val ( data . yukiHookApiConfig . entryClassName ) ;
618- $ ( '#debug_tag_name_text ' ) . val ( data . yukiHookApiConfig . debugTagName ) ;
618+ $ ( '#debug_log_tag_name_text ' ) . val ( data . yukiHookApiConfig . debugLogTagName ) ;
619619 $ ( '#compoment_select' ) . val ( data . basicConfig . moduleCompoment ) ;
620620 $ ( '#target_xposed_platform_select' ) . val ( data . basicConfig . targetXposedPlatform ) ;
621621 $ ( '#new_xshare_prefs_select' ) . val ( data . basicConfig . newXSharePrefs ) ;
622622 $ ( '#support_resources_hook_select' ) . val ( data . yukiHookApiConfig . supportResourcesHook ) ;
623623 $ ( '#enable_debug_select' ) . val ( data . yukiHookApiConfig . enableDebug ) ;
624- $ ( '#enable_print_logcat_select ' ) . val ( data . yukiHookApiConfig . enablePrintLogcat ) ;
624+ $ ( '#enable_debug_log_select ' ) . val ( data . yukiHookApiConfig . enableDebugLog ) ;
625625 $ ( '#enable_yprefs_cache_select' ) . val ( data . yukiHookApiConfig . enableYPrefsCache ) ;
626626 $ ( '#enable_resources_cache_select' ) . val ( data . yukiHookApiConfig . enableResourcesCache ) ;
627627 $ ( '#enable_module_status_select' ) . val ( data . yukiHookApiConfig . enableModuleStatus ) ;
0 commit comments