├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── report_issue.yml │ └── request_feature.yml └── workflows │ ├── bug_greetings.yml │ ├── build.yml │ ├── feature_greetings.yml │ ├── pr_greetings.yml │ └── publish_alpha.yml ├── .gitignore ├── .old ├── .old-androidApp │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── mrboomdev │ │ │ └── awery │ │ │ ├── app │ │ │ └── update │ │ │ │ ├── UpdatesChannel.java │ │ │ │ └── UpdatesManager.kt │ │ │ ├── ui │ │ │ ├── mobile │ │ │ │ └── screens │ │ │ │ │ ├── IntentHandlerActivity.kt │ │ │ │ │ ├── player │ │ │ │ │ ├── PlayerActivity.kt │ │ │ │ │ ├── PlayerController.java │ │ │ │ │ ├── PlayerGestures.java │ │ │ │ │ └── PlayerPip.kt │ │ │ │ │ ├── search │ │ │ │ │ ├── MultiSearchActivity.java │ │ │ │ │ └── SearchActivity.kt │ │ │ │ │ └── settings │ │ │ │ │ └── AboutActivity.kt │ │ │ └── tv │ │ │ │ ├── TvMainActivity.kt │ │ │ │ ├── components │ │ │ │ ├── FeaturedMediaCarousel.kt │ │ │ │ ├── FeedsGroup.kt │ │ │ │ └── MediaRow.kt │ │ │ │ └── screens │ │ │ │ └── home │ │ │ │ ├── HomeScreen.kt │ │ │ │ └── HomeViewModel.kt │ │ │ └── util │ │ │ ├── NiceUtils.java │ │ │ └── extensions │ │ │ └── StringExtensions.kt │ │ └── kotlin │ │ └── com │ │ └── mrboomdev │ │ └── awery │ │ └── app │ │ └── services │ │ └── BackupService.kt ├── .old-ext │ └── src │ │ └── main │ │ └── kotlin │ │ └── com │ │ └── mrboomdev │ │ └── awery │ │ └── ext │ │ ├── data │ │ ├── CatalogComment.kt │ │ ├── CatalogFeed.kt │ │ ├── CatalogFile.kt │ │ ├── CatalogMedia.kt │ │ ├── CatalogSearchResults.kt │ │ ├── CatalogTag.kt │ │ └── ExternalLink.kt │ │ └── source │ │ └── module │ │ ├── CatalogModule.kt │ │ └── StatusModule.kt └── .old-shared │ └── src │ └── androidMain │ └── kotlin │ └── com │ └── mrboomdev │ └── awery │ └── platform │ └── Platform.android.kt ├── .run ├── Generate Compose Resources.run.xml ├── Publish Sdk.run.xml ├── Run Android.run.xml ├── Run Android.run.xml.save └── Run Desktop.run.xml ├── LICENSE.md ├── README.md ├── app ├── build.gradle.kts ├── release │ ├── baselineProfiles │ │ ├── 0 │ │ │ └── app-release.dm │ │ └── 1 │ │ │ └── app-release.dm │ └── output-metadata.json └── src │ ├── androidDebug │ └── res │ │ ├── mipmap-anydpi-v26 │ │ └── ic_banner.xml │ │ ├── mipmap-xhdpi │ │ ├── ic_banner.png │ │ └── ic_banner_foreground.png │ │ ├── mipmap │ │ ├── ic_background.png │ │ ├── ic_launcher.png │ │ └── ic_launcher_foreground.png │ │ ├── values-night │ │ └── themes.xml │ │ └── values │ │ └── ic_banner_background.xml │ ├── androidMain │ ├── AndroidManifest.xml │ ├── kotlin │ │ └── com │ │ │ └── mrboomdev │ │ │ └── awery │ │ │ └── app │ │ │ ├── ApplicationImpl.kt │ │ │ ├── AweryInit.android.kt │ │ │ ├── CrashHandler.kt │ │ │ ├── MainActivity.kt │ │ │ └── workers │ │ │ ├── UpdateFeedWorker.kt │ │ │ └── UpdateLibraryWorker.kt │ └── res │ │ ├── mipmap-v26 │ │ ├── ic_banner.xml │ │ └── ic_launcher.xml │ │ ├── mipmap-xhdpi │ │ ├── ic_banner.png │ │ └── ic_banner_foreground.png │ │ ├── mipmap │ │ ├── ic_background.png │ │ ├── ic_launcher.png │ │ └── ic_launcher_foreground.png │ │ ├── resources.properties │ │ ├── values-night │ │ └── themes.xml │ │ └── values │ │ └── themes.xml │ ├── commonMain │ └── kotlin │ │ └── com │ │ └── mrboomdev │ │ └── awery │ │ └── app │ │ └── AweryInit.kt │ └── desktopMain │ └── kotlin │ └── com │ └── mrboomdev │ └── awery │ └── app │ ├── AweryInit.desktop.kt │ ├── Main.kt │ └── SavedWindowState.kt ├── app_icon.ico ├── compose-stability.txt ├── core ├── build.gradle.kts └── src │ ├── androidMain │ └── kotlin │ │ └── com │ │ └── mrboomdev │ │ └── awery │ │ └── core │ │ ├── Awery.android.kt │ │ └── utils │ │ ├── AndroidUtils.kt │ │ ├── FileUtils.android.kt │ │ ├── Log.android.kt │ │ └── PermissionUtils.kt │ ├── commonMain │ └── kotlin │ │ └── com │ │ └── mrboomdev │ │ └── awery │ │ └── core │ │ ├── Awery.kt │ │ └── utils │ │ ├── CacheStorage.kt │ │ ├── CommonUtils.kt │ │ ├── CoroutineUtils.kt │ │ ├── EnumUtils.kt │ │ ├── FileUtils.kt │ │ ├── HttpUtils.kt │ │ ├── LoadingStatus.kt │ │ ├── Log.kt │ │ ├── NothingFoundException.kt │ │ ├── NumberPool.kt │ │ ├── PlatformSdk.kt │ │ ├── PrimitiveUtils.kt │ │ ├── SerializationUtils.kt │ │ ├── StreamUtils.kt │ │ ├── TemporaryFiles.kt │ │ └── collection │ │ ├── CollectionUtils.kt │ │ └── SuspendMutableList.kt │ └── desktopMain │ └── kotlin │ └── com │ └── mrboomdev │ └── awery │ └── core │ ├── Awery.desktop.kt │ └── utils │ ├── FileUtils.desktop.kt │ └── Log.desktop.kt ├── data ├── build.gradle.kts ├── dbSchemas │ ├── com.mrboomdev.awery.data.database.AweryDatabase │ │ ├── 1.json │ │ └── 2.json │ └── com.mrboomdev.awery.data.database.AweryHistoryDatabase │ │ └── 1.json └── src │ ├── androidMain │ └── kotlin │ │ └── com │ │ └── mrboomdev │ │ └── awery │ │ └── data │ │ ├── AppConstants.android.kt │ │ ├── database │ │ ├── AweryDatabase.android.kt │ │ └── AweryHistoryDatabase.android.kt │ │ ├── notifications │ │ └── AweryNotifications.kt │ │ └── settings │ │ └── Setting.android.kt │ ├── commonMain │ └── kotlin │ │ └── com │ │ └── mrboomdev │ │ └── awery │ │ └── data │ │ ├── AgeRating.kt │ │ ├── AppConstants.kt │ │ ├── AweryContributors.kt │ │ ├── AweryServer.kt │ │ ├── AwerySocials.kt │ │ ├── database │ │ ├── AweryDatabase.kt │ │ ├── AweryHistoryDatabase.kt │ │ ├── DBMigrations.kt │ │ ├── DBTypeConverters.kt │ │ ├── dao │ │ │ ├── HistoryDao.kt │ │ │ ├── KeywordBlacklistDao.kt │ │ │ ├── ListDao.kt │ │ │ ├── MediaBlacklistDao.kt │ │ │ ├── MediaDao.kt │ │ │ ├── RepositoryDao.kt │ │ │ └── WatchProgressDao.kt │ │ └── entity │ │ │ ├── DBBlacklistedKeyword.kt │ │ │ ├── DBBlacklistedMedia.kt │ │ │ ├── DBHistoryItem.kt │ │ │ ├── DBList.kt │ │ │ ├── DBMedia.kt │ │ │ ├── DBRepository.kt │ │ │ └── DBWatchProgress.kt │ │ ├── gawaii │ │ ├── AniyomiGawaii.kt │ │ ├── CloudstreamGawaii.kt │ │ ├── DantotsuGawaii.kt │ │ ├── Gawaii.kt │ │ └── MihonGawaii.kt │ │ ├── repo │ │ ├── CloudstreamRepository.kt │ │ ├── Repositories.kt │ │ ├── Repository.kt │ │ └── YomiRepository.kt │ │ └── settings │ │ ├── AwerySettings.kt │ │ ├── Delegate.kt │ │ └── Setting.kt │ └── desktopMain │ └── kotlin │ └── com │ └── mrboomdev │ └── awery │ └── data │ ├── AppConstants.desktop.kt │ ├── database │ └── AweryDatabase.desktop.kt │ └── settings │ ├── AwerySettings.desktop.kt │ └── Setting.desktop.kt ├── docs ├── app_icon.png ├── banner.webp └── screenshot1.jpg ├── extension ├── bundled │ ├── build.gradle.kts │ └── src │ │ └── commonMain │ │ ├── kotlin │ │ └── com │ │ │ └── mrboomdev │ │ │ └── awery │ │ │ └── extension │ │ │ └── bundled │ │ │ ├── BundledExtensions.kt │ │ │ └── anilist │ │ │ ├── AnilistCatalog.kt │ │ │ ├── AnilistExtension.kt │ │ │ ├── AnilistPreferences.kt │ │ │ ├── AnilistUtils.kt │ │ │ ├── entity │ │ │ ├── AnilistMedia.kt │ │ │ ├── AnilistRequest.kt │ │ │ ├── AnilistResponse.kt │ │ │ └── FuzzyDate.kt │ │ │ └── query │ │ │ ├── AnilistQuery.kt │ │ │ ├── MediaQuery.kt │ │ │ └── SearchQuery.kt │ │ └── resources │ │ └── com │ │ └── mrboomdev │ │ └── awery │ │ └── extension │ │ └── bundled │ │ └── anilist │ │ └── icon.png ├── loaders │ ├── android-compat │ │ ├── build.gradle.kts │ │ └── src │ │ │ ├── androidMain │ │ │ └── kotlin │ │ │ │ └── com │ │ │ │ └── mrboomdev │ │ │ │ └── awery │ │ │ │ └── android │ │ │ │ ├── AndroidAliases.android.kt │ │ │ │ └── AndroidUtils.android.kt │ │ │ ├── commonMain │ │ │ └── kotlin │ │ │ │ └── com │ │ │ │ └── mrboomdev │ │ │ │ └── awery │ │ │ │ └── android │ │ │ │ ├── AndroidAliases.kt │ │ │ │ └── AndroidUtils.kt │ │ │ └── desktopMain │ │ │ └── kotlin │ │ │ ├── android │ │ │ ├── content │ │ │ │ ├── Context.kt │ │ │ │ └── SharedPreferences.kt │ │ │ ├── net │ │ │ │ └── Uri.kt │ │ │ └── widget │ │ │ │ └── EditText.kt │ │ │ ├── androidx │ │ │ └── preference │ │ │ │ ├── CheckBoxPreference.kt │ │ │ │ ├── DialogPreference.kt │ │ │ │ ├── EditTextPreference.kt │ │ │ │ ├── ListPreference.kt │ │ │ │ ├── MultiSelectListPreference.kt │ │ │ │ ├── Preference.kt │ │ │ │ ├── PreferenceScreen.kt │ │ │ │ ├── SwitchPreferenceCompat.kt │ │ │ │ └── TwoStatePreference.kt │ │ │ └── com │ │ │ └── mrboomdev │ │ │ └── awery │ │ │ └── android │ │ │ ├── AndroidAliases.desktop.kt │ │ │ └── AndroidUtils.desktop.kt │ ├── build.gradle.kts │ └── src │ │ ├── androidMain │ │ └── kotlin │ │ │ ├── com │ │ │ └── mrboomdev │ │ │ │ └── awery │ │ │ │ └── extension │ │ │ │ └── loaders │ │ │ │ ├── AndroidPreferences.kt │ │ │ │ ├── ContextImpl.android.kt │ │ │ │ ├── ExtensionInstaller.android.kt │ │ │ │ ├── Extensions.android.kt │ │ │ │ ├── awery │ │ │ │ ├── AweryExtensionConstants.android.kt │ │ │ │ └── ResolvedExtensionParent.android.kt │ │ │ │ └── yomi │ │ │ │ ├── YomiExtension.kt │ │ │ │ └── YomiLoader.kt │ │ │ └── eu │ │ │ └── kanade │ │ │ └── tachiyomi │ │ │ ├── network │ │ │ ├── JavaScriptEngine.android.kt │ │ │ ├── NetworkHelper.android.kt │ │ │ └── interceptor │ │ │ │ ├── CloudflareInterceptor.android.kt │ │ │ │ └── WebViewInterceptor.kt │ │ │ └── util │ │ │ └── system │ │ │ ├── DeviceUtil.kt │ │ │ └── WebViewUtil.kt │ │ ├── commonMain │ │ └── kotlin │ │ │ ├── com │ │ │ └── mrboomdev │ │ │ │ └── awery │ │ │ │ └── extension │ │ │ │ └── loaders │ │ │ │ ├── ContextImpl.kt │ │ │ │ ├── ExtensionInstaller.kt │ │ │ │ ├── Extensions.kt │ │ │ │ ├── FailedExtension.kt │ │ │ │ ├── SdkUtils.kt │ │ │ │ ├── awery │ │ │ │ ├── AweryExtensionConstants.kt │ │ │ │ ├── AweryExtensionInstaller.kt │ │ │ │ ├── AweryExtensionManifest.kt │ │ │ │ └── ResolvedExtensionParent.kt │ │ │ │ ├── watch │ │ │ │ ├── ExtensionsWatcher.kt │ │ │ │ ├── MediaWatcher.kt │ │ │ │ ├── VariantWatcher.kt │ │ │ │ ├── Watcher.kt │ │ │ │ └── WatcherWatcher.kt │ │ │ │ └── yomi │ │ │ │ ├── AniyomiSource.kt │ │ │ │ ├── TachiyomiSource.kt │ │ │ │ ├── YomiPreferences.kt │ │ │ │ └── YomiUtils.kt │ │ │ ├── eu │ │ │ └── kanade │ │ │ │ └── tachiyomi │ │ │ │ ├── AppInfo.kt │ │ │ │ ├── animesource │ │ │ │ ├── AnimeCatalogueSource.kt │ │ │ │ ├── AnimeSource.kt │ │ │ │ ├── AnimeSourceFactory.kt │ │ │ │ ├── ConfigurableAnimeSource.kt │ │ │ │ ├── UnmeteredSource.kt │ │ │ │ ├── model │ │ │ │ │ ├── AnimeFilter.kt │ │ │ │ │ ├── AnimeFilterList.kt │ │ │ │ │ ├── AnimeUpdateStrategy.kt │ │ │ │ │ ├── AnimesPage.kt │ │ │ │ │ ├── Hoster.kt │ │ │ │ │ ├── SAnime.kt │ │ │ │ │ ├── SEpisode.kt │ │ │ │ │ └── Video.kt │ │ │ │ └── online │ │ │ │ │ ├── AnimeHttpSource.kt │ │ │ │ │ ├── ParsedAnimeHttpSource.kt │ │ │ │ │ └── ResolvableAnimeSource.kt │ │ │ │ ├── network │ │ │ │ ├── JavaScriptEngine.kt │ │ │ │ ├── NetworkHelper.kt │ │ │ │ ├── OkHttpExtensions.kt │ │ │ │ ├── Requests.kt │ │ │ │ └── interceptor │ │ │ │ │ ├── CloudflareInterceptor.kt │ │ │ │ │ ├── IgnoreGzipInterceptor.kt │ │ │ │ │ ├── RateLimitInterceptor.kt │ │ │ │ │ ├── SpecificHostRateLimitInterceptor.kt │ │ │ │ │ ├── UncaughtExceptionInterceptor.kt │ │ │ │ │ └── UserAgentInterceptor.kt │ │ │ │ ├── source │ │ │ │ ├── CatalogueSource.kt │ │ │ │ ├── ConfigurableSource.kt │ │ │ │ ├── MangaSource.kt │ │ │ │ ├── SourceFactory.kt │ │ │ │ ├── UnmeteredSource.kt │ │ │ │ ├── model │ │ │ │ │ ├── Filter.kt │ │ │ │ │ ├── FilterList.kt │ │ │ │ │ ├── MangasPage.kt │ │ │ │ │ ├── Page.kt │ │ │ │ │ ├── SChapter.kt │ │ │ │ │ ├── SManga.kt │ │ │ │ │ └── UpdateStrategy.kt │ │ │ │ └── online │ │ │ │ │ ├── HttpSource.kt │ │ │ │ │ ├── ParsedHttpSource.kt │ │ │ │ │ └── ResolvableSource.kt │ │ │ │ └── util │ │ │ │ ├── JsoupExtensions.kt │ │ │ │ └── RxExtension.kt │ │ │ └── tachiyomi │ │ │ └── core │ │ │ └── common │ │ │ └── util │ │ │ └── lang │ │ │ └── RxCoroutineBridge.kt │ │ └── desktopMain │ │ └── kotlin │ │ ├── com │ │ └── mrboomdev │ │ │ └── awery │ │ │ └── extension │ │ │ └── loaders │ │ │ ├── ContextImpl.desktop.kt │ │ │ ├── DesktopPreferences.kt │ │ │ ├── ExtensionInstaller.desktop.kt │ │ │ ├── Extensions.desktop.kt │ │ │ ├── awery │ │ │ ├── AweryExtensionConstants.desktop.kt │ │ │ └── ResolvedExtensionParent.desktop.kt │ │ │ └── yomi │ │ │ └── ApkYomiExtension.kt │ │ └── eu │ │ └── kanade │ │ └── tachiyomi │ │ └── network │ │ ├── JavaScriptEngine.desktop.kt │ │ ├── NetworkHelper.desktop.kt │ │ └── interceptor │ │ └── CloudflareInterceptor.desktop.kt └── sdk │ ├── build.gradle.kts │ └── src │ ├── androidMain │ └── kotlin │ │ └── com │ │ └── mrboomdev │ │ └── awery │ │ └── extension │ │ └── sdk │ │ └── Image.android.kt │ ├── commonMain │ └── kotlin │ │ └── com │ │ └── mrboomdev │ │ └── awery │ │ └── extension │ │ └── sdk │ │ ├── Context.kt │ │ ├── Either.kt │ │ ├── Extension.kt │ │ ├── ExtensionLoadException.kt │ │ ├── Feed.kt │ │ ├── Image.kt │ │ ├── Media.kt │ │ ├── Preference.kt │ │ ├── Preferences.kt │ │ ├── Results.kt │ │ ├── Video.kt │ │ ├── WatchVariant.kt │ │ ├── modules │ │ ├── CatalogModule.kt │ │ ├── ManageableModule.kt │ │ ├── ManagerModule.kt │ │ ├── Module.kt │ │ ├── TrackerModule.kt │ │ └── WatchModule.kt │ │ └── utils │ │ └── RangeSerializer.kt │ └── desktopMain │ └── kotlin │ └── com │ └── mrboomdev │ └── awery │ └── extension │ └── sdk │ └── Image.desktop.kt ├── gradle.properties ├── gradle ├── android.versions.toml ├── compose.versions.toml ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── resources ├── build.gradle.kts └── src │ ├── androidMain │ └── kotlin │ │ └── com │ │ └── mrboomdev │ │ └── awery │ │ └── resources │ │ └── FontCompat.android.kt │ ├── commonMain │ ├── composeResources │ │ ├── drawable │ │ │ ├── ic_account_outlined.xml │ │ │ ├── ic_add.xml │ │ │ ├── ic_aspect_ratio_outlined.xml │ │ │ ├── ic_awesome_filled.xml │ │ │ ├── ic_back.xml │ │ │ ├── ic_block.xml │ │ │ ├── ic_book_filled.xml │ │ │ ├── ic_bookmark_filled.xml │ │ │ ├── ic_bookmark_outlined.xml │ │ │ ├── ic_bookmarks_outlined.xml │ │ │ ├── ic_close.xml │ │ │ ├── ic_collections_bookmark_filled.xml │ │ │ ├── ic_collections_bookmark_outlined.xml │ │ │ ├── ic_contrast.xml │ │ │ ├── ic_copy_outlined.xml │ │ │ ├── ic_crop_landscape_outlined.xml │ │ │ ├── ic_cut_outlined.xml │ │ │ ├── ic_dark_mode_outlined.xml │ │ │ ├── ic_dashboard_outlined.xml │ │ │ ├── ic_delete_outlined.xml │ │ │ ├── ic_dev_outlined.xml │ │ │ ├── ic_done.xml │ │ │ ├── ic_download.xml │ │ │ ├── ic_edit_outlined.xml │ │ │ ├── ic_explict_outlined.xml │ │ │ ├── ic_explore_outlined.xml │ │ │ ├── ic_extension_outlined.xml │ │ │ ├── ic_fast_forward_outlined.xml │ │ │ ├── ic_filter_outlined.xml │ │ │ ├── ic_fit_screen_outlined.xml │ │ │ ├── ic_folder_open_outlined.xml │ │ │ ├── ic_history.xml │ │ │ ├── ic_home_filled.xml │ │ │ ├── ic_home_outlined.xml │ │ │ ├── ic_image_outlined.xml │ │ │ ├── ic_info_outlined.xml │ │ │ ├── ic_language.xml │ │ │ ├── ic_link.xml │ │ │ ├── ic_mood_outlined.xml │ │ │ ├── ic_more_vertical.xml │ │ │ ├── ic_notifications_filled.xml │ │ │ ├── ic_notifications_outlined.xml │ │ │ ├── ic_palette_outlined.xml │ │ │ ├── ic_paste_outlined.xml │ │ │ ├── ic_pause_filled.xml │ │ │ ├── ic_play_filled.xml │ │ │ ├── ic_refresh.xml │ │ │ ├── ic_sd_card_outlined.xml │ │ │ ├── ic_search.xml │ │ │ ├── ic_select_all.xml │ │ │ ├── ic_settings_outlined.xml │ │ │ ├── ic_share_filled.xml │ │ │ ├── ic_skip_next_filled.xml │ │ │ ├── ic_skip_previous_filled.xml │ │ │ ├── ic_subtitles_filled.xml │ │ │ ├── ic_subtitles_outlined.xml │ │ │ ├── ic_video_settings_outlined.xml │ │ │ ├── logo_aniyomi.png │ │ │ ├── logo_awery.png │ │ │ ├── logo_dantotsu.png │ │ │ ├── logo_discord.xml │ │ │ ├── logo_github.xml │ │ │ ├── logo_tachiyomi.jpg │ │ │ ├── logo_telegram.xml │ │ │ └── poster_no_image.jpg │ │ ├── font │ │ │ ├── Poppins-Black.ttf │ │ │ ├── Poppins-Bold.ttf │ │ │ ├── Poppins-ExtraBold.ttf │ │ │ ├── Poppins-ExtraLight.ttf │ │ │ ├── Poppins-Light.ttf │ │ │ ├── Poppins-Medium.ttf │ │ │ ├── Poppins-Regular.ttf │ │ │ ├── Poppins-SemiBold.ttf │ │ │ └── Poppins-Thin.ttf │ │ ├── values-as │ │ │ └── strings.xml │ │ ├── values-bg │ │ │ └── strings.xml │ │ ├── values-bn │ │ │ └── strings.xml │ │ ├── values-cs │ │ │ └── strings.xml │ │ ├── values-da │ │ │ └── strings.xml │ │ ├── values-de │ │ │ └── strings.xml │ │ ├── values-el │ │ │ └── strings.xml │ │ ├── values-en-rIN │ │ │ └── strings.xml │ │ ├── values-es │ │ │ └── strings.xml │ │ ├── values-fil │ │ │ └── strings.xml │ │ ├── values-fr │ │ │ └── strings.xml │ │ ├── values-gu │ │ │ └── strings.xml │ │ ├── values-hi │ │ │ └── strings.xml │ │ ├── values-hu │ │ │ └── strings.xml │ │ ├── values-hy │ │ │ └── strings.xml │ │ ├── values-in │ │ │ └── strings.xml │ │ ├── values-it │ │ │ └── strings.xml │ │ ├── values-iw │ │ │ └── strings.xml │ │ ├── values-ja │ │ │ └── strings.xml │ │ ├── values-ko │ │ │ └── strings.xml │ │ ├── values-mr │ │ │ └── strings.xml │ │ ├── values-nl │ │ │ └── strings.xml │ │ ├── values-pl │ │ │ └── strings.xml │ │ ├── values-pt │ │ │ └── strings.xml │ │ ├── values-ro │ │ │ └── strings.xml │ │ ├── values-ru │ │ │ └── strings.xml │ │ ├── values-sa │ │ │ └── strings.xml │ │ ├── values-ta │ │ │ └── strings.xml │ │ ├── values-th │ │ │ └── strings.xml │ │ ├── values-tr │ │ │ └── strings.xml │ │ ├── values-vi │ │ │ └── strings.xml │ │ ├── values-zh-rCN │ │ │ └── strings.xml │ │ └── values │ │ │ └── strings.xml │ └── kotlin │ │ └── com │ │ └── mrboomdev │ │ └── awery │ │ └── resources │ │ ├── AweryFonts.kt │ │ ├── FontCompat.kt │ │ └── Utils.kt │ └── desktopMain │ └── kotlin │ └── com │ └── mrboomdev │ └── awery │ └── resources │ └── FontCompat.desktop.kt ├── settings.gradle.kts ├── ui ├── build.gradle.kts └── src │ ├── androidMain │ └── kotlin │ │ └── com │ │ └── mrboomdev │ │ └── awery │ │ └── ui │ │ ├── App.android.kt │ │ ├── components │ │ ├── ExtImage.android.kt │ │ ├── MediaPlayer.android.kt │ │ ├── TvIconButton.kt │ │ └── WebBrowser.android.kt │ │ ├── effects │ │ ├── BackEffect.android.kt │ │ ├── InsetsController.android.kt │ │ ├── KeepScreenOn.android.kt │ │ └── ScreenOrientation.android.kt │ │ ├── popups │ │ └── LanguageDialog.android.kt │ │ ├── screens │ │ ├── main │ │ │ ├── MainScreen.android.kt │ │ │ └── TvHomePage.kt │ │ ├── media │ │ │ └── MediaScreen.android.kt │ │ └── player │ │ │ └── PlayerScreen.android.kt │ │ ├── theme │ │ ├── AweryTheme.android.kt │ │ └── SeedAweryTheme.android.kt │ │ └── utils │ │ ├── FocusSaver.kt │ │ ├── ModifierUtils.android.kt │ │ ├── PictureInPictureState.android.kt │ │ └── SaverUtils.android.kt │ ├── commonMain │ └── kotlin │ │ └── com │ │ └── mrboomdev │ │ └── awery │ │ └── ui │ │ ├── App.kt │ │ ├── components │ │ ├── AlertDialog.kt │ │ ├── BottomSheetDialog.kt │ │ ├── Breadcrumb.kt │ │ ├── ContextMenu.kt │ │ ├── ExpandableText.kt │ │ ├── ExtImage.kt │ │ ├── FeedRow.kt │ │ ├── FilePicker.kt │ │ ├── FlexibleTopAppBar.kt │ │ ├── IconButton.kt │ │ ├── InfoBox.kt │ │ ├── MediaCard.kt │ │ ├── MediaPlayer.kt │ │ ├── Toaster.kt │ │ └── WebBrowser.kt │ │ ├── effects │ │ ├── BackEffect.kt │ │ ├── InsetsController.kt │ │ ├── KeepScreenOn.kt │ │ ├── PostLaunchedEffect.kt │ │ └── ScreenOrientation.kt │ │ ├── navigation │ │ ├── NavigationState.kt │ │ ├── RouteInfo.kt │ │ ├── RouteInfoEffect.kt │ │ └── Routes.kt │ │ ├── popups │ │ ├── BookmarkMediaDialog.kt │ │ ├── CreateListDialog.kt │ │ ├── EditListDialog.kt │ │ ├── LanguageDialog.kt │ │ └── MediaActionsDialog.kt │ │ ├── screens │ │ ├── CrashScreen.kt │ │ ├── GalleryScreen.kt │ │ ├── browser │ │ │ └── BrowserScreen.kt │ │ ├── extension │ │ │ ├── ExtensionFeedScreen.kt │ │ │ ├── ExtensionScreen.kt │ │ │ ├── ExtensionSearchScreen.kt │ │ │ └── FiltersDialog.kt │ │ ├── history │ │ │ └── HistoryScreen.kt │ │ ├── home │ │ │ ├── HomeScreen.kt │ │ │ └── HomeViewModel.kt │ │ ├── intro │ │ │ ├── IntroDsl.kt │ │ │ ├── IntroScreen.kt │ │ │ ├── introDefaults.kt │ │ │ └── steps │ │ │ │ ├── IntroAccountStep.kt │ │ │ │ ├── IntroEndStep.kt │ │ │ │ ├── IntroStep.kt │ │ │ │ ├── IntroThemeStep.kt │ │ │ │ ├── IntroUserStep.kt │ │ │ │ └── IntroWelcomeStep.kt │ │ ├── library │ │ │ ├── LibraryColumnScreen.kt │ │ │ ├── LibraryStatus.kt │ │ │ ├── LibraryTabbedScreen.kt │ │ │ └── LibraryViewModel.kt │ │ ├── main │ │ │ ├── MainScreen.kt │ │ │ └── MainScreenViewModel.kt │ │ ├── media │ │ │ ├── DefaultMediaScreen.kt │ │ │ ├── MediaScreen.kt │ │ │ └── MediaScreenActions.kt │ │ ├── notifications │ │ │ ├── NotificationsScreen.kt │ │ │ └── NotificationsViewModel.kt │ │ ├── player │ │ │ ├── PlayerDialogs.kt │ │ │ └── PlayerScreen.kt │ │ ├── search │ │ │ ├── SearchScreen.kt │ │ │ └── SearchViewModel.kt │ │ └── settings │ │ │ ├── Setting.kt │ │ │ ├── SettingsDefaults.kt │ │ │ ├── SettingsScreen.kt │ │ │ └── pages │ │ │ ├── SettingsAboutPage.kt │ │ │ ├── SettingsAdvancedPage.kt │ │ │ ├── SettingsCatalogPage.kt │ │ │ ├── SettingsExtensionPage.kt │ │ │ ├── SettingsExtensionsPage.kt │ │ │ ├── SettingsLibraryPage.kt │ │ │ ├── SettingsListsPage.kt │ │ │ ├── SettingsMainPage.kt │ │ │ ├── SettingsPages.kt │ │ │ ├── SettingsPlayerPage.kt │ │ │ ├── SettingsRepositoryPage.kt │ │ │ ├── SettingsStoragePage.kt │ │ │ └── SettingsUiPage.kt │ │ ├── theme │ │ ├── AweryTheme.kt │ │ ├── AweryTypography.kt │ │ └── SeedAweryTheme.kt │ │ └── utils │ │ ├── AppBarUtils.kt │ │ ├── ColorSerializer.kt │ │ ├── ComposeUtils.kt │ │ ├── CustomBringIntoViewSpec.kt │ │ ├── ExceptionClassifier.kt │ │ ├── LazyListUtils.kt │ │ ├── ModifierUtils.kt │ │ ├── PaddingUtils.kt │ │ ├── PictureInPictureState.kt │ │ ├── SaverUtils.kt │ │ ├── StringUtils.kt │ │ ├── ViewModelUtils.kt │ │ ├── WindowUtils.kt │ │ └── pagination │ │ └── InfiniteScroll.kt │ └── desktopMain │ ├── java │ └── com │ │ └── mrboomdev │ │ └── awery │ │ └── ui │ │ └── App.desktop.kt │ └── kotlin │ └── com │ └── mrboomdev │ └── awery │ └── ui │ ├── components │ ├── ExtImage.desktop.kt │ ├── MediaPlayer.desktop.kt │ └── WebBrowser.desktop.kt │ ├── effects │ ├── BackEffect.desktop.kt │ ├── InsetsController.desktop.kt │ ├── KeepScreenOn.desktop.kt │ └── ScreenOrientation.desktop.kt │ ├── popups │ └── LanguageDialog.desktop.kt │ ├── screens │ ├── main │ │ └── MainScreen.desktop.kt │ ├── media │ │ └── MediaScreen.desktop.kt │ └── player │ │ └── PlayerScreen.desktop.kt │ ├── theme │ ├── AweryTheme.desktop.kt │ └── SeedAweryTheme.desktop.kt │ └── utils │ ├── PictureInPictureState.desktop.kt │ └── SaverUtils.desktop.kt └── workflowscripts └── tel_parser.sed /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/report_issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.github/ISSUE_TEMPLATE/report_issue.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/request_feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.github/ISSUE_TEMPLATE/request_feature.yml -------------------------------------------------------------------------------- /.github/workflows/bug_greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.github/workflows/bug_greetings.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/feature_greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.github/workflows/feature_greetings.yml -------------------------------------------------------------------------------- /.github/workflows/pr_greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.github/workflows/pr_greetings.yml -------------------------------------------------------------------------------- /.github/workflows/publish_alpha.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.github/workflows/publish_alpha.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.gitignore -------------------------------------------------------------------------------- /.old/.old-androidApp/src/main/java/com/mrboomdev/awery/app/update/UpdatesChannel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.old/.old-androidApp/src/main/java/com/mrboomdev/awery/app/update/UpdatesChannel.java -------------------------------------------------------------------------------- /.old/.old-androidApp/src/main/java/com/mrboomdev/awery/app/update/UpdatesManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.old/.old-androidApp/src/main/java/com/mrboomdev/awery/app/update/UpdatesManager.kt -------------------------------------------------------------------------------- /.old/.old-androidApp/src/main/java/com/mrboomdev/awery/ui/mobile/screens/IntentHandlerActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.old/.old-androidApp/src/main/java/com/mrboomdev/awery/ui/mobile/screens/IntentHandlerActivity.kt -------------------------------------------------------------------------------- /.old/.old-androidApp/src/main/java/com/mrboomdev/awery/ui/mobile/screens/player/PlayerActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.old/.old-androidApp/src/main/java/com/mrboomdev/awery/ui/mobile/screens/player/PlayerActivity.kt -------------------------------------------------------------------------------- /.old/.old-androidApp/src/main/java/com/mrboomdev/awery/ui/mobile/screens/player/PlayerController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.old/.old-androidApp/src/main/java/com/mrboomdev/awery/ui/mobile/screens/player/PlayerController.java -------------------------------------------------------------------------------- /.old/.old-androidApp/src/main/java/com/mrboomdev/awery/ui/mobile/screens/player/PlayerGestures.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.old/.old-androidApp/src/main/java/com/mrboomdev/awery/ui/mobile/screens/player/PlayerGestures.java -------------------------------------------------------------------------------- /.old/.old-androidApp/src/main/java/com/mrboomdev/awery/ui/mobile/screens/player/PlayerPip.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.old/.old-androidApp/src/main/java/com/mrboomdev/awery/ui/mobile/screens/player/PlayerPip.kt -------------------------------------------------------------------------------- /.old/.old-androidApp/src/main/java/com/mrboomdev/awery/ui/mobile/screens/search/MultiSearchActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.old/.old-androidApp/src/main/java/com/mrboomdev/awery/ui/mobile/screens/search/MultiSearchActivity.java -------------------------------------------------------------------------------- /.old/.old-androidApp/src/main/java/com/mrboomdev/awery/ui/mobile/screens/search/SearchActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.old/.old-androidApp/src/main/java/com/mrboomdev/awery/ui/mobile/screens/search/SearchActivity.kt -------------------------------------------------------------------------------- /.old/.old-androidApp/src/main/java/com/mrboomdev/awery/ui/mobile/screens/settings/AboutActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.old/.old-androidApp/src/main/java/com/mrboomdev/awery/ui/mobile/screens/settings/AboutActivity.kt -------------------------------------------------------------------------------- /.old/.old-androidApp/src/main/java/com/mrboomdev/awery/ui/tv/TvMainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.old/.old-androidApp/src/main/java/com/mrboomdev/awery/ui/tv/TvMainActivity.kt -------------------------------------------------------------------------------- /.old/.old-androidApp/src/main/java/com/mrboomdev/awery/ui/tv/components/FeaturedMediaCarousel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.old/.old-androidApp/src/main/java/com/mrboomdev/awery/ui/tv/components/FeaturedMediaCarousel.kt -------------------------------------------------------------------------------- /.old/.old-androidApp/src/main/java/com/mrboomdev/awery/ui/tv/components/FeedsGroup.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.old/.old-androidApp/src/main/java/com/mrboomdev/awery/ui/tv/components/FeedsGroup.kt -------------------------------------------------------------------------------- /.old/.old-androidApp/src/main/java/com/mrboomdev/awery/ui/tv/components/MediaRow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.old/.old-androidApp/src/main/java/com/mrboomdev/awery/ui/tv/components/MediaRow.kt -------------------------------------------------------------------------------- /.old/.old-androidApp/src/main/java/com/mrboomdev/awery/ui/tv/screens/home/HomeScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.old/.old-androidApp/src/main/java/com/mrboomdev/awery/ui/tv/screens/home/HomeScreen.kt -------------------------------------------------------------------------------- /.old/.old-androidApp/src/main/java/com/mrboomdev/awery/ui/tv/screens/home/HomeViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.old/.old-androidApp/src/main/java/com/mrboomdev/awery/ui/tv/screens/home/HomeViewModel.kt -------------------------------------------------------------------------------- /.old/.old-androidApp/src/main/java/com/mrboomdev/awery/util/NiceUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.old/.old-androidApp/src/main/java/com/mrboomdev/awery/util/NiceUtils.java -------------------------------------------------------------------------------- /.old/.old-androidApp/src/main/java/com/mrboomdev/awery/util/extensions/StringExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.old/.old-androidApp/src/main/java/com/mrboomdev/awery/util/extensions/StringExtensions.kt -------------------------------------------------------------------------------- /.old/.old-androidApp/src/main/kotlin/com/mrboomdev/awery/app/services/BackupService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.old/.old-androidApp/src/main/kotlin/com/mrboomdev/awery/app/services/BackupService.kt -------------------------------------------------------------------------------- /.old/.old-ext/src/main/kotlin/com/mrboomdev/awery/ext/data/CatalogComment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.old/.old-ext/src/main/kotlin/com/mrboomdev/awery/ext/data/CatalogComment.kt -------------------------------------------------------------------------------- /.old/.old-ext/src/main/kotlin/com/mrboomdev/awery/ext/data/CatalogFeed.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.old/.old-ext/src/main/kotlin/com/mrboomdev/awery/ext/data/CatalogFeed.kt -------------------------------------------------------------------------------- /.old/.old-ext/src/main/kotlin/com/mrboomdev/awery/ext/data/CatalogFile.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.old/.old-ext/src/main/kotlin/com/mrboomdev/awery/ext/data/CatalogFile.kt -------------------------------------------------------------------------------- /.old/.old-ext/src/main/kotlin/com/mrboomdev/awery/ext/data/CatalogMedia.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.old/.old-ext/src/main/kotlin/com/mrboomdev/awery/ext/data/CatalogMedia.kt -------------------------------------------------------------------------------- /.old/.old-ext/src/main/kotlin/com/mrboomdev/awery/ext/data/CatalogSearchResults.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.old/.old-ext/src/main/kotlin/com/mrboomdev/awery/ext/data/CatalogSearchResults.kt -------------------------------------------------------------------------------- /.old/.old-ext/src/main/kotlin/com/mrboomdev/awery/ext/data/CatalogTag.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.old/.old-ext/src/main/kotlin/com/mrboomdev/awery/ext/data/CatalogTag.kt -------------------------------------------------------------------------------- /.old/.old-ext/src/main/kotlin/com/mrboomdev/awery/ext/data/ExternalLink.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.old/.old-ext/src/main/kotlin/com/mrboomdev/awery/ext/data/ExternalLink.kt -------------------------------------------------------------------------------- /.old/.old-ext/src/main/kotlin/com/mrboomdev/awery/ext/source/module/CatalogModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.old/.old-ext/src/main/kotlin/com/mrboomdev/awery/ext/source/module/CatalogModule.kt -------------------------------------------------------------------------------- /.old/.old-ext/src/main/kotlin/com/mrboomdev/awery/ext/source/module/StatusModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.old/.old-ext/src/main/kotlin/com/mrboomdev/awery/ext/source/module/StatusModule.kt -------------------------------------------------------------------------------- /.old/.old-shared/src/androidMain/kotlin/com/mrboomdev/awery/platform/Platform.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.old/.old-shared/src/androidMain/kotlin/com/mrboomdev/awery/platform/Platform.android.kt -------------------------------------------------------------------------------- /.run/Generate Compose Resources.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.run/Generate Compose Resources.run.xml -------------------------------------------------------------------------------- /.run/Publish Sdk.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.run/Publish Sdk.run.xml -------------------------------------------------------------------------------- /.run/Run Android.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.run/Run Android.run.xml -------------------------------------------------------------------------------- /.run/Run Android.run.xml.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.run/Run Android.run.xml.save -------------------------------------------------------------------------------- /.run/Run Desktop.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/.run/Run Desktop.run.xml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/README.md -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/release/baselineProfiles/0/app-release.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/app/release/baselineProfiles/0/app-release.dm -------------------------------------------------------------------------------- /app/release/baselineProfiles/1/app-release.dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/app/release/baselineProfiles/1/app-release.dm -------------------------------------------------------------------------------- /app/release/output-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/app/release/output-metadata.json -------------------------------------------------------------------------------- /app/src/androidDebug/res/mipmap-anydpi-v26/ic_banner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/app/src/androidDebug/res/mipmap-anydpi-v26/ic_banner.xml -------------------------------------------------------------------------------- /app/src/androidDebug/res/mipmap-xhdpi/ic_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/app/src/androidDebug/res/mipmap-xhdpi/ic_banner.png -------------------------------------------------------------------------------- /app/src/androidDebug/res/mipmap-xhdpi/ic_banner_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/app/src/androidDebug/res/mipmap-xhdpi/ic_banner_foreground.png -------------------------------------------------------------------------------- /app/src/androidDebug/res/mipmap/ic_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/app/src/androidDebug/res/mipmap/ic_background.png -------------------------------------------------------------------------------- /app/src/androidDebug/res/mipmap/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/app/src/androidDebug/res/mipmap/ic_launcher.png -------------------------------------------------------------------------------- /app/src/androidDebug/res/mipmap/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/app/src/androidDebug/res/mipmap/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/androidDebug/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/app/src/androidDebug/res/values-night/themes.xml -------------------------------------------------------------------------------- /app/src/androidDebug/res/values/ic_banner_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/app/src/androidDebug/res/values/ic_banner_background.xml -------------------------------------------------------------------------------- /app/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/app/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/androidMain/kotlin/com/mrboomdev/awery/app/ApplicationImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/app/src/androidMain/kotlin/com/mrboomdev/awery/app/ApplicationImpl.kt -------------------------------------------------------------------------------- /app/src/androidMain/kotlin/com/mrboomdev/awery/app/AweryInit.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/app/src/androidMain/kotlin/com/mrboomdev/awery/app/AweryInit.android.kt -------------------------------------------------------------------------------- /app/src/androidMain/kotlin/com/mrboomdev/awery/app/CrashHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/app/src/androidMain/kotlin/com/mrboomdev/awery/app/CrashHandler.kt -------------------------------------------------------------------------------- /app/src/androidMain/kotlin/com/mrboomdev/awery/app/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/app/src/androidMain/kotlin/com/mrboomdev/awery/app/MainActivity.kt -------------------------------------------------------------------------------- /app/src/androidMain/kotlin/com/mrboomdev/awery/app/workers/UpdateFeedWorker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/app/src/androidMain/kotlin/com/mrboomdev/awery/app/workers/UpdateFeedWorker.kt -------------------------------------------------------------------------------- /app/src/androidMain/kotlin/com/mrboomdev/awery/app/workers/UpdateLibraryWorker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/app/src/androidMain/kotlin/com/mrboomdev/awery/app/workers/UpdateLibraryWorker.kt -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-v26/ic_banner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/app/src/androidMain/res/mipmap-v26/ic_banner.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/app/src/androidMain/res/mipmap-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xhdpi/ic_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/app/src/androidMain/res/mipmap-xhdpi/ic_banner.png -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap-xhdpi/ic_banner_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/app/src/androidMain/res/mipmap-xhdpi/ic_banner_foreground.png -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap/ic_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/app/src/androidMain/res/mipmap/ic_background.png -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/app/src/androidMain/res/mipmap/ic_launcher.png -------------------------------------------------------------------------------- /app/src/androidMain/res/mipmap/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/app/src/androidMain/res/mipmap/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/androidMain/res/resources.properties: -------------------------------------------------------------------------------- 1 | unqualifiedResLocale=en -------------------------------------------------------------------------------- /app/src/androidMain/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/app/src/androidMain/res/values-night/themes.xml -------------------------------------------------------------------------------- /app/src/androidMain/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/app/src/androidMain/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/commonMain/kotlin/com/mrboomdev/awery/app/AweryInit.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/app/src/commonMain/kotlin/com/mrboomdev/awery/app/AweryInit.kt -------------------------------------------------------------------------------- /app/src/desktopMain/kotlin/com/mrboomdev/awery/app/AweryInit.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/app/src/desktopMain/kotlin/com/mrboomdev/awery/app/AweryInit.desktop.kt -------------------------------------------------------------------------------- /app/src/desktopMain/kotlin/com/mrboomdev/awery/app/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/app/src/desktopMain/kotlin/com/mrboomdev/awery/app/Main.kt -------------------------------------------------------------------------------- /app/src/desktopMain/kotlin/com/mrboomdev/awery/app/SavedWindowState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/app/src/desktopMain/kotlin/com/mrboomdev/awery/app/SavedWindowState.kt -------------------------------------------------------------------------------- /app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/app_icon.ico -------------------------------------------------------------------------------- /compose-stability.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/core/build.gradle.kts -------------------------------------------------------------------------------- /core/src/androidMain/kotlin/com/mrboomdev/awery/core/Awery.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/core/src/androidMain/kotlin/com/mrboomdev/awery/core/Awery.android.kt -------------------------------------------------------------------------------- /core/src/androidMain/kotlin/com/mrboomdev/awery/core/utils/AndroidUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/core/src/androidMain/kotlin/com/mrboomdev/awery/core/utils/AndroidUtils.kt -------------------------------------------------------------------------------- /core/src/androidMain/kotlin/com/mrboomdev/awery/core/utils/FileUtils.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/core/src/androidMain/kotlin/com/mrboomdev/awery/core/utils/FileUtils.android.kt -------------------------------------------------------------------------------- /core/src/androidMain/kotlin/com/mrboomdev/awery/core/utils/Log.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/core/src/androidMain/kotlin/com/mrboomdev/awery/core/utils/Log.android.kt -------------------------------------------------------------------------------- /core/src/androidMain/kotlin/com/mrboomdev/awery/core/utils/PermissionUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/core/src/androidMain/kotlin/com/mrboomdev/awery/core/utils/PermissionUtils.kt -------------------------------------------------------------------------------- /core/src/commonMain/kotlin/com/mrboomdev/awery/core/Awery.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/core/src/commonMain/kotlin/com/mrboomdev/awery/core/Awery.kt -------------------------------------------------------------------------------- /core/src/commonMain/kotlin/com/mrboomdev/awery/core/utils/CacheStorage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/core/src/commonMain/kotlin/com/mrboomdev/awery/core/utils/CacheStorage.kt -------------------------------------------------------------------------------- /core/src/commonMain/kotlin/com/mrboomdev/awery/core/utils/CommonUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/core/src/commonMain/kotlin/com/mrboomdev/awery/core/utils/CommonUtils.kt -------------------------------------------------------------------------------- /core/src/commonMain/kotlin/com/mrboomdev/awery/core/utils/CoroutineUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/core/src/commonMain/kotlin/com/mrboomdev/awery/core/utils/CoroutineUtils.kt -------------------------------------------------------------------------------- /core/src/commonMain/kotlin/com/mrboomdev/awery/core/utils/EnumUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/core/src/commonMain/kotlin/com/mrboomdev/awery/core/utils/EnumUtils.kt -------------------------------------------------------------------------------- /core/src/commonMain/kotlin/com/mrboomdev/awery/core/utils/FileUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/core/src/commonMain/kotlin/com/mrboomdev/awery/core/utils/FileUtils.kt -------------------------------------------------------------------------------- /core/src/commonMain/kotlin/com/mrboomdev/awery/core/utils/HttpUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/core/src/commonMain/kotlin/com/mrboomdev/awery/core/utils/HttpUtils.kt -------------------------------------------------------------------------------- /core/src/commonMain/kotlin/com/mrboomdev/awery/core/utils/LoadingStatus.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/core/src/commonMain/kotlin/com/mrboomdev/awery/core/utils/LoadingStatus.kt -------------------------------------------------------------------------------- /core/src/commonMain/kotlin/com/mrboomdev/awery/core/utils/Log.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/core/src/commonMain/kotlin/com/mrboomdev/awery/core/utils/Log.kt -------------------------------------------------------------------------------- /core/src/commonMain/kotlin/com/mrboomdev/awery/core/utils/NothingFoundException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/core/src/commonMain/kotlin/com/mrboomdev/awery/core/utils/NothingFoundException.kt -------------------------------------------------------------------------------- /core/src/commonMain/kotlin/com/mrboomdev/awery/core/utils/NumberPool.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/core/src/commonMain/kotlin/com/mrboomdev/awery/core/utils/NumberPool.kt -------------------------------------------------------------------------------- /core/src/commonMain/kotlin/com/mrboomdev/awery/core/utils/PlatformSdk.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/core/src/commonMain/kotlin/com/mrboomdev/awery/core/utils/PlatformSdk.kt -------------------------------------------------------------------------------- /core/src/commonMain/kotlin/com/mrboomdev/awery/core/utils/PrimitiveUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/core/src/commonMain/kotlin/com/mrboomdev/awery/core/utils/PrimitiveUtils.kt -------------------------------------------------------------------------------- /core/src/commonMain/kotlin/com/mrboomdev/awery/core/utils/SerializationUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/core/src/commonMain/kotlin/com/mrboomdev/awery/core/utils/SerializationUtils.kt -------------------------------------------------------------------------------- /core/src/commonMain/kotlin/com/mrboomdev/awery/core/utils/StreamUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/core/src/commonMain/kotlin/com/mrboomdev/awery/core/utils/StreamUtils.kt -------------------------------------------------------------------------------- /core/src/commonMain/kotlin/com/mrboomdev/awery/core/utils/TemporaryFiles.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/core/src/commonMain/kotlin/com/mrboomdev/awery/core/utils/TemporaryFiles.kt -------------------------------------------------------------------------------- /core/src/commonMain/kotlin/com/mrboomdev/awery/core/utils/collection/CollectionUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/core/src/commonMain/kotlin/com/mrboomdev/awery/core/utils/collection/CollectionUtils.kt -------------------------------------------------------------------------------- /core/src/commonMain/kotlin/com/mrboomdev/awery/core/utils/collection/SuspendMutableList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/core/src/commonMain/kotlin/com/mrboomdev/awery/core/utils/collection/SuspendMutableList.kt -------------------------------------------------------------------------------- /core/src/desktopMain/kotlin/com/mrboomdev/awery/core/Awery.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/core/src/desktopMain/kotlin/com/mrboomdev/awery/core/Awery.desktop.kt -------------------------------------------------------------------------------- /core/src/desktopMain/kotlin/com/mrboomdev/awery/core/utils/FileUtils.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/core/src/desktopMain/kotlin/com/mrboomdev/awery/core/utils/FileUtils.desktop.kt -------------------------------------------------------------------------------- /core/src/desktopMain/kotlin/com/mrboomdev/awery/core/utils/Log.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/core/src/desktopMain/kotlin/com/mrboomdev/awery/core/utils/Log.desktop.kt -------------------------------------------------------------------------------- /data/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/build.gradle.kts -------------------------------------------------------------------------------- /data/dbSchemas/com.mrboomdev.awery.data.database.AweryDatabase/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/dbSchemas/com.mrboomdev.awery.data.database.AweryDatabase/1.json -------------------------------------------------------------------------------- /data/dbSchemas/com.mrboomdev.awery.data.database.AweryDatabase/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/dbSchemas/com.mrboomdev.awery.data.database.AweryDatabase/2.json -------------------------------------------------------------------------------- /data/dbSchemas/com.mrboomdev.awery.data.database.AweryHistoryDatabase/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/dbSchemas/com.mrboomdev.awery.data.database.AweryHistoryDatabase/1.json -------------------------------------------------------------------------------- /data/src/androidMain/kotlin/com/mrboomdev/awery/data/AppConstants.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/androidMain/kotlin/com/mrboomdev/awery/data/AppConstants.android.kt -------------------------------------------------------------------------------- /data/src/androidMain/kotlin/com/mrboomdev/awery/data/database/AweryDatabase.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/androidMain/kotlin/com/mrboomdev/awery/data/database/AweryDatabase.android.kt -------------------------------------------------------------------------------- /data/src/androidMain/kotlin/com/mrboomdev/awery/data/database/AweryHistoryDatabase.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/androidMain/kotlin/com/mrboomdev/awery/data/database/AweryHistoryDatabase.android.kt -------------------------------------------------------------------------------- /data/src/androidMain/kotlin/com/mrboomdev/awery/data/notifications/AweryNotifications.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/androidMain/kotlin/com/mrboomdev/awery/data/notifications/AweryNotifications.kt -------------------------------------------------------------------------------- /data/src/androidMain/kotlin/com/mrboomdev/awery/data/settings/Setting.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/androidMain/kotlin/com/mrboomdev/awery/data/settings/Setting.android.kt -------------------------------------------------------------------------------- /data/src/commonMain/kotlin/com/mrboomdev/awery/data/AgeRating.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/commonMain/kotlin/com/mrboomdev/awery/data/AgeRating.kt -------------------------------------------------------------------------------- /data/src/commonMain/kotlin/com/mrboomdev/awery/data/AppConstants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/commonMain/kotlin/com/mrboomdev/awery/data/AppConstants.kt -------------------------------------------------------------------------------- /data/src/commonMain/kotlin/com/mrboomdev/awery/data/AweryContributors.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/commonMain/kotlin/com/mrboomdev/awery/data/AweryContributors.kt -------------------------------------------------------------------------------- /data/src/commonMain/kotlin/com/mrboomdev/awery/data/AweryServer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/commonMain/kotlin/com/mrboomdev/awery/data/AweryServer.kt -------------------------------------------------------------------------------- /data/src/commonMain/kotlin/com/mrboomdev/awery/data/AwerySocials.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/commonMain/kotlin/com/mrboomdev/awery/data/AwerySocials.kt -------------------------------------------------------------------------------- /data/src/commonMain/kotlin/com/mrboomdev/awery/data/database/AweryDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/commonMain/kotlin/com/mrboomdev/awery/data/database/AweryDatabase.kt -------------------------------------------------------------------------------- /data/src/commonMain/kotlin/com/mrboomdev/awery/data/database/AweryHistoryDatabase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/commonMain/kotlin/com/mrboomdev/awery/data/database/AweryHistoryDatabase.kt -------------------------------------------------------------------------------- /data/src/commonMain/kotlin/com/mrboomdev/awery/data/database/DBMigrations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/commonMain/kotlin/com/mrboomdev/awery/data/database/DBMigrations.kt -------------------------------------------------------------------------------- /data/src/commonMain/kotlin/com/mrboomdev/awery/data/database/DBTypeConverters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/commonMain/kotlin/com/mrboomdev/awery/data/database/DBTypeConverters.kt -------------------------------------------------------------------------------- /data/src/commonMain/kotlin/com/mrboomdev/awery/data/database/dao/HistoryDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/commonMain/kotlin/com/mrboomdev/awery/data/database/dao/HistoryDao.kt -------------------------------------------------------------------------------- /data/src/commonMain/kotlin/com/mrboomdev/awery/data/database/dao/KeywordBlacklistDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/commonMain/kotlin/com/mrboomdev/awery/data/database/dao/KeywordBlacklistDao.kt -------------------------------------------------------------------------------- /data/src/commonMain/kotlin/com/mrboomdev/awery/data/database/dao/ListDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/commonMain/kotlin/com/mrboomdev/awery/data/database/dao/ListDao.kt -------------------------------------------------------------------------------- /data/src/commonMain/kotlin/com/mrboomdev/awery/data/database/dao/MediaBlacklistDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/commonMain/kotlin/com/mrboomdev/awery/data/database/dao/MediaBlacklistDao.kt -------------------------------------------------------------------------------- /data/src/commonMain/kotlin/com/mrboomdev/awery/data/database/dao/MediaDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/commonMain/kotlin/com/mrboomdev/awery/data/database/dao/MediaDao.kt -------------------------------------------------------------------------------- /data/src/commonMain/kotlin/com/mrboomdev/awery/data/database/dao/RepositoryDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/commonMain/kotlin/com/mrboomdev/awery/data/database/dao/RepositoryDao.kt -------------------------------------------------------------------------------- /data/src/commonMain/kotlin/com/mrboomdev/awery/data/database/dao/WatchProgressDao.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/commonMain/kotlin/com/mrboomdev/awery/data/database/dao/WatchProgressDao.kt -------------------------------------------------------------------------------- /data/src/commonMain/kotlin/com/mrboomdev/awery/data/database/entity/DBBlacklistedKeyword.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/commonMain/kotlin/com/mrboomdev/awery/data/database/entity/DBBlacklistedKeyword.kt -------------------------------------------------------------------------------- /data/src/commonMain/kotlin/com/mrboomdev/awery/data/database/entity/DBBlacklistedMedia.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/commonMain/kotlin/com/mrboomdev/awery/data/database/entity/DBBlacklistedMedia.kt -------------------------------------------------------------------------------- /data/src/commonMain/kotlin/com/mrboomdev/awery/data/database/entity/DBHistoryItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/commonMain/kotlin/com/mrboomdev/awery/data/database/entity/DBHistoryItem.kt -------------------------------------------------------------------------------- /data/src/commonMain/kotlin/com/mrboomdev/awery/data/database/entity/DBList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/commonMain/kotlin/com/mrboomdev/awery/data/database/entity/DBList.kt -------------------------------------------------------------------------------- /data/src/commonMain/kotlin/com/mrboomdev/awery/data/database/entity/DBMedia.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/commonMain/kotlin/com/mrboomdev/awery/data/database/entity/DBMedia.kt -------------------------------------------------------------------------------- /data/src/commonMain/kotlin/com/mrboomdev/awery/data/database/entity/DBRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/commonMain/kotlin/com/mrboomdev/awery/data/database/entity/DBRepository.kt -------------------------------------------------------------------------------- /data/src/commonMain/kotlin/com/mrboomdev/awery/data/database/entity/DBWatchProgress.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/commonMain/kotlin/com/mrboomdev/awery/data/database/entity/DBWatchProgress.kt -------------------------------------------------------------------------------- /data/src/commonMain/kotlin/com/mrboomdev/awery/data/gawaii/AniyomiGawaii.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/commonMain/kotlin/com/mrboomdev/awery/data/gawaii/AniyomiGawaii.kt -------------------------------------------------------------------------------- /data/src/commonMain/kotlin/com/mrboomdev/awery/data/gawaii/CloudstreamGawaii.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/commonMain/kotlin/com/mrboomdev/awery/data/gawaii/CloudstreamGawaii.kt -------------------------------------------------------------------------------- /data/src/commonMain/kotlin/com/mrboomdev/awery/data/gawaii/DantotsuGawaii.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/commonMain/kotlin/com/mrboomdev/awery/data/gawaii/DantotsuGawaii.kt -------------------------------------------------------------------------------- /data/src/commonMain/kotlin/com/mrboomdev/awery/data/gawaii/Gawaii.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/commonMain/kotlin/com/mrboomdev/awery/data/gawaii/Gawaii.kt -------------------------------------------------------------------------------- /data/src/commonMain/kotlin/com/mrboomdev/awery/data/gawaii/MihonGawaii.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/commonMain/kotlin/com/mrboomdev/awery/data/gawaii/MihonGawaii.kt -------------------------------------------------------------------------------- /data/src/commonMain/kotlin/com/mrboomdev/awery/data/repo/CloudstreamRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/commonMain/kotlin/com/mrboomdev/awery/data/repo/CloudstreamRepository.kt -------------------------------------------------------------------------------- /data/src/commonMain/kotlin/com/mrboomdev/awery/data/repo/Repositories.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/commonMain/kotlin/com/mrboomdev/awery/data/repo/Repositories.kt -------------------------------------------------------------------------------- /data/src/commonMain/kotlin/com/mrboomdev/awery/data/repo/Repository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/commonMain/kotlin/com/mrboomdev/awery/data/repo/Repository.kt -------------------------------------------------------------------------------- /data/src/commonMain/kotlin/com/mrboomdev/awery/data/repo/YomiRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/commonMain/kotlin/com/mrboomdev/awery/data/repo/YomiRepository.kt -------------------------------------------------------------------------------- /data/src/commonMain/kotlin/com/mrboomdev/awery/data/settings/AwerySettings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/commonMain/kotlin/com/mrboomdev/awery/data/settings/AwerySettings.kt -------------------------------------------------------------------------------- /data/src/commonMain/kotlin/com/mrboomdev/awery/data/settings/Delegate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/commonMain/kotlin/com/mrboomdev/awery/data/settings/Delegate.kt -------------------------------------------------------------------------------- /data/src/commonMain/kotlin/com/mrboomdev/awery/data/settings/Setting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/commonMain/kotlin/com/mrboomdev/awery/data/settings/Setting.kt -------------------------------------------------------------------------------- /data/src/desktopMain/kotlin/com/mrboomdev/awery/data/AppConstants.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/desktopMain/kotlin/com/mrboomdev/awery/data/AppConstants.desktop.kt -------------------------------------------------------------------------------- /data/src/desktopMain/kotlin/com/mrboomdev/awery/data/database/AweryDatabase.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/desktopMain/kotlin/com/mrboomdev/awery/data/database/AweryDatabase.desktop.kt -------------------------------------------------------------------------------- /data/src/desktopMain/kotlin/com/mrboomdev/awery/data/settings/AwerySettings.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/desktopMain/kotlin/com/mrboomdev/awery/data/settings/AwerySettings.desktop.kt -------------------------------------------------------------------------------- /data/src/desktopMain/kotlin/com/mrboomdev/awery/data/settings/Setting.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/data/src/desktopMain/kotlin/com/mrboomdev/awery/data/settings/Setting.desktop.kt -------------------------------------------------------------------------------- /docs/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/docs/app_icon.png -------------------------------------------------------------------------------- /docs/banner.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/docs/banner.webp -------------------------------------------------------------------------------- /docs/screenshot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/docs/screenshot1.jpg -------------------------------------------------------------------------------- /extension/bundled/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/bundled/build.gradle.kts -------------------------------------------------------------------------------- /extension/bundled/src/commonMain/kotlin/com/mrboomdev/awery/extension/bundled/BundledExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/bundled/src/commonMain/kotlin/com/mrboomdev/awery/extension/bundled/BundledExtensions.kt -------------------------------------------------------------------------------- /extension/bundled/src/commonMain/kotlin/com/mrboomdev/awery/extension/bundled/anilist/AnilistCatalog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/bundled/src/commonMain/kotlin/com/mrboomdev/awery/extension/bundled/anilist/AnilistCatalog.kt -------------------------------------------------------------------------------- /extension/bundled/src/commonMain/kotlin/com/mrboomdev/awery/extension/bundled/anilist/AnilistExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/bundled/src/commonMain/kotlin/com/mrboomdev/awery/extension/bundled/anilist/AnilistExtension.kt -------------------------------------------------------------------------------- /extension/bundled/src/commonMain/kotlin/com/mrboomdev/awery/extension/bundled/anilist/AnilistPreferences.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/bundled/src/commonMain/kotlin/com/mrboomdev/awery/extension/bundled/anilist/AnilistPreferences.kt -------------------------------------------------------------------------------- /extension/bundled/src/commonMain/kotlin/com/mrboomdev/awery/extension/bundled/anilist/AnilistUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/bundled/src/commonMain/kotlin/com/mrboomdev/awery/extension/bundled/anilist/AnilistUtils.kt -------------------------------------------------------------------------------- /extension/bundled/src/commonMain/kotlin/com/mrboomdev/awery/extension/bundled/anilist/entity/AnilistMedia.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/bundled/src/commonMain/kotlin/com/mrboomdev/awery/extension/bundled/anilist/entity/AnilistMedia.kt -------------------------------------------------------------------------------- /extension/bundled/src/commonMain/kotlin/com/mrboomdev/awery/extension/bundled/anilist/entity/AnilistRequest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/bundled/src/commonMain/kotlin/com/mrboomdev/awery/extension/bundled/anilist/entity/AnilistRequest.kt -------------------------------------------------------------------------------- /extension/bundled/src/commonMain/kotlin/com/mrboomdev/awery/extension/bundled/anilist/entity/AnilistResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/bundled/src/commonMain/kotlin/com/mrboomdev/awery/extension/bundled/anilist/entity/AnilistResponse.kt -------------------------------------------------------------------------------- /extension/bundled/src/commonMain/kotlin/com/mrboomdev/awery/extension/bundled/anilist/entity/FuzzyDate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/bundled/src/commonMain/kotlin/com/mrboomdev/awery/extension/bundled/anilist/entity/FuzzyDate.kt -------------------------------------------------------------------------------- /extension/bundled/src/commonMain/kotlin/com/mrboomdev/awery/extension/bundled/anilist/query/AnilistQuery.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/bundled/src/commonMain/kotlin/com/mrboomdev/awery/extension/bundled/anilist/query/AnilistQuery.kt -------------------------------------------------------------------------------- /extension/bundled/src/commonMain/kotlin/com/mrboomdev/awery/extension/bundled/anilist/query/MediaQuery.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/bundled/src/commonMain/kotlin/com/mrboomdev/awery/extension/bundled/anilist/query/MediaQuery.kt -------------------------------------------------------------------------------- /extension/bundled/src/commonMain/kotlin/com/mrboomdev/awery/extension/bundled/anilist/query/SearchQuery.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/bundled/src/commonMain/kotlin/com/mrboomdev/awery/extension/bundled/anilist/query/SearchQuery.kt -------------------------------------------------------------------------------- /extension/bundled/src/commonMain/resources/com/mrboomdev/awery/extension/bundled/anilist/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/bundled/src/commonMain/resources/com/mrboomdev/awery/extension/bundled/anilist/icon.png -------------------------------------------------------------------------------- /extension/loaders/android-compat/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/android-compat/build.gradle.kts -------------------------------------------------------------------------------- /extension/loaders/android-compat/src/androidMain/kotlin/com/mrboomdev/awery/android/AndroidAliases.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/android-compat/src/androidMain/kotlin/com/mrboomdev/awery/android/AndroidAliases.android.kt -------------------------------------------------------------------------------- /extension/loaders/android-compat/src/androidMain/kotlin/com/mrboomdev/awery/android/AndroidUtils.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/android-compat/src/androidMain/kotlin/com/mrboomdev/awery/android/AndroidUtils.android.kt -------------------------------------------------------------------------------- /extension/loaders/android-compat/src/commonMain/kotlin/com/mrboomdev/awery/android/AndroidAliases.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/android-compat/src/commonMain/kotlin/com/mrboomdev/awery/android/AndroidAliases.kt -------------------------------------------------------------------------------- /extension/loaders/android-compat/src/commonMain/kotlin/com/mrboomdev/awery/android/AndroidUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/android-compat/src/commonMain/kotlin/com/mrboomdev/awery/android/AndroidUtils.kt -------------------------------------------------------------------------------- /extension/loaders/android-compat/src/desktopMain/kotlin/android/content/Context.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/android-compat/src/desktopMain/kotlin/android/content/Context.kt -------------------------------------------------------------------------------- /extension/loaders/android-compat/src/desktopMain/kotlin/android/content/SharedPreferences.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/android-compat/src/desktopMain/kotlin/android/content/SharedPreferences.kt -------------------------------------------------------------------------------- /extension/loaders/android-compat/src/desktopMain/kotlin/android/net/Uri.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/android-compat/src/desktopMain/kotlin/android/net/Uri.kt -------------------------------------------------------------------------------- /extension/loaders/android-compat/src/desktopMain/kotlin/android/widget/EditText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/android-compat/src/desktopMain/kotlin/android/widget/EditText.kt -------------------------------------------------------------------------------- /extension/loaders/android-compat/src/desktopMain/kotlin/androidx/preference/CheckBoxPreference.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/android-compat/src/desktopMain/kotlin/androidx/preference/CheckBoxPreference.kt -------------------------------------------------------------------------------- /extension/loaders/android-compat/src/desktopMain/kotlin/androidx/preference/DialogPreference.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/android-compat/src/desktopMain/kotlin/androidx/preference/DialogPreference.kt -------------------------------------------------------------------------------- /extension/loaders/android-compat/src/desktopMain/kotlin/androidx/preference/EditTextPreference.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/android-compat/src/desktopMain/kotlin/androidx/preference/EditTextPreference.kt -------------------------------------------------------------------------------- /extension/loaders/android-compat/src/desktopMain/kotlin/androidx/preference/ListPreference.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/android-compat/src/desktopMain/kotlin/androidx/preference/ListPreference.kt -------------------------------------------------------------------------------- /extension/loaders/android-compat/src/desktopMain/kotlin/androidx/preference/MultiSelectListPreference.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/android-compat/src/desktopMain/kotlin/androidx/preference/MultiSelectListPreference.kt -------------------------------------------------------------------------------- /extension/loaders/android-compat/src/desktopMain/kotlin/androidx/preference/Preference.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/android-compat/src/desktopMain/kotlin/androidx/preference/Preference.kt -------------------------------------------------------------------------------- /extension/loaders/android-compat/src/desktopMain/kotlin/androidx/preference/PreferenceScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/android-compat/src/desktopMain/kotlin/androidx/preference/PreferenceScreen.kt -------------------------------------------------------------------------------- /extension/loaders/android-compat/src/desktopMain/kotlin/androidx/preference/SwitchPreferenceCompat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/android-compat/src/desktopMain/kotlin/androidx/preference/SwitchPreferenceCompat.kt -------------------------------------------------------------------------------- /extension/loaders/android-compat/src/desktopMain/kotlin/androidx/preference/TwoStatePreference.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/android-compat/src/desktopMain/kotlin/androidx/preference/TwoStatePreference.kt -------------------------------------------------------------------------------- /extension/loaders/android-compat/src/desktopMain/kotlin/com/mrboomdev/awery/android/AndroidAliases.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/android-compat/src/desktopMain/kotlin/com/mrboomdev/awery/android/AndroidAliases.desktop.kt -------------------------------------------------------------------------------- /extension/loaders/android-compat/src/desktopMain/kotlin/com/mrboomdev/awery/android/AndroidUtils.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/android-compat/src/desktopMain/kotlin/com/mrboomdev/awery/android/AndroidUtils.desktop.kt -------------------------------------------------------------------------------- /extension/loaders/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/build.gradle.kts -------------------------------------------------------------------------------- /extension/loaders/src/androidMain/kotlin/com/mrboomdev/awery/extension/loaders/AndroidPreferences.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/androidMain/kotlin/com/mrboomdev/awery/extension/loaders/AndroidPreferences.kt -------------------------------------------------------------------------------- /extension/loaders/src/androidMain/kotlin/com/mrboomdev/awery/extension/loaders/ContextImpl.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/androidMain/kotlin/com/mrboomdev/awery/extension/loaders/ContextImpl.android.kt -------------------------------------------------------------------------------- /extension/loaders/src/androidMain/kotlin/com/mrboomdev/awery/extension/loaders/ExtensionInstaller.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/androidMain/kotlin/com/mrboomdev/awery/extension/loaders/ExtensionInstaller.android.kt -------------------------------------------------------------------------------- /extension/loaders/src/androidMain/kotlin/com/mrboomdev/awery/extension/loaders/Extensions.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/androidMain/kotlin/com/mrboomdev/awery/extension/loaders/Extensions.android.kt -------------------------------------------------------------------------------- /extension/loaders/src/androidMain/kotlin/com/mrboomdev/awery/extension/loaders/awery/AweryExtensionConstants.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/androidMain/kotlin/com/mrboomdev/awery/extension/loaders/awery/AweryExtensionConstants.android.kt -------------------------------------------------------------------------------- /extension/loaders/src/androidMain/kotlin/com/mrboomdev/awery/extension/loaders/awery/ResolvedExtensionParent.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/androidMain/kotlin/com/mrboomdev/awery/extension/loaders/awery/ResolvedExtensionParent.android.kt -------------------------------------------------------------------------------- /extension/loaders/src/androidMain/kotlin/com/mrboomdev/awery/extension/loaders/yomi/YomiExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/androidMain/kotlin/com/mrboomdev/awery/extension/loaders/yomi/YomiExtension.kt -------------------------------------------------------------------------------- /extension/loaders/src/androidMain/kotlin/com/mrboomdev/awery/extension/loaders/yomi/YomiLoader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/androidMain/kotlin/com/mrboomdev/awery/extension/loaders/yomi/YomiLoader.kt -------------------------------------------------------------------------------- /extension/loaders/src/androidMain/kotlin/eu/kanade/tachiyomi/network/JavaScriptEngine.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/androidMain/kotlin/eu/kanade/tachiyomi/network/JavaScriptEngine.android.kt -------------------------------------------------------------------------------- /extension/loaders/src/androidMain/kotlin/eu/kanade/tachiyomi/network/NetworkHelper.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/androidMain/kotlin/eu/kanade/tachiyomi/network/NetworkHelper.android.kt -------------------------------------------------------------------------------- /extension/loaders/src/androidMain/kotlin/eu/kanade/tachiyomi/network/interceptor/CloudflareInterceptor.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/androidMain/kotlin/eu/kanade/tachiyomi/network/interceptor/CloudflareInterceptor.android.kt -------------------------------------------------------------------------------- /extension/loaders/src/androidMain/kotlin/eu/kanade/tachiyomi/network/interceptor/WebViewInterceptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/androidMain/kotlin/eu/kanade/tachiyomi/network/interceptor/WebViewInterceptor.kt -------------------------------------------------------------------------------- /extension/loaders/src/androidMain/kotlin/eu/kanade/tachiyomi/util/system/DeviceUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/androidMain/kotlin/eu/kanade/tachiyomi/util/system/DeviceUtil.kt -------------------------------------------------------------------------------- /extension/loaders/src/androidMain/kotlin/eu/kanade/tachiyomi/util/system/WebViewUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/androidMain/kotlin/eu/kanade/tachiyomi/util/system/WebViewUtil.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/com/mrboomdev/awery/extension/loaders/ContextImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/com/mrboomdev/awery/extension/loaders/ContextImpl.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/com/mrboomdev/awery/extension/loaders/ExtensionInstaller.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/com/mrboomdev/awery/extension/loaders/ExtensionInstaller.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/com/mrboomdev/awery/extension/loaders/Extensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/com/mrboomdev/awery/extension/loaders/Extensions.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/com/mrboomdev/awery/extension/loaders/FailedExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/com/mrboomdev/awery/extension/loaders/FailedExtension.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/com/mrboomdev/awery/extension/loaders/SdkUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/com/mrboomdev/awery/extension/loaders/SdkUtils.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/com/mrboomdev/awery/extension/loaders/awery/AweryExtensionConstants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/com/mrboomdev/awery/extension/loaders/awery/AweryExtensionConstants.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/com/mrboomdev/awery/extension/loaders/awery/AweryExtensionInstaller.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/com/mrboomdev/awery/extension/loaders/awery/AweryExtensionInstaller.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/com/mrboomdev/awery/extension/loaders/awery/AweryExtensionManifest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/com/mrboomdev/awery/extension/loaders/awery/AweryExtensionManifest.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/com/mrboomdev/awery/extension/loaders/awery/ResolvedExtensionParent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/com/mrboomdev/awery/extension/loaders/awery/ResolvedExtensionParent.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/com/mrboomdev/awery/extension/loaders/watch/ExtensionsWatcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/com/mrboomdev/awery/extension/loaders/watch/ExtensionsWatcher.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/com/mrboomdev/awery/extension/loaders/watch/MediaWatcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/com/mrboomdev/awery/extension/loaders/watch/MediaWatcher.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/com/mrboomdev/awery/extension/loaders/watch/VariantWatcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/com/mrboomdev/awery/extension/loaders/watch/VariantWatcher.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/com/mrboomdev/awery/extension/loaders/watch/Watcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/com/mrboomdev/awery/extension/loaders/watch/Watcher.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/com/mrboomdev/awery/extension/loaders/watch/WatcherWatcher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/com/mrboomdev/awery/extension/loaders/watch/WatcherWatcher.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/com/mrboomdev/awery/extension/loaders/yomi/AniyomiSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/com/mrboomdev/awery/extension/loaders/yomi/AniyomiSource.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/com/mrboomdev/awery/extension/loaders/yomi/TachiyomiSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/com/mrboomdev/awery/extension/loaders/yomi/TachiyomiSource.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/com/mrboomdev/awery/extension/loaders/yomi/YomiPreferences.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/com/mrboomdev/awery/extension/loaders/yomi/YomiPreferences.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/com/mrboomdev/awery/extension/loaders/yomi/YomiUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/com/mrboomdev/awery/extension/loaders/yomi/YomiUtils.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/AppInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/AppInfo.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/animesource/AnimeCatalogueSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/animesource/AnimeCatalogueSource.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/animesource/AnimeSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/animesource/AnimeSource.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/animesource/AnimeSourceFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/animesource/AnimeSourceFactory.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/animesource/ConfigurableAnimeSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/animesource/ConfigurableAnimeSource.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/animesource/UnmeteredSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/animesource/UnmeteredSource.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/animesource/model/AnimeFilter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/animesource/model/AnimeFilter.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/animesource/model/AnimeFilterList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/animesource/model/AnimeFilterList.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/animesource/model/AnimeUpdateStrategy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/animesource/model/AnimeUpdateStrategy.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/animesource/model/AnimesPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/animesource/model/AnimesPage.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/animesource/model/Hoster.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/animesource/model/Hoster.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/animesource/model/SAnime.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/animesource/model/SAnime.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/animesource/model/SEpisode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/animesource/model/SEpisode.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/animesource/model/Video.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/animesource/model/Video.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/animesource/online/AnimeHttpSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/animesource/online/AnimeHttpSource.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/animesource/online/ParsedAnimeHttpSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/animesource/online/ParsedAnimeHttpSource.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/animesource/online/ResolvableAnimeSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/animesource/online/ResolvableAnimeSource.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/network/JavaScriptEngine.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/network/JavaScriptEngine.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/network/NetworkHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/network/NetworkHelper.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/network/OkHttpExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/network/OkHttpExtensions.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/network/Requests.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/network/Requests.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/network/interceptor/CloudflareInterceptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/network/interceptor/CloudflareInterceptor.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/network/interceptor/IgnoreGzipInterceptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/network/interceptor/IgnoreGzipInterceptor.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/network/interceptor/RateLimitInterceptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/network/interceptor/RateLimitInterceptor.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/network/interceptor/SpecificHostRateLimitInterceptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/network/interceptor/SpecificHostRateLimitInterceptor.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/network/interceptor/UncaughtExceptionInterceptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/network/interceptor/UncaughtExceptionInterceptor.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/network/interceptor/UserAgentInterceptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/network/interceptor/UserAgentInterceptor.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/source/CatalogueSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/source/CatalogueSource.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/source/ConfigurableSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/source/ConfigurableSource.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/source/MangaSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/source/MangaSource.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/source/SourceFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/source/SourceFactory.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/source/UnmeteredSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/source/UnmeteredSource.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/source/model/Filter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/source/model/Filter.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/source/model/FilterList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/source/model/FilterList.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/source/model/MangasPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/source/model/MangasPage.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/source/model/Page.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/source/model/Page.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/source/model/SChapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/source/model/SChapter.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/source/model/SManga.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/source/model/SManga.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/source/model/UpdateStrategy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/source/model/UpdateStrategy.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/source/online/HttpSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/source/online/HttpSource.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/source/online/ParsedHttpSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/source/online/ParsedHttpSource.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/source/online/ResolvableSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/source/online/ResolvableSource.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/util/JsoupExtensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/util/JsoupExtensions.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/util/RxExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/eu/kanade/tachiyomi/util/RxExtension.kt -------------------------------------------------------------------------------- /extension/loaders/src/commonMain/kotlin/tachiyomi/core/common/util/lang/RxCoroutineBridge.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/commonMain/kotlin/tachiyomi/core/common/util/lang/RxCoroutineBridge.kt -------------------------------------------------------------------------------- /extension/loaders/src/desktopMain/kotlin/com/mrboomdev/awery/extension/loaders/ContextImpl.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/desktopMain/kotlin/com/mrboomdev/awery/extension/loaders/ContextImpl.desktop.kt -------------------------------------------------------------------------------- /extension/loaders/src/desktopMain/kotlin/com/mrboomdev/awery/extension/loaders/DesktopPreferences.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/desktopMain/kotlin/com/mrboomdev/awery/extension/loaders/DesktopPreferences.kt -------------------------------------------------------------------------------- /extension/loaders/src/desktopMain/kotlin/com/mrboomdev/awery/extension/loaders/ExtensionInstaller.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/desktopMain/kotlin/com/mrboomdev/awery/extension/loaders/ExtensionInstaller.desktop.kt -------------------------------------------------------------------------------- /extension/loaders/src/desktopMain/kotlin/com/mrboomdev/awery/extension/loaders/Extensions.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/desktopMain/kotlin/com/mrboomdev/awery/extension/loaders/Extensions.desktop.kt -------------------------------------------------------------------------------- /extension/loaders/src/desktopMain/kotlin/com/mrboomdev/awery/extension/loaders/awery/AweryExtensionConstants.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/desktopMain/kotlin/com/mrboomdev/awery/extension/loaders/awery/AweryExtensionConstants.desktop.kt -------------------------------------------------------------------------------- /extension/loaders/src/desktopMain/kotlin/com/mrboomdev/awery/extension/loaders/awery/ResolvedExtensionParent.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/desktopMain/kotlin/com/mrboomdev/awery/extension/loaders/awery/ResolvedExtensionParent.desktop.kt -------------------------------------------------------------------------------- /extension/loaders/src/desktopMain/kotlin/com/mrboomdev/awery/extension/loaders/yomi/ApkYomiExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/desktopMain/kotlin/com/mrboomdev/awery/extension/loaders/yomi/ApkYomiExtension.kt -------------------------------------------------------------------------------- /extension/loaders/src/desktopMain/kotlin/eu/kanade/tachiyomi/network/JavaScriptEngine.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/desktopMain/kotlin/eu/kanade/tachiyomi/network/JavaScriptEngine.desktop.kt -------------------------------------------------------------------------------- /extension/loaders/src/desktopMain/kotlin/eu/kanade/tachiyomi/network/NetworkHelper.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/desktopMain/kotlin/eu/kanade/tachiyomi/network/NetworkHelper.desktop.kt -------------------------------------------------------------------------------- /extension/loaders/src/desktopMain/kotlin/eu/kanade/tachiyomi/network/interceptor/CloudflareInterceptor.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/loaders/src/desktopMain/kotlin/eu/kanade/tachiyomi/network/interceptor/CloudflareInterceptor.desktop.kt -------------------------------------------------------------------------------- /extension/sdk/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/sdk/build.gradle.kts -------------------------------------------------------------------------------- /extension/sdk/src/androidMain/kotlin/com/mrboomdev/awery/extension/sdk/Image.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/sdk/src/androidMain/kotlin/com/mrboomdev/awery/extension/sdk/Image.android.kt -------------------------------------------------------------------------------- /extension/sdk/src/commonMain/kotlin/com/mrboomdev/awery/extension/sdk/Context.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/sdk/src/commonMain/kotlin/com/mrboomdev/awery/extension/sdk/Context.kt -------------------------------------------------------------------------------- /extension/sdk/src/commonMain/kotlin/com/mrboomdev/awery/extension/sdk/Either.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/sdk/src/commonMain/kotlin/com/mrboomdev/awery/extension/sdk/Either.kt -------------------------------------------------------------------------------- /extension/sdk/src/commonMain/kotlin/com/mrboomdev/awery/extension/sdk/Extension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/sdk/src/commonMain/kotlin/com/mrboomdev/awery/extension/sdk/Extension.kt -------------------------------------------------------------------------------- /extension/sdk/src/commonMain/kotlin/com/mrboomdev/awery/extension/sdk/ExtensionLoadException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/sdk/src/commonMain/kotlin/com/mrboomdev/awery/extension/sdk/ExtensionLoadException.kt -------------------------------------------------------------------------------- /extension/sdk/src/commonMain/kotlin/com/mrboomdev/awery/extension/sdk/Feed.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/sdk/src/commonMain/kotlin/com/mrboomdev/awery/extension/sdk/Feed.kt -------------------------------------------------------------------------------- /extension/sdk/src/commonMain/kotlin/com/mrboomdev/awery/extension/sdk/Image.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/sdk/src/commonMain/kotlin/com/mrboomdev/awery/extension/sdk/Image.kt -------------------------------------------------------------------------------- /extension/sdk/src/commonMain/kotlin/com/mrboomdev/awery/extension/sdk/Media.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/sdk/src/commonMain/kotlin/com/mrboomdev/awery/extension/sdk/Media.kt -------------------------------------------------------------------------------- /extension/sdk/src/commonMain/kotlin/com/mrboomdev/awery/extension/sdk/Preference.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/sdk/src/commonMain/kotlin/com/mrboomdev/awery/extension/sdk/Preference.kt -------------------------------------------------------------------------------- /extension/sdk/src/commonMain/kotlin/com/mrboomdev/awery/extension/sdk/Preferences.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/sdk/src/commonMain/kotlin/com/mrboomdev/awery/extension/sdk/Preferences.kt -------------------------------------------------------------------------------- /extension/sdk/src/commonMain/kotlin/com/mrboomdev/awery/extension/sdk/Results.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/sdk/src/commonMain/kotlin/com/mrboomdev/awery/extension/sdk/Results.kt -------------------------------------------------------------------------------- /extension/sdk/src/commonMain/kotlin/com/mrboomdev/awery/extension/sdk/Video.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/sdk/src/commonMain/kotlin/com/mrboomdev/awery/extension/sdk/Video.kt -------------------------------------------------------------------------------- /extension/sdk/src/commonMain/kotlin/com/mrboomdev/awery/extension/sdk/WatchVariant.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/sdk/src/commonMain/kotlin/com/mrboomdev/awery/extension/sdk/WatchVariant.kt -------------------------------------------------------------------------------- /extension/sdk/src/commonMain/kotlin/com/mrboomdev/awery/extension/sdk/modules/CatalogModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/sdk/src/commonMain/kotlin/com/mrboomdev/awery/extension/sdk/modules/CatalogModule.kt -------------------------------------------------------------------------------- /extension/sdk/src/commonMain/kotlin/com/mrboomdev/awery/extension/sdk/modules/ManageableModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/sdk/src/commonMain/kotlin/com/mrboomdev/awery/extension/sdk/modules/ManageableModule.kt -------------------------------------------------------------------------------- /extension/sdk/src/commonMain/kotlin/com/mrboomdev/awery/extension/sdk/modules/ManagerModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/sdk/src/commonMain/kotlin/com/mrboomdev/awery/extension/sdk/modules/ManagerModule.kt -------------------------------------------------------------------------------- /extension/sdk/src/commonMain/kotlin/com/mrboomdev/awery/extension/sdk/modules/Module.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/sdk/src/commonMain/kotlin/com/mrboomdev/awery/extension/sdk/modules/Module.kt -------------------------------------------------------------------------------- /extension/sdk/src/commonMain/kotlin/com/mrboomdev/awery/extension/sdk/modules/TrackerModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/sdk/src/commonMain/kotlin/com/mrboomdev/awery/extension/sdk/modules/TrackerModule.kt -------------------------------------------------------------------------------- /extension/sdk/src/commonMain/kotlin/com/mrboomdev/awery/extension/sdk/modules/WatchModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/sdk/src/commonMain/kotlin/com/mrboomdev/awery/extension/sdk/modules/WatchModule.kt -------------------------------------------------------------------------------- /extension/sdk/src/commonMain/kotlin/com/mrboomdev/awery/extension/sdk/utils/RangeSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/sdk/src/commonMain/kotlin/com/mrboomdev/awery/extension/sdk/utils/RangeSerializer.kt -------------------------------------------------------------------------------- /extension/sdk/src/desktopMain/kotlin/com/mrboomdev/awery/extension/sdk/Image.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/extension/sdk/src/desktopMain/kotlin/com/mrboomdev/awery/extension/sdk/Image.desktop.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/android.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/gradle/android.versions.toml -------------------------------------------------------------------------------- /gradle/compose.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/gradle/compose.versions.toml -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/gradlew.bat -------------------------------------------------------------------------------- /resources/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/build.gradle.kts -------------------------------------------------------------------------------- /resources/src/androidMain/kotlin/com/mrboomdev/awery/resources/FontCompat.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/androidMain/kotlin/com/mrboomdev/awery/resources/FontCompat.android.kt -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_account_outlined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_account_outlined.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_add.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_add.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_aspect_ratio_outlined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_aspect_ratio_outlined.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_awesome_filled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_awesome_filled.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_back.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_block.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_block.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_book_filled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_book_filled.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_bookmark_filled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_bookmark_filled.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_bookmark_outlined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_bookmark_outlined.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_bookmarks_outlined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_bookmarks_outlined.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_close.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_close.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_collections_bookmark_filled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_collections_bookmark_filled.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_collections_bookmark_outlined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_collections_bookmark_outlined.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_contrast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_contrast.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_copy_outlined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_copy_outlined.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_crop_landscape_outlined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_crop_landscape_outlined.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_cut_outlined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_cut_outlined.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_dark_mode_outlined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_dark_mode_outlined.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_dashboard_outlined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_dashboard_outlined.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_delete_outlined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_delete_outlined.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_dev_outlined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_dev_outlined.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_done.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_done.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_download.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_download.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_edit_outlined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_edit_outlined.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_explict_outlined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_explict_outlined.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_explore_outlined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_explore_outlined.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_extension_outlined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_extension_outlined.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_fast_forward_outlined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_fast_forward_outlined.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_filter_outlined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_filter_outlined.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_fit_screen_outlined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_fit_screen_outlined.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_folder_open_outlined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_folder_open_outlined.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_history.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_history.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_home_filled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_home_filled.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_home_outlined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_home_outlined.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_image_outlined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_image_outlined.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_info_outlined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_info_outlined.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_language.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_language.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_link.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_link.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_mood_outlined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_mood_outlined.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_more_vertical.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_more_vertical.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_notifications_filled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_notifications_filled.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_notifications_outlined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_notifications_outlined.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_palette_outlined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_palette_outlined.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_paste_outlined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_paste_outlined.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_pause_filled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_pause_filled.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_play_filled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_play_filled.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_refresh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_refresh.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_sd_card_outlined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_sd_card_outlined.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_search.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_select_all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_select_all.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_settings_outlined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_settings_outlined.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_share_filled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_share_filled.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_skip_next_filled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_skip_next_filled.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_skip_previous_filled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_skip_previous_filled.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_subtitles_filled.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_subtitles_filled.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_subtitles_outlined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_subtitles_outlined.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/ic_video_settings_outlined.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/ic_video_settings_outlined.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/logo_aniyomi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/logo_aniyomi.png -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/logo_awery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/logo_awery.png -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/logo_dantotsu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/logo_dantotsu.png -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/logo_discord.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/logo_discord.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/logo_github.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/logo_github.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/logo_tachiyomi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/logo_tachiyomi.jpg -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/logo_telegram.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/logo_telegram.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/drawable/poster_no_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/drawable/poster_no_image.jpg -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/font/Poppins-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/font/Poppins-Black.ttf -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/font/Poppins-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/font/Poppins-Bold.ttf -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/font/Poppins-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/font/Poppins-ExtraBold.ttf -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/font/Poppins-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/font/Poppins-ExtraLight.ttf -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/font/Poppins-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/font/Poppins-Light.ttf -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/font/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/font/Poppins-Medium.ttf -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/font/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/font/Poppins-Regular.ttf -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/font/Poppins-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/font/Poppins-SemiBold.ttf -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/font/Poppins-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/font/Poppins-Thin.ttf -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/values-as/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/values-as/strings.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/values-bg/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/values-bg/strings.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/values-bn/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/values-bn/strings.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/values-cs/strings.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/values-da/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/values-da/strings.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/values-de/strings.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/values-el/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/values-el/strings.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/values-en-rIN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/values-en-rIN/strings.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/values-es/strings.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/values-fil/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/values-fil/strings.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/values-fr/strings.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/values-gu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/values-gu/strings.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/values-hi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/values-hi/strings.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/values-hu/strings.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/values-hy/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/values-hy/strings.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/values-in/strings.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/values-it/strings.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/values-iw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/values-iw/strings.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/values-ja/strings.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/values-ko/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/values-ko/strings.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/values-mr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/values-mr/strings.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/values-nl/strings.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/values-pl/strings.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/values-pt/strings.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/values-ro/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/values-ro/strings.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/values-ru/strings.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/values-sa/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/values-sa/strings.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/values-ta/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/values-ta/strings.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/values-th/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/values-th/strings.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/values-tr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/values-tr/strings.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/values-vi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/values-vi/strings.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /resources/src/commonMain/composeResources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/composeResources/values/strings.xml -------------------------------------------------------------------------------- /resources/src/commonMain/kotlin/com/mrboomdev/awery/resources/AweryFonts.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/kotlin/com/mrboomdev/awery/resources/AweryFonts.kt -------------------------------------------------------------------------------- /resources/src/commonMain/kotlin/com/mrboomdev/awery/resources/FontCompat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/kotlin/com/mrboomdev/awery/resources/FontCompat.kt -------------------------------------------------------------------------------- /resources/src/commonMain/kotlin/com/mrboomdev/awery/resources/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/commonMain/kotlin/com/mrboomdev/awery/resources/Utils.kt -------------------------------------------------------------------------------- /resources/src/desktopMain/kotlin/com/mrboomdev/awery/resources/FontCompat.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/resources/src/desktopMain/kotlin/com/mrboomdev/awery/resources/FontCompat.desktop.kt -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /ui/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/build.gradle.kts -------------------------------------------------------------------------------- /ui/src/androidMain/kotlin/com/mrboomdev/awery/ui/App.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/androidMain/kotlin/com/mrboomdev/awery/ui/App.android.kt -------------------------------------------------------------------------------- /ui/src/androidMain/kotlin/com/mrboomdev/awery/ui/components/ExtImage.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/androidMain/kotlin/com/mrboomdev/awery/ui/components/ExtImage.android.kt -------------------------------------------------------------------------------- /ui/src/androidMain/kotlin/com/mrboomdev/awery/ui/components/MediaPlayer.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/androidMain/kotlin/com/mrboomdev/awery/ui/components/MediaPlayer.android.kt -------------------------------------------------------------------------------- /ui/src/androidMain/kotlin/com/mrboomdev/awery/ui/components/TvIconButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/androidMain/kotlin/com/mrboomdev/awery/ui/components/TvIconButton.kt -------------------------------------------------------------------------------- /ui/src/androidMain/kotlin/com/mrboomdev/awery/ui/components/WebBrowser.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/androidMain/kotlin/com/mrboomdev/awery/ui/components/WebBrowser.android.kt -------------------------------------------------------------------------------- /ui/src/androidMain/kotlin/com/mrboomdev/awery/ui/effects/BackEffect.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/androidMain/kotlin/com/mrboomdev/awery/ui/effects/BackEffect.android.kt -------------------------------------------------------------------------------- /ui/src/androidMain/kotlin/com/mrboomdev/awery/ui/effects/InsetsController.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/androidMain/kotlin/com/mrboomdev/awery/ui/effects/InsetsController.android.kt -------------------------------------------------------------------------------- /ui/src/androidMain/kotlin/com/mrboomdev/awery/ui/effects/KeepScreenOn.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/androidMain/kotlin/com/mrboomdev/awery/ui/effects/KeepScreenOn.android.kt -------------------------------------------------------------------------------- /ui/src/androidMain/kotlin/com/mrboomdev/awery/ui/effects/ScreenOrientation.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/androidMain/kotlin/com/mrboomdev/awery/ui/effects/ScreenOrientation.android.kt -------------------------------------------------------------------------------- /ui/src/androidMain/kotlin/com/mrboomdev/awery/ui/popups/LanguageDialog.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/androidMain/kotlin/com/mrboomdev/awery/ui/popups/LanguageDialog.android.kt -------------------------------------------------------------------------------- /ui/src/androidMain/kotlin/com/mrboomdev/awery/ui/screens/main/MainScreen.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/androidMain/kotlin/com/mrboomdev/awery/ui/screens/main/MainScreen.android.kt -------------------------------------------------------------------------------- /ui/src/androidMain/kotlin/com/mrboomdev/awery/ui/screens/main/TvHomePage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/androidMain/kotlin/com/mrboomdev/awery/ui/screens/main/TvHomePage.kt -------------------------------------------------------------------------------- /ui/src/androidMain/kotlin/com/mrboomdev/awery/ui/screens/media/MediaScreen.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/androidMain/kotlin/com/mrboomdev/awery/ui/screens/media/MediaScreen.android.kt -------------------------------------------------------------------------------- /ui/src/androidMain/kotlin/com/mrboomdev/awery/ui/screens/player/PlayerScreen.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/androidMain/kotlin/com/mrboomdev/awery/ui/screens/player/PlayerScreen.android.kt -------------------------------------------------------------------------------- /ui/src/androidMain/kotlin/com/mrboomdev/awery/ui/theme/AweryTheme.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/androidMain/kotlin/com/mrboomdev/awery/ui/theme/AweryTheme.android.kt -------------------------------------------------------------------------------- /ui/src/androidMain/kotlin/com/mrboomdev/awery/ui/theme/SeedAweryTheme.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/androidMain/kotlin/com/mrboomdev/awery/ui/theme/SeedAweryTheme.android.kt -------------------------------------------------------------------------------- /ui/src/androidMain/kotlin/com/mrboomdev/awery/ui/utils/FocusSaver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/androidMain/kotlin/com/mrboomdev/awery/ui/utils/FocusSaver.kt -------------------------------------------------------------------------------- /ui/src/androidMain/kotlin/com/mrboomdev/awery/ui/utils/ModifierUtils.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/androidMain/kotlin/com/mrboomdev/awery/ui/utils/ModifierUtils.android.kt -------------------------------------------------------------------------------- /ui/src/androidMain/kotlin/com/mrboomdev/awery/ui/utils/PictureInPictureState.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/androidMain/kotlin/com/mrboomdev/awery/ui/utils/PictureInPictureState.android.kt -------------------------------------------------------------------------------- /ui/src/androidMain/kotlin/com/mrboomdev/awery/ui/utils/SaverUtils.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/androidMain/kotlin/com/mrboomdev/awery/ui/utils/SaverUtils.android.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/App.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/components/AlertDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/components/AlertDialog.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/components/BottomSheetDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/components/BottomSheetDialog.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/components/Breadcrumb.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/components/Breadcrumb.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/components/ContextMenu.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/components/ContextMenu.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/components/ExpandableText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/components/ExpandableText.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/components/ExtImage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/components/ExtImage.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/components/FeedRow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/components/FeedRow.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/components/FilePicker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/components/FilePicker.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/components/FlexibleTopAppBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/components/FlexibleTopAppBar.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/components/IconButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/components/IconButton.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/components/InfoBox.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/components/InfoBox.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/components/MediaCard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/components/MediaCard.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/components/MediaPlayer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/components/MediaPlayer.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/components/Toaster.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/components/Toaster.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/components/WebBrowser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/components/WebBrowser.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/effects/BackEffect.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/effects/BackEffect.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/effects/InsetsController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/effects/InsetsController.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/effects/KeepScreenOn.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/effects/KeepScreenOn.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/effects/PostLaunchedEffect.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/effects/PostLaunchedEffect.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/effects/ScreenOrientation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/effects/ScreenOrientation.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/navigation/NavigationState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/navigation/NavigationState.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/navigation/RouteInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/navigation/RouteInfo.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/navigation/RouteInfoEffect.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/navigation/RouteInfoEffect.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/navigation/Routes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/navigation/Routes.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/popups/BookmarkMediaDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/popups/BookmarkMediaDialog.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/popups/CreateListDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/popups/CreateListDialog.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/popups/EditListDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/popups/EditListDialog.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/popups/LanguageDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/popups/LanguageDialog.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/popups/MediaActionsDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/popups/MediaActionsDialog.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/CrashScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/CrashScreen.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/GalleryScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/GalleryScreen.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/browser/BrowserScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/browser/BrowserScreen.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/extension/ExtensionFeedScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/extension/ExtensionFeedScreen.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/extension/ExtensionScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/extension/ExtensionScreen.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/extension/ExtensionSearchScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/extension/ExtensionSearchScreen.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/extension/FiltersDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/extension/FiltersDialog.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/history/HistoryScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/history/HistoryScreen.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/home/HomeScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/home/HomeScreen.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/home/HomeViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/home/HomeViewModel.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/intro/IntroDsl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/intro/IntroDsl.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/intro/IntroScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/intro/IntroScreen.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/intro/introDefaults.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/intro/introDefaults.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/intro/steps/IntroAccountStep.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/intro/steps/IntroAccountStep.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/intro/steps/IntroEndStep.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/intro/steps/IntroEndStep.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/intro/steps/IntroStep.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/intro/steps/IntroStep.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/intro/steps/IntroThemeStep.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/intro/steps/IntroThemeStep.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/intro/steps/IntroUserStep.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/intro/steps/IntroUserStep.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/intro/steps/IntroWelcomeStep.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/intro/steps/IntroWelcomeStep.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/library/LibraryColumnScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/library/LibraryColumnScreen.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/library/LibraryStatus.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/library/LibraryStatus.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/library/LibraryTabbedScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/library/LibraryTabbedScreen.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/library/LibraryViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/library/LibraryViewModel.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/main/MainScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/main/MainScreen.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/main/MainScreenViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/main/MainScreenViewModel.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/media/DefaultMediaScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/media/DefaultMediaScreen.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/media/MediaScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/media/MediaScreen.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/media/MediaScreenActions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/media/MediaScreenActions.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/notifications/NotificationsScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/notifications/NotificationsScreen.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/notifications/NotificationsViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/notifications/NotificationsViewModel.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/player/PlayerDialogs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/player/PlayerDialogs.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/player/PlayerScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/player/PlayerScreen.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/search/SearchScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/search/SearchScreen.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/search/SearchViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/search/SearchViewModel.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/settings/Setting.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/settings/Setting.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/settings/SettingsDefaults.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/settings/SettingsDefaults.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/settings/SettingsScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/settings/SettingsScreen.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/settings/pages/SettingsAboutPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/settings/pages/SettingsAboutPage.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/settings/pages/SettingsAdvancedPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/settings/pages/SettingsAdvancedPage.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/settings/pages/SettingsCatalogPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/settings/pages/SettingsCatalogPage.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/settings/pages/SettingsExtensionPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/settings/pages/SettingsExtensionPage.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/settings/pages/SettingsExtensionsPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/settings/pages/SettingsExtensionsPage.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/settings/pages/SettingsLibraryPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/settings/pages/SettingsLibraryPage.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/settings/pages/SettingsListsPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/settings/pages/SettingsListsPage.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/settings/pages/SettingsMainPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/settings/pages/SettingsMainPage.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/settings/pages/SettingsPages.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/settings/pages/SettingsPages.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/settings/pages/SettingsPlayerPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/settings/pages/SettingsPlayerPage.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/settings/pages/SettingsRepositoryPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/settings/pages/SettingsRepositoryPage.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/settings/pages/SettingsStoragePage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/settings/pages/SettingsStoragePage.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/settings/pages/SettingsUiPage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/screens/settings/pages/SettingsUiPage.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/theme/AweryTheme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/theme/AweryTheme.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/theme/AweryTypography.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/theme/AweryTypography.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/theme/SeedAweryTheme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/theme/SeedAweryTheme.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/utils/AppBarUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/utils/AppBarUtils.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/utils/ColorSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/utils/ColorSerializer.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/utils/ComposeUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/utils/ComposeUtils.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/utils/CustomBringIntoViewSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/utils/CustomBringIntoViewSpec.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/utils/ExceptionClassifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/utils/ExceptionClassifier.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/utils/LazyListUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/utils/LazyListUtils.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/utils/ModifierUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/utils/ModifierUtils.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/utils/PaddingUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/utils/PaddingUtils.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/utils/PictureInPictureState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/utils/PictureInPictureState.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/utils/SaverUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/utils/SaverUtils.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/utils/StringUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/utils/StringUtils.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/utils/ViewModelUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/utils/ViewModelUtils.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/utils/WindowUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/utils/WindowUtils.kt -------------------------------------------------------------------------------- /ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/utils/pagination/InfiniteScroll.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/commonMain/kotlin/com/mrboomdev/awery/ui/utils/pagination/InfiniteScroll.kt -------------------------------------------------------------------------------- /ui/src/desktopMain/java/com/mrboomdev/awery/ui/App.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/desktopMain/java/com/mrboomdev/awery/ui/App.desktop.kt -------------------------------------------------------------------------------- /ui/src/desktopMain/kotlin/com/mrboomdev/awery/ui/components/ExtImage.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/desktopMain/kotlin/com/mrboomdev/awery/ui/components/ExtImage.desktop.kt -------------------------------------------------------------------------------- /ui/src/desktopMain/kotlin/com/mrboomdev/awery/ui/components/MediaPlayer.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/desktopMain/kotlin/com/mrboomdev/awery/ui/components/MediaPlayer.desktop.kt -------------------------------------------------------------------------------- /ui/src/desktopMain/kotlin/com/mrboomdev/awery/ui/components/WebBrowser.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/desktopMain/kotlin/com/mrboomdev/awery/ui/components/WebBrowser.desktop.kt -------------------------------------------------------------------------------- /ui/src/desktopMain/kotlin/com/mrboomdev/awery/ui/effects/BackEffect.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/desktopMain/kotlin/com/mrboomdev/awery/ui/effects/BackEffect.desktop.kt -------------------------------------------------------------------------------- /ui/src/desktopMain/kotlin/com/mrboomdev/awery/ui/effects/InsetsController.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/desktopMain/kotlin/com/mrboomdev/awery/ui/effects/InsetsController.desktop.kt -------------------------------------------------------------------------------- /ui/src/desktopMain/kotlin/com/mrboomdev/awery/ui/effects/KeepScreenOn.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/desktopMain/kotlin/com/mrboomdev/awery/ui/effects/KeepScreenOn.desktop.kt -------------------------------------------------------------------------------- /ui/src/desktopMain/kotlin/com/mrboomdev/awery/ui/effects/ScreenOrientation.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/desktopMain/kotlin/com/mrboomdev/awery/ui/effects/ScreenOrientation.desktop.kt -------------------------------------------------------------------------------- /ui/src/desktopMain/kotlin/com/mrboomdev/awery/ui/popups/LanguageDialog.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/desktopMain/kotlin/com/mrboomdev/awery/ui/popups/LanguageDialog.desktop.kt -------------------------------------------------------------------------------- /ui/src/desktopMain/kotlin/com/mrboomdev/awery/ui/screens/main/MainScreen.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/desktopMain/kotlin/com/mrboomdev/awery/ui/screens/main/MainScreen.desktop.kt -------------------------------------------------------------------------------- /ui/src/desktopMain/kotlin/com/mrboomdev/awery/ui/screens/media/MediaScreen.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/desktopMain/kotlin/com/mrboomdev/awery/ui/screens/media/MediaScreen.desktop.kt -------------------------------------------------------------------------------- /ui/src/desktopMain/kotlin/com/mrboomdev/awery/ui/screens/player/PlayerScreen.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/desktopMain/kotlin/com/mrboomdev/awery/ui/screens/player/PlayerScreen.desktop.kt -------------------------------------------------------------------------------- /ui/src/desktopMain/kotlin/com/mrboomdev/awery/ui/theme/AweryTheme.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/desktopMain/kotlin/com/mrboomdev/awery/ui/theme/AweryTheme.desktop.kt -------------------------------------------------------------------------------- /ui/src/desktopMain/kotlin/com/mrboomdev/awery/ui/theme/SeedAweryTheme.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/desktopMain/kotlin/com/mrboomdev/awery/ui/theme/SeedAweryTheme.desktop.kt -------------------------------------------------------------------------------- /ui/src/desktopMain/kotlin/com/mrboomdev/awery/ui/utils/PictureInPictureState.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/desktopMain/kotlin/com/mrboomdev/awery/ui/utils/PictureInPictureState.desktop.kt -------------------------------------------------------------------------------- /ui/src/desktopMain/kotlin/com/mrboomdev/awery/ui/utils/SaverUtils.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/ui/src/desktopMain/kotlin/com/mrboomdev/awery/ui/utils/SaverUtils.desktop.kt -------------------------------------------------------------------------------- /workflowscripts/tel_parser.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrBoomDeveloper/Awery/HEAD/workflowscripts/tel_parser.sed --------------------------------------------------------------------------------