├── .github └── workflows │ ├── android-build.yml │ ├── check-formatting.yml │ ├── check-migrations.yml │ ├── create-release-tag.yml │ ├── deploy.yml │ ├── desktop-build.yml │ └── ios-build.yml ├── .gitignore ├── .run ├── just-chatting [spotlessApply].run.xml ├── just-chatting [test].run.xml └── just-chatting_app-desktop [run].run.xml ├── LICENSE ├── README.md ├── app-android ├── .gitignore ├── build.gradle.kts ├── google-services.json ├── proguard-rules.pro └── src │ ├── androidDebug │ └── res │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ └── values │ │ └── strings.xml │ └── androidMain │ ├── AndroidManifest.xml │ ├── ic_launcher-playstore.png │ ├── kotlin │ └── fr │ │ └── outadoc │ │ └── justchatting │ │ └── MainApplication.kt │ ├── play_feature_graphic.xcf │ └── res │ ├── drawable │ ├── ic_launcher_background.xml │ └── ic_launcher_foreground.xml │ ├── mipmap-anydpi-v26 │ └── ic_launcher.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── mipmap-xxxhdpi │ └── ic_launcher.png │ ├── values-night │ └── styles.xml │ ├── values │ ├── colors.xml │ ├── strings.xml │ └── styles.xml │ └── xml │ ├── backup_rules.xml │ └── data_extraction_rules.xml ├── app-desktop ├── assets │ ├── icon_linux.svg │ ├── icon_macos.icns │ └── icon_windows.ico ├── build.gradle.kts ├── compose-desktop.pro ├── flatpak │ ├── .gitignore │ ├── fr.outadoc.justchatting.desktop │ └── fr.outadoc.justchatting.yml └── src │ └── main │ └── kotlin │ └── fr │ └── outadoc │ └── justchatting │ └── Main.kt ├── app-ios ├── .gitignore ├── .mise.toml ├── Gemfile ├── Gemfile.lock ├── JustChatting │ ├── Resources │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── 1024 1.png │ │ │ │ ├── Contents.json │ │ │ │ ├── dark.png │ │ │ │ └── icon_monochrome.png │ │ │ ├── Contents.json │ │ │ └── LogoForeground.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LogoForeground.png │ │ │ │ ├── LogoForeground@2x.png │ │ │ │ └── LogoForeground@3x.png │ │ └── Launch Screen.storyboard │ └── Sources │ │ ├── ComposeBridgeView.swift │ │ ├── MainView.swift │ │ └── iOSApp.swift ├── Project.swift ├── Tuist.swift └── fastlane │ ├── Appfile │ ├── Fastfile │ └── Matchfile ├── assets ├── icon.svg ├── icon_apple.icon │ ├── Assets │ │ └── icon_monochrome.svg │ └── icon.json ├── icon_dark.svg ├── icon_masked.svg ├── icon_monochrome.svg └── screenshots │ ├── android │ └── chat-recording.mp4 │ └── ios │ └── ipad-static.png ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── keystores ├── debug.p12 └── release.p12 ├── konsist-checks ├── .gitignore ├── build.gradle.kts └── src │ └── test │ └── kotlin │ └── fr │ └── outadoc │ └── justchatting │ └── ArchitectureTest.kt ├── renovate.json ├── settings.gradle.kts └── shared ├── .gitignore ├── build.gradle.kts ├── consumer-rules.pro └── src ├── androidMain ├── AndroidManifest.xml ├── kotlin │ └── fr │ │ └── outadoc │ │ └── justchatting │ │ ├── di │ │ ├── KoinInitializer.kt │ │ └── PlatformModule.android.kt │ │ ├── feature │ │ ├── chat │ │ │ └── presentation │ │ │ │ ├── ChatConnectionService.kt │ │ │ │ ├── UserExt.kt │ │ │ │ ├── UserProfileImageContentProvider.kt │ │ │ │ └── mobile │ │ │ │ ├── AndroidChatNotifier.kt │ │ │ │ ├── AndroidCreateShortcutForChannelUseCase.kt │ │ │ │ ├── DynamicImageColorScheme.android.kt │ │ │ │ ├── EmbeddedChatActivity.kt │ │ │ │ └── RemoteImage.android.kt │ │ ├── followed │ │ │ └── presentation │ │ │ │ └── widget │ │ │ │ ├── FollowedChannelsWidget.kt │ │ │ │ └── FollowedChannelsWidgetReceiver.kt │ │ ├── preferences │ │ │ └── presentation │ │ │ │ ├── AndroidLogRepository.kt │ │ │ │ ├── LogFileProvider.kt │ │ │ │ └── mobile │ │ │ │ └── AndroidAppVersionNameProvider.kt │ │ ├── recent │ │ │ └── presentation │ │ │ │ └── widget │ │ │ │ ├── RecentChannelsWidget.kt │ │ │ │ └── RecentChannelsWidgetReceiver.kt │ │ ├── shared │ │ │ └── presentation │ │ │ │ ├── glance │ │ │ │ ├── GlanceCard.kt │ │ │ │ ├── GlanceUserItem.kt │ │ │ │ ├── GridCellsExt.kt │ │ │ │ └── RadiusExt.kt │ │ │ │ └── mobile │ │ │ │ └── MainActivity.kt │ │ └── timeline │ │ │ └── presentation │ │ │ └── widget │ │ │ ├── LiveWidget.kt │ │ │ └── LiveWidgetReceiver.kt │ │ └── utils │ │ ├── coil │ │ └── ImageLoaderFactory.android.kt │ │ ├── core │ │ └── IntentExt.kt │ │ ├── http │ │ └── AndroidHttpClientProvider.kt │ │ ├── logging │ │ └── AndroidLogStrategy.kt │ │ ├── parcel │ │ └── Parcelable.android.kt │ │ ├── permissions │ │ └── Permissions.android.kt │ │ └── presentation │ │ ├── BubbleExt.android.kt │ │ ├── ColorScheme.android.kt │ │ ├── NumberExt.android.kt │ │ ├── StringUrlExt.android.kt │ │ └── TimeUtils.android.kt └── res │ ├── drawable-anydpi │ └── ic_reply.xml │ ├── drawable │ ├── ic_notif.xml │ └── ic_sync.xml │ ├── values-fr │ └── strings_extra.xml │ ├── values │ ├── dimens.xml │ └── strings_extra.xml │ └── xml │ ├── log_share.xml │ ├── widget_followed.xml │ ├── widget_live.xml │ ├── widget_recent.xml │ └── widget_samsung_info.xml ├── androidUnitTest └── kotlin │ └── fr │ └── outadoc │ └── justchatting │ ├── feature │ └── chat │ │ └── presentation │ │ └── FilterAutocompleteItemsUseCaseTest.kt │ └── util │ └── chat │ └── TwitchIrcCommandParserTest.kt ├── appleMain └── kotlin │ └── fr │ └── outadoc │ └── justchatting │ └── feature │ └── chat │ └── presentation │ └── mobile │ └── DynamicImageColorScheme.apple.kt ├── commonMain ├── composeResources │ ├── files │ │ ├── dependencies-extra.json │ │ └── dependencies.json │ ├── values-fr │ │ ├── plurals.xml │ │ └── strings.xml │ └── values │ │ ├── plurals.xml │ │ └── strings.xml ├── kotlin │ └── fr │ │ └── outadoc │ │ └── justchatting │ │ ├── di │ │ ├── PlatformModule.kt │ │ ├── SharedKoin.kt │ │ └── SharedModule.kt │ │ ├── feature │ │ ├── auth │ │ │ ├── data │ │ │ │ ├── AuthCallbackWebServer.kt │ │ │ │ ├── NoopAuthCallbackWebServer.kt │ │ │ │ ├── TwitchAuthApi.kt │ │ │ │ └── model │ │ │ │ │ └── TwitchAuthValidationResponse.kt │ │ │ └── domain │ │ │ │ ├── AuthApi.kt │ │ │ │ └── model │ │ │ │ ├── AuthValidationResponse.kt │ │ │ │ └── OAuthAppCredentials.kt │ │ ├── chat │ │ │ ├── data │ │ │ │ ├── Defaults.kt │ │ │ │ ├── http │ │ │ │ │ ├── CheerEmote.kt │ │ │ │ │ ├── CheerEmoteExt.kt │ │ │ │ │ ├── CheerEmoteTier.kt │ │ │ │ │ ├── CheerEmotesResponse.kt │ │ │ │ │ ├── Reward.kt │ │ │ │ │ ├── SendMessageResponse.kt │ │ │ │ │ ├── Subscription.kt │ │ │ │ │ ├── TwitchBadgeSet.kt │ │ │ │ │ ├── TwitchBadgeVersion.kt │ │ │ │ │ └── TwitchBadgesResponse.kt │ │ │ │ ├── irc │ │ │ │ │ ├── IrcMessageTagExt.kt │ │ │ │ │ ├── LiveChatWebSocket.kt │ │ │ │ │ ├── LoggedInChatWebSocket.kt │ │ │ │ │ ├── MockChatWebSocket.kt │ │ │ │ │ ├── TwitchIrcCommandParser.kt │ │ │ │ │ ├── parser │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ ├── ICommand.kt │ │ │ │ │ │ │ └── message │ │ │ │ │ │ │ │ ├── IrcMessage.kt │ │ │ │ │ │ │ │ ├── IrcMessageComponents.kt │ │ │ │ │ │ │ │ └── MessageParsing.kt │ │ │ │ │ │ └── irc │ │ │ │ │ │ │ ├── CharacterCodes.kt │ │ │ │ │ │ │ ├── message │ │ │ │ │ │ │ ├── IrcMessageParser.kt │ │ │ │ │ │ │ └── rfc1459 │ │ │ │ │ │ │ │ ├── NoticeMessage.kt │ │ │ │ │ │ │ │ └── PrivMsgMessage.kt │ │ │ │ │ │ │ └── prefix │ │ │ │ │ │ │ ├── IPrefixParser.kt │ │ │ │ │ │ │ ├── Prefix.kt │ │ │ │ │ │ │ └── PrefixParser.kt │ │ │ │ │ └── recent │ │ │ │ │ │ ├── RecentMessagesApi.kt │ │ │ │ │ │ ├── RecentMessagesRepository.kt │ │ │ │ │ │ ├── RecentMessagesResponse.kt │ │ │ │ │ │ └── RecentMessagesServer.kt │ │ │ │ └── pubsub │ │ │ │ │ ├── client │ │ │ │ │ ├── PubSubWebSocket.kt │ │ │ │ │ └── model │ │ │ │ │ │ ├── PubSubClientMessage.kt │ │ │ │ │ │ └── PubSubServerMessage.kt │ │ │ │ │ └── plugin │ │ │ │ │ ├── broadcastsettingsupdate │ │ │ │ │ ├── PubSubBroadcastSettingsMessage.kt │ │ │ │ │ └── PubSubBroadcastSettingsPlugin.kt │ │ │ │ │ ├── channelpoints │ │ │ │ │ ├── PubSubChannelPointsPlugin.kt │ │ │ │ │ └── PubSubRewardMessage.kt │ │ │ │ │ ├── pinnedmessage │ │ │ │ │ ├── PubSubPinnedMessage.kt │ │ │ │ │ ├── PubSubPinnedMessageExt.kt │ │ │ │ │ └── PubSubPinnedMessagePlugin.kt │ │ │ │ │ ├── poll │ │ │ │ │ ├── PubSubPollExt.kt │ │ │ │ │ ├── PubSubPollMessage.kt │ │ │ │ │ └── PubSubPollPlugin.kt │ │ │ │ │ ├── prediction │ │ │ │ │ ├── PubSubPredictionExt.kt │ │ │ │ │ ├── PubSubPredictionMessage.kt │ │ │ │ │ └── PubSubPredictionPlugin.kt │ │ │ │ │ ├── raid │ │ │ │ │ ├── PubSubRaidMessage.kt │ │ │ │ │ ├── PubSubRaidMessageExt.kt │ │ │ │ │ └── PubSubRaidPlugin.kt │ │ │ │ │ ├── richembed │ │ │ │ │ ├── PubSubRichEmbedMessage.kt │ │ │ │ │ └── PubSubRichEmbedPlugin.kt │ │ │ │ │ └── viewercount │ │ │ │ │ ├── PubSubViewerCountMessage.kt │ │ │ │ │ └── PubSubViewerCountPlugin.kt │ │ │ ├── domain │ │ │ │ ├── AggregateChatEventHandler.kt │ │ │ │ ├── ChatRepository.kt │ │ │ │ ├── DefaultChatRepository.kt │ │ │ │ ├── handler │ │ │ │ │ ├── ChatCommandHandlerFactoriesProvider.kt │ │ │ │ │ ├── ChatCommandHandlerFactory.kt │ │ │ │ │ └── ChatEventHandler.kt │ │ │ │ ├── model │ │ │ │ │ ├── Badge.kt │ │ │ │ │ ├── ChatEmote.kt │ │ │ │ │ ├── ChatEvent.kt │ │ │ │ │ ├── ChatListItem.kt │ │ │ │ │ ├── Chatter.kt │ │ │ │ │ ├── ConnectionStatus.kt │ │ │ │ │ ├── Icon.kt │ │ │ │ │ ├── PinnedMessage.kt │ │ │ │ │ ├── Poll.kt │ │ │ │ │ ├── Prediction.kt │ │ │ │ │ ├── Raid.kt │ │ │ │ │ ├── Redemption.kt │ │ │ │ │ ├── Reward.kt │ │ │ │ │ └── TwitchBadge.kt │ │ │ │ └── pubsub │ │ │ │ │ ├── PubSubPlugin.kt │ │ │ │ │ └── PubSubPluginsProvider.kt │ │ │ └── presentation │ │ │ │ ├── AutoCompleteItem.kt │ │ │ │ ├── ChatEventViewMapper.kt │ │ │ │ ├── ChatNotifier.kt │ │ │ │ ├── ChatPrefixConstants.kt │ │ │ │ ├── ChatViewModel.kt │ │ │ │ ├── CoilReducedAnimationTransformation.kt │ │ │ │ ├── CreateShortcutForChannelUseCase.kt │ │ │ │ ├── EmoteUrlsExt.kt │ │ │ │ ├── FilterAutocompleteItemsUseCase.kt │ │ │ │ ├── MessagePostConstraint.kt │ │ │ │ ├── NoopChatNotifier.kt │ │ │ │ ├── NoopCreateShortcutForChannelUseCase.kt │ │ │ │ ├── OngoingEvents.kt │ │ │ │ ├── RoomState.kt │ │ │ │ ├── TestEvents.kt │ │ │ │ ├── UserInfoViewModel.kt │ │ │ │ └── mobile │ │ │ │ ├── AutoCompleteEmoteItem.kt │ │ │ │ ├── AutoCompleteUserItem.kt │ │ │ │ ├── BadgeItem.kt │ │ │ │ ├── BasicUserInfo.kt │ │ │ │ ├── ChannelChatScreen.kt │ │ │ │ ├── ChannelChatScreenContent.kt │ │ │ │ ├── ChatAutoCompleteRow.kt │ │ │ │ ├── ChatEvents.kt │ │ │ │ ├── ChatInlineTextContent.kt │ │ │ │ ├── ChatInput.kt │ │ │ │ ├── ChatList.kt │ │ │ │ ├── ChatListContainer.kt │ │ │ │ ├── ChatListPlaceholder.kt │ │ │ │ ├── ChatMessage.kt │ │ │ │ ├── ChatMessageBody.kt │ │ │ │ ├── ChatRichEmbed.kt │ │ │ │ ├── ChatScreen.kt │ │ │ │ ├── ChatSlowModeProgress.kt │ │ │ │ ├── ChatTopAppBar.kt │ │ │ │ ├── CheerEmoteItem.kt │ │ │ │ ├── DeeplinkExt.kt │ │ │ │ ├── DynamicImageColorScheme.kt │ │ │ │ ├── EmoteGrid.kt │ │ │ │ ├── EmoteHeader.kt │ │ │ │ ├── EmoteItem.kt │ │ │ │ ├── EmotePicker.kt │ │ │ │ ├── ExtraUserInfo.kt │ │ │ │ ├── HighlighedMessageCard.kt │ │ │ │ ├── IconExt.kt │ │ │ │ ├── InReplyToMessage.kt │ │ │ │ ├── MentionStyle.kt │ │ │ │ ├── NoticeMessage.kt │ │ │ │ ├── PinnedMessageCard.kt │ │ │ │ ├── PollCard.kt │ │ │ │ ├── PollChoice.kt │ │ │ │ ├── PredictionCard.kt │ │ │ │ ├── PredictionOutcome.kt │ │ │ │ ├── RaidGoCard.kt │ │ │ │ ├── RaidPrepareCard.kt │ │ │ │ ├── RedactModifier.kt │ │ │ │ ├── RemoteImage.kt │ │ │ │ ├── RoomStateBanner.kt │ │ │ │ ├── SimpleMessage.kt │ │ │ │ ├── SlimSnackbar.kt │ │ │ │ ├── StreamInfo.kt │ │ │ │ ├── SuggestionChip.kt │ │ │ │ ├── TagList.kt │ │ │ │ ├── TimedVisibility.kt │ │ │ │ ├── UserInfoDialog.kt │ │ │ │ ├── UserNoticeMessage.kt │ │ │ │ └── preview │ │ │ │ ├── ChatPreviewProviders.kt │ │ │ │ └── HighlightLevelPreviewProvider.kt │ │ ├── deeplink │ │ │ ├── Deeplink.kt │ │ │ ├── DeeplinkDefinitions.kt │ │ │ └── DeeplinkParser.kt │ │ ├── details │ │ │ └── presentation │ │ │ │ └── ActionBottomSheet.kt │ │ ├── emotes │ │ │ ├── data │ │ │ │ ├── bttv │ │ │ │ │ ├── BttvEmotesApi.kt │ │ │ │ │ ├── BttvEmotesServer.kt │ │ │ │ │ ├── ChannelBttvEmotesSource.kt │ │ │ │ │ ├── ChannelFfzEmotesSource.kt │ │ │ │ │ ├── GlobalBttvEmotesSource.kt │ │ │ │ │ ├── GlobalFfzEmotesSource.kt │ │ │ │ │ └── model │ │ │ │ │ │ ├── BttvChannelResponse.kt │ │ │ │ │ │ ├── BttvEmote.kt │ │ │ │ │ │ ├── BttvEmoteExt.kt │ │ │ │ │ │ ├── FfzEmote.kt │ │ │ │ │ │ └── FfzEmoteExt.kt │ │ │ │ ├── db │ │ │ │ │ └── RecentEmotesDb.kt │ │ │ │ ├── stv │ │ │ │ │ ├── ChannelStvEmotesSource.kt │ │ │ │ │ ├── GlobalStvEmotesSource.kt │ │ │ │ │ ├── StvEmotesApi.kt │ │ │ │ │ ├── StvEmotesServer.kt │ │ │ │ │ └── model │ │ │ │ │ │ ├── StvChannelResponse.kt │ │ │ │ │ │ ├── StvEmote.kt │ │ │ │ │ │ ├── StvEmoteData.kt │ │ │ │ │ │ ├── StvEmoteExt.kt │ │ │ │ │ │ ├── StvEmoteFiles.kt │ │ │ │ │ │ ├── StvEmoteHost.kt │ │ │ │ │ │ └── StvEmoteResponse.kt │ │ │ │ └── twitch │ │ │ │ │ ├── ChannelTwitchEmotesSource.kt │ │ │ │ │ ├── DelegateTwitchEmotesSource.kt │ │ │ │ │ ├── GlobalTwitchEmotesSource.kt │ │ │ │ │ ├── TwitchEmoteExt.kt │ │ │ │ │ └── model │ │ │ │ │ ├── EmoteSetResponse.kt │ │ │ │ │ └── TwitchEmote.kt │ │ │ └── domain │ │ │ │ ├── CachedEmoteListSource.kt │ │ │ │ ├── EmoteListSource.kt │ │ │ │ ├── EmoteListSourcesProvider.kt │ │ │ │ ├── GetRecentEmotesUseCase.kt │ │ │ │ ├── InsertRecentEmotesUseCase.kt │ │ │ │ ├── RecentEmotesApi.kt │ │ │ │ └── model │ │ │ │ ├── Emote.kt │ │ │ │ ├── EmoteSetItem.kt │ │ │ │ ├── EmoteUrls.kt │ │ │ │ └── RecentEmote.kt │ │ ├── followed │ │ │ ├── data │ │ │ │ └── model │ │ │ │ │ ├── ChannelFollow.kt │ │ │ │ │ └── FollowResponse.kt │ │ │ ├── domain │ │ │ │ └── model │ │ │ │ │ └── ChannelFollow.kt │ │ │ └── presentation │ │ │ │ ├── FollowedChannelsViewModel.kt │ │ │ │ └── mobile │ │ │ │ └── FollowedChannelsList.kt │ │ ├── onboarding │ │ │ └── presentation │ │ │ │ └── mobile │ │ │ │ ├── OnboardingScreen.kt │ │ │ │ └── SignInWithTwitchButton.kt │ │ ├── preferences │ │ │ ├── data │ │ │ │ └── DataStorePreferenceRepository.kt │ │ │ ├── domain │ │ │ │ ├── AuthRepository.kt │ │ │ │ ├── PreferenceRepository.kt │ │ │ │ └── model │ │ │ │ │ ├── AppPreferences.kt │ │ │ │ │ └── AppUser.kt │ │ │ └── presentation │ │ │ │ ├── DefaultReadExternalDependenciesList.kt │ │ │ │ ├── Dependency.kt │ │ │ │ ├── DependencyList.kt │ │ │ │ ├── LogRepository.kt │ │ │ │ ├── NoopLogRepository.kt │ │ │ │ ├── NoopReadExternalDependenciesList.kt │ │ │ │ ├── ReadExternalDependenciesList.kt │ │ │ │ ├── SettingsViewModel.kt │ │ │ │ └── mobile │ │ │ │ ├── AppVersionNameProvider.kt │ │ │ │ ├── SettingsConstants.kt │ │ │ │ ├── SettingsContent.kt │ │ │ │ ├── SettingsHeader.kt │ │ │ │ ├── SettingsList.kt │ │ │ │ ├── SettingsSectionAbout.kt │ │ │ │ ├── SettingsSectionAppearance.kt │ │ │ │ ├── SettingsSectionDependencies.kt │ │ │ │ ├── SettingsSectionNotifications.kt │ │ │ │ ├── SettingsSectionThirdParties.kt │ │ │ │ ├── SettingsSlider.kt │ │ │ │ ├── SettingsSwitch.kt │ │ │ │ └── SettingsText.kt │ │ ├── pronouns │ │ │ ├── data │ │ │ │ ├── AlejoPronounsApi.kt │ │ │ │ ├── AlejoPronounsClient.kt │ │ │ │ ├── LocalPronounsDb.kt │ │ │ │ └── model │ │ │ │ │ ├── AlejoPronoun.kt │ │ │ │ │ └── UserPronounResponse.kt │ │ │ └── domain │ │ │ │ ├── LocalPronounsApi.kt │ │ │ │ ├── PronounsApi.kt │ │ │ │ ├── PronounsRepository.kt │ │ │ │ └── model │ │ │ │ ├── Pronoun.kt │ │ │ │ ├── UserPronounIds.kt │ │ │ │ └── UserPronouns.kt │ │ ├── recent │ │ │ └── presentation │ │ │ │ └── RecentChannelsViewModel.kt │ │ ├── search │ │ │ ├── data │ │ │ │ ├── SearchChannelsDataSource.kt │ │ │ │ └── model │ │ │ │ │ ├── ChannelSearch.kt │ │ │ │ │ └── ChannelSearchResponse.kt │ │ │ ├── domain │ │ │ │ └── model │ │ │ │ │ └── ChannelSearchResult.kt │ │ │ └── presentation │ │ │ │ ├── ChannelSearchViewModel.kt │ │ │ │ └── mobile │ │ │ │ ├── SearchBar.kt │ │ │ │ ├── SearchResultsList.kt │ │ │ │ ├── SearchScreen.kt │ │ │ │ └── SearchScreenBar.kt │ │ ├── shared │ │ │ ├── data │ │ │ │ ├── ApiEndpoints.kt │ │ │ │ ├── LocalStreamsDb.kt │ │ │ │ ├── LocalUsersDb.kt │ │ │ │ ├── TwitchApiImpl.kt │ │ │ │ ├── TwitchClient.kt │ │ │ │ ├── TwitchDurationExt.kt │ │ │ │ └── model │ │ │ │ │ ├── Pagination.kt │ │ │ │ │ ├── User.kt │ │ │ │ │ └── UsersResponse.kt │ │ │ ├── domain │ │ │ │ ├── LocalStreamsApi.kt │ │ │ │ ├── LocalUsersApi.kt │ │ │ │ ├── TwitchApi.kt │ │ │ │ ├── TwitchRepository.kt │ │ │ │ ├── TwitchRepositoryImpl.kt │ │ │ │ └── model │ │ │ │ │ ├── MessageNotSentException.kt │ │ │ │ │ ├── Pagination.kt │ │ │ │ │ └── User.kt │ │ │ └── presentation │ │ │ │ ├── DeeplinkReceiver.kt │ │ │ │ ├── LabelChip.kt │ │ │ │ ├── MainRouterViewModel.kt │ │ │ │ └── mobile │ │ │ │ ├── App.kt │ │ │ │ ├── DetailScreen.kt │ │ │ │ ├── DragHandle.kt │ │ │ │ ├── MainNavigation.kt │ │ │ │ ├── MainRouter.kt │ │ │ │ ├── NoContent.kt │ │ │ │ ├── Screen.kt │ │ │ │ ├── StreamTagChip.kt │ │ │ │ ├── SwipeActionBox.kt │ │ │ │ ├── ThreePaneScaffoldPredictiveBackHandler.kt │ │ │ │ ├── UserItem.kt │ │ │ │ ├── UserItemCardPlaceholder.kt │ │ │ │ └── placeholder │ │ │ │ ├── core │ │ │ │ ├── Placeholder.kt │ │ │ │ └── PlaceholderHighlight.kt │ │ │ │ └── material3 │ │ │ │ ├── Placeholder.kt │ │ │ │ └── PlaceholderHighlight.kt │ │ └── timeline │ │ │ ├── data │ │ │ └── model │ │ │ │ ├── ChannelSchedule.kt │ │ │ │ ├── ChannelScheduleResponse.kt │ │ │ │ ├── ChannelScheduleSegment.kt │ │ │ │ ├── ChannelScheduleVacation.kt │ │ │ │ ├── Stream.kt │ │ │ │ ├── StreamCategory.kt │ │ │ │ ├── StreamsResponse.kt │ │ │ │ ├── Video.kt │ │ │ │ └── VideoResponse.kt │ │ │ ├── domain │ │ │ ├── TimelineConfig.kt │ │ │ └── model │ │ │ │ ├── ChannelScheduleSegment.kt │ │ │ │ ├── FullSchedule.kt │ │ │ │ ├── Stream.kt │ │ │ │ ├── StreamCategory.kt │ │ │ │ ├── UserStream.kt │ │ │ │ └── Video.kt │ │ │ └── presentation │ │ │ ├── FutureTimelineViewModel.kt │ │ │ ├── LiveTimelineViewModel.kt │ │ │ └── mobile │ │ │ ├── ContextualButton.kt │ │ │ ├── FutureTimelineContent.kt │ │ │ ├── FutureTimelineScreen.kt │ │ │ ├── FutureTimelineSegment.kt │ │ │ ├── LiveDetailsDialog.kt │ │ │ ├── LiveIndicator.kt │ │ │ ├── LiveStream.kt │ │ │ ├── LiveTimelineContent.kt │ │ │ ├── LiveTimelineScreen.kt │ │ │ ├── LiveTimelineSegment.kt │ │ │ ├── PastTimelineSegment.kt │ │ │ ├── TimelineSegmentContent.kt │ │ │ └── TimelineSegmentDetails.kt │ │ ├── shared │ │ └── presentation │ │ │ └── icons │ │ │ ├── AppIcon.kt │ │ │ └── TwitchIcon.kt │ │ └── utils │ │ ├── coil │ │ ├── CoilCustomLogger.kt │ │ └── ImageLoaderFactory.kt │ │ ├── core │ │ ├── ConnectivityNetworkStateObserver.kt │ │ ├── CoroutinesExt.kt │ │ ├── DispatchersProvider.kt │ │ ├── InstantUnixEpochSerializer.kt │ │ ├── JsonExt.kt │ │ ├── ListExt.kt │ │ ├── MapExt.kt │ │ ├── NetworkStateObserver.kt │ │ ├── NumberOddnessExt.kt │ │ └── TwitchExt.kt │ │ ├── http │ │ ├── BaseHttpClientProvider.kt │ │ ├── FrameLogger.kt │ │ ├── TwitchHttpClientProvider.kt │ │ └── UriExt.kt │ │ ├── koin │ │ └── KoinCustomLogger.kt │ │ ├── logging │ │ ├── LogStrategy.kt │ │ ├── Logger.kt │ │ ├── LoggerExt.kt │ │ └── NoopLogStrategy.kt │ │ ├── parcel │ │ ├── Parcelable.kt │ │ └── Parcelize.kt │ │ ├── permissions │ │ └── Permissions.kt │ │ ├── presentation │ │ ├── AccessibleIconButton.kt │ │ ├── AppTheme.kt │ │ ├── BubbleExt.kt │ │ ├── ColorAccessibility.kt │ │ ├── ColorExt.kt │ │ ├── ColorScheme.kt │ │ ├── ColorSchemeExt.kt │ │ ├── CommonColorUtils.kt │ │ ├── CommonTimeExt.kt │ │ ├── CustomColors.kt │ │ ├── NumberExt.kt │ │ ├── OnLifecycleEvent.kt │ │ ├── PaddingValuesExt.kt │ │ ├── StringUrlExt.kt │ │ └── TimeUtils.kt │ │ └── resources │ │ └── StringDesc.kt └── sqldelight │ ├── fr │ └── outadoc │ │ └── justchatting │ │ └── data │ │ └── db │ │ ├── Pronoun.sq │ │ ├── RecentEmote.sq │ │ ├── Stream.sq │ │ └── User.sq │ └── migrations │ ├── 1.db │ ├── 1.sqm │ ├── 2.sqm │ ├── 3.sqm │ ├── 4.sqm │ ├── 5.sqm │ ├── 6.sqm │ ├── 7.sqm │ └── 8.sqm ├── desktopMain ├── composeResources │ └── drawable │ │ └── icon_masked.xml └── kotlin │ └── fr │ └── outadoc │ └── justchatting │ ├── AppInfo.kt │ ├── MainWindow.kt │ ├── WithScaling.kt │ ├── di │ └── PlatformModule.desktop.kt │ ├── feature │ ├── auth │ │ └── data │ │ │ └── KtorAuthCallbackWebServer.kt │ ├── chat │ │ └── presentation │ │ │ └── mobile │ │ │ ├── DynamicImageColorScheme.desktop.kt │ │ │ └── RemoteImage.desktop.kt │ └── preferences │ │ └── presentation │ │ └── mobile │ │ └── DesktopAppVersionNameProvider.kt │ └── utils │ ├── coil │ └── ImageLoaderFactory.desktop.kt │ ├── http │ └── DesktopHttpClientProvider.kt │ ├── logging │ └── JvmLogStrategy.kt │ ├── parcel │ └── Parcelable.desktop.kt │ ├── permissions │ └── Permissions.desktop.kt │ └── presentation │ ├── BubbleExt.desktop.kt │ ├── ColorScheme.desktop.kt │ ├── NumberExt.desktop.kt │ ├── StringUrlExt.desktop.kt │ └── TimeUtils.desktop.kt ├── iosMain └── kotlin │ └── fr │ └── outadoc │ └── justchatting │ ├── data │ └── db │ │ └── AppDatabaseProvider.kt │ ├── di │ └── PlatformModule.ios.kt │ ├── feature │ ├── chat │ │ └── presentation │ │ │ └── mobile │ │ │ └── RemoteImage.ios.kt │ ├── preferences │ │ └── presentation │ │ │ └── mobile │ │ │ └── AppleAppVersionNameProvider.kt │ └── shared │ │ └── presentation │ │ ├── DeeplinkReceiverHelper.kt │ │ └── MainViewController.kt │ └── utils │ ├── coil │ └── ImageLoaderFactory.ios.kt │ ├── http │ └── AppleHttpClientProvider.kt │ ├── logging │ └── AppleLogStrategy.kt │ ├── parcel │ └── Parcelable.ios.kt │ ├── permissions │ └── Permissions.ios.kt │ └── presentation │ ├── BubbleExt.ios.kt │ ├── ColorScheme.ios.kt │ ├── NumberExt.ios.kt │ ├── StringUrlExt.ios.kt │ └── TimeUtils.ios.kt └── skiaMain └── kotlin └── fr └── outadoc └── justchatting └── utils └── coil └── AnimatedSkiaImageDecoder.kt /.github/workflows/android-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/.github/workflows/android-build.yml -------------------------------------------------------------------------------- /.github/workflows/check-formatting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/.github/workflows/check-formatting.yml -------------------------------------------------------------------------------- /.github/workflows/check-migrations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/.github/workflows/check-migrations.yml -------------------------------------------------------------------------------- /.github/workflows/create-release-tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/.github/workflows/create-release-tag.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/desktop-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/.github/workflows/desktop-build.yml -------------------------------------------------------------------------------- /.github/workflows/ios-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/.github/workflows/ios-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/.gitignore -------------------------------------------------------------------------------- /.run/just-chatting [spotlessApply].run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/.run/just-chatting [spotlessApply].run.xml -------------------------------------------------------------------------------- /.run/just-chatting [test].run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/.run/just-chatting [test].run.xml -------------------------------------------------------------------------------- /.run/just-chatting_app-desktop [run].run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/.run/just-chatting_app-desktop [run].run.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/README.md -------------------------------------------------------------------------------- /app-android/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app-android/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-android/build.gradle.kts -------------------------------------------------------------------------------- /app-android/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-android/google-services.json -------------------------------------------------------------------------------- /app-android/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-android/proguard-rules.pro -------------------------------------------------------------------------------- /app-android/src/androidDebug/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-android/src/androidDebug/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app-android/src/androidDebug/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-android/src/androidDebug/res/values/strings.xml -------------------------------------------------------------------------------- /app-android/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-android/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /app-android/src/androidMain/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-android/src/androidMain/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app-android/src/androidMain/kotlin/fr/outadoc/justchatting/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-android/src/androidMain/kotlin/fr/outadoc/justchatting/MainApplication.kt -------------------------------------------------------------------------------- /app-android/src/androidMain/play_feature_graphic.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-android/src/androidMain/play_feature_graphic.xcf -------------------------------------------------------------------------------- /app-android/src/androidMain/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-android/src/androidMain/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app-android/src/androidMain/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-android/src/androidMain/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app-android/src/androidMain/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-android/src/androidMain/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app-android/src/androidMain/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-android/src/androidMain/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app-android/src/androidMain/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-android/src/androidMain/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app-android/src/androidMain/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-android/src/androidMain/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app-android/src/androidMain/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-android/src/androidMain/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app-android/src/androidMain/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-android/src/androidMain/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app-android/src/androidMain/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-android/src/androidMain/res/values-night/styles.xml -------------------------------------------------------------------------------- /app-android/src/androidMain/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-android/src/androidMain/res/values/colors.xml -------------------------------------------------------------------------------- /app-android/src/androidMain/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-android/src/androidMain/res/values/strings.xml -------------------------------------------------------------------------------- /app-android/src/androidMain/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-android/src/androidMain/res/values/styles.xml -------------------------------------------------------------------------------- /app-android/src/androidMain/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-android/src/androidMain/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /app-android/src/androidMain/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-android/src/androidMain/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /app-desktop/assets/icon_linux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-desktop/assets/icon_linux.svg -------------------------------------------------------------------------------- /app-desktop/assets/icon_macos.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-desktop/assets/icon_macos.icns -------------------------------------------------------------------------------- /app-desktop/assets/icon_windows.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-desktop/assets/icon_windows.ico -------------------------------------------------------------------------------- /app-desktop/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-desktop/build.gradle.kts -------------------------------------------------------------------------------- /app-desktop/compose-desktop.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-desktop/compose-desktop.pro -------------------------------------------------------------------------------- /app-desktop/flatpak/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-desktop/flatpak/.gitignore -------------------------------------------------------------------------------- /app-desktop/flatpak/fr.outadoc.justchatting.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-desktop/flatpak/fr.outadoc.justchatting.desktop -------------------------------------------------------------------------------- /app-desktop/flatpak/fr.outadoc.justchatting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-desktop/flatpak/fr.outadoc.justchatting.yml -------------------------------------------------------------------------------- /app-desktop/src/main/kotlin/fr/outadoc/justchatting/Main.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-desktop/src/main/kotlin/fr/outadoc/justchatting/Main.kt -------------------------------------------------------------------------------- /app-ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-ios/.gitignore -------------------------------------------------------------------------------- /app-ios/.mise.toml: -------------------------------------------------------------------------------- 1 | [tools] 2 | tuist = "4.112.0" 3 | -------------------------------------------------------------------------------- /app-ios/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane" 4 | -------------------------------------------------------------------------------- /app-ios/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-ios/Gemfile.lock -------------------------------------------------------------------------------- /app-ios/JustChatting/Resources/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-ios/JustChatting/Resources/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /app-ios/JustChatting/Resources/Assets.xcassets/AppIcon.appiconset/1024 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-ios/JustChatting/Resources/Assets.xcassets/AppIcon.appiconset/1024 1.png -------------------------------------------------------------------------------- /app-ios/JustChatting/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-ios/JustChatting/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /app-ios/JustChatting/Resources/Assets.xcassets/AppIcon.appiconset/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-ios/JustChatting/Resources/Assets.xcassets/AppIcon.appiconset/dark.png -------------------------------------------------------------------------------- /app-ios/JustChatting/Resources/Assets.xcassets/AppIcon.appiconset/icon_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-ios/JustChatting/Resources/Assets.xcassets/AppIcon.appiconset/icon_monochrome.png -------------------------------------------------------------------------------- /app-ios/JustChatting/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-ios/JustChatting/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /app-ios/JustChatting/Resources/Assets.xcassets/LogoForeground.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-ios/JustChatting/Resources/Assets.xcassets/LogoForeground.imageset/Contents.json -------------------------------------------------------------------------------- /app-ios/JustChatting/Resources/Assets.xcassets/LogoForeground.imageset/LogoForeground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-ios/JustChatting/Resources/Assets.xcassets/LogoForeground.imageset/LogoForeground.png -------------------------------------------------------------------------------- /app-ios/JustChatting/Resources/Assets.xcassets/LogoForeground.imageset/LogoForeground@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-ios/JustChatting/Resources/Assets.xcassets/LogoForeground.imageset/LogoForeground@2x.png -------------------------------------------------------------------------------- /app-ios/JustChatting/Resources/Assets.xcassets/LogoForeground.imageset/LogoForeground@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-ios/JustChatting/Resources/Assets.xcassets/LogoForeground.imageset/LogoForeground@3x.png -------------------------------------------------------------------------------- /app-ios/JustChatting/Resources/Launch Screen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-ios/JustChatting/Resources/Launch Screen.storyboard -------------------------------------------------------------------------------- /app-ios/JustChatting/Sources/ComposeBridgeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-ios/JustChatting/Sources/ComposeBridgeView.swift -------------------------------------------------------------------------------- /app-ios/JustChatting/Sources/MainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-ios/JustChatting/Sources/MainView.swift -------------------------------------------------------------------------------- /app-ios/JustChatting/Sources/iOSApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-ios/JustChatting/Sources/iOSApp.swift -------------------------------------------------------------------------------- /app-ios/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-ios/Project.swift -------------------------------------------------------------------------------- /app-ios/Tuist.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-ios/Tuist.swift -------------------------------------------------------------------------------- /app-ios/fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-ios/fastlane/Appfile -------------------------------------------------------------------------------- /app-ios/fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-ios/fastlane/Fastfile -------------------------------------------------------------------------------- /app-ios/fastlane/Matchfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/app-ios/fastlane/Matchfile -------------------------------------------------------------------------------- /assets/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/assets/icon.svg -------------------------------------------------------------------------------- /assets/icon_apple.icon/Assets/icon_monochrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/assets/icon_apple.icon/Assets/icon_monochrome.svg -------------------------------------------------------------------------------- /assets/icon_apple.icon/icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/assets/icon_apple.icon/icon.json -------------------------------------------------------------------------------- /assets/icon_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/assets/icon_dark.svg -------------------------------------------------------------------------------- /assets/icon_masked.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/assets/icon_masked.svg -------------------------------------------------------------------------------- /assets/icon_monochrome.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/assets/icon_monochrome.svg -------------------------------------------------------------------------------- /assets/screenshots/android/chat-recording.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/assets/screenshots/android/chat-recording.mp4 -------------------------------------------------------------------------------- /assets/screenshots/ios/ipad-static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/assets/screenshots/ios/ipad-static.png -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/gradlew.bat -------------------------------------------------------------------------------- /keystores/debug.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/keystores/debug.p12 -------------------------------------------------------------------------------- /keystores/release.p12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/keystores/release.p12 -------------------------------------------------------------------------------- /konsist-checks/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /konsist-checks/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/konsist-checks/build.gradle.kts -------------------------------------------------------------------------------- /konsist-checks/src/test/kotlin/fr/outadoc/justchatting/ArchitectureTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/konsist-checks/src/test/kotlin/fr/outadoc/justchatting/ArchitectureTest.kt -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/renovate.json -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /shared/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /shared/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/build.gradle.kts -------------------------------------------------------------------------------- /shared/consumer-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/consumer-rules.pro -------------------------------------------------------------------------------- /shared/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/fr/outadoc/justchatting/di/KoinInitializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/kotlin/fr/outadoc/justchatting/di/KoinInitializer.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/fr/outadoc/justchatting/di/PlatformModule.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/kotlin/fr/outadoc/justchatting/di/PlatformModule.android.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/ChatConnectionService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/ChatConnectionService.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/UserExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/UserExt.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/UserProfileImageContentProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/UserProfileImageContentProvider.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/AndroidChatNotifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/AndroidChatNotifier.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/AndroidCreateShortcutForChannelUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/AndroidCreateShortcutForChannelUseCase.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/DynamicImageColorScheme.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/DynamicImageColorScheme.android.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/EmbeddedChatActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/EmbeddedChatActivity.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/RemoteImage.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/RemoteImage.android.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/followed/presentation/widget/FollowedChannelsWidget.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/followed/presentation/widget/FollowedChannelsWidget.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/followed/presentation/widget/FollowedChannelsWidgetReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/followed/presentation/widget/FollowedChannelsWidgetReceiver.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/AndroidLogRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/AndroidLogRepository.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/LogFileProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/LogFileProvider.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/mobile/AndroidAppVersionNameProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/mobile/AndroidAppVersionNameProvider.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/recent/presentation/widget/RecentChannelsWidget.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/recent/presentation/widget/RecentChannelsWidget.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/recent/presentation/widget/RecentChannelsWidgetReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/recent/presentation/widget/RecentChannelsWidgetReceiver.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/glance/GlanceCard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/glance/GlanceCard.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/glance/GlanceUserItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/glance/GlanceUserItem.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/glance/GridCellsExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/glance/GridCellsExt.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/glance/RadiusExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/glance/RadiusExt.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/mobile/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/mobile/MainActivity.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/timeline/presentation/widget/LiveWidget.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/timeline/presentation/widget/LiveWidget.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/timeline/presentation/widget/LiveWidgetReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/kotlin/fr/outadoc/justchatting/feature/timeline/presentation/widget/LiveWidgetReceiver.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/fr/outadoc/justchatting/utils/coil/ImageLoaderFactory.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/kotlin/fr/outadoc/justchatting/utils/coil/ImageLoaderFactory.android.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/fr/outadoc/justchatting/utils/core/IntentExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/kotlin/fr/outadoc/justchatting/utils/core/IntentExt.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/fr/outadoc/justchatting/utils/http/AndroidHttpClientProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/kotlin/fr/outadoc/justchatting/utils/http/AndroidHttpClientProvider.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/fr/outadoc/justchatting/utils/logging/AndroidLogStrategy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/kotlin/fr/outadoc/justchatting/utils/logging/AndroidLogStrategy.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/fr/outadoc/justchatting/utils/parcel/Parcelable.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/kotlin/fr/outadoc/justchatting/utils/parcel/Parcelable.android.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/fr/outadoc/justchatting/utils/permissions/Permissions.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/kotlin/fr/outadoc/justchatting/utils/permissions/Permissions.android.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/fr/outadoc/justchatting/utils/presentation/BubbleExt.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/kotlin/fr/outadoc/justchatting/utils/presentation/BubbleExt.android.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/fr/outadoc/justchatting/utils/presentation/ColorScheme.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/kotlin/fr/outadoc/justchatting/utils/presentation/ColorScheme.android.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/fr/outadoc/justchatting/utils/presentation/NumberExt.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/kotlin/fr/outadoc/justchatting/utils/presentation/NumberExt.android.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/fr/outadoc/justchatting/utils/presentation/StringUrlExt.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/kotlin/fr/outadoc/justchatting/utils/presentation/StringUrlExt.android.kt -------------------------------------------------------------------------------- /shared/src/androidMain/kotlin/fr/outadoc/justchatting/utils/presentation/TimeUtils.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/kotlin/fr/outadoc/justchatting/utils/presentation/TimeUtils.android.kt -------------------------------------------------------------------------------- /shared/src/androidMain/res/drawable-anydpi/ic_reply.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/res/drawable-anydpi/ic_reply.xml -------------------------------------------------------------------------------- /shared/src/androidMain/res/drawable/ic_notif.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/res/drawable/ic_notif.xml -------------------------------------------------------------------------------- /shared/src/androidMain/res/drawable/ic_sync.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/res/drawable/ic_sync.xml -------------------------------------------------------------------------------- /shared/src/androidMain/res/values-fr/strings_extra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/res/values-fr/strings_extra.xml -------------------------------------------------------------------------------- /shared/src/androidMain/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/res/values/dimens.xml -------------------------------------------------------------------------------- /shared/src/androidMain/res/values/strings_extra.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/res/values/strings_extra.xml -------------------------------------------------------------------------------- /shared/src/androidMain/res/xml/log_share.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/res/xml/log_share.xml -------------------------------------------------------------------------------- /shared/src/androidMain/res/xml/widget_followed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/res/xml/widget_followed.xml -------------------------------------------------------------------------------- /shared/src/androidMain/res/xml/widget_live.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/res/xml/widget_live.xml -------------------------------------------------------------------------------- /shared/src/androidMain/res/xml/widget_recent.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/res/xml/widget_recent.xml -------------------------------------------------------------------------------- /shared/src/androidMain/res/xml/widget_samsung_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidMain/res/xml/widget_samsung_info.xml -------------------------------------------------------------------------------- /shared/src/androidUnitTest/kotlin/fr/outadoc/justchatting/feature/chat/presentation/FilterAutocompleteItemsUseCaseTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidUnitTest/kotlin/fr/outadoc/justchatting/feature/chat/presentation/FilterAutocompleteItemsUseCaseTest.kt -------------------------------------------------------------------------------- /shared/src/androidUnitTest/kotlin/fr/outadoc/justchatting/util/chat/TwitchIrcCommandParserTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/androidUnitTest/kotlin/fr/outadoc/justchatting/util/chat/TwitchIrcCommandParserTest.kt -------------------------------------------------------------------------------- /shared/src/appleMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/DynamicImageColorScheme.apple.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/appleMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/DynamicImageColorScheme.apple.kt -------------------------------------------------------------------------------- /shared/src/commonMain/composeResources/files/dependencies-extra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/composeResources/files/dependencies-extra.json -------------------------------------------------------------------------------- /shared/src/commonMain/composeResources/files/dependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/composeResources/files/dependencies.json -------------------------------------------------------------------------------- /shared/src/commonMain/composeResources/values-fr/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/composeResources/values-fr/plurals.xml -------------------------------------------------------------------------------- /shared/src/commonMain/composeResources/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/composeResources/values-fr/strings.xml -------------------------------------------------------------------------------- /shared/src/commonMain/composeResources/values/plurals.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/composeResources/values/plurals.xml -------------------------------------------------------------------------------- /shared/src/commonMain/composeResources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/composeResources/values/strings.xml -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/di/PlatformModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/di/PlatformModule.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/di/SharedKoin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/di/SharedKoin.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/di/SharedModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/di/SharedModule.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/auth/data/AuthCallbackWebServer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/auth/data/AuthCallbackWebServer.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/auth/data/NoopAuthCallbackWebServer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/auth/data/NoopAuthCallbackWebServer.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/auth/data/TwitchAuthApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/auth/data/TwitchAuthApi.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/auth/data/model/TwitchAuthValidationResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/auth/data/model/TwitchAuthValidationResponse.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/auth/domain/AuthApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/auth/domain/AuthApi.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/auth/domain/model/AuthValidationResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/auth/domain/model/AuthValidationResponse.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/auth/domain/model/OAuthAppCredentials.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/auth/domain/model/OAuthAppCredentials.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/Defaults.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/Defaults.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/http/CheerEmote.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/http/CheerEmote.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/http/CheerEmoteExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/http/CheerEmoteExt.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/http/CheerEmoteTier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/http/CheerEmoteTier.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/http/CheerEmotesResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/http/CheerEmotesResponse.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/http/Reward.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/http/Reward.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/http/SendMessageResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/http/SendMessageResponse.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/http/Subscription.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/http/Subscription.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/http/TwitchBadgeSet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/http/TwitchBadgeSet.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/http/TwitchBadgeVersion.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/http/TwitchBadgeVersion.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/http/TwitchBadgesResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/http/TwitchBadgesResponse.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/irc/IrcMessageTagExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/irc/IrcMessageTagExt.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/irc/LiveChatWebSocket.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/irc/LiveChatWebSocket.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/irc/LoggedInChatWebSocket.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/irc/LoggedInChatWebSocket.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/irc/MockChatWebSocket.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/irc/MockChatWebSocket.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/irc/TwitchIrcCommandParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/irc/TwitchIrcCommandParser.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/irc/parser/core/ICommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/irc/parser/core/ICommand.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/irc/parser/core/message/IrcMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/irc/parser/core/message/IrcMessage.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/irc/parser/core/message/IrcMessageComponents.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/irc/parser/core/message/IrcMessageComponents.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/irc/parser/core/message/MessageParsing.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/irc/parser/core/message/MessageParsing.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/irc/parser/irc/CharacterCodes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/irc/parser/irc/CharacterCodes.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/irc/parser/irc/message/IrcMessageParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/irc/parser/irc/message/IrcMessageParser.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/irc/parser/irc/message/rfc1459/NoticeMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/irc/parser/irc/message/rfc1459/NoticeMessage.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/irc/parser/irc/message/rfc1459/PrivMsgMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/irc/parser/irc/message/rfc1459/PrivMsgMessage.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/irc/parser/irc/prefix/IPrefixParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/irc/parser/irc/prefix/IPrefixParser.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/irc/parser/irc/prefix/Prefix.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/irc/parser/irc/prefix/Prefix.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/irc/parser/irc/prefix/PrefixParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/irc/parser/irc/prefix/PrefixParser.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/irc/recent/RecentMessagesApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/irc/recent/RecentMessagesApi.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/irc/recent/RecentMessagesRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/irc/recent/RecentMessagesRepository.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/irc/recent/RecentMessagesResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/irc/recent/RecentMessagesResponse.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/irc/recent/RecentMessagesServer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/irc/recent/RecentMessagesServer.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/client/PubSubWebSocket.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/client/PubSubWebSocket.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/client/model/PubSubClientMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/client/model/PubSubClientMessage.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/client/model/PubSubServerMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/client/model/PubSubServerMessage.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/plugin/broadcastsettingsupdate/PubSubBroadcastSettingsMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/plugin/broadcastsettingsupdate/PubSubBroadcastSettingsMessage.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/plugin/broadcastsettingsupdate/PubSubBroadcastSettingsPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/plugin/broadcastsettingsupdate/PubSubBroadcastSettingsPlugin.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/plugin/channelpoints/PubSubChannelPointsPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/plugin/channelpoints/PubSubChannelPointsPlugin.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/plugin/channelpoints/PubSubRewardMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/plugin/channelpoints/PubSubRewardMessage.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/plugin/pinnedmessage/PubSubPinnedMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/plugin/pinnedmessage/PubSubPinnedMessage.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/plugin/pinnedmessage/PubSubPinnedMessageExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/plugin/pinnedmessage/PubSubPinnedMessageExt.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/plugin/pinnedmessage/PubSubPinnedMessagePlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/plugin/pinnedmessage/PubSubPinnedMessagePlugin.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/plugin/poll/PubSubPollExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/plugin/poll/PubSubPollExt.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/plugin/poll/PubSubPollMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/plugin/poll/PubSubPollMessage.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/plugin/poll/PubSubPollPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/plugin/poll/PubSubPollPlugin.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/plugin/prediction/PubSubPredictionExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/plugin/prediction/PubSubPredictionExt.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/plugin/prediction/PubSubPredictionMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/plugin/prediction/PubSubPredictionMessage.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/plugin/prediction/PubSubPredictionPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/plugin/prediction/PubSubPredictionPlugin.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/plugin/raid/PubSubRaidMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/plugin/raid/PubSubRaidMessage.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/plugin/raid/PubSubRaidMessageExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/plugin/raid/PubSubRaidMessageExt.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/plugin/raid/PubSubRaidPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/plugin/raid/PubSubRaidPlugin.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/plugin/richembed/PubSubRichEmbedMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/plugin/richembed/PubSubRichEmbedMessage.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/plugin/richembed/PubSubRichEmbedPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/plugin/richembed/PubSubRichEmbedPlugin.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/plugin/viewercount/PubSubViewerCountMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/plugin/viewercount/PubSubViewerCountMessage.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/plugin/viewercount/PubSubViewerCountPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/data/pubsub/plugin/viewercount/PubSubViewerCountPlugin.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/AggregateChatEventHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/AggregateChatEventHandler.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/ChatRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/ChatRepository.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/DefaultChatRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/DefaultChatRepository.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/handler/ChatCommandHandlerFactoriesProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/handler/ChatCommandHandlerFactoriesProvider.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/handler/ChatCommandHandlerFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/handler/ChatCommandHandlerFactory.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/handler/ChatEventHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/handler/ChatEventHandler.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/model/Badge.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/model/Badge.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/model/ChatEmote.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/model/ChatEmote.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/model/ChatEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/model/ChatEvent.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/model/ChatListItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/model/ChatListItem.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/model/Chatter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/model/Chatter.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/model/ConnectionStatus.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/model/ConnectionStatus.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/model/Icon.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/model/Icon.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/model/PinnedMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/model/PinnedMessage.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/model/Poll.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/model/Poll.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/model/Prediction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/model/Prediction.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/model/Raid.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/model/Raid.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/model/Redemption.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/model/Redemption.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/model/Reward.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/model/Reward.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/model/TwitchBadge.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/model/TwitchBadge.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/pubsub/PubSubPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/pubsub/PubSubPlugin.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/pubsub/PubSubPluginsProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/domain/pubsub/PubSubPluginsProvider.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/AutoCompleteItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/AutoCompleteItem.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/ChatEventViewMapper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/ChatEventViewMapper.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/ChatNotifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/ChatNotifier.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/ChatPrefixConstants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/ChatPrefixConstants.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/ChatViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/ChatViewModel.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/CoilReducedAnimationTransformation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/CoilReducedAnimationTransformation.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/CreateShortcutForChannelUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/CreateShortcutForChannelUseCase.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/EmoteUrlsExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/EmoteUrlsExt.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/FilterAutocompleteItemsUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/FilterAutocompleteItemsUseCase.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/MessagePostConstraint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/MessagePostConstraint.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/NoopChatNotifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/NoopChatNotifier.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/NoopCreateShortcutForChannelUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/NoopCreateShortcutForChannelUseCase.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/OngoingEvents.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/OngoingEvents.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/RoomState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/RoomState.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/TestEvents.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/TestEvents.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/UserInfoViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/UserInfoViewModel.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/AutoCompleteEmoteItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/AutoCompleteEmoteItem.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/AutoCompleteUserItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/AutoCompleteUserItem.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/BadgeItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/BadgeItem.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/BasicUserInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/BasicUserInfo.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/ChannelChatScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/ChannelChatScreen.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/ChannelChatScreenContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/ChannelChatScreenContent.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/ChatAutoCompleteRow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/ChatAutoCompleteRow.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/ChatEvents.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/ChatEvents.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/ChatInlineTextContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/ChatInlineTextContent.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/ChatInput.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/ChatInput.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/ChatList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/ChatList.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/ChatListContainer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/ChatListContainer.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/ChatListPlaceholder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/ChatListPlaceholder.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/ChatMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/ChatMessage.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/ChatMessageBody.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/ChatMessageBody.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/ChatRichEmbed.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/ChatRichEmbed.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/ChatScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/ChatScreen.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/ChatSlowModeProgress.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/ChatSlowModeProgress.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/ChatTopAppBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/ChatTopAppBar.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/CheerEmoteItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/CheerEmoteItem.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/DeeplinkExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/DeeplinkExt.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/DynamicImageColorScheme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/DynamicImageColorScheme.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/EmoteGrid.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/EmoteGrid.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/EmoteHeader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/EmoteHeader.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/EmoteItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/EmoteItem.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/EmotePicker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/EmotePicker.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/ExtraUserInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/ExtraUserInfo.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/HighlighedMessageCard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/HighlighedMessageCard.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/IconExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/IconExt.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/InReplyToMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/InReplyToMessage.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/MentionStyle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/MentionStyle.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/NoticeMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/NoticeMessage.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/PinnedMessageCard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/PinnedMessageCard.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/PollCard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/PollCard.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/PollChoice.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/PollChoice.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/PredictionCard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/PredictionCard.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/PredictionOutcome.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/PredictionOutcome.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/RaidGoCard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/RaidGoCard.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/RaidPrepareCard.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/RaidPrepareCard.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/RedactModifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/RedactModifier.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/RemoteImage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/RemoteImage.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/RoomStateBanner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/RoomStateBanner.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/SimpleMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/SimpleMessage.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/SlimSnackbar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/SlimSnackbar.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/StreamInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/StreamInfo.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/SuggestionChip.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/SuggestionChip.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/TagList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/TagList.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/TimedVisibility.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/TimedVisibility.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/UserInfoDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/UserInfoDialog.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/UserNoticeMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/UserNoticeMessage.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/preview/ChatPreviewProviders.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/preview/ChatPreviewProviders.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/preview/HighlightLevelPreviewProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/preview/HighlightLevelPreviewProvider.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/deeplink/Deeplink.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/deeplink/Deeplink.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/deeplink/DeeplinkDefinitions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/deeplink/DeeplinkDefinitions.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/deeplink/DeeplinkParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/deeplink/DeeplinkParser.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/details/presentation/ActionBottomSheet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/details/presentation/ActionBottomSheet.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/bttv/BttvEmotesApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/bttv/BttvEmotesApi.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/bttv/BttvEmotesServer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/bttv/BttvEmotesServer.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/bttv/ChannelBttvEmotesSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/bttv/ChannelBttvEmotesSource.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/bttv/ChannelFfzEmotesSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/bttv/ChannelFfzEmotesSource.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/bttv/GlobalBttvEmotesSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/bttv/GlobalBttvEmotesSource.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/bttv/GlobalFfzEmotesSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/bttv/GlobalFfzEmotesSource.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/bttv/model/BttvChannelResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/bttv/model/BttvChannelResponse.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/bttv/model/BttvEmote.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/bttv/model/BttvEmote.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/bttv/model/BttvEmoteExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/bttv/model/BttvEmoteExt.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/bttv/model/FfzEmote.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/bttv/model/FfzEmote.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/bttv/model/FfzEmoteExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/bttv/model/FfzEmoteExt.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/db/RecentEmotesDb.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/db/RecentEmotesDb.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/stv/ChannelStvEmotesSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/stv/ChannelStvEmotesSource.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/stv/GlobalStvEmotesSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/stv/GlobalStvEmotesSource.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/stv/StvEmotesApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/stv/StvEmotesApi.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/stv/StvEmotesServer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/stv/StvEmotesServer.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/stv/model/StvChannelResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/stv/model/StvChannelResponse.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/stv/model/StvEmote.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/stv/model/StvEmote.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/stv/model/StvEmoteData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/stv/model/StvEmoteData.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/stv/model/StvEmoteExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/stv/model/StvEmoteExt.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/stv/model/StvEmoteFiles.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/stv/model/StvEmoteFiles.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/stv/model/StvEmoteHost.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/stv/model/StvEmoteHost.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/stv/model/StvEmoteResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/stv/model/StvEmoteResponse.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/twitch/ChannelTwitchEmotesSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/twitch/ChannelTwitchEmotesSource.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/twitch/DelegateTwitchEmotesSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/twitch/DelegateTwitchEmotesSource.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/twitch/GlobalTwitchEmotesSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/twitch/GlobalTwitchEmotesSource.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/twitch/TwitchEmoteExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/twitch/TwitchEmoteExt.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/twitch/model/EmoteSetResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/twitch/model/EmoteSetResponse.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/twitch/model/TwitchEmote.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/data/twitch/model/TwitchEmote.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/domain/CachedEmoteListSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/domain/CachedEmoteListSource.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/domain/EmoteListSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/domain/EmoteListSource.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/domain/EmoteListSourcesProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/domain/EmoteListSourcesProvider.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/domain/GetRecentEmotesUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/domain/GetRecentEmotesUseCase.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/domain/InsertRecentEmotesUseCase.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/domain/InsertRecentEmotesUseCase.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/domain/RecentEmotesApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/domain/RecentEmotesApi.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/domain/model/Emote.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/domain/model/Emote.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/domain/model/EmoteSetItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/domain/model/EmoteSetItem.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/domain/model/EmoteUrls.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/domain/model/EmoteUrls.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/domain/model/RecentEmote.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/emotes/domain/model/RecentEmote.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/followed/data/model/ChannelFollow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/followed/data/model/ChannelFollow.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/followed/data/model/FollowResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/followed/data/model/FollowResponse.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/followed/domain/model/ChannelFollow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/followed/domain/model/ChannelFollow.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/followed/presentation/FollowedChannelsViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/followed/presentation/FollowedChannelsViewModel.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/followed/presentation/mobile/FollowedChannelsList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/followed/presentation/mobile/FollowedChannelsList.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/onboarding/presentation/mobile/OnboardingScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/onboarding/presentation/mobile/OnboardingScreen.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/onboarding/presentation/mobile/SignInWithTwitchButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/onboarding/presentation/mobile/SignInWithTwitchButton.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/data/DataStorePreferenceRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/data/DataStorePreferenceRepository.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/domain/AuthRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/domain/AuthRepository.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/domain/PreferenceRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/domain/PreferenceRepository.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/domain/model/AppPreferences.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/domain/model/AppPreferences.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/domain/model/AppUser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/domain/model/AppUser.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/DefaultReadExternalDependenciesList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/DefaultReadExternalDependenciesList.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/Dependency.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/Dependency.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/DependencyList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/DependencyList.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/LogRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/LogRepository.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/NoopLogRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/NoopLogRepository.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/NoopReadExternalDependenciesList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/NoopReadExternalDependenciesList.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/ReadExternalDependenciesList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/ReadExternalDependenciesList.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/SettingsViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/SettingsViewModel.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/mobile/AppVersionNameProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/mobile/AppVersionNameProvider.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/mobile/SettingsConstants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/mobile/SettingsConstants.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/mobile/SettingsContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/mobile/SettingsContent.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/mobile/SettingsHeader.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/mobile/SettingsHeader.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/mobile/SettingsList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/mobile/SettingsList.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/mobile/SettingsSectionAbout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/mobile/SettingsSectionAbout.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/mobile/SettingsSectionAppearance.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/mobile/SettingsSectionAppearance.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/mobile/SettingsSectionDependencies.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/mobile/SettingsSectionDependencies.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/mobile/SettingsSectionNotifications.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/mobile/SettingsSectionNotifications.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/mobile/SettingsSectionThirdParties.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/mobile/SettingsSectionThirdParties.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/mobile/SettingsSlider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/mobile/SettingsSlider.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/mobile/SettingsSwitch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/mobile/SettingsSwitch.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/mobile/SettingsText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/mobile/SettingsText.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/pronouns/data/AlejoPronounsApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/pronouns/data/AlejoPronounsApi.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/pronouns/data/AlejoPronounsClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/pronouns/data/AlejoPronounsClient.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/pronouns/data/LocalPronounsDb.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/pronouns/data/LocalPronounsDb.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/pronouns/data/model/AlejoPronoun.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/pronouns/data/model/AlejoPronoun.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/pronouns/data/model/UserPronounResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/pronouns/data/model/UserPronounResponse.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/pronouns/domain/LocalPronounsApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/pronouns/domain/LocalPronounsApi.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/pronouns/domain/PronounsApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/pronouns/domain/PronounsApi.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/pronouns/domain/PronounsRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/pronouns/domain/PronounsRepository.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/pronouns/domain/model/Pronoun.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/pronouns/domain/model/Pronoun.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/pronouns/domain/model/UserPronounIds.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/pronouns/domain/model/UserPronounIds.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/pronouns/domain/model/UserPronouns.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/pronouns/domain/model/UserPronouns.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/recent/presentation/RecentChannelsViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/recent/presentation/RecentChannelsViewModel.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/search/data/SearchChannelsDataSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/search/data/SearchChannelsDataSource.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/search/data/model/ChannelSearch.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/search/data/model/ChannelSearch.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/search/data/model/ChannelSearchResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/search/data/model/ChannelSearchResponse.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/search/domain/model/ChannelSearchResult.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/search/domain/model/ChannelSearchResult.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/search/presentation/ChannelSearchViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/search/presentation/ChannelSearchViewModel.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/search/presentation/mobile/SearchBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/search/presentation/mobile/SearchBar.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/search/presentation/mobile/SearchResultsList.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/search/presentation/mobile/SearchResultsList.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/search/presentation/mobile/SearchScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/search/presentation/mobile/SearchScreen.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/search/presentation/mobile/SearchScreenBar.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/search/presentation/mobile/SearchScreenBar.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/data/ApiEndpoints.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/data/ApiEndpoints.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/data/LocalStreamsDb.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/data/LocalStreamsDb.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/data/LocalUsersDb.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/data/LocalUsersDb.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/data/TwitchApiImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/data/TwitchApiImpl.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/data/TwitchClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/data/TwitchClient.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/data/TwitchDurationExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/data/TwitchDurationExt.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/data/model/Pagination.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/data/model/Pagination.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/data/model/User.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/data/model/User.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/data/model/UsersResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/data/model/UsersResponse.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/domain/LocalStreamsApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/domain/LocalStreamsApi.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/domain/LocalUsersApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/domain/LocalUsersApi.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/domain/TwitchApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/domain/TwitchApi.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/domain/TwitchRepository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/domain/TwitchRepository.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/domain/TwitchRepositoryImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/domain/TwitchRepositoryImpl.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/domain/model/MessageNotSentException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/domain/model/MessageNotSentException.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/domain/model/Pagination.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/domain/model/Pagination.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/domain/model/User.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/domain/model/User.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/DeeplinkReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/DeeplinkReceiver.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/LabelChip.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/LabelChip.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/MainRouterViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/MainRouterViewModel.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/mobile/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/mobile/App.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/mobile/DetailScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/mobile/DetailScreen.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/mobile/DragHandle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/mobile/DragHandle.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/mobile/MainNavigation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/mobile/MainNavigation.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/mobile/MainRouter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/mobile/MainRouter.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/mobile/NoContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/mobile/NoContent.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/mobile/Screen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/mobile/Screen.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/mobile/StreamTagChip.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/mobile/StreamTagChip.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/mobile/SwipeActionBox.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/mobile/SwipeActionBox.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/mobile/ThreePaneScaffoldPredictiveBackHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/mobile/ThreePaneScaffoldPredictiveBackHandler.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/mobile/UserItem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/mobile/UserItem.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/mobile/UserItemCardPlaceholder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/mobile/UserItemCardPlaceholder.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/mobile/placeholder/core/Placeholder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/mobile/placeholder/core/Placeholder.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/mobile/placeholder/core/PlaceholderHighlight.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/mobile/placeholder/core/PlaceholderHighlight.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/mobile/placeholder/material3/Placeholder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/mobile/placeholder/material3/Placeholder.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/mobile/placeholder/material3/PlaceholderHighlight.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/mobile/placeholder/material3/PlaceholderHighlight.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/data/model/ChannelSchedule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/data/model/ChannelSchedule.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/data/model/ChannelScheduleResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/data/model/ChannelScheduleResponse.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/data/model/ChannelScheduleSegment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/data/model/ChannelScheduleSegment.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/data/model/ChannelScheduleVacation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/data/model/ChannelScheduleVacation.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/data/model/Stream.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/data/model/Stream.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/data/model/StreamCategory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/data/model/StreamCategory.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/data/model/StreamsResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/data/model/StreamsResponse.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/data/model/Video.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/data/model/Video.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/data/model/VideoResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/data/model/VideoResponse.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/domain/TimelineConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/domain/TimelineConfig.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/domain/model/ChannelScheduleSegment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/domain/model/ChannelScheduleSegment.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/domain/model/FullSchedule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/domain/model/FullSchedule.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/domain/model/Stream.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/domain/model/Stream.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/domain/model/StreamCategory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/domain/model/StreamCategory.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/domain/model/UserStream.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/domain/model/UserStream.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/domain/model/Video.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/domain/model/Video.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/presentation/FutureTimelineViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/presentation/FutureTimelineViewModel.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/presentation/LiveTimelineViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/presentation/LiveTimelineViewModel.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/presentation/mobile/ContextualButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/presentation/mobile/ContextualButton.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/presentation/mobile/FutureTimelineContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/presentation/mobile/FutureTimelineContent.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/presentation/mobile/FutureTimelineScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/presentation/mobile/FutureTimelineScreen.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/presentation/mobile/FutureTimelineSegment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/presentation/mobile/FutureTimelineSegment.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/presentation/mobile/LiveDetailsDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/presentation/mobile/LiveDetailsDialog.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/presentation/mobile/LiveIndicator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/presentation/mobile/LiveIndicator.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/presentation/mobile/LiveStream.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/presentation/mobile/LiveStream.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/presentation/mobile/LiveTimelineContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/presentation/mobile/LiveTimelineContent.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/presentation/mobile/LiveTimelineScreen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/presentation/mobile/LiveTimelineScreen.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/presentation/mobile/LiveTimelineSegment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/presentation/mobile/LiveTimelineSegment.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/presentation/mobile/PastTimelineSegment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/presentation/mobile/PastTimelineSegment.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/presentation/mobile/TimelineSegmentContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/presentation/mobile/TimelineSegmentContent.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/presentation/mobile/TimelineSegmentDetails.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/feature/timeline/presentation/mobile/TimelineSegmentDetails.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/shared/presentation/icons/AppIcon.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/shared/presentation/icons/AppIcon.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/shared/presentation/icons/TwitchIcon.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/shared/presentation/icons/TwitchIcon.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/coil/CoilCustomLogger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/coil/CoilCustomLogger.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/coil/ImageLoaderFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/coil/ImageLoaderFactory.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/core/ConnectivityNetworkStateObserver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/core/ConnectivityNetworkStateObserver.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/core/CoroutinesExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/core/CoroutinesExt.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/core/DispatchersProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/core/DispatchersProvider.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/core/InstantUnixEpochSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/core/InstantUnixEpochSerializer.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/core/JsonExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/core/JsonExt.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/core/ListExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/core/ListExt.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/core/MapExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/core/MapExt.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/core/NetworkStateObserver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/core/NetworkStateObserver.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/core/NumberOddnessExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/core/NumberOddnessExt.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/core/TwitchExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/core/TwitchExt.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/http/BaseHttpClientProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/http/BaseHttpClientProvider.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/http/FrameLogger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/http/FrameLogger.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/http/TwitchHttpClientProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/http/TwitchHttpClientProvider.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/http/UriExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/http/UriExt.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/koin/KoinCustomLogger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/koin/KoinCustomLogger.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/logging/LogStrategy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/logging/LogStrategy.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/logging/Logger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/logging/Logger.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/logging/LoggerExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/logging/LoggerExt.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/logging/NoopLogStrategy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/logging/NoopLogStrategy.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/parcel/Parcelable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/parcel/Parcelable.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/parcel/Parcelize.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/parcel/Parcelize.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/permissions/Permissions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/permissions/Permissions.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/presentation/AccessibleIconButton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/presentation/AccessibleIconButton.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/presentation/AppTheme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/presentation/AppTheme.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/presentation/BubbleExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/presentation/BubbleExt.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/presentation/ColorAccessibility.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/presentation/ColorAccessibility.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/presentation/ColorExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/presentation/ColorExt.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/presentation/ColorScheme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/presentation/ColorScheme.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/presentation/ColorSchemeExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/presentation/ColorSchemeExt.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/presentation/CommonColorUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/presentation/CommonColorUtils.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/presentation/CommonTimeExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/presentation/CommonTimeExt.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/presentation/CustomColors.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/presentation/CustomColors.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/presentation/NumberExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/presentation/NumberExt.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/presentation/OnLifecycleEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/presentation/OnLifecycleEvent.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/presentation/PaddingValuesExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/presentation/PaddingValuesExt.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/presentation/StringUrlExt.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/presentation/StringUrlExt.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/presentation/TimeUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/presentation/TimeUtils.kt -------------------------------------------------------------------------------- /shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/resources/StringDesc.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/kotlin/fr/outadoc/justchatting/utils/resources/StringDesc.kt -------------------------------------------------------------------------------- /shared/src/commonMain/sqldelight/fr/outadoc/justchatting/data/db/Pronoun.sq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/sqldelight/fr/outadoc/justchatting/data/db/Pronoun.sq -------------------------------------------------------------------------------- /shared/src/commonMain/sqldelight/fr/outadoc/justchatting/data/db/RecentEmote.sq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/sqldelight/fr/outadoc/justchatting/data/db/RecentEmote.sq -------------------------------------------------------------------------------- /shared/src/commonMain/sqldelight/fr/outadoc/justchatting/data/db/Stream.sq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/sqldelight/fr/outadoc/justchatting/data/db/Stream.sq -------------------------------------------------------------------------------- /shared/src/commonMain/sqldelight/fr/outadoc/justchatting/data/db/User.sq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/sqldelight/fr/outadoc/justchatting/data/db/User.sq -------------------------------------------------------------------------------- /shared/src/commonMain/sqldelight/migrations/1.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/sqldelight/migrations/1.db -------------------------------------------------------------------------------- /shared/src/commonMain/sqldelight/migrations/1.sqm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/sqldelight/migrations/1.sqm -------------------------------------------------------------------------------- /shared/src/commonMain/sqldelight/migrations/2.sqm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/sqldelight/migrations/2.sqm -------------------------------------------------------------------------------- /shared/src/commonMain/sqldelight/migrations/3.sqm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/sqldelight/migrations/3.sqm -------------------------------------------------------------------------------- /shared/src/commonMain/sqldelight/migrations/4.sqm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/sqldelight/migrations/4.sqm -------------------------------------------------------------------------------- /shared/src/commonMain/sqldelight/migrations/5.sqm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/sqldelight/migrations/5.sqm -------------------------------------------------------------------------------- /shared/src/commonMain/sqldelight/migrations/6.sqm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/sqldelight/migrations/6.sqm -------------------------------------------------------------------------------- /shared/src/commonMain/sqldelight/migrations/7.sqm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/sqldelight/migrations/7.sqm -------------------------------------------------------------------------------- /shared/src/commonMain/sqldelight/migrations/8.sqm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/commonMain/sqldelight/migrations/8.sqm -------------------------------------------------------------------------------- /shared/src/desktopMain/composeResources/drawable/icon_masked.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/desktopMain/composeResources/drawable/icon_masked.xml -------------------------------------------------------------------------------- /shared/src/desktopMain/kotlin/fr/outadoc/justchatting/AppInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/desktopMain/kotlin/fr/outadoc/justchatting/AppInfo.kt -------------------------------------------------------------------------------- /shared/src/desktopMain/kotlin/fr/outadoc/justchatting/MainWindow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/desktopMain/kotlin/fr/outadoc/justchatting/MainWindow.kt -------------------------------------------------------------------------------- /shared/src/desktopMain/kotlin/fr/outadoc/justchatting/WithScaling.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/desktopMain/kotlin/fr/outadoc/justchatting/WithScaling.kt -------------------------------------------------------------------------------- /shared/src/desktopMain/kotlin/fr/outadoc/justchatting/di/PlatformModule.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/desktopMain/kotlin/fr/outadoc/justchatting/di/PlatformModule.desktop.kt -------------------------------------------------------------------------------- /shared/src/desktopMain/kotlin/fr/outadoc/justchatting/feature/auth/data/KtorAuthCallbackWebServer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/desktopMain/kotlin/fr/outadoc/justchatting/feature/auth/data/KtorAuthCallbackWebServer.kt -------------------------------------------------------------------------------- /shared/src/desktopMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/DynamicImageColorScheme.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/desktopMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/DynamicImageColorScheme.desktop.kt -------------------------------------------------------------------------------- /shared/src/desktopMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/RemoteImage.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/desktopMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/RemoteImage.desktop.kt -------------------------------------------------------------------------------- /shared/src/desktopMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/mobile/DesktopAppVersionNameProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/desktopMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/mobile/DesktopAppVersionNameProvider.kt -------------------------------------------------------------------------------- /shared/src/desktopMain/kotlin/fr/outadoc/justchatting/utils/coil/ImageLoaderFactory.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/desktopMain/kotlin/fr/outadoc/justchatting/utils/coil/ImageLoaderFactory.desktop.kt -------------------------------------------------------------------------------- /shared/src/desktopMain/kotlin/fr/outadoc/justchatting/utils/http/DesktopHttpClientProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/desktopMain/kotlin/fr/outadoc/justchatting/utils/http/DesktopHttpClientProvider.kt -------------------------------------------------------------------------------- /shared/src/desktopMain/kotlin/fr/outadoc/justchatting/utils/logging/JvmLogStrategy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/desktopMain/kotlin/fr/outadoc/justchatting/utils/logging/JvmLogStrategy.kt -------------------------------------------------------------------------------- /shared/src/desktopMain/kotlin/fr/outadoc/justchatting/utils/parcel/Parcelable.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/desktopMain/kotlin/fr/outadoc/justchatting/utils/parcel/Parcelable.desktop.kt -------------------------------------------------------------------------------- /shared/src/desktopMain/kotlin/fr/outadoc/justchatting/utils/permissions/Permissions.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/desktopMain/kotlin/fr/outadoc/justchatting/utils/permissions/Permissions.desktop.kt -------------------------------------------------------------------------------- /shared/src/desktopMain/kotlin/fr/outadoc/justchatting/utils/presentation/BubbleExt.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/desktopMain/kotlin/fr/outadoc/justchatting/utils/presentation/BubbleExt.desktop.kt -------------------------------------------------------------------------------- /shared/src/desktopMain/kotlin/fr/outadoc/justchatting/utils/presentation/ColorScheme.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/desktopMain/kotlin/fr/outadoc/justchatting/utils/presentation/ColorScheme.desktop.kt -------------------------------------------------------------------------------- /shared/src/desktopMain/kotlin/fr/outadoc/justchatting/utils/presentation/NumberExt.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/desktopMain/kotlin/fr/outadoc/justchatting/utils/presentation/NumberExt.desktop.kt -------------------------------------------------------------------------------- /shared/src/desktopMain/kotlin/fr/outadoc/justchatting/utils/presentation/StringUrlExt.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/desktopMain/kotlin/fr/outadoc/justchatting/utils/presentation/StringUrlExt.desktop.kt -------------------------------------------------------------------------------- /shared/src/desktopMain/kotlin/fr/outadoc/justchatting/utils/presentation/TimeUtils.desktop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/desktopMain/kotlin/fr/outadoc/justchatting/utils/presentation/TimeUtils.desktop.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/fr/outadoc/justchatting/data/db/AppDatabaseProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/iosMain/kotlin/fr/outadoc/justchatting/data/db/AppDatabaseProvider.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/fr/outadoc/justchatting/di/PlatformModule.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/iosMain/kotlin/fr/outadoc/justchatting/di/PlatformModule.ios.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/RemoteImage.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/iosMain/kotlin/fr/outadoc/justchatting/feature/chat/presentation/mobile/RemoteImage.ios.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/mobile/AppleAppVersionNameProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/iosMain/kotlin/fr/outadoc/justchatting/feature/preferences/presentation/mobile/AppleAppVersionNameProvider.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/DeeplinkReceiverHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/iosMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/DeeplinkReceiverHelper.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/MainViewController.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/iosMain/kotlin/fr/outadoc/justchatting/feature/shared/presentation/MainViewController.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/fr/outadoc/justchatting/utils/coil/ImageLoaderFactory.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/iosMain/kotlin/fr/outadoc/justchatting/utils/coil/ImageLoaderFactory.ios.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/fr/outadoc/justchatting/utils/http/AppleHttpClientProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/iosMain/kotlin/fr/outadoc/justchatting/utils/http/AppleHttpClientProvider.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/fr/outadoc/justchatting/utils/logging/AppleLogStrategy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/iosMain/kotlin/fr/outadoc/justchatting/utils/logging/AppleLogStrategy.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/fr/outadoc/justchatting/utils/parcel/Parcelable.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/iosMain/kotlin/fr/outadoc/justchatting/utils/parcel/Parcelable.ios.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/fr/outadoc/justchatting/utils/permissions/Permissions.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/iosMain/kotlin/fr/outadoc/justchatting/utils/permissions/Permissions.ios.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/fr/outadoc/justchatting/utils/presentation/BubbleExt.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/iosMain/kotlin/fr/outadoc/justchatting/utils/presentation/BubbleExt.ios.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/fr/outadoc/justchatting/utils/presentation/ColorScheme.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/iosMain/kotlin/fr/outadoc/justchatting/utils/presentation/ColorScheme.ios.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/fr/outadoc/justchatting/utils/presentation/NumberExt.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/iosMain/kotlin/fr/outadoc/justchatting/utils/presentation/NumberExt.ios.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/fr/outadoc/justchatting/utils/presentation/StringUrlExt.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/iosMain/kotlin/fr/outadoc/justchatting/utils/presentation/StringUrlExt.ios.kt -------------------------------------------------------------------------------- /shared/src/iosMain/kotlin/fr/outadoc/justchatting/utils/presentation/TimeUtils.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/iosMain/kotlin/fr/outadoc/justchatting/utils/presentation/TimeUtils.ios.kt -------------------------------------------------------------------------------- /shared/src/skiaMain/kotlin/fr/outadoc/justchatting/utils/coil/AnimatedSkiaImageDecoder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outadoc/just-chatting/HEAD/shared/src/skiaMain/kotlin/fr/outadoc/justchatting/utils/coil/AnimatedSkiaImageDecoder.kt --------------------------------------------------------------------------------