 1c6acb0eb5
			
		
	
	
		1c6acb0eb5
		
			
		
	
	
	
	
		
			
			* Rewrite NyaHentai Filter and add deeplink support [Fix] tarUrl not initialized when using filter search The tagUrl is not initialized and will never get initialized, resulting in the search page not been able to load more than one page. Fixed by rewrite the searchMangaRequest. [Feat] Enable filter search for parody, character, artist, and group [Feat] Enable sort by time or popularity search when not in a specific language. [Feat] Add deeplink support * Fix filter parody value * Fix query search URL schema
		
			
				
	
	
		
			22 lines
		
	
	
		
			913 B
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			913 B
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="utf-8"?>
 | |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android"
 | |
|     package="eu.kanade.tachiyomi.extension">
 | |
| 
 | |
|     <application>
 | |
|         <activity
 | |
|             android:name="eu.kanade.tachiyomi.multisrc.nyahentai.NyaHentaiUrlActivity"
 | |
|             android:excludeFromRecents="true"
 | |
|             android:theme="@android:style/Theme.NoDisplay">
 | |
|             <intent-filter>
 | |
|                 <action android:name="android.intent.action.VIEW" />
 | |
| 
 | |
|                 <category android:name="android.intent.category.DEFAULT" />
 | |
|                 <category android:name="android.intent.category.BROWSABLE" />
 | |
|                 <data
 | |
|                     android:host="*.${SOURCEHOST}"
 | |
|                     android:pathPattern="/g/..*"
 | |
|                     android:scheme="${SOURCESCHEME}" />
 | |
|             </intent-filter>
 | |
|         </activity>
 | |
|     </application>
 | |
| </manifest> |