diff --git a/README.md b/README.md index 9c7691e..81aa45a 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ > [!NOTE] > This fork has been slowly progressing, check out [Bunny's roadmap](https://github.com/pyoncord/Bunny/issues/1)\ -> I might be a bit inactive to maintain Bunny until March '24. +> I might be a bit inactive to maintain Bunny until March '24.\ +> I also recommend sticking to Vendetta as long as it works. # Bunny @@ -28,15 +29,30 @@ Bunny is a side project that I work on for fun. I don’t have any intention to ## Installing -There's currently no proper way to install Bunny, *yet*. I am currently working on an Xposed module for Android and will think about iOS later, when most of what I planned for Bunny is finished. -### HOWEVER +## Android -For now, you can opt-in Bunny directly from Vendetta's loader (like VendettaXposed or VendettaTweak)! If you wish to opt-in, simply: +### Root +If you are rooted, you can directly load Bunny through [PyonXposed](https://github.com/pyoncord/pyonxposed), a module dedicated to inject Bunny. + +### Non-root +You can inject [PyonXposed](https://github.com/pyoncord/pyonxposed) through [Vendetta Manager](https://github.com/vendetta-mod/VendettaManager). +1. In Vendetta Manager, go to Settings > Developer* +2. Set "Module location" to the downloaded PyonXposed's path (e.g. `/storage/emulated/0/Download/app-release.apk`) +3. Return to main screen and install! + +#### *Developer settings must be enabled beforehand by going to Settings > About and pressing the version number 10 times + +## iOS +At the time of writing, iOS support is a lower priority than Android. This is due to the fact that developing for iOS is very demanding. I *do* have some non-jailbroken iOS devices for testing around, but setting up the tweak and .ipa thingy is... meh. + +I am welcoming everyone who is interested in hopping in Bunny's development and develop Bunny for iOS. Just reach me out through Discord! + +For now, you can opt-in Bunny directly from VendettaTweak! If you wish to opt-in, simply: 1. Go to Settings > Developer (under the Vendetta section) > Enable 'Load from custom url' 2. Insert [Pyoncord's bundle URL](https://raw.githubusercontent.com/pyoncord/detta-builds/main/bunny.js) > Restart. It's worth noting that this method may not last long and eventually cease in the future, but that's the least thing to worry about!... probably. ## Contributing -Setting up Bunny is quite simple if you're already familiar with developing with Node.js. Simply `git clone`, `pnpm install`, `pnpm dev` and locally host the `/dist/bunny.js` bundle generated by the script. Once you've got the local URL (something like `http://192.168.1.236:4040/bunny.js`), insert the URL under Settings > Developer (enabled in General beforehand) > Load custom URL and restart +Setting up Bunny is quite simple if you're already familiar with developing with Node.js. Simply `git clone`, `pnpm install`, `pnpm dev` and locally host the `/dist/bunny.js` bundle built by the script. Once you've got the local URL (something like `http://192.168.1.236:4040/bunny.js`), insert the URL under Settings > Developer (enabled in General beforehand) > Load custom URL and restart diff --git a/src/lib/vendettaObject.ts b/src/lib/vendettaObject.ts index 0508ee5..da21ab4 100644 --- a/src/lib/vendettaObject.ts +++ b/src/lib/vendettaObject.ts @@ -24,8 +24,8 @@ export const createVendettaObject = (unloads: any[]): any => ({ metro: { find: (filter: (m: any) => boolean) => metro.find(filter), findAll: (filter: (m: any) => boolean) => metro.findAll(filter), - findByProps: (filter: any) => metro.findByProps(filter), - findByPropsAll: (filter: any) => metro.findByPropsAll(filter), + findByProps: (...props: any) => metro.findByProps(...props), + findByPropsAll: (...props: any) => metro.findByPropsAll(...props), findByName: (name: string, defaultExp?: boolean | undefined) => metro.findByName(name, defaultExp), findByNameAll: (name: string, defaultExp?: boolean | undefined) => metro.findByNameAll(name, defaultExp), findByDisplayName: (displayName: string, defaultExp?: boolean | undefined) => metro.findByDisplayName(displayName, defaultExp),