import{_ as a,r as c,o as s,c as l,b as e,d as t,a as i,e as o}from"./app.a3fd8dd4.js";const r={},h=i('
Changelog
The version update history of YukiHookAPI is recorded here.
Pay Attention
We will only maintain the latest API version, if you are using an outdate API version, you voluntarily renounce any possibility of maintenance.
Notice
To avoid translation time consumption, Changelog will use Google Translation from Chinese to English, please refer to the original text for actual reference.
Time zone of version release date: UTC+8
',4),u={id:"_1-1-5-2023-01-13",tabindex:"-1"},m=e("a",{class:"header-anchor",href:"#_1-1-5-2023-01-13","aria-hidden":"true"},"#",-1),_=o(" 1.1.5 | 2023.01.13 \u2002"),p=i('- Standardize and optimize the overall code style
- Privatized some APIs called internally
- The underlying API interface is decoupled as a whole to prepare for compatibility with more Hook Frameworks
- Move some of the functions integrated in the API to
ksp-xposed dependencies (decoupling), and the separate introduction of api dependencies will no longer contain references to functions such as third-party libraries - Documentation Quick Start page added instructions on when
YukiHookAPI.Configs.isDebug needs to be closed - Standardize Java Primitive Types in type definitions and sync update to docs
- Java
type adds NumberClass type - Improved (Xposed) Host environment recognition
- Take over all exceptions after loading the Xposed Module, if an exception occurs, it will automatically intercept and print the error log
- Modify the
Class that does not exist in the lower Android system version (Android 5.0) in the type definition to be an empty safe type - Adapt and support native Xposed, the minimum recommended version is Android 7.0
- Added support for Hook entry class declared as
object type (singleton) - Fixed the problem that the system below Android 8 does not support the
Executable type, causing the Hook to fail - Fixed the problem of reporting an error when using the
Activity proxy function for systems below Android 9 and limit the minimum supported version of this function to Android 7.0 - Added the prohibition of resource injection and
Activity proxy function injection into the current module's own instance process to prevent problems - Fixed a serious error that the return value of a method in the Hook process is not consistent with the target's inherited class and interface.
- Fixed the problem that the object is empty when calling
HookParam.callOriginal and HookParam.invokeOriginal when the current Hook instance object is static - Optimize the function of judging the Tai Chi activation method and update the relevant instructions of the document synchronously
- Obsolete
YukiHookAPI.Status.executorName, YukiHookAPI.Status.executorVersion, please move to YukiHookAPI.Status.Executor - Adapted the
YukiHookAPI.Status.Executor.name name display function of some third-party Hook Frameworks - Added
Class.extends, Class.implements and other methods, which can more conveniently judge the inheritance and interface relationship of the current Class - Added generic methods of the same name as
Class.toClass, Class.toClassOrNull and other related methods, you can use generics to constrain the instance object type of known Class - Modify the return value of the
classOf<T> method to the generic type T to constrain the instance object type of the known Class - Added
initialize parameter of Class related extension method, which can control whether to initialize its static method block at the same time when getting Class object - Added
param { ... }, type { ... } and other usages in the variable, method, and construction method search functions, which can add more specific conditional judgments to the searched objects - The
loadApp method of PackageParam adds the isExcludeSelf parameter, which can be used to exclude Hook-related functions from injecting into the module's own instance process - The
onAppLifecycle method of PackageParam adds the isOnFailureThrowToApp parameter, which can directly throw the exception that occurs in the lifecycle method body to the host - Modify
appClassLoader in PackageParam to be a modifiable variable, which can dynamically set the ClassLoader used by the host in the Hook process - Added
dataExtra function in HookParam, which can be used to temporarily store the data in the Hook method body - Obsolete
isRunInNewXShareMode, isXSharePrefsReadable in YukiHookModulePrefs, merged into isPreferencesAvailable Class.allFields, Class.allMethods and other related methods add the isAccessible parameter, which can control when the member object can be set as an accessible type- Fixed the problem that only the last method body will be called back when receiving the same key-value data in an Activity when there are multiple hosts in
YukiHookDataChannel - Added
priority parameter in wait and other related methods of YukiHookDataChannel, you can pass in ChannelPriority to customize the conditions for callback data results YukiHookDataChannel adds the function of automatically using ChannelDataWrapper type wrapper when sending data, which improves the user experience and enhances data protectionYukiHookDataChannel has added the function of limiting the maximum byte size of data sent at one time to prevent the app from crashing due to excessive dataYukiHookDataChannel has added the function of automatically segmenting when the sent data is too large, only supports List, Map, Set, String typesYukiHookLogger adds the contents method and the data parameter of saveToFile, which can be passed in custom debug log data for formatting or saving to a file- Fixed the problem that the debug log data package name processed by
YukiHookLogger may be incorrect in the (Xposed) Host environment - Fixed the problem that the package name may be incorrect on some systems (in some system apps) when the Xposed Module loads the Resource Hook event
',1),f={id:"_1-1-4-2022-10-04",tabindex:"-1"},g=e("a",{class:"header-anchor",href:"#_1-1-4-2022-10-04","aria-hidden":"true"},"#",-1),k=o(" 1.1.4 | 2022.10.04 \u2002"),y=i("- Fixed the issue that
YukiHookDataChannel may not respond to broadcast events in the system framework, reproduced in A13 - Fixed the issue that
YukiHookDataChannel could not communicate with Module App in Host App for multiple versions - Added
obtainLoggerInMemoryData method in YukiHookDataChannel to share debug log data between module and host - Modify the type of
YukiHookLogger.inMemoryData to ArrayList and change YukiLoggerData to data class - Fixed
YukiLoggerData printing blank when the package name is empty in the module - Added
loadApp, loadZygote, loadSystem, withProcess multi-parameter methods of the same name in PackageParam - Fixed some possible bugs
",1),b={id:"_1-1-3-2022-09-30",tabindex:"-1"},x=e("a",{class:"header-anchor",href:"#_1-1-3-2022-09-30","aria-hidden":"true"},"#",-1),v=o(" 1.1.3 | 2022.09.30 \u2002"),w=e("ul",null,[e("li",null,"Fixed a fatal bug where the Hook entry class name could not be customized"),e("li",null,[o("Added some code notes in "),e("code",null,"LoggerFactory"),o(" and updated special features documentation")])],-1),A={id:"_1-1-2-2022-09-30",tabindex:"-1"},H=e("a",{class:"header-anchor",href:"#_1-1-2-2022-09-30","aria-hidden":"true"},"#",-1),P=o(" 1.1.2 | 2022.09.30 \u2002"),C=i('- Documentation Basic Knowledge page add a friend link to the English version
- Fixed
YukiBaseHooker comments in English code note link errors - Fixed
ClassCastException in ModuleClassLoader - Fixed and standardize some code notes
- Added
ModuleClassLoader exclusion list function, you can use excludeHostClasses and excludeModuleClasses methods to customize the exclusion list - Added
YukiLoggerData real-time log data class, you can get the log array in real time through YukiHookLogger.inMemoryData - Added
ClassLoader.listOfClasses method, which can directly get all Class in the current Dex
',1),F={id:"_1-1-1-2022-09-28",tabindex:"-1"},M=e("a",{class:"header-anchor",href:"#_1-1-1-2022-09-28","aria-hidden":"true"},"#",-1),I=o(" 1.1.1 | 2022.09.28 \u2002"),Y=e("ul",null,[e("li",null,[o("Fixed the problem of wrong document friend links in "),e("a",{href:"../guide/knowledge"},"Basic Knowledge"),o(" page")]),e("li",null,[o("Fixed document "),e("code",null,"favicon"),o(" not showing up")]),e("li",null,[o("Fixed bug in "),e("code",null,"DexClassFinder"),o(" search conditions")])],-1),R={id:"_1-1-0-2022-09-28",tabindex:"-1"},S=e("a",{class:"header-anchor",href:"#_1-1-0-2022-09-28","aria-hidden":"true"},"#",-1),z=o(" 1.1.0 | 2022.09.28 \u2002"),D=e("li",null,[o("This is a major version update, please refer to "),e("a",{href:"../api/home"},"API Document"),o(" and "),e("a",{href:"../api/special-features/reflection"},"Special Features"),o(" for the changes and usage mentioned in the changelog")],-1),L=o("Change the help documentation framework to "),T={href:"https://v2.vuepress.vuejs.org",target:"_blank",rel:"noopener noreferrer"},X=o("VuePress"),j=i('Unify and standardize the terms and nouns in the document, for example, "query" is always changed to "find", XposedHelper is misspelled and changed to XposedHelpersDocumentation Basic Knowledge page to add friend links, Simplified Chinese onlyConvert Class and Method of Hook App Demo to Java to provide better demo effectFixed code comment naming in Hook Module DemoRefactored a lot of low-level Hook logic and the docking method of Xposed APIRemoved HookParamWrapper, it now interfaces directly with YukiBridgeFactoryMoved methods in section YukiHookBridge to AppParasiticsRemoved HookParam.args and the underlying direct connection method setArgs, directly get and set the object of the current arrayOptimized automatic handler to merge referenced jar into stub project',9),W=o("Fixed the problem that the module package name cannot be correctly matched when multi-project packaging, and modify the module package name matching logic of the automatic handler, thanks to "),O={href:"https://github.com/5ec1cff",target:"_blank",rel:"noopener noreferrer"},N=o("5ec1cff"),B=o(" for the feedback and solutions provided"),E=i("Internal closure processing for the methods of API private tool classes to avoid polluting the top-level namespaceFixed Creater naming to Creator for all reflection and Hook classesAdded YukiHookAPI.Status.compiledTimestamp function, which can get the compilation completion timestamp when used as an Xposed moduleAdded YukiHookAPI.Status.isXposedEnvironment function, which can determine whether the current (Xposed) host environment or module environment isThe debug logging function has been overhauled, and functions such as YukiHookAPI.Configs.debugTag have been merged into YukiHookLogger.ConfigsThe debug log can be added to specify the printing method as XposedBridge.log or LogdThe package name of the current host and the current user ID are added to the debug log by default for debugging, you can change it yourself in the debugLog configurationAdded generic function to reflect and call generics, you can use it in Class or CurrentClassobsolete the buildOfAny method, now use the buildOf method directly (without generics) to use the constructor to create a new object and get the result AnyFixed the issue of null pointer exception when using hasExtendsCurrentClass added non-lambda method of callingCurrentClass adds name and simpleName functionsCompletely rewrite the core method of ReflectionTool, sorting and classifying different search conditionsFixed the problem that Member obtained by directly calling declared in ReflectionTool throws an exceptionFixed UndefinedType in ReflectionTool is not correctly judged in Method and Constructor conditionsAdded a friendly prompt method when the reflection search result is abnormal, which can specifically locate the problem that Member cannot be found under specified conditionsAdded VagueType condition in Method and Constructor for reflection search, which can be used in param condition to ignore parameters you don't want to fill inAdded paramCount { ... } condition in Method and Constructor of reflection search, now you can directly get it in it to customize your judgment conditionThe current method is added to the FieldFinder result, which can directly create a call space for the result instanceModified the modifiers condition and name condition in the reflection lookup function, now you need to return a Boolean at the end of the method body to make the condition true",20),q=e("code",null,"as*",-1),U=o(" function in "),V=e("code",null,"ModifierRules",-1),K=o(" renamed to "),Z=e("code",null,"is*",-1),G=o(", thanks to "),J={href:"https://github.com/KyuubiRan",target:"_blank",rel:"noopener noreferrer"},Q=o("Kitsune"),$=o(" suggestion"),ee=i("Added RemedyPlan feature in FieldFinderAdded Class fuzzy search function (Beta) in Dex, you can now directly use searchClass function to fuzzy search Class with specified conditions",2),oe=o("Added multiple search function in reflection search, you can use relative search conditions to obtain multiple search results at the same time, thanks to "),te=e("strong",null,"AA",-1),de=o(" and "),ie={href:"https://github.com/KyuubiRan",target:"_blank",rel:"noopener noreferrer"},ne=o("Kitsune"),ce=o(" for suggestions"),ae=o("Fixed the problem that the object obtained by "),se=e("code",null,"appClassLoader",-1),le=o(" is incorrect in system applications in some systems, thanks to "),re={href:"https://github.com/luckyzyx",target:"_blank",rel:"noopener noreferrer"},he=o("Luckyzyx"),ue=o(" for the feedback"),me=e("li",null,[o("Modified the calling method of "),e("code",null,"XposedBridge.invokeOriginalMethod"),o(" and added "),e("code",null,"original"),o(" function in "),e("code",null,"MethodFinder.Result.Instance")],-1),_e=o("Fixed the problem of wrong value of "),pe=e("code",null,"getStringSet",-1),fe=o(" method in "),ge=e("code",null,"YukiHookModulePrefs",-1),ke=o(" and optimize the code style, thanks to "),ye={href:"https://github.com/Teddy-Zhu",target:"_blank",rel:"noopener noreferrer"},be=o("Teddy_Zhu"),xe=o(),ve={href:"https://github.com/fankes/YukiHookAPI/pull/19",target:"_blank",rel:"noopener noreferrer"},we=o("PR"),Ae=e("li",null,[o("Modify "),e("code",null,"YukiHookModulePrefs"),o(" to intercept exceptions that may not exist in "),e("code",null,"XSharePreference")],-1),He=e("li",null,[o("Fixed the problem that "),e("code",null,"YukiHookDataChannel"),o(" could not be successfully registered in some third-party ROM system frameworks")],-1),Pe=e("li",null,[o("Secured "),e("code",null,"YukiHookDataChannel"),o(", now it can only communicate between modules from the specified package name and the host")],-1),Ce=o("Added automatic hook "),Fe=e("code",null,"SharedPreferences",-1),Me=o(" to fix the problem that file permissions are not "),Ie=e("code",null,"0664",-1),Ye=o(" in some systems, thanks to "),Re={href:"https://github.com/5ec1cff",target:"_blank",rel:"noopener noreferrer"},Se=o("5ec1cff"),ze=o(" for the feedback and implementation code provided"),De=i("Added YukiHookAPI.Configs.isEnableHookSharedPreferences function, which is disabled by default and can be enabled if the permission of SharedPreferences is incorrectFixed the bug that the no-parameter construction method cannot be found when searching for Constructor without filling in the search conditions, thanks B5 KAKA for the feedbackDetach Result instances located in method, constructor in injectMember to ProcessAdded the useDangerousOperation method in the Hook process, which will automatically stop the Hook and print an error after the function in the Hook Dangerous List is not declaredAdded module resource injection and Activity proxy functions, you can call injectModuleAppResources and registerModuleAppActivities to useAdded ModuleContextThemeWrapper function, you can call applyModuleTheme to create the Context of a module in any ActivityAdded ClassLoader.onLoadClass function, which can be used to listen for events when the loadClass method of ClassLoader is calledobsolete classOf and clazz extension methods, add toClass and toClassOrNull usage, please move to the new method nowVariousClass adds a getOrNull method, which can return null instead of throwing an exception when it can't match ClassRemoved isUseAppClassLoader parameter in PackageParam.hook, changed it to isForceUseAbsolute and automatically matched the target ClassPackageParam adds systemContext function, you can call this function at any time to get a persistent Contextno longer expose any methods in HookClassAdded throwToApp function in HookParam, which can throw exceptions directly to the hostThe onFailureThrowToApp function is added to the Hook callback, which can be directly thrown to the host when an exception occursModified the printing logic of the debug log, the time-consuming records in the reflection search function will only be printed during the Hook processAdded the function of removing Hook in the Hook process, you can use the remove and removeSelf methods to remove the hookFixed the issue that caused the host to throw an exception when ReplaceHook failed, and now it is modified to call the original method to ensure the normal operation of the host functionAdded the function of checking the return value of the method in the Hook process. If the return value does not match, it will automatically throw an exception or print an error according to the situation",18),Le=o("Added "),Te=e("code",null,"array",-1),Xe=o(" type to Resources Hook, thanks to "),je={href:"https://github.com/fankes/YukiHookAPI/pull/12",target:"_blank",rel:"noopener noreferrer"},We=o("PR"),Oe=o(" of "),Ne={href:"https://github.com/GSWXXN",target:"_blank",rel:"noopener noreferrer"},Be=o("GSWXXN"),Ee=e("li",null,[o("Moved "),e("code",null,"me.weishu.reflection"),o(" to "),e("code",null,"thirdparty"),o(" to prevent conflicting dependencies of the same name introduced at the same time")],-1),qe=e("li",null,"Remove the exception thrown when the Hook method body is empty, and modify it to print the warning log",-1),Ue=e("li",null,[o("Modify the exception handling logic of "),e("code",null,"AppLifecycle"),o(" and throw it directly to the host when an exception occurs")],-1),Ve=e("li",null,"Updated Demo API version to 33",-1),Ke={id:"_1-0-92-2022-05-31",tabindex:"-1"},Ze=e("a",{class:"header-anchor",href:"#_1-0-92-2022-05-31","aria-hidden":"true"},"#",-1),Ge=o(" 1.0.92 | 2022.05.31 \u2002"),Je=i("- Fixed the naming method of callback in a large number of methods
- Changed the solution to fix the problem that
YukiHookDataChannel cannot call back the current Activity broadcast on devices lower than Android 12 - The
InjectYukiHookWithXposed annotation adds the isUsingResourcesHook function, now you can selectively disable the dependency interface that automatically generates IXposedHookInitPackageResources
",1),Qe={id:"_1-0-91-2022-05-29",tabindex:"-1"},$e=e("a",{class:"header-anchor",href:"#_1-0-91-2022-05-29","aria-hidden":"true"},"#",-1),eo=o(" 1.0.91 | 2022.05.29 \u2002"),oo=o("Fixed the "),to=e("code",null,"ClassLoader",-1),io=o(" error when the customized system of some devices is booted in the LSPosed environment, thanks to "),no={href:"https://github.com/luckyzyx",target:"_blank",rel:"noopener noreferrer"},co=o("Luckyzyx"),ao=o(" for the feedback"),so=i("Fixed YukiHookDataChannel not being able to call back the current Activity broadcast on ZUI and systems below Android 12Integrate the YukiHookModuleStatus function into YukiHookAPI.Status, rewrite a lot of methods, now you can judge the status information such as module activation in the module and the host in both directions",2),lo={id:"_1-0-90-2022-05-27",tabindex:"-1"},ro=e("a",{class:"header-anchor",href:"#_1-0-90-2022-05-27","aria-hidden":"true"},"#",-1),ho=o(" 1.0.90 | 2022.05.27 \u2002"),uo=i("- Fixed
YukiHookDataChannel crashing when the module sets the listener callback - Fixed
YukiHookDataChannel still calling back when not in current Activity - Remove the default value of
YukiHookDataChannel callback event, no callback - Removed
YukiHookModulePrefs warning printed if XShare is unreadable - Added the
isXSharePrefsReadable method in YukiHookModulePrefs to determine whether the current XShare is available
",1),mo={id:"_1-0-89-2022-05-26",tabindex:"-1"},_o=e("a",{class:"header-anchor",href:"#_1-0-89-2022-05-26","aria-hidden":"true"},"#",-1),po=o(" 1.0.89 | 2022.05.26 \u2002"),fo=i("- Fixed the problem that
YukiHookDataChannel cannot be repeatedly set to monitor, and added the function of repeating response in different Activity modules and automatically following Activity to destroy the monitor function - Added
YukiHookDataChannel repeated listening use case description document - Add the
onAlreadyHooked method to determine whether the current method is repeated Hook - Modify part of the logic of repeatedly adding HashMap, remove the
putIfAbsent method, allow to override the addition - Fixed several possible bugs
",1),go={id:"_1-0-88-2022-05-25",tabindex:"-1"},ko=e("a",{class:"header-anchor",href:"#_1-0-88-2022-05-25","aria-hidden":"true"},"#",-1),yo=o(" 1.0.88 | 2022.05.25 \u2002"),bo=i("- Fully decoupled from Xposed API
- Added
android type in type - Separate
YukiHookModuleStatus from auto-generated code and add isEnableHookModuleStatus switch, it is up to you to enable or not - Internal closure processing for the constructors of a large number of classes in the API
- Set
YukiHookModulePrefs to run as a singleton to prevent repeated creation and waste of system resources - Fixed the bug that Hook cannot be nested since version
1.0.80, and optimize the related functions of nested Hook - Modify the Hooker storage scheme from HashSet to HashMap to prevent the problem of repeatedly adding Hookers
- Modify the core implementation method of Hook, add duplicate checking to avoid repeating the Hook multiple callbacks to the
HookParam method MethodFinder and FieldFinder add the function of finding fuzzy methods and variable names, you can call name { ... } to set search conditions, and support regular expressions- Optimize and modify the way to get
appContext to reduce the possibility of getting empty - Modify the print
TAG of logger in the automatically generated code to default to your custom name, which is convenient for debugging - Optimize the
Hooker implementation of YukiHookBridge to improve Hook performance PackageParam adds the onAppLifecycle method, which can natively monitor the life cycle of the host and implement the registration system broadcast function- Added
YukiHookDataChannel function to communicate using system out-of-order broadcast while the module and the host remain alive YukiHookDataChannel adds the checkingVersionEquals method, which can be monitored to verify that the host has not updated the version mismatch problem after the module is updated- Added Java version example in the example code of
demo-module for reference only
",1),xo={id:"_1-0-87-2022-05-10",tabindex:"-1"},vo=e("a",{class:"header-anchor",href:"#_1-0-87-2022-05-10","aria-hidden":"true"},"#",-1),wo=o(" 1.0.87 | 2022.05.10 \u2002"),Ao=e("ul",null,[e("li",null,[o("Added "),e("code",null,"refreshModuleAppResources"),o(" function to adapt Resources refresh when the language region, font size, resolution changes, etc.")]),e("li",null,[o("Added "),e("code",null,"isEnableModuleAppResourcesCache"),o(" function, you can set whether to automatically cache the resources of the current module")])],-1),Ho={id:"_1-0-86-2022-05-06",tabindex:"-1"},Po=e("a",{class:"header-anchor",href:"#_1-0-86-2022-05-06","aria-hidden":"true"},"#",-1),Co=o(" 1.0.86 | 2022.05.06 \u2002"),Fo=e("ul",null,[e("li",null,[o("Fixed the problem of continuous error reporting during "),e("code",null,"initZygote"),o(" when Resources Hook is not supported, reproduced in "),e("strong",null,"ZUI"),o("/"),e("strong",null,"LSPosed CI(1.8.3-6550)")]),e("li",null,"Optimize and handle exceptions for Resources Hook, only print errors and warnings if they are used and not supported")],-1),Mo={id:"_1-0-85-2022-05-04",tabindex:"-1"},Io=e("a",{class:"header-anchor",href:"#_1-0-85-2022-05-04","aria-hidden":"true"},"#",-1),Yo=o(" 1.0.85 | 2022.05.04 \u2002"),Ro=e("ul",null,[e("li",null,[o("Fixed a serious problem of not being able to hook the system framework, since "),e("code",null,"1.0.80")]),e("li",null,[o("Added in the debug log to distinguish the package name loaded by "),e("code",null,"initZygote"),o(" as "),e("code",null,"android-zygote"),o(", "),e("code",null,"packageName"),o(" keeps "),e("code",null,"android"),o(" unchanged")])],-1),So={id:"_1-0-83-2022-05-04",tabindex:"-1"},zo=e("a",{class:"header-anchor",href:"#_1-0-83-2022-05-04","aria-hidden":"true"},"#",-1),Do=o(" 1.0.83 | 2022.05.04 \u2002"),Lo=e("ul",null,[e("li",null,[o("Fixed "),e("code",null,"YukiHookModuleStatus"),o(" reporting a lot of errors after "),e("code",null,"loadSystem")]),e("li",null,[o("Added "),e("code",null,"android"),o(" type in "),e("code",null,"type")]),e("li",null,"Updated example descriptions in help documentation")],-1),To={id:"_1-0-82-2022-05-04",tabindex:"-1"},Xo=e("a",{class:"header-anchor",href:"#_1-0-82-2022-05-04","aria-hidden":"true"},"#",-1),jo=o(" 1.0.82 | 2022.05.04 \u2002"),Wo=e("ul",null,[e("li",null,[o("Fixed a concept confusion error, distinguishing the relationship between "),e("code",null,"initZygote"),o(" and the system framework, there are problems with the previous comments and documentation, I am very sorry")]),e("li",null,[e("code",null,"PackageParam"),o(" adds "),e("code",null,"loadSystem"),o(" method, no need to write "),e("code",null,'loadApp(name = "android")'),o(" to hook the system framework")])],-1),Oo={id:"_1-0-81-2022-05-04",tabindex:"-1"},No=e("a",{class:"header-anchor",href:"#_1-0-81-2022-05-04","aria-hidden":"true"},"#",-1),Bo=o(" 1.0.81 | 2022.05.04 \u2002"),Eo=e("ul",null,[e("li",null,[o("Fixed the problem that the method and constructor that cannot be found in the Hook method body still output the error log after setting the condition using the "),e("code",null,"by"),o(" method")]),e("li",null,"Added a global log to display the package name of the current Hook APP during the execution of the Hook, and fixed a problem with the printing style of the error log")],-1),qo={id:"_1-0-80-2022-05-01",tabindex:"-1"},Uo=e("a",{class:"header-anchor",href:"#_1-0-80-2022-05-01","aria-hidden":"true"},"#",-1),Vo=o(" 1.0.80 | 2022.05.01 \u2002"),Ko=i("The InjectYukiHookWithXposed annotation adds the entryClassName function, which can customize the generated xposed_init entry class nameYukiHookXposedInitProxy renamed to IYukiHookXposedInit, the original interface name has been invalidated and will be deleted directly in subsequent versionsAdded initZygote and Resources Hook functions to support Hook LayoutAdded onXposedEvent method to listen to all events of native Xposed APIPerform inline processing on the lambda of the Hook function to avoid generating excessively broken anonymous classes and improve the running performance after compilationFixed PrefsData compiled method body copy is too largeAdded XSharePreference readability test, which will automatically print a warning log if it failsPackageParam adds appResources, moduleAppResources, moduleAppFilePath functionsloadApp of PackageParam adds the function of not writing name, and all APPs are filtered by defaultPackageParam adds the loadZygote method, which can directly hook the system frameworkPackageParam added resources().hook functionOptimization method, construction method, variable search function, the error log that cannot be found will display the set query conditions firstAdded hasExtends extension method to determine whether the current Class has an inheritance relationshipAdded isSupportResourcesHook function to determine whether resource hooks are currently supported (Resources Hook)current function adds superClass method to call superclassNew superClass query conditions for search methods, construction methods and variables, you can continue to search in the parent classYukiHookAPI lots of methods are decoupled from Xposed APIAdded native Hook priority function of Xposed APIFixed the problem that isFirstApplication may be inaccurateBlock the problem that MiuiCatcherPatch repeatedly calls the Hook entry method on the MIUI systemOptimize Hook entry calling method to avoid multiple calls due to Hook Framework issues",21),Zo=o("Fixed the problem that Hook "),Go=e("code",null,"ClassLoader",-1),Jo=o(" causes Hook to freeze, thanks to "),Qo={href:"https://github.com/WankkoRee",target:"_blank",rel:"noopener noreferrer"},$o=o("WankkoRee"),et=o(" for the feedback"),ot=e("li",null,[o("Improve the performance after the "),e("code",null,"XC_Callback"),o(" interface is connected")],-1),tt=e("li",null,[o("Java "),e("code",null,"type"),o(" added "),e("code",null,"ClassLoader"),o(" type")],-1),dt=e("li",null,"Optimize the API help documentation, fix the problem that the page may be continuously cached",-1),it={id:"_1-0-78-2022-04-18",tabindex:"-1"},nt=e("a",{class:"header-anchor",href:"#_1-0-78-2022-04-18","aria-hidden":"true"},"#",-1),ct=o(" 1.0.78 | 2022.04.18 \u2002"),at=i("YukiHookModulePrefs adds isRunInNewXShareMode method, which can be used to determine whether the module is currently in New XSharePreference modeFixed YukiHookModulePrefs working in New XSharePreference modeAdded ModulePreferenceFragment, now you can completely replace PreferenceFragmentCompat and start using the new functionality",3),st=o("Adapt the Sp data storage solution of "),lt=e("code",null,"PreferenceFragmentCompat",-1),rt=o(", thanks to "),ht={href:"https://github.com/mahoshojoHCG",target:"_blank",rel:"noopener noreferrer"},ut=o("mahoshojoHCG"),mt=o(" for feedback"),_t=e("li",null,[o("Update autohandlers and "),e("code",null,"Kotlin"),o(" dependencies to the latest version")],-1),pt=e("li",null,"Fixed some bugs in documentation and code comments",-1),ft={id:"_1-0-77-2022-04-15",tabindex:"-1"},gt=e("a",{class:"header-anchor",href:"#_1-0-77-2022-04-15","aria-hidden":"true"},"#",-1),kt=o(" 1.0.77 | 2022.04.15 \u2002"),yt=e("code",null,"YukiHookModulePrefs",-1),bt=o(" added "),xt=e("code",null,"clear",-1),vt=o(" method, thanks to "),wt={href:"https://github.com/WankkoRee",target:"_blank",rel:"noopener noreferrer"},At=o("WankkoRee"),Ht=o(" for the suggestion"),Pt=i("YukiHookModulePrefs added getStringSet, putStringSet, all methodsAdded any method to args of HookParamAdded ModuleApplication, which can be inherited in modules to achieve more functionsConnect all findClass functions to the Xposed API, and continue to use native ClassLoader in non-hosted environmentsFixed some possible bugs",5),Ct={id:"_1-0-75-2022-04-13",tabindex:"-1"},Ft=e("a",{class:"header-anchor",href:"#_1-0-75-2022-04-13","aria-hidden":"true"},"#",-1),Mt=o(" 1.0.75 | 2022.04.13 \u2002"),It=o("Corrected the logic recognition part of the automatic handler, thanks to "),Yt={href:"https://github.com/ApeaSuperz",target:"_blank",rel:"noopener noreferrer"},Rt=o("ApeaSuperz"),St=o(" contribution"),zt=i("Fixed an issue where the reference to a doc comment was not changedfirstArgs and lastArgs methods have been removed from HookParam, now you can use args().first() and args().last() instead of itRemoved default parameter index = 0 in args() in HookParam, now you can use args().first() or args(index = 0) to replace itThe result function in HookParam adds generic matching, now you can use result<T> to match the known return value type of your target methodThe emptyParam condition is added to the method and constructor query function, and the misunderstanding of the query condition that needs to be paid attention to in the document has been improvedAdded android type in type",6),Dt={id:"_1-0-73-2022-04-10",tabindex:"-1"},Lt=e("a",{class:"header-anchor",href:"#_1-0-73-2022-04-10","aria-hidden":"true"},"#",-1),Tt=o(" 1.0.73 | 2022.04.10 \u2002"),Xt=o("Fixed some Chinese translation errors in documents, thanks to "),jt={href:"https://github.com/WankkoRee",target:"_blank",rel:"noopener noreferrer"},Wt=o("WankkoRee"),Ot=o(" for their contributions"),Nt=o("Fixed the problem that "),Bt=e("code",null,"XC_LoadPackage.LoadPackageParam",-1),Et=o(" throws an exception when the content is empty in some cases, thanks to "),qt={href:"https://github.com/luckyzyx",target:"_blank",rel:"noopener noreferrer"},Ut=o("Luckyzyx"),Vt=o(" for the feedback"),Kt=e("li",null,"Fixed some known bugs and improve Hook stability",-1),Zt={id:"_1-0-72-2022-04-09",tabindex:"-1"},Gt=e("a",{class:"header-anchor",href:"#_1-0-72-2022-04-09","aria-hidden":"true"},"#",-1),Jt=o(" 1.0.72 | 2022.04.09 \u2002"),Qt=e("ul",null,[e("li",null,"Update API documentation to new address"),e("li",null,[o("Add "),e("code",null,"appContext"),o(" function to "),e("code",null,"PackageParam")]),e("li",null,"Fixed some known bugs and improve Hook stability")],-1),$t={id:"_1-0-71-2022-04-04",tabindex:"-1"},ed=e("a",{class:"header-anchor",href:"#_1-0-71-2022-04-04","aria-hidden":"true"},"#",-1),od=o(" 1.0.71 | 2022.04.04 \u2002"),td=e("ul",null,[e("li",null,"Fixed a serious issue that would stop the Hook from throwing an exception when VariousClass could not be matched")],-1),dd={id:"_1-0-70-2022-04-04",tabindex:"-1"},id=e("a",{class:"header-anchor",href:"#_1-0-70-2022-04-04","aria-hidden":"true"},"#",-1),nd=o(" 1.0.70 | 2022.04.04 \u2002"),cd=e("li",null,[o("Fixed "),e("code",null,"instanceClass"),o(" reporting an error after being called in a static instance")],-1),ad=o("Add "),sd=e("code",null,"isUseAppClassLoader",-1),ld=o(" function in Hook process, thanks to "),rd={href:"https://github.com/WankkoRee",target:"_blank",rel:"noopener noreferrer"},hd=o("WankkoRee"),ud=o(" for feedback"),md=e("li",null,[o("Added the "),e("code",null,"withProcess"),o(" function, which can be hooked according to the currently specified process of the APP")],-1),_d=e("li",null,"Fixed critical logic errors in lookup methods, constructor classes and variables",-1),pd=e("li",null,"Fixed the problem that the abnormal output cannot be ignored when the Hook target class does not exist",-1),fd=e("li",null,"Fixed the problem that the Hook could not take effect due to the fast loading of the APP startup method in some cases",-1),gd=o("Fixed "),kd=e("code",null,"allMethods",-1),yd=o(" not throwing an exception when it is not hooked to a method, thanks to "),bd={href:"https://github.com/WankkoRee",target:"_blank",rel:"noopener noreferrer"},xd=o("WankkoRee"),vd=o(" for the feedback"),wd=o("Added Hook status monitoring function, thanks to "),Ad={href:"https://github.com/WankkoRee",target:"_blank",rel:"noopener noreferrer"},Hd=o("WankkoRee"),Pd=o(" for the suggestion"),Cd=e("li",null,"Modify the way the Xposed entry is injected into the class, and redefine the definition domain of the API",-1),Fd=o("Added obfuscated method and variable lookup function, you can use different types of filter "),Md=e("code",null,"index",-1),Id=o(" to locate the specified method and variable, thanks to "),Yd={href:"https://github.com/WankkoRee",target:"_blank",rel:"noopener noreferrer"},Rd=o("WankkoRee"),Sd=o(" for the ideas provided"),zd=e("li",null,[o("When looking for methods and variables, multiple types are allowed, such as the class name declared by "),e("code",null,"String"),o(" and "),e("code",null,"VariousClass")],-1),Dd=e("li",null,[o("Add a new "),e("code",null,"current"),o(" function, which can build a reflection method operation space for any class, and easily call and modify the methods and variables in it")],-1),Ld=o("Fixed a lot of bugs in the hook process, thanks to "),Td={href:"https://github.com/WankkoRee",target:"_blank",rel:"noopener noreferrer"},Xd=o("WankkoRee"),jd=o(" for contributing to this project"),Wd={id:"_1-0-69-2022-03-30",tabindex:"-1"},Od=e("a",{class:"header-anchor",href:"#_1-0-69-2022-03-30","aria-hidden":"true"},"#",-1),Nd=o(" 1.0.69 | 2022.03.30 \u2002"),Bd=e("li",null,"Added and improved annotations for some method functions",-1),Ed=e("li",null,"Added more example Hook content in Demo",-1),qd=o("Fixed the issue that only the last one takes effect when "),Ud=e("code",null,"allMethods",-1),Vd=o(" is used multiple times in a Hook instance, thanks to "),Kd={href:"https://github.com/WankkoRee",target:"_blank",rel:"noopener noreferrer"},Zd=o("WankkoRee"),Gd=o(" for the feedback"),Jd={id:"_1-0-68-2022-03-29",tabindex:"-1"},Qd=e("a",{class:"header-anchor",href:"#_1-0-68-2022-03-29","aria-hidden":"true"},"#",-1),$d=o(" 1.0.68 | 2022.03.29 \u2002"),ei=i("- Added new use case and LSPosed scope in Demo
- Added
Member lookup cache and lookup cache configuration switches - Removed and modified
MethodFinder, FieldFinder and HookParam related method calls - Add more
cast types in Finder and support cast as array - Overall performance and stability improvements
- Fixed bugs that may exist in the previous version
",1),oi={id:"_1-0-67-2022-03-27",tabindex:"-1"},ti=e("a",{class:"header-anchor",href:"#_1-0-67-2022-03-27","aria-hidden":"true"},"#",-1),di=o(" 1.0.67 | 2022.03.27 \u2002"),ii=i("- Added three
modifiers functions in Finder, which can filter static, native, public, abstract and many other description types - When searching for methods and constructors, the method parameter type can be blurred to a specified number for searching
- Added
hasModifiers extension for Member - Added
give method in MethodFinder and ConstructorFinder to get primitive types - Added
PrefsData template function in YukiHookModulePrefs - Completely refactored method, constructor and variable lookup scheme
- Optimized code comments and fixed possible bugs
",1),ni={id:"_1-0-66-2022-03-25",tabindex:"-1"},ci=e("a",{class:"header-anchor",href:"#_1-0-66-2022-03-25","aria-hidden":"true"},"#",-1),ai=o(" 1.0.66 | 2022.03.25 \u2002"),si=e("ul",null,[e("li",null,[o("Fixed a serious bug in "),e("code",null,"MethodFinder")]),e("li",null,[o("Added "),e("code",null,"args"),o(" call method in "),e("code",null,"hookParam")]),e("li",null,"Fixed other possible problems and fix some class annotation problems")],-1),li={id:"_1-0-65-2022-03-25",tabindex:"-1"},ri=e("a",{class:"header-anchor",href:"#_1-0-65-2022-03-25","aria-hidden":"true"},"#",-1),hi=o(" 1.0.65 | 2022.03.25 \u2002"),ui=i("- Republished version to fix the incorrect new version of the Maven repository due to cache issues
- Added
MethodFinder and FieldFinder new return value calling methods - Fixed possible problems and fix possible problems during the use of Tai Chi
- Fixed possible problems with auto-generated Xposed entry classes
- Added
android type and java type in type
",1),mi={id:"_1-0-6-2022-03-20",tabindex:"-1"},_i=e("a",{class:"header-anchor",href:"#_1-0-6-2022-03-20","aria-hidden":"true"},"#",-1),pi=o(" 1.0.6 | 2022.03.20 \u2002"),fi=i("- Fixed
YukiHookModulePrefs being ignored every time after using direct once to ignore cache - Added new API, abolished the traditional usage of
isActive to judge module activation - Fixed the issue of printing debug logs when using the API in a non-Xposed environment
- Fixed log output issue and unintercepted exception issue when looking for
Field - Decoupling Xposed API in
ReflectionUtils - Added
YukiHookModuleStatus method name confusion to reduce the size of module generation - The welcome message will no longer be printed when loading the module's own Hook
- Fixed some bugs that still exist in the previous version
",1),gi={id:"_1-0-55-2022-03-18",tabindex:"-1"},ki=e("a",{class:"header-anchor",href:"#_1-0-55-2022-03-18","aria-hidden":"true"},"#",-1),yi=o(" 1.0.55 | 2022.03.18 \u2002"),bi=e("ul",null,[e("li",null,"Fixed an annotation error"),e("li",null,"Temporarily fix a bug"),e("li",null,[o("Added a large number of "),e("code",null,"android"),o(" types in "),e("code",null,"type"),o(" and a small number of "),e("code",null,"java"),o(" types")]),e("li",null,"Fixed compatibility issues between new and old Kotlin APIs")],-1),xi={id:"_1-0-5-2022-03-18",tabindex:"-1"},vi=e("a",{class:"header-anchor",href:"#_1-0-5-2022-03-18","aria-hidden":"true"},"#",-1),wi=o(" 1.0.5 | 2022.03.18 \u2002"),Ai=i("- Fixed the problem that the welcome message was printed multiple times in the case of the old version of the LSPosed framework
- Added
onInit method to configure YukiHookAPI - Added
executorName and executorVersion to get the name and version number of the current hook framework - Added
by method to set the timing and condition of Hook YukiHookModulePrefs adds a controllable key-value cache, which can dynamically update data when the host is running- Fixed some possible bugs
",1),Hi={id:"_1-0-4-2022-03-06",tabindex:"-1"},Pi=e("a",{class:"header-anchor",href:"#_1-0-4-2022-03-06","aria-hidden":"true"},"#",-1),Ci=o(" 1.0.4 | 2022.03.06 \u2002"),Fi=i("- Fixed LSPosed cannot find
XposedBridge after enabling "Only module classloader can use Xposed API" option in latest version - Added constant version name and version number for
YukiHookAPI - Added
hasField method and isAllowPrintingLogs configuration parameter - Added
isDebug to enable the API to automatically print the welcome message to test whether the module is valid
",1),Mi={id:"_1-0-3-2022-03-02",tabindex:"-1"},Ii=e("a",{class:"header-anchor",href:"#_1-0-3-2022-03-02","aria-hidden":"true"},"#",-1),Yi=o(" 1.0.3 | 2022.03.02 \u2002"),Ri=i("- Fixed a potential exception not intercepted BUG
- Added
ignoredError function - Added
android type in type - Added
ClassNotFound function after listening to hook
",1),Si={id:"_1-0-2-2022-02-18",tabindex:"-1"},zi=e("a",{class:"header-anchor",href:"#_1-0-2-2022-02-18","aria-hidden":"true"},"#",-1),Di=o(" 1.0.2 | 2022.02.18 \u2002"),Li=e("ul",null,[e("li",null,"Fixed the problem that the project path cannot be found under Windows"),e("li",null,[o("Remove part of reflection API, merge into "),e("code",null,"BaseFinder"),o(" for integration")]),e("li",null,"Add a method to create Hook directly using string")],-1),Ti={id:"_1-0-1-2022-02-15",tabindex:"-1"},Xi=e("a",{class:"header-anchor",href:"#_1-0-1-2022-02-15","aria-hidden":"true"},"#",-1),ji=o(" 1.0.1 | 2022.02.15 \u2002"),Wi=e("ul",null,[e("li",null,[e("code",null,"RemedyPlan"),o(" adds "),e("code",null,"onFind"),o(" function")]),e("li",null,"Integrate and modify some reflection API code"),e("li",null,[o("Added "),e("code",null,"java"),o(" type in "),e("code",null,"type")]),e("li",null,"Fixed the issue that ignored errors still output in the console")],-1),Oi={id:"_1-0-2022-02-14",tabindex:"-1"},Ni=e("a",{class:"header-anchor",href:"#_1-0-2022-02-14","aria-hidden":"true"},"#",-1),Bi=o(" 1.0 | 2022.02.14 \u2002"),Ei=e("ul",null,[e("li",null,"The first version is submitted to Maven")],-1);function qi(Ui,Vi){const d=c("Badge"),n=c("ExternalLinkIcon");return s(),l("div",null,[h,e("h3",u,[m,_,t(d,{type:"tip",text:"latest",vertical:"middle"})]),p,e("h3",f,[g,k,t(d,{type:"warning",text:"stale",vertical:"middle"})]),y,e("h3",b,[x,v,t(d,{type:"warning",text:"stale",vertical:"middle"})]),w,e("h3",A,[H,P,t(d,{type:"danger",text:"outdate",vertical:"middle"})]),C,e("h3",F,[M,I,t(d,{type:"danger",text:"outdate",vertical:"middle"})]),Y,e("h3",R,[S,z,t(d,{type:"danger",text:"outdate",vertical:"middle"})]),e("ul",null,[D,e("li",null,[L,e("a",T,[X,t(n)])]),j,e("li",null,[W,e("a",O,[N,t(n)]),B]),E,e("li",null,[q,U,V,K,Z,G,e("a",J,[Q,t(n)]),$]),ee,e("li",null,[oe,te,de,e("a",ie,[ne,t(n)]),ce]),e("li",null,[ae,se,le,e("a",re,[he,t(n)]),ue]),me,e("li",null,[_e,pe,fe,ge,ke,e("a",ye,[be,t(n)]),xe,e("a",ve,[we,t(n)])]),Ae,He,Pe,e("li",null,[Ce,Fe,Me,Ie,Ye,e("a",Re,[Se,t(n)]),ze]),De,e("li",null,[Le,Te,Xe,e("a",je,[We,t(n)]),Oe,e("a",Ne,[Be,t(n)])]),Ee,qe,Ue,Ve]),e("h3",Ke,[Ze,Ge,t(d,{type:"danger",text:"outdate",vertical:"middle"})]),Je,e("h3",Qe,[$e,eo,t(d,{type:"danger",text:"outdate",vertical:"middle"})]),e("ul",null,[e("li",null,[oo,to,io,e("a",no,[co,t(n)]),ao]),so]),e("h3",lo,[ro,ho,t(d,{type:"danger",text:"outdate",vertical:"middle"})]),uo,e("h3",mo,[_o,po,t(d,{type:"danger",text:"outdate",vertical:"middle"})]),fo,e("h3",go,[ko,yo,t(d,{type:"danger",text:"outdate",vertical:"middle"})]),bo,e("h3",xo,[vo,wo,t(d,{type:"danger",text:"outdate",vertical:"middle"})]),Ao,e("h3",Ho,[Po,Co,t(d,{type:"danger",text:"outdate",vertical:"middle"})]),Fo,e("h3",Mo,[Io,Yo,t(d,{type:"danger",text:"outdate",vertical:"middle"})]),Ro,e("h3",So,[zo,Do,t(d,{type:"danger",text:"outdate",vertical:"middle"})]),Lo,e("h3",To,[Xo,jo,t(d,{type:"danger",text:"outdate",vertical:"middle"})]),Wo,e("h3",Oo,[No,Bo,t(d,{type:"danger",text:"outdate",vertical:"middle"})]),Eo,e("h3",qo,[Uo,Vo,t(d,{type:"danger",text:"outdate",vertical:"middle"})]),e("ul",null,[Ko,e("li",null,[Zo,Go,Jo,e("a",Qo,[$o,t(n)]),et]),ot,tt,dt]),e("h3",it,[nt,ct,t(d,{type:"danger",text:"outdate",vertical:"middle"})]),e("ul",null,[at,e("li",null,[st,lt,rt,e("a",ht,[ut,t(n)]),mt]),_t,pt]),e("h3",ft,[gt,kt,t(d,{type:"danger",text:"outdate",vertical:"middle"})]),e("ul",null,[e("li",null,[yt,bt,xt,vt,e("a",wt,[At,t(n)]),Ht]),Pt]),e("h3",Ct,[Ft,Mt,t(d,{type:"danger",text:"outdate",vertical:"middle"})]),e("ul",null,[e("li",null,[It,e("a",Yt,[Rt,t(n)]),St]),zt]),e("h3",Dt,[Lt,Tt,t(d,{type:"danger",text:"outdate",vertical:"middle"})]),e("ul",null,[e("li",null,[Xt,e("a",jt,[Wt,t(n)]),Ot]),e("li",null,[Nt,Bt,Et,e("a",qt,[Ut,t(n)]),Vt]),Kt]),e("h3",Zt,[Gt,Jt,t(d,{type:"danger",text:"outdate",vertical:"middle"})]),Qt,e("h3",$t,[ed,od,t(d,{type:"danger",text:"outdate",vertical:"middle"})]),td,e("h3",dd,[id,nd,t(d,{type:"danger",text:"outdate",vertical:"middle"})]),e("ul",null,[cd,e("li",null,[ad,sd,ld,e("a",rd,[hd,t(n)]),ud]),md,_d,pd,fd,e("li",null,[gd,kd,yd,e("a",bd,[xd,t(n)]),vd]),e("li",null,[wd,e("a",Ad,[Hd,t(n)]),Pd]),Cd,e("li",null,[Fd,Md,Id,e("a",Yd,[Rd,t(n)]),Sd]),zd,Dd,e("li",null,[Ld,e("a",Td,[Xd,t(n)]),jd])]),e("h3",Wd,[Od,Nd,t(d,{type:"danger",text:"outdate",vertical:"middle"})]),e("ul",null,[Bd,Ed,e("li",null,[qd,Ud,Vd,e("a",Kd,[Zd,t(n)]),Gd])]),e("h3",Jd,[Qd,$d,t(d,{type:"danger",text:"outdate",vertical:"middle"})]),ei,e("h3",oi,[ti,di,t(d,{type:"danger",text:"outdate",vertical:"middle"})]),ii,e("h3",ni,[ci,ai,t(d,{type:"danger",text:"outdate",vertical:"middle"})]),si,e("h3",li,[ri,hi,t(d,{type:"danger",text:"outdate",vertical:"middle"})]),ui,e("h3",mi,[_i,pi,t(d,{type:"danger",text:"outdate",vertical:"middle"})]),fi,e("h3",gi,[ki,yi,t(d,{type:"danger",text:"outdate",vertical:"middle"})]),bi,e("h3",xi,[vi,wi,t(d,{type:"danger",text:"outdate",vertical:"middle"})]),Ai,e("h3",Hi,[Pi,Ci,t(d,{type:"danger",text:"outdate",vertical:"middle"})]),Fi,e("h3",Mi,[Ii,Yi,t(d,{type:"danger",text:"outdate",vertical:"middle"})]),Ri,e("h3",Si,[zi,Di,t(d,{type:"danger",text:"outdate",vertical:"middle"})]),Li,e("h3",Ti,[Xi,ji,t(d,{type:"danger",text:"outdate",vertical:"middle"})]),Wi,e("h3",Oi,[Ni,Bi,t(d,{type:"danger",text:"outdate",vertical:"middle"})]),Ei])}const Zi=a(r,[["render",qi],["__file","changelog.html.vue"]]);export{Zi as default};