├── .babelrc ├── .bundlemonrc.json ├── .codeclimate.json ├── .editorconfig ├── .eslintrc.js ├── .gitattributes ├── .github └── workflows │ └── bundlemon.yml ├── .gitignore ├── .gitmodules ├── .npmrc ├── .stylelintrc ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── .yarn ├── plugins │ └── @yarnpkg │ │ └── plugin-licenses.cjs └── releases │ └── yarn-3.1.1.cjs ├── .yarnrc.yml ├── BASEAGREEMENT ├── LICENSE ├── README.md ├── app ├── app-services.ts ├── app.g.less ├── app.ts ├── components-react │ ├── editor │ │ ├── elements │ │ │ ├── BaseElement.m.less │ │ │ ├── Browser.tsx │ │ │ ├── Display.tsx │ │ │ ├── DualOutputSourceSelector.tsx │ │ │ ├── LegacyEvents.tsx │ │ │ ├── Minifeed.tsx │ │ │ ├── Mixer.tsx │ │ │ ├── RecentEvents.m.less │ │ │ ├── RecentEvents.tsx │ │ │ ├── RecordingPreview.tsx │ │ │ ├── SceneSelector.m.less │ │ │ ├── SceneSelector.tsx │ │ │ ├── SourceSelector.tsx │ │ │ ├── StreamPreview.tsx │ │ │ ├── hooks.tsx │ │ │ ├── index.ts │ │ │ └── mixer │ │ │ │ ├── CanvasVolmeter.tsx │ │ │ │ ├── GLVolmeters.tsx │ │ │ │ ├── MixerItem.m.less │ │ │ │ └── MixerItem.tsx │ │ └── layouts │ │ │ ├── Classic.tsx │ │ │ ├── Default.tsx │ │ │ ├── FourByFour.tsx │ │ │ ├── Layouts.m.less │ │ │ ├── OnePane.tsx │ │ │ ├── OnePaneR.tsx │ │ │ ├── Pyramid.tsx │ │ │ ├── Triplets.tsx │ │ │ ├── TwoPane.tsx │ │ │ ├── hooks.tsx │ │ │ └── index.ts │ ├── highlighter │ │ ├── ClipPreview.m.less │ │ ├── ClipPreview.tsx │ │ ├── ClipPreviewInfo.tsx │ │ ├── ClipTrimmer.m.less │ │ ├── ClipTrimmer.tsx │ │ ├── ClipsFilter.tsx │ │ ├── ClipsView.m.less │ │ ├── ClipsView.tsx │ │ ├── ClipsViewModal.tsx │ │ ├── EditingControls.tsx │ │ ├── EducationCarousel.m.less │ │ ├── EducationCarousel.tsx │ │ ├── Export │ │ │ ├── ExportModal.m.less │ │ │ ├── ExportModal.tsx │ │ │ ├── Platform.tsx │ │ │ ├── StorageUpload.tsx │ │ │ ├── UploadProgress.tsx │ │ │ ├── VideoPreview.tsx │ │ │ └── YoutubeUpload.tsx │ │ ├── ExportMarkersModal.tsx │ │ ├── HighlightGenerator.m.less │ │ ├── HighlightGenerator.tsx │ │ ├── ImportStream.tsx │ │ ├── MiniClipPreview.m.less │ │ ├── MiniClipPreview.tsx │ │ ├── PreviewModal.m.less │ │ ├── PreviewModal.tsx │ │ ├── RemoveModal.m.less │ │ ├── RemoveModal.tsx │ │ ├── SettingsView.m.less │ │ ├── SettingsView.tsx │ │ ├── StreamCard.m.less │ │ ├── StreamCard.tsx │ │ ├── StreamCardInfo.tsx │ │ ├── StreamCardModal.tsx │ │ ├── StreamView.m.less │ │ ├── StreamView.tsx │ │ ├── TransitionSelector.tsx │ │ ├── UpdateModal.m.less │ │ ├── UpdateModal.tsx │ │ ├── supportedGames │ │ │ ├── SupportedGames.m.less │ │ │ └── SupportedGames.tsx │ │ └── utils.ts │ ├── hooks.ts │ ├── hooks │ │ ├── realm.ts │ │ ├── useSubscription.tsx │ │ ├── useTree.tsx │ │ └── zustand.tsx │ ├── index.ts │ ├── modals.tsx │ ├── obs │ │ └── ObsForm.tsx │ ├── pages │ │ ├── AlertboxLibrary.tsx │ │ ├── BrowseOverlays.tsx │ │ ├── Highlighter.m.less │ │ ├── Highlighter.tsx │ │ ├── Loader.tsx │ │ ├── PatchNotes.m.less │ │ ├── PatchNotes.tsx │ │ ├── PlatformAppMainPage.tsx │ │ ├── PlatformAppStore.m.less │ │ ├── PlatformAppStore.tsx │ │ ├── PlatformMerge.tsx │ │ ├── RecordingHistory.m.less │ │ ├── RecordingHistory.tsx │ │ ├── Studio.tsx │ │ ├── ThemeAudit.m.less │ │ ├── ThemeAudit.tsx │ │ ├── grow │ │ │ ├── Cards.tsx │ │ │ ├── Grow.m.less │ │ │ └── Grow.tsx │ │ ├── index.ts │ │ ├── layout-editor │ │ │ ├── AddTabModal.tsx │ │ │ ├── LayoutEditor.m.less │ │ │ ├── LayoutEditor.tsx │ │ │ ├── SideBar.tsx │ │ │ ├── TopBar.tsx │ │ │ └── hooks.ts │ │ ├── onboarding │ │ │ ├── Common.m.less │ │ │ ├── Connect.m.less │ │ │ ├── Connect.tsx │ │ │ ├── ExtraPlatformConnect.tsx │ │ │ ├── FreshOrImport.m.less │ │ │ ├── FreshOrImport.tsx │ │ │ ├── HardwareSetup.m.less │ │ │ ├── HardwareSetup.tsx │ │ │ ├── MacPermissions.tsx │ │ │ ├── ObsImport.m.less │ │ │ ├── ObsImport.tsx │ │ │ ├── ObsSvg.tsx │ │ │ ├── Onboarding.m.less │ │ │ ├── Onboarding.tsx │ │ │ ├── OnboardingContext.ts │ │ │ ├── Optimize.tsx │ │ │ ├── PrimaryPlatformSelect.tsx │ │ │ ├── Prime.m.less │ │ │ ├── Prime.tsx │ │ │ ├── Signup.m.less │ │ │ ├── Signup.tsx │ │ │ ├── StreamingOrRecording.m.less │ │ │ ├── StreamingOrRecording.tsx │ │ │ ├── ThemeSelector.m.less │ │ │ ├── ThemeSelector.tsx │ │ │ └── steps.ts │ │ └── stream-scheduler │ │ │ ├── StreamScheduler.m.less │ │ │ ├── StreamScheduler.tsx │ │ │ └── useStreamScheduler.tsx │ ├── root │ │ ├── Banner.m.less │ │ ├── Banner.tsx │ │ ├── Chat.m.less │ │ ├── Chat.tsx │ │ ├── LiveDock.m.less │ │ ├── LiveDock.tsx │ │ ├── NotificationsArea.m.less │ │ ├── NotificationsArea.tsx │ │ ├── ReactRoot.tsx │ │ ├── ResizeBar.m.less │ │ ├── ResizeBar.tsx │ │ ├── ShareStreamLink.m.less │ │ ├── ShareStreamLink.tsx │ │ ├── StartStreamingButton.tsx │ │ ├── StudioEditor.m.less │ │ ├── StudioEditor.tsx │ │ ├── StudioFooter.m.less │ │ ├── StudioFooter.tsx │ │ ├── TestWidgets.tsx │ │ └── TiktokChatInfo.tsx │ ├── service-provider.ts │ ├── shared │ │ ├── AddDestinationButton.m.less │ │ ├── AddDestinationButton.tsx │ │ ├── AuthModal.m.less │ │ ├── AuthModal.tsx │ │ ├── AutoProgressBar.tsx │ │ ├── BrowserView.tsx │ │ ├── ButtonGroup.tsx │ │ ├── ButtonHighlighted.m.less │ │ ├── ButtonHighlighted.tsx │ │ ├── ConnectButton.m.less │ │ ├── ConnectButton.tsx │ │ ├── DismissableBadge.m.less │ │ ├── DismissableBadge.tsx │ │ ├── Display.tsx │ │ ├── DisplaySelector.tsx │ │ ├── DisplayToggle.m.less │ │ ├── DisplayToggle.tsx │ │ ├── DualOutputToggle.m.less │ │ ├── DualOutputToggle.tsx │ │ ├── HelpTip.m.less │ │ ├── HelpTip.tsx │ │ ├── HotkeyBinding.tsx │ │ ├── InfoBadge.m.less │ │ ├── InfoBadge.tsx │ │ ├── InfoBanner.m.less │ │ ├── InfoBanner.tsx │ │ ├── KevinSvg.tsx │ │ ├── MenuItem.m.less │ │ ├── MenuItem.tsx │ │ ├── Message.tsx │ │ ├── ModalLayout.tsx │ │ ├── Modals.m.less │ │ ├── PerformanceMetrics.m.less │ │ ├── PerformanceMetrics.tsx │ │ ├── PlatformAppPageView.m.less │ │ ├── PlatformAppPageView.tsx │ │ ├── PlatformButton.m.less │ │ ├── PlatformButton.tsx │ │ ├── PlatformLogo.m.less │ │ ├── PlatformLogo.tsx │ │ ├── Scrollable.tsx │ │ ├── SearchablePages.m.less │ │ ├── SearchablePages.tsx │ │ ├── Spinner.m.less │ │ ├── Spinner.tsx │ │ ├── StreamShiftToggle.m.less │ │ ├── StreamShiftToggle.tsx │ │ ├── StreamlabsDesktopIcon.tsx │ │ ├── StreamlabsDesktopLogo.tsx │ │ ├── StreamlabsLogo.tsx │ │ ├── StreamlabsUltraLogo.tsx │ │ ├── SubMenu.m.less │ │ ├── SubMenu.tsx │ │ ├── SvgContainer.tsx │ │ ├── Tabs.tsx │ │ ├── TitleBar.m.less │ │ ├── TitleBar.tsx │ │ ├── ToolTip.m.less │ │ ├── Tooltip.tsx │ │ ├── Translate.tsx │ │ ├── UltraBox.m.less │ │ ├── UltraBox.tsx │ │ ├── UltraComparison.m.less │ │ ├── UltraComparison.tsx │ │ ├── UltraIcon.tsx │ │ ├── Volmeter2d.tsx │ │ ├── VueComponent.tsx │ │ ├── inputs │ │ │ ├── AnimationInput.tsx │ │ │ ├── AudioUrlInput.tsx │ │ │ ├── AutocompleteInput.tsx │ │ │ ├── BoolButtonInput.tsx │ │ │ ├── CardInput.tsx │ │ │ ├── CheckboxGroup.tsx │ │ │ ├── CheckboxInput.tsx │ │ │ ├── CodeInput.tsx │ │ │ ├── ColorInput.tsx │ │ │ ├── DateInput.tsx │ │ │ ├── DurationInput.tsx │ │ │ ├── FileInput.tsx │ │ │ ├── FontFamilyInput.tsx │ │ │ ├── FontSizeInput.tsx │ │ │ ├── FontWeightInput.tsx │ │ │ ├── Form.tsx │ │ │ ├── FormFactory.tsx │ │ │ ├── ImageInput.tsx │ │ │ ├── ImagePickerInput.m.less │ │ │ ├── ImagePickerInput.tsx │ │ │ ├── InputWrapper.tsx │ │ │ ├── ListInput.tsx │ │ │ ├── MediaUrlInput.tsx │ │ │ ├── NumberInput.tsx │ │ │ ├── RadioInput.m.less │ │ │ ├── RadioInput.tsx │ │ │ ├── SliderInput.tsx │ │ │ ├── SwitchInput.m.less │ │ │ ├── SwitchInput.tsx │ │ │ ├── TagsInput.tsx │ │ │ ├── TextAreaInput.tsx │ │ │ ├── TextInput.tsx │ │ │ ├── TimeInput.tsx │ │ │ ├── index.ts │ │ │ ├── inputList.ts │ │ │ ├── inputs.ts │ │ │ ├── mediaUrlInput.m.less │ │ │ └── metadata.ts │ │ └── modals │ │ │ ├── MessageBoxModal.m.less │ │ │ ├── MessageBoxModal.tsx │ │ │ ├── Modal.m.less │ │ │ ├── Modal.tsx │ │ │ └── ModalWrapper.tsx │ ├── sidebar │ │ ├── AppsNav.tsx │ │ ├── EditorTabs.tsx │ │ ├── FeaturesNav.tsx │ │ ├── NavTools.m.less │ │ ├── NavTools.tsx │ │ ├── PlatformIndicator.m.less │ │ ├── PlatformIndicator.tsx │ │ ├── SideNav.m.less │ │ └── SideNav.tsx │ ├── tsconfig.json │ ├── widgets │ │ ├── AlertBox.tsx │ │ ├── ChatBox.tsx │ │ ├── CustomWidget.tsx │ │ ├── DonationTicker.tsx │ │ ├── EmoteWall.tsx │ │ ├── GameWidget.tsx │ │ ├── SponsorBanner.tsx │ │ ├── ViewerCount.tsx │ │ ├── common │ │ │ ├── CustomCode.tsx │ │ │ ├── CustomFields.tsx │ │ │ ├── LayoutInput.tsx │ │ │ ├── WidgetLayout.m.less │ │ │ ├── WidgetLayout.tsx │ │ │ ├── WidgetWindow.tsx │ │ │ ├── useCodeEditor.tsx │ │ │ └── useWidget.tsx │ │ ├── games │ │ │ ├── ChatWord.tsx │ │ │ ├── TicTacToe.tsx │ │ │ └── index.tsx │ │ └── useAlertBox.tsx │ └── windows │ │ ├── AddSource.m.less │ │ ├── AddSource.tsx │ │ ├── AdvancedStatistics.m.less │ │ ├── AdvancedStatistics.tsx │ │ ├── Blank.tsx │ │ ├── EditTransform.tsx │ │ ├── GuestCamProperties.tsx │ │ ├── IconLibraryProperties.m.less │ │ ├── IconLibraryProperties.tsx │ │ ├── Main.m.less │ │ ├── Main.tsx │ │ ├── ManageSceneCollections.m.less │ │ ├── ManageSceneCollections.tsx │ │ ├── MarketingModal.m.less │ │ ├── MarketingModal.tsx │ │ ├── MediaGallery.m.less │ │ ├── MediaGallery.tsx │ │ ├── MultistreamChatInfo.m.less │ │ ├── MultistreamChatInfo.tsx │ │ ├── NameFolder.tsx │ │ ├── NameScene.tsx │ │ ├── PlatformAppPopOut.tsx │ │ ├── Projector.m.less │ │ ├── Projector.tsx │ │ ├── RecentEvents.tsx │ │ ├── RenameSource.tsx │ │ ├── SafeMode.tsx │ │ ├── ScreenCaptureProperties.m.less │ │ ├── ScreenCaptureProperties.tsx │ │ ├── Settings.m.less │ │ ├── Settings.tsx │ │ ├── SourceFilters.m.less │ │ ├── SourceFilters.tsx │ │ ├── SourceProperties.tsx │ │ ├── Troubleshooter.tsx │ │ ├── WelcomeToPrime.m.less │ │ ├── WelcomeToPrime.tsx │ │ ├── advanced-audio │ │ ├── AdvancedAudio.m.less │ │ ├── GlobalSettings.tsx │ │ ├── SourceSettings.tsx │ │ └── index.tsx │ │ ├── go-live │ │ ├── AdvancedSettingsSwitch.tsx │ │ ├── AiHighlighterToggle.m.less │ │ ├── AiHighlighterToggle.tsx │ │ ├── ColorSpaceWarnings.tsx │ │ ├── CommonPlatformFields.tsx │ │ ├── DestinationSelector.tsx │ │ ├── DestinationSwitchers.m.less │ │ ├── DestinationSwitchers.tsx │ │ ├── EditStreamWindow.tsx │ │ ├── GameSelector.tsx │ │ ├── GoLive.m.less │ │ ├── GoLiveChecklist.m.less │ │ ├── GoLiveChecklist.tsx │ │ ├── GoLiveError.m.less │ │ ├── GoLiveError.tsx │ │ ├── GoLiveSettings.tsx │ │ ├── GoLiveWindow.tsx │ │ ├── MessageLayout.tsx │ │ ├── OptimizedProfileSwitcher.tsx │ │ ├── PlatformSettings.tsx │ │ ├── PrimaryChatSwitcher.tsx │ │ ├── RecordingSwitcher.m.less │ │ ├── RecordingSwitcher.tsx │ │ ├── Section.tsx │ │ ├── Twitter.tsx │ │ ├── platforms │ │ │ ├── BroadcastInput.tsx │ │ │ ├── FacebookEditStreamInfo.m.less │ │ │ ├── FacebookEditStreamInfo.tsx │ │ │ ├── InstagramEditStreamInfo.tsx │ │ │ ├── KickEditStreamInfo.tsx │ │ │ ├── PlatformSettingsLayout.tsx │ │ │ ├── TikTokEditStreamInfo.m.less │ │ │ ├── TiktokEditStreamInfo.tsx │ │ │ ├── TrovoEditStreamInfo.tsx │ │ │ ├── TwitchContentClassificationInput.tsx │ │ │ ├── TwitchEditStreamInfo.m.less │ │ │ ├── TwitchEditStreamInfo.tsx │ │ │ ├── TwitchTagsInput.tsx │ │ │ ├── TwitterEditStreamInfo.tsx │ │ │ ├── YouTubeEditStreamInfo.m.less │ │ │ └── YoutubeEditStreamInfo.tsx │ │ └── useGoLiveSettings.ts │ │ ├── notifications │ │ ├── News.m.less │ │ ├── News.tsx │ │ ├── Notifications.m.less │ │ ├── Notifications.tsx │ │ └── index.tsx │ │ ├── settings │ │ ├── AISettings.tsx │ │ ├── Advanced.tsx │ │ ├── Appearance.m.less │ │ ├── Appearance.tsx │ │ ├── Audio.tsx │ │ ├── Common.m.less │ │ ├── Developer.tsx │ │ ├── Experimental.tsx │ │ ├── GameOverlay.tsx │ │ ├── General.tsx │ │ ├── Hotkey.m.less │ │ ├── Hotkey.tsx │ │ ├── HotkeyGroup.tsx │ │ ├── Hotkeys.tsx │ │ ├── InstalledApps.m.less │ │ ├── InstalledApps.tsx │ │ ├── Mobile.m.less │ │ ├── Mobile.tsx │ │ ├── Multistreaming.m.less │ │ ├── Multistreaming.tsx │ │ ├── Notifications.tsx │ │ ├── ObsSettings.tsx │ │ ├── Output.tsx │ │ ├── SceneCollections.tsx │ │ ├── Stream.m.less │ │ ├── Stream.tsx │ │ ├── Support.tsx │ │ ├── Ultra.m.less │ │ ├── Ultra.tsx │ │ ├── Video.tsx │ │ ├── VirtualWebcam.m.less │ │ ├── VirtualWebcam.tsx │ │ └── pages.ts │ │ ├── sharedComponentsLibrary │ │ ├── DemoForm.tsx │ │ └── SharedComponentsLibrary.tsx │ │ └── source-showcase │ │ ├── SourceGrid.m.less │ │ ├── SourceGrid.tsx │ │ ├── SourceShowcase.m.less │ │ ├── SourceTag.tsx │ │ ├── index.tsx │ │ └── useSourceShowcase.tsx ├── components │ ├── ConnectionSettings.tsx │ ├── ModalLayout.vue │ ├── ModalLayout.vue.ts │ ├── Selector.vue │ ├── Selector.vue.ts │ ├── Tabs.vue │ ├── Tabs.vue.ts │ ├── TransitionSettings.vue │ ├── TransitionSettings.vue.ts │ ├── custom-source-properties │ │ ├── PlatformAppProperties.vue │ │ ├── PlatformAppProperties.vue.ts │ │ └── StreamlabelProperties.tsx │ ├── obs │ │ └── inputs │ │ │ ├── AdvancedOutputTabs.vue │ │ │ ├── AdvancedOutputTabs.vue.ts │ │ │ ├── Components.ts │ │ │ ├── GenericForm.tsx │ │ │ ├── ObsBitMaskInput.vue │ │ │ ├── ObsBitMaskInput.vue.ts │ │ │ ├── ObsBoolInput.vue │ │ │ ├── ObsBoolInput.vue.ts │ │ │ ├── ObsButtonInput.vue │ │ │ ├── ObsButtonInput.vue.ts │ │ │ ├── ObsColorInput.tsx │ │ │ ├── ObsEditableListInput.vue │ │ │ ├── ObsEditableListInput.vue.ts │ │ │ ├── ObsFontInput.tsx │ │ │ ├── ObsFontSizeSelector.vue │ │ │ ├── ObsFontSizeSelector.vue.ts │ │ │ ├── ObsGoogleFontSelector.tsx │ │ │ ├── ObsInput.ts │ │ │ ├── ObsIntInput.vue │ │ │ ├── ObsIntInput.vue.ts │ │ │ ├── ObsListInput.vue │ │ │ ├── ObsListInput.vue.ts │ │ │ ├── ObsNumberInput.vue │ │ │ ├── ObsNumberInput.vue.ts │ │ │ ├── ObsPathInput.vue │ │ │ ├── ObsPathInput.vue.ts │ │ │ ├── ObsResolutionInput.vue │ │ │ ├── ObsResolutionInput.vue.ts │ │ │ ├── ObsSliderInput.vue │ │ │ ├── ObsSliderInput.vue.ts │ │ │ ├── ObsSystemFontSelector.vue │ │ │ ├── ObsSystemFontSelector.vue.ts │ │ │ ├── ObsTextInput.vue │ │ │ ├── ObsTextInput.vue.ts │ │ │ └── index.ts │ ├── shared │ │ ├── ReactComponent.tsx │ │ ├── ReactComponentList.tsx │ │ ├── RealmReactive.ts │ │ ├── Scrollable.tsx │ │ ├── inputs │ │ │ ├── BaseFormGroup.ts │ │ │ ├── BaseInput.ts │ │ │ ├── BoolButtonInput.m.less │ │ │ ├── BoolButtonInput.tsx │ │ │ ├── BoolInput.tsx │ │ │ ├── CodeInput.vue │ │ │ ├── CodeInput.vue.ts │ │ │ ├── ColorInput.m.less │ │ │ ├── ColorInput.tsx │ │ │ ├── DateInput.m.less │ │ │ ├── DateInput.tsx │ │ │ ├── FileInput.vue │ │ │ ├── FileInput.vue.ts │ │ │ ├── FontFamilyInput.vue │ │ │ ├── FontFamilyInput.vue.ts │ │ │ ├── FontSize.vue │ │ │ ├── FontSize.vue.ts │ │ │ ├── FormInput.vue │ │ │ ├── FormInput.vue.ts │ │ │ ├── HFormGroup.vue │ │ │ ├── HFormGroup.vue.ts │ │ │ ├── ImageMediaInput.vue │ │ │ ├── ImageMediaInput.vue.ts │ │ │ ├── ImagePickerInput.vue │ │ │ ├── ImagePickerInput.vue.ts │ │ │ ├── ImageUloaderInput.tsx │ │ │ ├── ImageUploaderInput.m.less │ │ │ ├── ListInput.vue │ │ │ ├── ListInput.vue.ts │ │ │ ├── MediaGalleryInput.vue │ │ │ ├── MediaGalleryInput.vue.ts │ │ │ ├── NumberInput.vue │ │ │ ├── NumberInput.vue.ts │ │ │ ├── SliderInput.vue │ │ │ ├── SliderInput.vue.ts │ │ │ ├── SoundInput.vue │ │ │ ├── SoundInput.vue.ts │ │ │ ├── TagsInput.m.less │ │ │ ├── TagsInput.tsx │ │ │ ├── TextAreaInput.vue │ │ │ ├── TextAreaInput.vue.ts │ │ │ ├── TextInput.m.less │ │ │ ├── TextInput.tsx │ │ │ ├── TimerInput.vue │ │ │ ├── TimerInput.vue.ts │ │ │ ├── ToggleInput.m.less │ │ │ ├── ToggleInput.tsx │ │ │ ├── VFormGroup.vue │ │ │ ├── VFormGroup.vue.ts │ │ │ ├── ValidatedForm.tsx │ │ │ ├── index.ts │ │ │ └── inputs.ts │ │ └── modals │ │ │ ├── MessageBoxModal.m.less │ │ │ ├── MessageBoxModal.tsx │ │ │ ├── Modal.m.less │ │ │ ├── Modal.tsx │ │ │ └── ModalWrapper.tsx │ ├── tsx-component.ts │ ├── widgets │ │ ├── AlertBox.vue │ │ ├── AlertBox.vue.ts │ │ ├── ChatHighlight.tsx │ │ ├── CodeEditor.vue │ │ ├── CodeEditor.vue.ts │ │ ├── Credits.vue │ │ ├── Credits.vue.ts │ │ ├── CustomFieldsEditor.vue │ │ ├── CustomFieldsEditor.vue.ts │ │ ├── EventList.vue │ │ ├── EventList.vue.ts │ │ ├── MedaShare.m.less │ │ ├── MediaShare.tsx │ │ ├── Poll.tsx │ │ ├── SpinWheel.vue │ │ ├── SpinWheel.vue.ts │ │ ├── StreamBoss.vue │ │ ├── StreamBoss.vue.ts │ │ ├── TipJar.vue │ │ ├── TipJar.vue.ts │ │ ├── WidgetSettings.vue.ts │ │ ├── goal │ │ │ ├── BitGoal.tsx │ │ │ ├── CharityGoal.tsx │ │ │ ├── DonationGoal.tsx │ │ │ ├── FollowerGoal.tsx │ │ │ ├── GenericGoal.vue │ │ │ ├── GenericGoal.vue.ts │ │ │ ├── StarsGoal.tsx │ │ │ ├── SubGoal.tsx │ │ │ ├── SubscriberGoal.tsx │ │ │ ├── SuperchatGoal.tsx │ │ │ └── SupporterGoal.tsx │ │ └── inputs │ │ │ ├── AlertLayoutInput.vue │ │ │ ├── AlertLayoutInput.vue.ts │ │ │ ├── AnimationInput.vue │ │ │ ├── AnimationInput.vue.ts │ │ │ ├── FrequencyInput.vue │ │ │ ├── FrequencyInput.vue.ts │ │ │ ├── ImageLayoutInput.vue │ │ │ ├── ImageLayoutInput.vue.ts │ │ │ ├── NumberListInput.vue │ │ │ ├── NumberListInput.vue.ts │ │ │ ├── SectionedMultiselectInput.vue │ │ │ ├── SectionedMultiselectInput.vue.ts │ │ │ ├── SpamSecurityInput.tsx │ │ │ ├── index.ts │ │ │ └── inputs.ts │ └── windows │ │ ├── BrowserSourceInteraction.tsx │ │ ├── ChildWindow.m.less │ │ ├── ChildWindow.tsx │ │ ├── EventFilterMenu.m.less │ │ ├── EventFilterMenu.tsx │ │ ├── FFZSettings.vue │ │ ├── FFZSettings.vue.ts │ │ ├── GameOverlayEventFeed.m.less │ │ ├── GameOverlayEventFeed.tsx │ │ ├── Main.tsx │ │ ├── OneOffWindow.vue │ │ ├── OneOffWindow.vue.ts │ │ ├── OverlayPlaceholder.m.less │ │ ├── OverlayPlaceholder.tsx │ │ ├── SceneTransitions.vue │ │ ├── SceneTransitions.vue.ts │ │ ├── SourceProperties.vue │ │ ├── SourceProperties.vue.ts │ │ ├── WidgetEditor.vue │ │ └── WidgetEditor.vue.ts ├── i18n │ ├── README.md │ ├── ar-SA │ │ ├── advanced-statistics.json │ │ ├── app.json │ │ ├── apps.json │ │ ├── audio.json │ │ ├── common.json │ │ ├── customization.json │ │ ├── developer.json │ │ ├── facebook.json │ │ ├── facemasks.json │ │ ├── filters.json │ │ ├── game-overlay.json │ │ ├── grow.json │ │ ├── guest-cam.json │ │ ├── highlighter.json │ │ ├── hotkeys.json │ │ ├── kick.json │ │ ├── langname.txt │ │ ├── loader.json │ │ ├── media-gallery.json │ │ ├── notifications.json │ │ ├── onboarding.json │ │ ├── overlays.json │ │ ├── performance-metric.json │ │ ├── promotional-copy.json │ │ ├── recent-events.json │ │ ├── remote-control.json │ │ ├── scenes.json │ │ ├── settings.json │ │ ├── socials.json │ │ ├── source-props.json │ │ ├── sources.json │ │ ├── stream-shift.json │ │ ├── streaming.json │ │ ├── streamlabels.json │ │ ├── tiktok.json │ │ ├── transitions.json │ │ ├── troubleshooter.json │ │ ├── trovo.json │ │ ├── twitch.json │ │ ├── twitter.json │ │ ├── undo.json │ │ ├── widget-alertbox.json │ │ ├── widget-chat-box.json │ │ ├── widget-chat-highlight.json │ │ ├── widget-credits.json │ │ ├── widget-donation-ticker.json │ │ ├── widget-emote-wall.json │ │ ├── widget-event-list.json │ │ ├── widget-game.json │ │ ├── widget-goal.json │ │ ├── widget-media-share.json │ │ ├── widget-poll.json │ │ ├── widget-spin-wheel.json │ │ ├── widget-sponsor-banner.json │ │ ├── widget-stream-boss.json │ │ ├── widget-tip-jar.json │ │ ├── widget-viewer-count.json │ │ ├── widgets.json │ │ └── youtube.json │ ├── cs-CZ │ │ ├── advanced-statistics.json │ │ ├── app.json │ │ ├── apps.json │ │ ├── audio.json │ │ ├── common.json │ │ ├── customization.json │ │ ├── developer.json │ │ ├── facebook.json │ │ ├── facemasks.json │ │ ├── filters.json │ │ ├── game-overlay.json │ │ ├── grow.json │ │ ├── guest-cam.json │ │ ├── highlighter.json │ │ ├── hotkeys.json │ │ ├── kick.json │ │ ├── langname.txt │ │ ├── loader.json │ │ ├── media-gallery.json │ │ ├── notifications.json │ │ ├── onboarding.json │ │ ├── overlays.json │ │ ├── performance-metric.json │ │ ├── promotional-copy.json │ │ ├── recent-events.json │ │ ├── remote-control.json │ │ ├── scenes.json │ │ ├── settings.json │ │ ├── socials.json │ │ ├── source-props.json │ │ ├── sources.json │ │ ├── stream-shift.json │ │ ├── streaming.json │ │ ├── streamlabels.json │ │ ├── tiktok.json │ │ ├── transitions.json │ │ ├── troubleshooter.json │ │ ├── trovo.json │ │ ├── twitch.json │ │ ├── twitter.json │ │ ├── undo.json │ │ ├── widget-alertbox.json │ │ ├── widget-chat-box.json │ │ ├── widget-chat-highlight.json │ │ ├── widget-credits.json │ │ ├── widget-donation-ticker.json │ │ ├── widget-emote-wall.json │ │ ├── widget-event-list.json │ │ ├── widget-game.json │ │ ├── widget-goal.json │ │ ├── widget-media-share.json │ │ ├── widget-poll.json │ │ ├── widget-spin-wheel.json │ │ ├── widget-sponsor-banner.json │ │ ├── widget-stream-boss.json │ │ ├── widget-tip-jar.json │ │ ├── widget-viewer-count.json │ │ ├── widgets.json │ │ └── youtube.json │ ├── da-DK │ │ ├── advanced-statistics.json │ │ ├── app.json │ │ ├── apps.json │ │ ├── audio.json │ │ ├── common.json │ │ ├── customization.json │ │ ├── developer.json │ │ ├── facebook.json │ │ ├── facemasks.json │ │ ├── filters.json │ │ ├── game-overlay.json │ │ ├── grow.json │ │ ├── guest-cam.json │ │ ├── highlighter.json │ │ ├── hotkeys.json │ │ ├── kick.json │ │ ├── langname.txt │ │ ├── loader.json │ │ ├── media-gallery.json │ │ ├── notifications.json │ │ ├── onboarding.json │ │ ├── overlays.json │ │ ├── performance-metric.json │ │ ├── promotional-copy.json │ │ ├── recent-events.json │ │ ├── remote-control.json │ │ ├── scenes.json │ │ ├── settings.json │ │ ├── socials.json │ │ ├── source-props.json │ │ ├── sources.json │ │ ├── stream-shift.json │ │ ├── streaming.json │ │ ├── streamlabels.json │ │ ├── tiktok.json │ │ ├── transitions.json │ │ ├── troubleshooter.json │ │ ├── trovo.json │ │ ├── twitch.json │ │ ├── twitter.json │ │ ├── undo.json │ │ ├── widget-alertbox.json │ │ ├── widget-chat-box.json │ │ ├── widget-chat-highlight.json │ │ ├── widget-credits.json │ │ ├── widget-donation-ticker.json │ │ ├── widget-emote-wall.json │ │ ├── widget-event-list.json │ │ ├── widget-game.json │ │ ├── widget-goal.json │ │ ├── widget-media-share.json │ │ ├── widget-poll.json │ │ ├── widget-spin-wheel.json │ │ ├── widget-sponsor-banner.json │ │ ├── widget-stream-boss.json │ │ ├── widget-tip-jar.json │ │ ├── widget-viewer-count.json │ │ ├── widgets.json │ │ └── youtube.json │ ├── de-DE │ │ ├── advanced-statistics.json │ │ ├── app.json │ │ ├── apps.json │ │ ├── audio.json │ │ ├── common.json │ │ ├── customization.json │ │ ├── developer.json │ │ ├── facebook.json │ │ ├── facemasks.json │ │ ├── filters.json │ │ ├── game-overlay.json │ │ ├── grow.json │ │ ├── guest-cam.json │ │ ├── highlighter.json │ │ ├── hotkeys.json │ │ ├── kick.json │ │ ├── langname.txt │ │ ├── loader.json │ │ ├── media-gallery.json │ │ ├── notifications.json │ │ ├── onboarding.json │ │ ├── overlays.json │ │ ├── performance-metric.json │ │ ├── promotional-copy.json │ │ ├── recent-events.json │ │ ├── remote-control.json │ │ ├── scenes.json │ │ ├── settings.json │ │ ├── socials.json │ │ ├── source-props.json │ │ ├── sources.json │ │ ├── stream-shift.json │ │ ├── streaming.json │ │ ├── streamlabels.json │ │ ├── tiktok.json │ │ ├── transitions.json │ │ ├── troubleshooter.json │ │ ├── trovo.json │ │ ├── twitch.json │ │ ├── twitter.json │ │ ├── undo.json │ │ ├── widget-alertbox.json │ │ ├── widget-chat-box.json │ │ ├── widget-chat-highlight.json │ │ ├── widget-credits.json │ │ ├── widget-donation-ticker.json │ │ ├── widget-emote-wall.json │ │ ├── widget-event-list.json │ │ ├── widget-game.json │ │ ├── widget-goal.json │ │ ├── widget-media-share.json │ │ ├── widget-poll.json │ │ ├── widget-spin-wheel.json │ │ ├── widget-sponsor-banner.json │ │ ├── widget-stream-boss.json │ │ ├── widget-tip-jar.json │ │ ├── widget-viewer-count.json │ │ ├── widgets.json │ │ └── youtube.json │ ├── en-US │ │ ├── advanced-statistics.json │ │ ├── app.json │ │ ├── apps.json │ │ ├── audio.json │ │ ├── common.json │ │ ├── customization.json │ │ ├── developer.json │ │ ├── facebook.json │ │ ├── facemasks.json │ │ ├── filters.json │ │ ├── game-overlay.json │ │ ├── grow.json │ │ ├── guest-cam.json │ │ ├── highlighter.json │ │ ├── hotkeys.json │ │ ├── kick.json │ │ ├── langname.txt │ │ ├── loader.json │ │ ├── media-gallery.json │ │ ├── notifications.json │ │ ├── onboarding.json │ │ ├── overlays.json │ │ ├── performance-metric.json │ │ ├── promotional-copy.json │ │ ├── recent-events.json │ │ ├── remote-control.json │ │ ├── scenes.json │ │ ├── settings.json │ │ ├── socials.json │ │ ├── source-props.json │ │ ├── sources.json │ │ ├── stream-shift.json │ │ ├── streaming.json │ │ ├── streamlabels.json │ │ ├── tiktok.json │ │ ├── transitions.json │ │ ├── troubleshooter.json │ │ ├── trovo.json │ │ ├── twitch.json │ │ ├── twitter.json │ │ ├── undo.json │ │ ├── widget-alertbox.json │ │ ├── widget-chat-box.json │ │ ├── widget-chat-highlight.json │ │ ├── widget-credits.json │ │ ├── widget-donation-ticker.json │ │ ├── widget-emote-wall.json │ │ ├── widget-event-list.json │ │ ├── widget-game.json │ │ ├── widget-goal.json │ │ ├── widget-media-share.json │ │ ├── widget-poll.json │ │ ├── widget-spin-wheel.json │ │ ├── widget-sponsor-banner.json │ │ ├── widget-stream-boss.json │ │ ├── widget-tip-jar.json │ │ ├── widget-viewer-count.json │ │ ├── widgets.json │ │ └── youtube.json │ ├── es-ES │ │ ├── advanced-statistics.json │ │ ├── app.json │ │ ├── apps.json │ │ ├── audio.json │ │ ├── common.json │ │ ├── customization.json │ │ ├── developer.json │ │ ├── facebook.json │ │ ├── facemasks.json │ │ ├── filters.json │ │ ├── game-overlay.json │ │ ├── grow.json │ │ ├── guest-cam.json │ │ ├── highlighter.json │ │ ├── hotkeys.json │ │ ├── kick.json │ │ ├── langname.txt │ │ ├── loader.json │ │ ├── media-gallery.json │ │ ├── notifications.json │ │ ├── onboarding.json │ │ ├── overlays.json │ │ ├── performance-metric.json │ │ ├── promotional-copy.json │ │ ├── recent-events.json │ │ ├── remote-control.json │ │ ├── scenes.json │ │ ├── settings.json │ │ ├── socials.json │ │ ├── source-props.json │ │ ├── sources.json │ │ ├── stream-shift.json │ │ ├── streaming.json │ │ ├── streamlabels.json │ │ ├── tiktok.json │ │ ├── transitions.json │ │ ├── troubleshooter.json │ │ ├── trovo.json │ │ ├── twitch.json │ │ ├── twitter.json │ │ ├── undo.json │ │ ├── widget-alertbox.json │ │ ├── widget-chat-box.json │ │ ├── widget-chat-highlight.json │ │ ├── widget-credits.json │ │ ├── widget-donation-ticker.json │ │ ├── widget-emote-wall.json │ │ ├── widget-event-list.json │ │ ├── widget-game.json │ │ ├── widget-goal.json │ │ ├── widget-media-share.json │ │ ├── widget-poll.json │ │ ├── widget-spin-wheel.json │ │ ├── widget-sponsor-banner.json │ │ ├── widget-stream-boss.json │ │ ├── widget-tip-jar.json │ │ ├── widget-viewer-count.json │ │ ├── widgets.json │ │ └── youtube.json │ ├── fallback.ts │ ├── fr-FR │ │ ├── advanced-statistics.json │ │ ├── app.json │ │ ├── apps.json │ │ ├── audio.json │ │ ├── common.json │ │ ├── customization.json │ │ ├── developer.json │ │ ├── facebook.json │ │ ├── facemasks.json │ │ ├── filters.json │ │ ├── game-overlay.json │ │ ├── grow.json │ │ ├── guest-cam.json │ │ ├── highlighter.json │ │ ├── hotkeys.json │ │ ├── kick.json │ │ ├── langname.txt │ │ ├── loader.json │ │ ├── media-gallery.json │ │ ├── notifications.json │ │ ├── onboarding.json │ │ ├── overlays.json │ │ ├── performance-metric.json │ │ ├── promotional-copy.json │ │ ├── recent-events.json │ │ ├── remote-control.json │ │ ├── scenes.json │ │ ├── settings.json │ │ ├── socials.json │ │ ├── source-props.json │ │ ├── sources.json │ │ ├── stream-shift.json │ │ ├── streaming.json │ │ ├── streamlabels.json │ │ ├── tiktok.json │ │ ├── transitions.json │ │ ├── troubleshooter.json │ │ ├── trovo.json │ │ ├── twitch.json │ │ ├── twitter.json │ │ ├── undo.json │ │ ├── widget-alertbox.json │ │ ├── widget-chat-box.json │ │ ├── widget-chat-highlight.json │ │ ├── widget-credits.json │ │ ├── widget-donation-ticker.json │ │ ├── widget-emote-wall.json │ │ ├── widget-event-list.json │ │ ├── widget-game.json │ │ ├── widget-goal.json │ │ ├── widget-media-share.json │ │ ├── widget-poll.json │ │ ├── widget-spin-wheel.json │ │ ├── widget-sponsor-banner.json │ │ ├── widget-stream-boss.json │ │ ├── widget-tip-jar.json │ │ ├── widget-viewer-count.json │ │ ├── widgets.json │ │ └── youtube.json │ ├── hu-HU │ │ ├── advanced-statistics.json │ │ ├── app.json │ │ ├── apps.json │ │ ├── audio.json │ │ ├── common.json │ │ ├── customization.json │ │ ├── developer.json │ │ ├── facebook.json │ │ ├── facemasks.json │ │ ├── filters.json │ │ ├── game-overlay.json │ │ ├── grow.json │ │ ├── guest-cam.json │ │ ├── highlighter.json │ │ ├── hotkeys.json │ │ ├── kick.json │ │ ├── langname.txt │ │ ├── loader.json │ │ ├── media-gallery.json │ │ ├── notifications.json │ │ ├── onboarding.json │ │ ├── overlays.json │ │ ├── performance-metric.json │ │ ├── promotional-copy.json │ │ ├── recent-events.json │ │ ├── remote-control.json │ │ ├── scenes.json │ │ ├── settings.json │ │ ├── socials.json │ │ ├── source-props.json │ │ ├── sources.json │ │ ├── stream-shift.json │ │ ├── streaming.json │ │ ├── streamlabels.json │ │ ├── tiktok.json │ │ ├── transitions.json │ │ ├── troubleshooter.json │ │ ├── trovo.json │ │ ├── twitch.json │ │ ├── twitter.json │ │ ├── undo.json │ │ ├── widget-alertbox.json │ │ ├── widget-chat-box.json │ │ ├── widget-chat-highlight.json │ │ ├── widget-credits.json │ │ ├── widget-donation-ticker.json │ │ ├── widget-emote-wall.json │ │ ├── widget-event-list.json │ │ ├── widget-game.json │ │ ├── widget-goal.json │ │ ├── widget-media-share.json │ │ ├── widget-poll.json │ │ ├── widget-spin-wheel.json │ │ ├── widget-sponsor-banner.json │ │ ├── widget-stream-boss.json │ │ ├── widget-tip-jar.json │ │ ├── widget-viewer-count.json │ │ ├── widgets.json │ │ └── youtube.json │ ├── id-ID │ │ ├── advanced-statistics.json │ │ ├── app.json │ │ ├── apps.json │ │ ├── audio.json │ │ ├── common.json │ │ ├── customization.json │ │ ├── developer.json │ │ ├── facebook.json │ │ ├── facemasks.json │ │ ├── filters.json │ │ ├── game-overlay.json │ │ ├── grow.json │ │ ├── guest-cam.json │ │ ├── highlighter.json │ │ ├── hotkeys.json │ │ ├── kick.json │ │ ├── langname.txt │ │ ├── loader.json │ │ ├── media-gallery.json │ │ ├── notifications.json │ │ ├── onboarding.json │ │ ├── overlays.json │ │ ├── performance-metric.json │ │ ├── promotional-copy.json │ │ ├── recent-events.json │ │ ├── remote-control.json │ │ ├── scenes.json │ │ ├── settings.json │ │ ├── socials.json │ │ ├── source-props.json │ │ ├── sources.json │ │ ├── stream-shift.json │ │ ├── streaming.json │ │ ├── streamlabels.json │ │ ├── tiktok.json │ │ ├── transitions.json │ │ ├── troubleshooter.json │ │ ├── trovo.json │ │ ├── twitch.json │ │ ├── twitter.json │ │ ├── undo.json │ │ ├── widget-alertbox.json │ │ ├── widget-chat-box.json │ │ ├── widget-chat-highlight.json │ │ ├── widget-credits.json │ │ ├── widget-donation-ticker.json │ │ ├── widget-emote-wall.json │ │ ├── widget-event-list.json │ │ ├── widget-game.json │ │ ├── widget-goal.json │ │ ├── widget-media-share.json │ │ ├── widget-poll.json │ │ ├── widget-spin-wheel.json │ │ ├── widget-sponsor-banner.json │ │ ├── widget-stream-boss.json │ │ ├── widget-tip-jar.json │ │ ├── widget-viewer-count.json │ │ ├── widgets.json │ │ └── youtube.json │ ├── it-IT │ │ ├── advanced-statistics.json │ │ ├── app.json │ │ ├── apps.json │ │ ├── audio.json │ │ ├── common.json │ │ ├── customization.json │ │ ├── developer.json │ │ ├── facebook.json │ │ ├── facemasks.json │ │ ├── filters.json │ │ ├── game-overlay.json │ │ ├── grow.json │ │ ├── guest-cam.json │ │ ├── highlighter.json │ │ ├── hotkeys.json │ │ ├── kick.json │ │ ├── langname.txt │ │ ├── loader.json │ │ ├── media-gallery.json │ │ ├── notifications.json │ │ ├── onboarding.json │ │ ├── overlays.json │ │ ├── performance-metric.json │ │ ├── promotional-copy.json │ │ ├── recent-events.json │ │ ├── remote-control.json │ │ ├── scenes.json │ │ ├── settings.json │ │ ├── socials.json │ │ ├── source-props.json │ │ ├── sources.json │ │ ├── stream-shift.json │ │ ├── streaming.json │ │ ├── streamlabels.json │ │ ├── tiktok.json │ │ ├── transitions.json │ │ ├── troubleshooter.json │ │ ├── trovo.json │ │ ├── twitch.json │ │ ├── twitter.json │ │ ├── undo.json │ │ ├── widget-alertbox.json │ │ ├── widget-chat-box.json │ │ ├── widget-chat-highlight.json │ │ ├── widget-credits.json │ │ ├── widget-donation-ticker.json │ │ ├── widget-emote-wall.json │ │ ├── widget-event-list.json │ │ ├── widget-game.json │ │ ├── widget-goal.json │ │ ├── widget-media-share.json │ │ ├── widget-poll.json │ │ ├── widget-spin-wheel.json │ │ ├── widget-sponsor-banner.json │ │ ├── widget-stream-boss.json │ │ ├── widget-tip-jar.json │ │ ├── widget-viewer-count.json │ │ ├── widgets.json │ │ └── youtube.json │ ├── ja-JP │ │ ├── advanced-statistics.json │ │ ├── app.json │ │ ├── apps.json │ │ ├── audio.json │ │ ├── common.json │ │ ├── customization.json │ │ ├── developer.json │ │ ├── facebook.json │ │ ├── facemasks.json │ │ ├── filters.json │ │ ├── game-overlay.json │ │ ├── grow.json │ │ ├── guest-cam.json │ │ ├── highlighter.json │ │ ├── hotkeys.json │ │ ├── kick.json │ │ ├── langname.txt │ │ ├── loader.json │ │ ├── media-gallery.json │ │ ├── notifications.json │ │ ├── onboarding.json │ │ ├── overlays.json │ │ ├── performance-metric.json │ │ ├── promotional-copy.json │ │ ├── recent-events.json │ │ ├── remote-control.json │ │ ├── scenes.json │ │ ├── settings.json │ │ ├── socials.json │ │ ├── source-props.json │ │ ├── sources.json │ │ ├── stream-shift.json │ │ ├── streaming.json │ │ ├── streamlabels.json │ │ ├── tiktok.json │ │ ├── transitions.json │ │ ├── troubleshooter.json │ │ ├── trovo.json │ │ ├── twitch.json │ │ ├── twitter.json │ │ ├── undo.json │ │ ├── widget-alertbox.json │ │ ├── widget-chat-box.json │ │ ├── widget-chat-highlight.json │ │ ├── widget-credits.json │ │ ├── widget-donation-ticker.json │ │ ├── widget-emote-wall.json │ │ ├── widget-event-list.json │ │ ├── widget-game.json │ │ ├── widget-goal.json │ │ ├── widget-media-share.json │ │ ├── widget-poll.json │ │ ├── widget-spin-wheel.json │ │ ├── widget-sponsor-banner.json │ │ ├── widget-stream-boss.json │ │ ├── widget-tip-jar.json │ │ ├── widget-viewer-count.json │ │ ├── widgets.json │ │ └── youtube.json │ ├── ko-KR │ │ ├── advanced-statistics.json │ │ ├── app.json │ │ ├── apps.json │ │ ├── audio.json │ │ ├── common.json │ │ ├── customization.json │ │ ├── developer.json │ │ ├── facebook.json │ │ ├── facemasks.json │ │ ├── filters.json │ │ ├── game-overlay.json │ │ ├── grow.json │ │ ├── guest-cam.json │ │ ├── highlighter.json │ │ ├── hotkeys.json │ │ ├── kick.json │ │ ├── langname.txt │ │ ├── loader.json │ │ ├── media-gallery.json │ │ ├── notifications.json │ │ ├── onboarding.json │ │ ├── overlays.json │ │ ├── performance-metric.json │ │ ├── promotional-copy.json │ │ ├── recent-events.json │ │ ├── remote-control.json │ │ ├── scenes.json │ │ ├── settings.json │ │ ├── socials.json │ │ ├── source-props.json │ │ ├── sources.json │ │ ├── stream-shift.json │ │ ├── streaming.json │ │ ├── streamlabels.json │ │ ├── tiktok.json │ │ ├── transitions.json │ │ ├── troubleshooter.json │ │ ├── trovo.json │ │ ├── twitch.json │ │ ├── twitter.json │ │ ├── undo.json │ │ ├── widget-alertbox.json │ │ ├── widget-chat-box.json │ │ ├── widget-chat-highlight.json │ │ ├── widget-credits.json │ │ ├── widget-donation-ticker.json │ │ ├── widget-emote-wall.json │ │ ├── widget-event-list.json │ │ ├── widget-game.json │ │ ├── widget-goal.json │ │ ├── widget-media-share.json │ │ ├── widget-poll.json │ │ ├── widget-spin-wheel.json │ │ ├── widget-sponsor-banner.json │ │ ├── widget-stream-boss.json │ │ ├── widget-tip-jar.json │ │ ├── widget-viewer-count.json │ │ ├── widgets.json │ │ └── youtube.json │ ├── mk-MK │ │ ├── advanced-statistics.json │ │ ├── app.json │ │ ├── apps.json │ │ ├── audio.json │ │ ├── common.json │ │ ├── customization.json │ │ ├── developer.json │ │ ├── facebook.json │ │ ├── facemasks.json │ │ ├── filters.json │ │ ├── game-overlay.json │ │ ├── grow.json │ │ ├── guest-cam.json │ │ ├── highlighter.json │ │ ├── hotkeys.json │ │ ├── kick.json │ │ ├── langname.txt │ │ ├── loader.json │ │ ├── media-gallery.json │ │ ├── notifications.json │ │ ├── onboarding.json │ │ ├── overlays.json │ │ ├── performance-metric.json │ │ ├── promotional-copy.json │ │ ├── recent-events.json │ │ ├── remote-control.json │ │ ├── scenes.json │ │ ├── settings.json │ │ ├── socials.json │ │ ├── source-props.json │ │ ├── sources.json │ │ ├── stream-shift.json │ │ ├── streaming.json │ │ ├── streamlabels.json │ │ ├── tiktok.json │ │ ├── transitions.json │ │ ├── troubleshooter.json │ │ ├── trovo.json │ │ ├── twitch.json │ │ ├── twitter.json │ │ ├── undo.json │ │ ├── widget-alertbox.json │ │ ├── widget-chat-box.json │ │ ├── widget-chat-highlight.json │ │ ├── widget-credits.json │ │ ├── widget-donation-ticker.json │ │ ├── widget-emote-wall.json │ │ ├── widget-event-list.json │ │ ├── widget-game.json │ │ ├── widget-goal.json │ │ ├── widget-media-share.json │ │ ├── widget-poll.json │ │ ├── widget-spin-wheel.json │ │ ├── widget-sponsor-banner.json │ │ ├── widget-stream-boss.json │ │ ├── widget-tip-jar.json │ │ ├── widget-viewer-count.json │ │ ├── widgets.json │ │ └── youtube.json │ ├── nl-NL │ │ ├── advanced-statistics.json │ │ ├── app.json │ │ ├── apps.json │ │ ├── audio.json │ │ ├── common.json │ │ ├── customization.json │ │ ├── developer.json │ │ ├── facebook.json │ │ ├── facemasks.json │ │ ├── filters.json │ │ ├── game-overlay.json │ │ ├── grow.json │ │ ├── guest-cam.json │ │ ├── highlighter.json │ │ ├── hotkeys.json │ │ ├── kick.json │ │ ├── langname.txt │ │ ├── loader.json │ │ ├── media-gallery.json │ │ ├── notifications.json │ │ ├── onboarding.json │ │ ├── overlays.json │ │ ├── performance-metric.json │ │ ├── promotional-copy.json │ │ ├── recent-events.json │ │ ├── remote-control.json │ │ ├── scenes.json │ │ ├── settings.json │ │ ├── socials.json │ │ ├── source-props.json │ │ ├── sources.json │ │ ├── stream-shift.json │ │ ├── streaming.json │ │ ├── streamlabels.json │ │ ├── tiktok.json │ │ ├── transitions.json │ │ ├── troubleshooter.json │ │ ├── trovo.json │ │ ├── twitch.json │ │ ├── twitter.json │ │ ├── undo.json │ │ ├── widget-alertbox.json │ │ ├── widget-chat-box.json │ │ ├── widget-chat-highlight.json │ │ ├── widget-credits.json │ │ ├── widget-donation-ticker.json │ │ ├── widget-emote-wall.json │ │ ├── widget-event-list.json │ │ ├── widget-game.json │ │ ├── widget-goal.json │ │ ├── widget-media-share.json │ │ ├── widget-poll.json │ │ ├── widget-spin-wheel.json │ │ ├── widget-sponsor-banner.json │ │ ├── widget-stream-boss.json │ │ ├── widget-tip-jar.json │ │ ├── widget-viewer-count.json │ │ ├── widgets.json │ │ └── youtube.json │ ├── pl-PL │ │ ├── advanced-statistics.json │ │ ├── app.json │ │ ├── apps.json │ │ ├── audio.json │ │ ├── common.json │ │ ├── customization.json │ │ ├── developer.json │ │ ├── facebook.json │ │ ├── facemasks.json │ │ ├── filters.json │ │ ├── game-overlay.json │ │ ├── grow.json │ │ ├── guest-cam.json │ │ ├── highlighter.json │ │ ├── hotkeys.json │ │ ├── kick.json │ │ ├── langname.txt │ │ ├── loader.json │ │ ├── media-gallery.json │ │ ├── notifications.json │ │ ├── onboarding.json │ │ ├── overlays.json │ │ ├── performance-metric.json │ │ ├── promotional-copy.json │ │ ├── recent-events.json │ │ ├── remote-control.json │ │ ├── scenes.json │ │ ├── settings.json │ │ ├── socials.json │ │ ├── source-props.json │ │ ├── sources.json │ │ ├── stream-shift.json │ │ ├── streaming.json │ │ ├── streamlabels.json │ │ ├── tiktok.json │ │ ├── transitions.json │ │ ├── troubleshooter.json │ │ ├── trovo.json │ │ ├── twitch.json │ │ ├── twitter.json │ │ ├── undo.json │ │ ├── widget-alertbox.json │ │ ├── widget-chat-box.json │ │ ├── widget-chat-highlight.json │ │ ├── widget-credits.json │ │ ├── widget-donation-ticker.json │ │ ├── widget-emote-wall.json │ │ ├── widget-event-list.json │ │ ├── widget-game.json │ │ ├── widget-goal.json │ │ ├── widget-media-share.json │ │ ├── widget-poll.json │ │ ├── widget-spin-wheel.json │ │ ├── widget-sponsor-banner.json │ │ ├── widget-stream-boss.json │ │ ├── widget-tip-jar.json │ │ ├── widget-viewer-count.json │ │ ├── widgets.json │ │ └── youtube.json │ ├── pt-BR │ │ ├── advanced-statistics.json │ │ ├── app.json │ │ ├── apps.json │ │ ├── audio.json │ │ ├── common.json │ │ ├── customization.json │ │ ├── developer.json │ │ ├── facebook.json │ │ ├── facemasks.json │ │ ├── filters.json │ │ ├── game-overlay.json │ │ ├── grow.json │ │ ├── guest-cam.json │ │ ├── highlighter.json │ │ ├── hotkeys.json │ │ ├── kick.json │ │ ├── langname.txt │ │ ├── loader.json │ │ ├── media-gallery.json │ │ ├── notifications.json │ │ ├── onboarding.json │ │ ├── overlays.json │ │ ├── performance-metric.json │ │ ├── promotional-copy.json │ │ ├── recent-events.json │ │ ├── remote-control.json │ │ ├── scenes.json │ │ ├── settings.json │ │ ├── socials.json │ │ ├── source-props.json │ │ ├── sources.json │ │ ├── stream-shift.json │ │ ├── streaming.json │ │ ├── streamlabels.json │ │ ├── tiktok.json │ │ ├── transitions.json │ │ ├── troubleshooter.json │ │ ├── trovo.json │ │ ├── twitch.json │ │ ├── twitter.json │ │ ├── undo.json │ │ ├── widget-alertbox.json │ │ ├── widget-chat-box.json │ │ ├── widget-chat-highlight.json │ │ ├── widget-credits.json │ │ ├── widget-donation-ticker.json │ │ ├── widget-emote-wall.json │ │ ├── widget-event-list.json │ │ ├── widget-game.json │ │ ├── widget-goal.json │ │ ├── widget-media-share.json │ │ ├── widget-poll.json │ │ ├── widget-spin-wheel.json │ │ ├── widget-sponsor-banner.json │ │ ├── widget-stream-boss.json │ │ ├── widget-tip-jar.json │ │ ├── widget-viewer-count.json │ │ ├── widgets.json │ │ └── youtube.json │ ├── pt-PT │ │ ├── advanced-statistics.json │ │ ├── app.json │ │ ├── apps.json │ │ ├── audio.json │ │ ├── common.json │ │ ├── customization.json │ │ ├── developer.json │ │ ├── facebook.json │ │ ├── facemasks.json │ │ ├── filters.json │ │ ├── game-overlay.json │ │ ├── grow.json │ │ ├── guest-cam.json │ │ ├── highlighter.json │ │ ├── hotkeys.json │ │ ├── kick.json │ │ ├── langname.txt │ │ ├── loader.json │ │ ├── media-gallery.json │ │ ├── notifications.json │ │ ├── onboarding.json │ │ ├── overlays.json │ │ ├── performance-metric.json │ │ ├── promotional-copy.json │ │ ├── recent-events.json │ │ ├── remote-control.json │ │ ├── scenes.json │ │ ├── settings.json │ │ ├── socials.json │ │ ├── source-props.json │ │ ├── sources.json │ │ ├── stream-shift.json │ │ ├── streaming.json │ │ ├── streamlabels.json │ │ ├── tiktok.json │ │ ├── transitions.json │ │ ├── troubleshooter.json │ │ ├── trovo.json │ │ ├── twitch.json │ │ ├── twitter.json │ │ ├── undo.json │ │ ├── widget-alertbox.json │ │ ├── widget-chat-box.json │ │ ├── widget-chat-highlight.json │ │ ├── widget-credits.json │ │ ├── widget-donation-ticker.json │ │ ├── widget-emote-wall.json │ │ ├── widget-event-list.json │ │ ├── widget-game.json │ │ ├── widget-goal.json │ │ ├── widget-media-share.json │ │ ├── widget-poll.json │ │ ├── widget-spin-wheel.json │ │ ├── widget-sponsor-banner.json │ │ ├── widget-stream-boss.json │ │ ├── widget-tip-jar.json │ │ ├── widget-viewer-count.json │ │ ├── widgets.json │ │ └── youtube.json │ ├── ru-RU │ │ ├── advanced-statistics.json │ │ ├── app.json │ │ ├── apps.json │ │ ├── audio.json │ │ ├── common.json │ │ ├── customization.json │ │ ├── developer.json │ │ ├── facebook.json │ │ ├── facemasks.json │ │ ├── filters.json │ │ ├── game-overlay.json │ │ ├── grow.json │ │ ├── guest-cam.json │ │ ├── highlighter.json │ │ ├── hotkeys.json │ │ ├── kick.json │ │ ├── langname.txt │ │ ├── loader.json │ │ ├── media-gallery.json │ │ ├── notifications.json │ │ ├── onboarding.json │ │ ├── overlays.json │ │ ├── performance-metric.json │ │ ├── promotional-copy.json │ │ ├── recent-events.json │ │ ├── remote-control.json │ │ ├── scenes.json │ │ ├── settings.json │ │ ├── socials.json │ │ ├── source-props.json │ │ ├── sources.json │ │ ├── stream-shift.json │ │ ├── streaming.json │ │ ├── streamlabels.json │ │ ├── tiktok.json │ │ ├── transitions.json │ │ ├── troubleshooter.json │ │ ├── trovo.json │ │ ├── twitch.json │ │ ├── twitter.json │ │ ├── undo.json │ │ ├── widget-alertbox.json │ │ ├── widget-chat-box.json │ │ ├── widget-chat-highlight.json │ │ ├── widget-credits.json │ │ ├── widget-donation-ticker.json │ │ ├── widget-emote-wall.json │ │ ├── widget-event-list.json │ │ ├── widget-game.json │ │ ├── widget-goal.json │ │ ├── widget-media-share.json │ │ ├── widget-poll.json │ │ ├── widget-spin-wheel.json │ │ ├── widget-sponsor-banner.json │ │ ├── widget-stream-boss.json │ │ ├── widget-tip-jar.json │ │ ├── widget-viewer-count.json │ │ ├── widgets.json │ │ └── youtube.json │ ├── sk-SK │ │ ├── advanced-statistics.json │ │ ├── app.json │ │ ├── apps.json │ │ ├── audio.json │ │ ├── common.json │ │ ├── customization.json │ │ ├── developer.json │ │ ├── facebook.json │ │ ├── facemasks.json │ │ ├── filters.json │ │ ├── game-overlay.json │ │ ├── grow.json │ │ ├── guest-cam.json │ │ ├── highlighter.json │ │ ├── hotkeys.json │ │ ├── kick.json │ │ ├── langname.txt │ │ ├── loader.json │ │ ├── media-gallery.json │ │ ├── notifications.json │ │ ├── onboarding.json │ │ ├── overlays.json │ │ ├── performance-metric.json │ │ ├── promotional-copy.json │ │ ├── recent-events.json │ │ ├── remote-control.json │ │ ├── scenes.json │ │ ├── settings.json │ │ ├── socials.json │ │ ├── source-props.json │ │ ├── sources.json │ │ ├── stream-shift.json │ │ ├── streaming.json │ │ ├── streamlabels.json │ │ ├── tiktok.json │ │ ├── transitions.json │ │ ├── troubleshooter.json │ │ ├── trovo.json │ │ ├── twitch.json │ │ ├── twitter.json │ │ ├── undo.json │ │ ├── widget-alertbox.json │ │ ├── widget-chat-box.json │ │ ├── widget-chat-highlight.json │ │ ├── widget-credits.json │ │ ├── widget-donation-ticker.json │ │ ├── widget-emote-wall.json │ │ ├── widget-event-list.json │ │ ├── widget-game.json │ │ ├── widget-goal.json │ │ ├── widget-media-share.json │ │ ├── widget-poll.json │ │ ├── widget-spin-wheel.json │ │ ├── widget-sponsor-banner.json │ │ ├── widget-stream-boss.json │ │ ├── widget-tip-jar.json │ │ ├── widget-viewer-count.json │ │ ├── widgets.json │ │ └── youtube.json │ ├── sl-SI │ │ ├── advanced-statistics.json │ │ ├── app.json │ │ ├── apps.json │ │ ├── audio.json │ │ ├── common.json │ │ ├── customization.json │ │ ├── developer.json │ │ ├── facebook.json │ │ ├── facemasks.json │ │ ├── filters.json │ │ ├── game-overlay.json │ │ ├── grow.json │ │ ├── guest-cam.json │ │ ├── highlighter.json │ │ ├── hotkeys.json │ │ ├── kick.json │ │ ├── langname.txt │ │ ├── loader.json │ │ ├── media-gallery.json │ │ ├── notifications.json │ │ ├── onboarding.json │ │ ├── overlays.json │ │ ├── performance-metric.json │ │ ├── promotional-copy.json │ │ ├── recent-events.json │ │ ├── remote-control.json │ │ ├── scenes.json │ │ ├── settings.json │ │ ├── socials.json │ │ ├── source-props.json │ │ ├── sources.json │ │ ├── stream-shift.json │ │ ├── streaming.json │ │ ├── streamlabels.json │ │ ├── tiktok.json │ │ ├── transitions.json │ │ ├── troubleshooter.json │ │ ├── trovo.json │ │ ├── twitch.json │ │ ├── twitter.json │ │ ├── undo.json │ │ ├── widget-alertbox.json │ │ ├── widget-chat-box.json │ │ ├── widget-chat-highlight.json │ │ ├── widget-credits.json │ │ ├── widget-donation-ticker.json │ │ ├── widget-emote-wall.json │ │ ├── widget-event-list.json │ │ ├── widget-game.json │ │ ├── widget-goal.json │ │ ├── widget-media-share.json │ │ ├── widget-poll.json │ │ ├── widget-spin-wheel.json │ │ ├── widget-sponsor-banner.json │ │ ├── widget-stream-boss.json │ │ ├── widget-tip-jar.json │ │ ├── widget-viewer-count.json │ │ ├── widgets.json │ │ └── youtube.json │ ├── sv-SE │ │ ├── advanced-statistics.json │ │ ├── app.json │ │ ├── apps.json │ │ ├── audio.json │ │ ├── common.json │ │ ├── customization.json │ │ ├── developer.json │ │ ├── facebook.json │ │ ├── facemasks.json │ │ ├── filters.json │ │ ├── game-overlay.json │ │ ├── grow.json │ │ ├── guest-cam.json │ │ ├── highlighter.json │ │ ├── hotkeys.json │ │ ├── kick.json │ │ ├── langname.txt │ │ ├── loader.json │ │ ├── media-gallery.json │ │ ├── notifications.json │ │ ├── onboarding.json │ │ ├── overlays.json │ │ ├── performance-metric.json │ │ ├── promotional-copy.json │ │ ├── recent-events.json │ │ ├── remote-control.json │ │ ├── scenes.json │ │ ├── settings.json │ │ ├── socials.json │ │ ├── source-props.json │ │ ├── sources.json │ │ ├── stream-shift.json │ │ ├── streaming.json │ │ ├── streamlabels.json │ │ ├── tiktok.json │ │ ├── transitions.json │ │ ├── troubleshooter.json │ │ ├── trovo.json │ │ ├── twitch.json │ │ ├── twitter.json │ │ ├── undo.json │ │ ├── widget-alertbox.json │ │ ├── widget-chat-box.json │ │ ├── widget-chat-highlight.json │ │ ├── widget-credits.json │ │ ├── widget-donation-ticker.json │ │ ├── widget-emote-wall.json │ │ ├── widget-event-list.json │ │ ├── widget-game.json │ │ ├── widget-goal.json │ │ ├── widget-media-share.json │ │ ├── widget-poll.json │ │ ├── widget-spin-wheel.json │ │ ├── widget-sponsor-banner.json │ │ ├── widget-stream-boss.json │ │ ├── widget-tip-jar.json │ │ ├── widget-viewer-count.json │ │ ├── widgets.json │ │ └── youtube.json │ ├── th-TH │ │ ├── advanced-statistics.json │ │ ├── app.json │ │ ├── apps.json │ │ ├── audio.json │ │ ├── common.json │ │ ├── customization.json │ │ ├── developer.json │ │ ├── facebook.json │ │ ├── facemasks.json │ │ ├── filters.json │ │ ├── game-overlay.json │ │ ├── grow.json │ │ ├── guest-cam.json │ │ ├── highlighter.json │ │ ├── hotkeys.json │ │ ├── kick.json │ │ ├── langname.txt │ │ ├── loader.json │ │ ├── media-gallery.json │ │ ├── notifications.json │ │ ├── onboarding.json │ │ ├── overlays.json │ │ ├── performance-metric.json │ │ ├── promotional-copy.json │ │ ├── recent-events.json │ │ ├── remote-control.json │ │ ├── scenes.json │ │ ├── settings.json │ │ ├── socials.json │ │ ├── source-props.json │ │ ├── sources.json │ │ ├── stream-shift.json │ │ ├── streaming.json │ │ ├── streamlabels.json │ │ ├── tiktok.json │ │ ├── transitions.json │ │ ├── troubleshooter.json │ │ ├── trovo.json │ │ ├── twitch.json │ │ ├── twitter.json │ │ ├── undo.json │ │ ├── widget-alertbox.json │ │ ├── widget-chat-box.json │ │ ├── widget-chat-highlight.json │ │ ├── widget-credits.json │ │ ├── widget-donation-ticker.json │ │ ├── widget-emote-wall.json │ │ ├── widget-event-list.json │ │ ├── widget-game.json │ │ ├── widget-goal.json │ │ ├── widget-media-share.json │ │ ├── widget-poll.json │ │ ├── widget-spin-wheel.json │ │ ├── widget-sponsor-banner.json │ │ ├── widget-stream-boss.json │ │ ├── widget-tip-jar.json │ │ ├── widget-viewer-count.json │ │ ├── widgets.json │ │ └── youtube.json │ ├── tr-TR │ │ ├── advanced-statistics.json │ │ ├── app.json │ │ ├── apps.json │ │ ├── audio.json │ │ ├── common.json │ │ ├── customization.json │ │ ├── developer.json │ │ ├── facebook.json │ │ ├── facemasks.json │ │ ├── filters.json │ │ ├── game-overlay.json │ │ ├── grow.json │ │ ├── guest-cam.json │ │ ├── highlighter.json │ │ ├── hotkeys.json │ │ ├── kick.json │ │ ├── langname.txt │ │ ├── loader.json │ │ ├── media-gallery.json │ │ ├── notifications.json │ │ ├── onboarding.json │ │ ├── overlays.json │ │ ├── performance-metric.json │ │ ├── promotional-copy.json │ │ ├── recent-events.json │ │ ├── remote-control.json │ │ ├── scenes.json │ │ ├── settings.json │ │ ├── socials.json │ │ ├── source-props.json │ │ ├── sources.json │ │ ├── stream-shift.json │ │ ├── streaming.json │ │ ├── streamlabels.json │ │ ├── tiktok.json │ │ ├── transitions.json │ │ ├── troubleshooter.json │ │ ├── trovo.json │ │ ├── twitch.json │ │ ├── twitter.json │ │ ├── undo.json │ │ ├── widget-alertbox.json │ │ ├── widget-chat-box.json │ │ ├── widget-chat-highlight.json │ │ ├── widget-credits.json │ │ ├── widget-donation-ticker.json │ │ ├── widget-emote-wall.json │ │ ├── widget-event-list.json │ │ ├── widget-game.json │ │ ├── widget-goal.json │ │ ├── widget-media-share.json │ │ ├── widget-poll.json │ │ ├── widget-spin-wheel.json │ │ ├── widget-sponsor-banner.json │ │ ├── widget-stream-boss.json │ │ ├── widget-tip-jar.json │ │ ├── widget-viewer-count.json │ │ ├── widgets.json │ │ └── youtube.json │ ├── vi-VN │ │ ├── advanced-statistics.json │ │ ├── app.json │ │ ├── apps.json │ │ ├── audio.json │ │ ├── common.json │ │ ├── customization.json │ │ ├── developer.json │ │ ├── facebook.json │ │ ├── facemasks.json │ │ ├── filters.json │ │ ├── game-overlay.json │ │ ├── grow.json │ │ ├── guest-cam.json │ │ ├── highlighter.json │ │ ├── hotkeys.json │ │ ├── kick.json │ │ ├── langname.txt │ │ ├── loader.json │ │ ├── media-gallery.json │ │ ├── notifications.json │ │ ├── onboarding.json │ │ ├── overlays.json │ │ ├── performance-metric.json │ │ ├── promotional-copy.json │ │ ├── recent-events.json │ │ ├── remote-control.json │ │ ├── scenes.json │ │ ├── settings.json │ │ ├── socials.json │ │ ├── source-props.json │ │ ├── sources.json │ │ ├── stream-shift.json │ │ ├── streaming.json │ │ ├── streamlabels.json │ │ ├── tiktok.json │ │ ├── transitions.json │ │ ├── troubleshooter.json │ │ ├── trovo.json │ │ ├── twitch.json │ │ ├── twitter.json │ │ ├── undo.json │ │ ├── widget-alertbox.json │ │ ├── widget-chat-box.json │ │ ├── widget-chat-highlight.json │ │ ├── widget-credits.json │ │ ├── widget-donation-ticker.json │ │ ├── widget-emote-wall.json │ │ ├── widget-event-list.json │ │ ├── widget-game.json │ │ ├── widget-goal.json │ │ ├── widget-media-share.json │ │ ├── widget-poll.json │ │ ├── widget-spin-wheel.json │ │ ├── widget-sponsor-banner.json │ │ ├── widget-stream-boss.json │ │ ├── widget-tip-jar.json │ │ ├── widget-viewer-count.json │ │ ├── widgets.json │ │ └── youtube.json │ ├── zh-CN │ │ ├── advanced-statistics.json │ │ ├── app.json │ │ ├── apps.json │ │ ├── audio.json │ │ ├── common.json │ │ ├── customization.json │ │ ├── developer.json │ │ ├── facebook.json │ │ ├── facemasks.json │ │ ├── filters.json │ │ ├── game-overlay.json │ │ ├── grow.json │ │ ├── guest-cam.json │ │ ├── highlighter.json │ │ ├── hotkeys.json │ │ ├── kick.json │ │ ├── langname.txt │ │ ├── loader.json │ │ ├── media-gallery.json │ │ ├── notifications.json │ │ ├── onboarding.json │ │ ├── overlays.json │ │ ├── performance-metric.json │ │ ├── promotional-copy.json │ │ ├── recent-events.json │ │ ├── remote-control.json │ │ ├── scenes.json │ │ ├── settings.json │ │ ├── socials.json │ │ ├── source-props.json │ │ ├── sources.json │ │ ├── stream-shift.json │ │ ├── streaming.json │ │ ├── streamlabels.json │ │ ├── tiktok.json │ │ ├── transitions.json │ │ ├── troubleshooter.json │ │ ├── trovo.json │ │ ├── twitch.json │ │ ├── twitter.json │ │ ├── undo.json │ │ ├── widget-alertbox.json │ │ ├── widget-chat-box.json │ │ ├── widget-chat-highlight.json │ │ ├── widget-credits.json │ │ ├── widget-donation-ticker.json │ │ ├── widget-emote-wall.json │ │ ├── widget-event-list.json │ │ ├── widget-game.json │ │ ├── widget-goal.json │ │ ├── widget-media-share.json │ │ ├── widget-poll.json │ │ ├── widget-spin-wheel.json │ │ ├── widget-sponsor-banner.json │ │ ├── widget-stream-boss.json │ │ ├── widget-tip-jar.json │ │ ├── widget-viewer-count.json │ │ ├── widgets.json │ │ └── youtube.json │ └── zh-TW │ │ ├── advanced-statistics.json │ │ ├── app.json │ │ ├── apps.json │ │ ├── audio.json │ │ ├── common.json │ │ ├── customization.json │ │ ├── developer.json │ │ ├── facebook.json │ │ ├── facemasks.json │ │ ├── filters.json │ │ ├── game-overlay.json │ │ ├── grow.json │ │ ├── guest-cam.json │ │ ├── highlighter.json │ │ ├── hotkeys.json │ │ ├── kick.json │ │ ├── langname.txt │ │ ├── loader.json │ │ ├── media-gallery.json │ │ ├── notifications.json │ │ ├── onboarding.json │ │ ├── overlays.json │ │ ├── performance-metric.json │ │ ├── promotional-copy.json │ │ ├── recent-events.json │ │ ├── remote-control.json │ │ ├── scenes.json │ │ ├── settings.json │ │ ├── socials.json │ │ ├── source-props.json │ │ ├── sources.json │ │ ├── stream-shift.json │ │ ├── streaming.json │ │ ├── streamlabels.json │ │ ├── tiktok.json │ │ ├── transitions.json │ │ ├── troubleshooter.json │ │ ├── trovo.json │ │ ├── twitch.json │ │ ├── twitter.json │ │ ├── undo.json │ │ ├── widget-alertbox.json │ │ ├── widget-chat-box.json │ │ ├── widget-chat-highlight.json │ │ ├── widget-credits.json │ │ ├── widget-donation-ticker.json │ │ ├── widget-emote-wall.json │ │ ├── widget-event-list.json │ │ ├── widget-game.json │ │ ├── widget-goal.json │ │ ├── widget-media-share.json │ │ ├── widget-poll.json │ │ ├── widget-spin-wheel.json │ │ ├── widget-sponsor-banner.json │ │ ├── widget-stream-boss.json │ │ ├── widget-tip-jar.json │ │ ├── widget-viewer-count.json │ │ ├── widgets.json │ │ └── youtube.json ├── index.d.ts ├── jsx.d.ts ├── services-manager.ts ├── services │ ├── announcements.ts │ ├── api │ │ ├── external-api-limits.ts │ │ ├── external-api.ts │ │ ├── external-api │ │ │ ├── audio │ │ │ │ ├── audio-source.ts │ │ │ │ ├── audio.ts │ │ │ │ └── index.ts │ │ │ ├── customization │ │ │ │ ├── customization.ts │ │ │ │ └── index.ts │ │ │ ├── dual-output │ │ │ │ ├── dual-output.ts │ │ │ │ └── index.ts │ │ │ ├── game-overlay │ │ │ │ ├── game-overlay.ts │ │ │ │ └── index.ts │ │ │ ├── notifications │ │ │ │ ├── index.ts │ │ │ │ └── notifications.ts │ │ │ ├── performance │ │ │ │ ├── index.ts │ │ │ │ └── performance.ts │ │ │ ├── recent-events │ │ │ │ ├── index.ts │ │ │ │ └── recent-events.ts │ │ │ ├── resources.ts │ │ │ ├── scene-collections │ │ │ │ ├── index.ts │ │ │ │ └── scene-collections.ts │ │ │ ├── scenes │ │ │ │ ├── index.ts │ │ │ │ ├── scene-item-folder.ts │ │ │ │ ├── scene-item.ts │ │ │ │ ├── scene-node.ts │ │ │ │ ├── scene.ts │ │ │ │ ├── scenes.ts │ │ │ │ └── selection.ts │ │ │ ├── selection │ │ │ │ ├── index.ts │ │ │ │ └── selection.ts │ │ │ ├── sources │ │ │ │ ├── index.ts │ │ │ │ ├── source.ts │ │ │ │ └── sources.ts │ │ │ ├── streaming │ │ │ │ ├── index.ts │ │ │ │ └── streaming.ts │ │ │ ├── transitions │ │ │ │ ├── index.ts │ │ │ │ └── transitions.ts │ │ │ └── video │ │ │ │ ├── index.ts │ │ │ │ └── video.ts │ │ ├── internal-api-client.ts │ │ ├── internal-api.ts │ │ ├── ipc-server │ │ │ ├── index.ts │ │ │ └── ipc-server.ts │ │ ├── jsonrpc │ │ │ ├── index.ts │ │ │ ├── jsonrpc-api.ts │ │ │ └── jsonrpc.ts │ │ ├── remote-control-api.ts │ │ ├── rpc-api.ts │ │ └── tcp-server │ │ │ ├── index.ts │ │ │ └── tcp-server.ts │ ├── app │ │ ├── app-decorators.ts │ │ ├── app.ts │ │ └── index.ts │ ├── application-menu.ts │ ├── audio │ │ ├── audio-api.ts │ │ ├── audio.ts │ │ ├── index.ts │ │ └── volmeter-2d.ts │ ├── auto-config │ │ └── index.ts │ ├── cache-uploader.ts │ ├── chat.ts │ ├── clipboard.ts │ ├── core │ │ ├── index.ts │ │ ├── injector.ts │ │ ├── persistent-stateful-service.ts │ │ ├── service-helper.ts │ │ ├── service-initialization-observer.ts │ │ ├── service.ts │ │ ├── signals.ts │ │ └── stateful-service.ts │ ├── crash-reporter.ts │ ├── customization.ts │ ├── diagnostics.ts │ ├── dismissables.ts │ ├── dual-output │ │ ├── dual-output.ts │ │ └── index.ts │ ├── editor-commands │ │ ├── commands │ │ │ ├── add-files.ts │ │ │ ├── add-filter.ts │ │ │ ├── center-items.ts │ │ │ ├── combinable-command.ts │ │ │ ├── command.ts │ │ │ ├── copy-nodes.ts │ │ │ ├── create-connection.ts │ │ │ ├── create-existing-item.ts │ │ │ ├── create-folder.ts │ │ │ ├── create-new-item.ts │ │ │ ├── create-scene.ts │ │ │ ├── create-transition.ts │ │ │ ├── crop-items.ts │ │ │ ├── edit-connection.ts │ │ │ ├── edit-filter-properties.ts │ │ │ ├── edit-source-properties.ts │ │ │ ├── edit-source-settings.ts │ │ │ ├── edit-transition.ts │ │ │ ├── fit-to-screen.ts │ │ │ ├── flip-items.ts │ │ │ ├── hide-items.ts │ │ │ ├── hide-mixer-source.ts │ │ │ ├── index.ts │ │ │ ├── modify-transform.ts │ │ │ ├── move-items.ts │ │ │ ├── mute-source.ts │ │ │ ├── nudge-items.ts │ │ │ ├── paste-filters.ts │ │ │ ├── remove-connection.ts │ │ │ ├── remove-filter.ts │ │ │ ├── remove-folder.ts │ │ │ ├── remove-item.ts │ │ │ ├── remove-nodes.ts │ │ │ ├── remove-scene.ts │ │ │ ├── remove-source.ts │ │ │ ├── remove-transition.ts │ │ │ ├── rename-folder.ts │ │ │ ├── rename-scene.ts │ │ │ ├── rename-source.ts │ │ │ ├── reorder-filters.ts │ │ │ ├── reorder-nodes.ts │ │ │ ├── reset-transform.ts │ │ │ ├── resize-items.ts │ │ │ ├── rotate-items.ts │ │ │ ├── set-audio-settings.ts │ │ │ ├── set-blending-method.ts │ │ │ ├── set-blending-mode.ts │ │ │ ├── set-default-transition.ts │ │ │ ├── set-deflection.ts │ │ │ ├── set-deinterlacing-field-order.ts │ │ │ ├── set-deinterlacing-mode.ts │ │ │ ├── set-item-scale-filter.ts │ │ │ ├── stretch-to-screen.ts │ │ │ ├── toggle-filter.ts │ │ │ ├── ungroup-scene.ts │ │ │ └── unhide-mixer-sources.ts │ │ ├── editor-commands.ts │ │ └── index.ts │ ├── editor.ts │ ├── file-manager.ts │ ├── font-library.ts │ ├── game-overlay │ │ └── index.ts │ ├── grow │ │ ├── grow-data.ts │ │ └── grow.ts │ ├── guest-cam │ │ ├── consumer.ts │ │ ├── guest-track.ts │ │ ├── guest.ts │ │ ├── index.ts │ │ ├── mediasoup-entity.ts │ │ └── producer.ts │ ├── hardware │ │ ├── default-hardware.ts │ │ ├── hardware.ts │ │ └── index.ts │ ├── highlighter │ │ ├── ai-highlighter-updater.ts │ │ ├── ai-highlighter-utils.ts │ │ ├── constants.ts │ │ ├── cut-highlight-clips.ts │ │ ├── file-utils.ts │ │ ├── highlighter-views.ts │ │ ├── index.ts │ │ ├── markers-exporters.ts │ │ ├── models │ │ │ ├── ai-highlighter.models.ts │ │ │ ├── game-config.models.ts │ │ │ ├── highlighter.models.ts │ │ │ └── rendering.models.ts │ │ ├── rendering │ │ │ ├── audio-crossfader.ts │ │ │ ├── audio-mixer.ts │ │ │ ├── audio-source.ts │ │ │ ├── compositor-2d.ts │ │ │ ├── create-transition.ts │ │ │ ├── errors.ts │ │ │ ├── frame-source.ts │ │ │ ├── frame-writer.ts │ │ │ ├── rendering-clip.ts │ │ │ ├── start-rendering.ts │ │ │ ├── texture-2d.ts │ │ │ └── transitioner.ts │ │ └── vertical-export.ts │ ├── hosts.ts │ ├── hotkeys.ts │ ├── i18n │ │ ├── i18n-api.ts │ │ ├── i18n.ts │ │ └── index.ts │ ├── incremental-rollout.ts │ ├── index.ts │ ├── integrations │ │ ├── shared-storage.ts │ │ └── twitter.ts │ ├── key-listener.ts │ ├── layout │ │ ├── index.ts │ │ └── layout-data.ts │ ├── mac-permissions.ts │ ├── magic-link.ts │ ├── markers.ts │ ├── media-backup.ts │ ├── media-gallery │ │ ├── index.ts │ │ └── media-gallery.ts │ ├── metrics │ │ ├── index.ts │ │ └── metrics.ts │ ├── navigation.ts │ ├── notifications │ │ ├── index.ts │ │ ├── notifications-api.ts │ │ └── notifications.ts │ ├── obs-importer.ts │ ├── obs-user-plugins.ts │ ├── onboarding.ts │ ├── onboarding │ │ └── theme-metadata.ts │ ├── outage-notifications.ts │ ├── patch-notes │ │ ├── index.ts │ │ └── notes.ts │ ├── performance.ts │ ├── platform-app-store │ │ └── index.ts │ ├── platform-apps │ │ ├── api │ │ │ ├── index.ts │ │ │ └── modules │ │ │ │ ├── app.ts │ │ │ │ ├── authorization.ts │ │ │ │ ├── display.ts │ │ │ │ ├── external.ts │ │ │ │ ├── hotkeys.ts │ │ │ │ ├── module.ts │ │ │ │ ├── native-components.ts │ │ │ │ ├── notifications.ts │ │ │ │ ├── obs-plugins.ts │ │ │ │ ├── obs-settings.ts │ │ │ │ ├── replay.ts │ │ │ │ ├── scene-collections.ts │ │ │ │ ├── scene-transitions.ts │ │ │ │ ├── scenes.ts │ │ │ │ ├── sources.ts │ │ │ │ ├── streaming-recording.ts │ │ │ │ ├── streamlabels.ts │ │ │ │ ├── theme.ts │ │ │ │ ├── twitch.ts │ │ │ │ └── vision.ts │ │ ├── container-manager.ts │ │ ├── dev-server.ts │ │ ├── index.ts │ │ └── platform-app-assets-service.ts │ ├── platforms │ │ ├── base-platform.ts │ │ ├── facebook.ts │ │ ├── index.ts │ │ ├── instagram.ts │ │ ├── kick.ts │ │ ├── tiktok.ts │ │ ├── tiktok │ │ │ └── api.ts │ │ ├── trovo.ts │ │ ├── twitch.ts │ │ ├── twitch │ │ │ ├── api.ts │ │ │ ├── content-classification.ts │ │ │ ├── index.ts │ │ │ └── tags.ts │ │ ├── twitter.ts │ │ ├── utils.ts │ │ ├── youtube.ts │ │ └── youtube │ │ │ └── uploader.ts │ ├── projector.ts │ ├── protocol-links.ts │ ├── realm.ts │ ├── recent-events.ts │ ├── recording-mode.ts │ ├── restream.ts │ ├── scene-collections │ │ ├── index.ts │ │ ├── nodes │ │ │ ├── array-node.ts │ │ │ ├── guest-cam.ts │ │ │ ├── hotkeys.ts │ │ │ ├── node-map.ts │ │ │ ├── node.ts │ │ │ ├── overlays │ │ │ │ ├── game-capture.ts │ │ │ │ ├── icon-library.ts │ │ │ │ ├── image.ts │ │ │ │ ├── node-map.ts │ │ │ │ ├── root.ts │ │ │ │ ├── scene.ts │ │ │ │ ├── scenes.ts │ │ │ │ ├── slots.ts │ │ │ │ ├── smartBrowserSource.ts │ │ │ │ ├── streamlabel.ts │ │ │ │ ├── text.ts │ │ │ │ ├── transition.ts │ │ │ │ ├── video.ts │ │ │ │ ├── webcam.ts │ │ │ │ └── widget.ts │ │ │ ├── root.ts │ │ │ ├── scene-filters.ts │ │ │ ├── scene-items.ts │ │ │ ├── scenes.ts │ │ │ ├── sources.ts │ │ │ └── transitions.ts │ │ ├── overlays.ts │ │ ├── parse.ts │ │ ├── scene-collections-api.ts │ │ ├── scene-collections.ts │ │ ├── server-api.ts │ │ └── state.ts │ ├── scenes-transitions.ts │ ├── scenes │ │ ├── index.ts │ │ ├── scene-folder.ts │ │ ├── scene-item.ts │ │ ├── scene-node.ts │ │ ├── scene.ts │ │ └── scenes.ts │ ├── selection │ │ ├── global-selection.ts │ │ ├── index.ts │ │ └── selection.ts │ ├── server-sent-events.ts │ ├── settings-manager.ts │ ├── settings-v2 │ │ ├── default-settings-data.ts │ │ ├── index.ts │ │ └── video.ts │ ├── settings │ │ ├── index.ts │ │ ├── output │ │ │ ├── index.ts │ │ │ └── output-settings.ts │ │ ├── settings.ts │ │ └── streaming │ │ │ ├── index.ts │ │ │ └── stream-settings.ts │ ├── shortcuts.ts │ ├── side-nav │ │ ├── index.ts │ │ ├── menu-data.ts │ │ └── menu.ts │ ├── signals-manager.ts │ ├── source-filters.ts │ ├── sources │ │ ├── index.ts │ │ ├── properties-managers │ │ │ ├── default-manager.ts │ │ │ ├── icon-library-manager.ts │ │ │ ├── platform-app-manager.ts │ │ │ ├── properties-manager.ts │ │ │ ├── replay-manager.ts │ │ │ ├── smart-browser-source-manager.ts │ │ │ ├── streamlabels-manager.ts │ │ │ └── widget-manager.ts │ │ ├── source.ts │ │ ├── sources-api.ts │ │ ├── sources-data.ts │ │ └── sources.ts │ ├── stream-avatar │ │ ├── avatar-updater.ts │ │ ├── stream-avatar-service.ts │ │ └── vision-updater.ts │ ├── streaming │ │ ├── index.ts │ │ ├── stream-error.ts │ │ ├── streaming-api.ts │ │ ├── streaming-view.ts │ │ └── streaming.ts │ ├── streamlabels │ │ └── index.ts │ ├── touch-bar.ts │ ├── transitions.ts │ ├── troubleshooter │ │ ├── index.ts │ │ ├── troubleshooter-api.ts │ │ └── troubleshooter.ts │ ├── ts-importer.ts │ ├── usage-statistics.ts │ ├── user │ │ ├── auth-module.ts │ │ └── index.ts │ ├── utils.ts │ ├── video-encoding-optimizations │ │ ├── definitions.ts │ │ ├── index.ts │ │ └── video-encoding-optimizations.ts │ ├── video.ts │ ├── virtual-webcam.ts │ ├── vision │ │ ├── index.ts │ │ ├── vision-runner.ts │ │ └── vision-updater.ts │ ├── websocket.ts │ ├── widgets │ │ ├── alerts-config.ts │ │ ├── index.ts │ │ ├── settings │ │ │ ├── alert-box │ │ │ │ ├── alert-box-api.ts │ │ │ │ ├── alert-box-data.ts │ │ │ │ └── index.ts │ │ │ ├── base-goal.ts │ │ │ ├── bit-goal.ts │ │ │ ├── charity-goal.ts │ │ │ ├── chat-highlight-script.js │ │ │ ├── chat-highlight.ts │ │ │ ├── credits.ts │ │ │ ├── donation-goal.ts │ │ │ ├── donation-ticker.ts │ │ │ ├── emote-wall.ts │ │ │ ├── event-list.ts │ │ │ ├── follower-goal.ts │ │ │ ├── generic-goal.ts │ │ │ ├── media-share.ts │ │ │ ├── poll.ts │ │ │ ├── spin-wheel.ts │ │ │ ├── stars-goal.ts │ │ │ ├── stream-boss.ts │ │ │ ├── sub-goal.ts │ │ │ ├── subscriber-goal.ts │ │ │ ├── superchat-goal.ts │ │ │ ├── supporter-goal.ts │ │ │ ├── tip-jar.ts │ │ │ └── widget-settings.ts │ │ ├── widget-source.ts │ │ ├── widgets-api.ts │ │ ├── widgets-config.ts │ │ ├── widgets-data.ts │ │ └── widgets.ts │ └── windows.ts ├── store │ └── index.ts ├── styles │ ├── _variables.less │ ├── animations.less │ ├── antd │ │ ├── antd.less │ │ ├── day-theme.lazy.less │ │ ├── index.ts │ │ ├── night-theme.lazy.less │ │ ├── prime-dark.lazy.less │ │ └── prime-light.lazy.less │ ├── badges.less │ ├── buttons.less │ ├── checkboxes.less │ ├── classes.less │ ├── colors.less │ ├── custom-icons.less │ ├── foundation.less │ ├── index.less │ ├── inputs.less │ ├── loader.less │ ├── mixins.less │ ├── sl-vue-tree.less │ ├── tables.less │ └── tooltips.less ├── themes.g.less └── util │ ├── DragHandler.ts │ ├── FrameRate.js │ ├── NamingHelpers.ts │ ├── ScalableRectangle.ts │ ├── dot-tree.ts │ ├── get-shared-resource.ts │ ├── guest-api-handler.ts │ ├── lazy-module.ts │ ├── menus │ ├── BlendingMethodMenu.ts │ ├── BlendingModeMenu.ts │ ├── DeinterlacingModeMenu.ts │ ├── EditMenu.ts │ ├── FiltersMenu.ts │ ├── GroupMenu.ts │ ├── Menu.ts │ ├── ProjectorMenu.ts │ ├── ScaleFilteringMenu.ts │ └── SourceTransformMenu.ts │ ├── mutex.ts │ ├── obs.ts │ ├── operating-systems.ts │ ├── performance.ts │ ├── pmap.ts │ ├── properties-type-guards.ts │ ├── rect.ts │ ├── requests.ts │ ├── slow-imports.ts │ ├── unload.ts │ ├── vec2.ts │ ├── webgl │ ├── shaders │ │ ├── volmeter.frag │ │ └── volmeter.vert │ └── utils.ts │ └── wmi.ts ├── azure-pipelines.yml ├── bin └── tail-obs-logs.js ├── crowdin.yml ├── dev-app-update.yml ├── docs ├── README.md ├── how_to_update_fork.md └── typedoc-monkeypatch.js ├── electron-builder ├── afterPack.js ├── afterSign.js ├── base.config.js ├── beforePack.js ├── beta.config.js ├── build-mac-virtualcam.js ├── entitlements.plist ├── extension-entitlements.plist ├── force-local-bundles ├── installer-entitlements.plist └── preview.config.js ├── guest-api └── index.ts ├── index.html ├── installer.nsh ├── main.js ├── media ├── chest-deco.webm ├── chest.webm ├── fonts │ └── icomoon.woff ├── images │ ├── 16x9.png │ ├── alert-box │ │ ├── layout-bottom-day.png │ │ ├── layout-bottom-night.png │ │ ├── layout-over-day.png │ │ ├── layout-over-night.png │ │ ├── layout-side-day.png │ │ └── layout-side-night.png │ ├── battlefield.jpg │ ├── chalk-arrow.png │ ├── connect.png │ ├── dmg-bg.png │ ├── icon-mac.icns │ ├── icon.ico │ ├── icons │ │ ├── alertbox-no-bg.png │ │ ├── alertbox.png │ │ ├── chatbox-no-bg.png │ │ ├── chatbox.png │ │ ├── cpu.png │ │ ├── donation-goal-no-bg.png │ │ ├── donation-goal.png │ │ ├── donation-ticker-no-bg.png │ │ ├── donation-ticker.png │ │ ├── dropped-frames.png │ │ ├── end-credits.png │ │ ├── event-list-no-bg.png │ │ ├── event-list.png │ │ ├── fps.png │ │ ├── jar.png │ │ ├── speed.png │ │ ├── streamboss.png │ │ ├── the-jar-no-bg.png │ │ └── viewer-count.png │ ├── import.png │ ├── layout-image-above.png │ ├── layout-image-side.png │ ├── layouts │ │ ├── day-classic-active.png │ │ ├── day-classic.png │ │ ├── day-default-active.png │ │ ├── day-default.png │ │ ├── day-fourByFour-active.png │ │ ├── day-fourByFour.png │ │ ├── day-onePane-active.png │ │ ├── day-onePane.png │ │ ├── day-onePaneR-active.png │ │ ├── day-onePaneR.png │ │ ├── day-pyramid-active.png │ │ ├── day-pyramid.png │ │ ├── day-triplets-active.png │ │ ├── day-triplets.png │ │ ├── day-twoPane-active.png │ │ ├── day-twoPane.png │ │ ├── night-classic-active.png │ │ ├── night-classic.png │ │ ├── night-default-active.png │ │ ├── night-default.png │ │ ├── night-fourByFour-active.png │ │ ├── night-fourByFour.png │ │ ├── night-onePane-active.png │ │ ├── night-onePane.png │ │ ├── night-onePaneR-active.png │ │ ├── night-onePaneR.png │ │ ├── night-pyramid-active.png │ │ ├── night-pyramid.png │ │ ├── night-triplets-active.png │ │ ├── night-triplets.png │ │ ├── night-twoPane-active.png │ │ └── night-twoPane.png │ ├── loader.svg │ ├── mobile │ │ ├── badge_android.png │ │ ├── badge_ios.png │ │ ├── qr_android.png │ │ └── qr_ios.png │ ├── moon.png │ ├── onboarding │ │ ├── app-store.png │ │ ├── game-overlay.png │ │ ├── prime │ │ │ ├── appstore.png │ │ │ ├── loyalty.png │ │ │ ├── merch.png │ │ │ ├── mobile.png │ │ │ ├── themes.png │ │ │ └── website.png │ │ └── splash.png │ ├── optimize.png │ ├── overlay-placeholder.jpg │ ├── platforms │ │ ├── dlive-logo-small.png │ │ ├── dlive-logo.png │ │ ├── instagram-logo.png │ │ ├── kick-logo.png │ │ ├── nimo-logo-small.png │ │ ├── nimo-logo.png │ │ ├── tiktok-logo-black.png │ │ ├── tiktok-logo-white.png │ │ ├── trovo-black.png │ │ ├── trovo.png │ │ ├── twitter-logo-black.png │ │ └── twitter-logo-white.png │ ├── prime-apps.png │ ├── prime-themes.png │ ├── products │ │ ├── console.png │ │ ├── crossclip.png │ │ ├── desktop.png │ │ ├── melon.png │ │ ├── mobile.png │ │ ├── oslo.png │ │ ├── podcast-editor.png │ │ ├── talk-studio.png │ │ ├── video-editor.png │ │ ├── web.png │ │ └── willow.png │ ├── sleeping-kevin-day.png │ ├── sleeping-kevin-night.png │ ├── streamboss-stream.png │ ├── sun.png │ ├── viewercount.png │ └── yt-thumbnails │ │ ├── affiliates-guide.png │ │ ├── frame-management.png │ │ ├── merch-setup.png │ │ ├── slobs-quickstart.png │ │ ├── stream-to-twitch.png │ │ └── troubleshooting-alerts.png ├── mp4 │ ├── alertbox.mp4 │ ├── chatbox.mp4 │ ├── credits-stream.mp4 │ ├── donation-goal.mp4 │ ├── donation-ticker.mp4 │ ├── eventlist.mp4 │ └── jar.mp4 ├── sound │ └── ding.wav └── source-demos │ ├── day │ ├── audio-input.png │ ├── audio-output.png │ ├── browser-source.png │ ├── chat-highlight.png │ ├── color-source.png │ ├── display-capture.png │ ├── emote-wall.gif │ ├── game-capture.png │ ├── game-widget.png │ ├── image-slide-show.png │ ├── image.png │ ├── media.png │ ├── poll.png │ ├── reactive-overlay-webm.webm │ ├── scene.png │ ├── source-alertbox.png │ ├── source-bit-goal.png │ ├── source-charity-goal.gif │ ├── source-chatbox.png │ ├── source-collab-cam.png │ ├── source-credits.png │ ├── source-donation-goal.gif │ ├── source-eventlist.png │ ├── source-follower-goal.png │ ├── source-jar.png │ ├── source-sponsor-banner.png │ ├── source-spout2-thumbnail.gif │ ├── source-stream-labels.png │ ├── source-streamboss.png │ ├── source-tip-ticker.png │ ├── source-viewer-count.png │ ├── source-wheel.png │ ├── sources.png │ ├── text.png │ ├── video-capture.png │ ├── vr-capture.png │ └── window-capture.png │ └── night │ ├── audio-input.png │ ├── audio-output.png │ ├── browser-source.png │ ├── chat-highlight.png │ ├── color-source.png │ ├── display-capture.png │ ├── emote-wall.gif │ ├── game-capture.png │ ├── game-widget.png │ ├── image-slide-show.png │ ├── image.png │ ├── media.png │ ├── poll.png │ ├── reactive-overlay-webm.webm │ ├── scene.png │ ├── source-alertbox.png │ ├── source-bit-goal.png │ ├── source-charity-goal.gif │ ├── source-chatbox.png │ ├── source-collab-cam.png │ ├── source-credits.png │ ├── source-donation-goal.gif │ ├── source-eventlist.png │ ├── source-follower-goal.png │ ├── source-jar.png │ ├── source-sponsor-banner.png │ ├── source-spout2-thumbnail.gif │ ├── source-stream-labels.png │ ├── source-streamboss.png │ ├── source-tip-ticker.png │ ├── source-viewer-count.png │ ├── source-wheel.png │ ├── sources.png │ ├── text.png │ ├── video-capture.png │ ├── vr-capture.png │ └── window-capture.png ├── obs-api ├── index.js ├── obs-api.d.ts └── package.json ├── package.json ├── renovate.json ├── screentest-azure-pipelines.yml ├── scripts ├── ci │ ├── install.ps1 │ ├── register-agent.ps1 │ ├── remove-offline-agents.js │ ├── shutdown.ps1 │ ├── start-agent.ps1 │ ├── startup.ps1 │ └── uninstall.ps1 ├── debug-launcher.bat ├── github-client.js ├── install-native-deps.js ├── postinstall.js ├── react-progress.js ├── repositories.json ├── search-untranslated.js └── strict-null-progress.js ├── shared-resources ├── README ├── capture-placeholder.png ├── luts │ ├── cel_shade.png │ ├── cool_tone.png │ ├── gazing.png │ ├── grayscale.png │ ├── green_tone.png │ ├── heat_map.png │ ├── inverted.png │ ├── muted.png │ ├── saturated.png │ ├── sepia.png │ └── warm_tone.png └── touchbar-icons │ ├── redo.png │ ├── stats-green.png │ ├── stats-red.png │ ├── stats-yellow.png │ └── undo.png ├── strict-null-check-files ├── chat.json ├── core.json ├── highlighter.json ├── hotekys.json ├── onboarding.json ├── platforms.json ├── scene-collections.json ├── sources.json └── streaming.json ├── test-job-template.yml ├── test-main.js ├── test ├── data │ ├── dummy-accounts.ts │ ├── obs-studio.zip │ ├── scene-collection-manifest.json │ ├── scene-collection.json │ ├── scene-collections │ │ ├── dual-output-collection │ │ │ ├── dual-output-collection-manifest.json │ │ │ └── dual-output-manifest.json │ │ ├── huge-scene-collection.zip │ │ ├── repair-collection-data │ │ │ ├── corrupt-dual-output-collection.json │ │ │ ├── corrupt-dual-output-manifest.json │ │ │ ├── original-dual-output-collection.json │ │ │ └── original-dual-output-manifest.json │ │ └── single-output-collection │ │ │ ├── single-output-collection-manifest.json │ │ │ └── single-output-collection.json │ └── sources-files │ │ ├── html │ │ └── hello.html │ │ ├── images │ │ ├── moon.png │ │ └── sun.png │ │ ├── media │ │ ├── alertbox.mp4 │ │ └── chatbox.mp4 │ │ └── text │ │ └── hello.txt ├── helpers │ ├── api-client.ts │ ├── cmd-client.ts │ ├── form-monkey.ts │ ├── modules │ │ ├── api │ │ │ └── scenes.ts │ │ ├── core.ts │ │ ├── dual-output.ts │ │ ├── filters.ts │ │ ├── forms │ │ │ ├── base.ts │ │ │ ├── bool-button.ts │ │ │ ├── checkbox.ts │ │ │ ├── file.ts │ │ │ ├── form.ts │ │ │ ├── index.ts │ │ │ ├── inputs.ts │ │ │ ├── list.ts │ │ │ ├── number.ts │ │ │ ├── radio.ts │ │ │ ├── slider.ts │ │ │ ├── switch.ts │ │ │ ├── tags.ts │ │ │ ├── text.ts │ │ │ └── textarea.ts │ │ ├── navigation.ts │ │ ├── onboarding.ts │ │ ├── replay-buffer.ts │ │ ├── scenes.ts │ │ ├── settings │ │ │ └── settings.ts │ │ ├── sources.ts │ │ ├── streaming.ts │ │ └── user.ts │ ├── repo.js │ ├── runner.js │ ├── scene-builder.ts │ ├── sleep.js │ ├── webdriver │ │ ├── assertions.ts │ │ ├── context-menu.ts │ │ ├── dialog.ts │ │ ├── forms.ts │ │ ├── index.ts │ │ ├── modals.ts │ │ ├── network.ts │ │ ├── runner-utils.ts │ │ └── user.ts │ └── widget-helpers.ts ├── performance │ ├── config.json │ ├── meter.ts │ ├── performance-test-runner.js │ ├── tests │ │ └── performance-tests.ts │ └── tools.ts ├── regular │ ├── api │ │ ├── audio.ts │ │ ├── clipboard.ts │ │ ├── dual-output.ts │ │ ├── folders.ts │ │ ├── scene-collections.ts │ │ ├── scenes.ts │ │ ├── selection.ts │ │ ├── sources.ts │ │ ├── streaming.ts │ │ └── transitions.ts │ ├── filters.ts │ ├── highlighter.ts │ ├── media-backup.ts │ ├── mixer.ts │ ├── notifications.ts │ ├── obs-importer.ts │ ├── onboarding.ts │ ├── performance-metrics.ts │ ├── recording.ts │ ├── replay-buffer.ts │ ├── scenes.ts │ ├── selective-recording.ts │ ├── services │ │ └── scene-collections │ │ │ ├── cloud-backup.ts │ │ │ ├── migrations.ts │ │ │ └── scene-collections.ts │ ├── settings │ │ ├── advanced-audio.ts │ │ ├── advanced.ts │ │ ├── audio.ts │ │ ├── hotkeys.ts │ │ ├── output.ts │ │ ├── streaming.ts │ │ └── video.ts │ ├── shared-components │ │ └── components.ts │ ├── sources.ts │ ├── startup.ts │ ├── streamdeck.ts │ ├── streaming │ │ ├── dual-output.ts │ │ ├── facebook.ts │ │ ├── instagram.ts │ │ ├── kick.ts │ │ ├── multistream.ts │ │ ├── tiktok.ts │ │ ├── trovo.ts │ │ ├── twitch.ts │ │ ├── twitter.ts │ │ └── youtube.ts │ ├── themes.ts │ ├── transitions.ts │ ├── undo.ts │ └── widgets │ │ ├── alertbox.ts │ │ ├── chat-box.ts │ │ ├── goals.ts │ │ ├── stream-boss.ts │ │ └── tip-jar.ts ├── screentest │ ├── comparator.ts │ ├── config.json │ ├── preview-tpl.html │ ├── runner.js │ ├── screenshoter.ts │ ├── tests │ │ ├── editor.ts │ │ ├── onboarding.ts │ │ ├── settings.ts │ │ ├── source-props.ts │ │ ├── sources.ts │ │ ├── streaming.ts │ │ ├── transitions.ts │ │ └── widgets │ │ │ ├── chat-box.ts │ │ │ └── goals.ts │ └── utils.ts ├── stress │ └── index.ts └── tsconfig.json ├── tsconfig.json ├── updater ├── UpdaterWindow.vue ├── bootstrap.ts ├── bundle-updater.ts ├── index.html ├── mac │ ├── Updater.js │ ├── UpdaterWindow.vue │ ├── index.html │ └── ui.js ├── tsconfig.json ├── ui.js └── updater.d.ts ├── vendor ├── flexboxgrid.min.css ├── fontawesome-free-5.15.3-web │ ├── LICENSE.txt │ ├── attribution.js │ ├── css │ │ ├── all.css │ │ ├── all.min.css │ │ ├── brands.css │ │ ├── brands.min.css │ │ ├── fontawesome.css │ │ ├── fontawesome.min.css │ │ ├── regular.css │ │ ├── regular.min.css │ │ ├── solid.css │ │ ├── solid.min.css │ │ ├── svg-with-js.css │ │ ├── svg-with-js.min.css │ │ ├── v4-shims.css │ │ └── v4-shims.min.css │ ├── js │ │ ├── all.js │ │ ├── all.min.js │ │ ├── brands.js │ │ ├── brands.min.js │ │ ├── conflict-detection.js │ │ ├── conflict-detection.min.js │ │ ├── fontawesome.js │ │ ├── fontawesome.min.js │ │ ├── regular.js │ │ ├── regular.min.js │ │ ├── solid.js │ │ ├── solid.min.js │ │ ├── v4-shims.js │ │ └── v4-shims.min.js │ ├── less │ │ ├── _animated.less │ │ ├── _bordered-pulled.less │ │ ├── _core.less │ │ ├── _fixed-width.less │ │ ├── _icons.less │ │ ├── _larger.less │ │ ├── _list.less │ │ ├── _mixins.less │ │ ├── _rotated-flipped.less │ │ ├── _screen-reader.less │ │ ├── _shims.less │ │ ├── _stacked.less │ │ ├── _variables.less │ │ ├── brands.less │ │ ├── fontawesome.less │ │ ├── regular.less │ │ ├── solid.less │ │ └── v4-shims.less │ ├── metadata │ │ ├── categories.yml │ │ ├── icons.json │ │ ├── icons.yml │ │ ├── shims.json │ │ ├── shims.yml │ │ └── sponsors.yml │ ├── scss │ │ ├── _animated.scss │ │ ├── _bordered-pulled.scss │ │ ├── _core.scss │ │ ├── _fixed-width.scss │ │ ├── _icons.scss │ │ ├── _larger.scss │ │ ├── _list.scss │ │ ├── _mixins.scss │ │ ├── _rotated-flipped.scss │ │ ├── _screen-reader.scss │ │ ├── _shims.scss │ │ ├── _stacked.scss │ │ ├── _variables.scss │ │ ├── brands.scss │ │ ├── fontawesome.scss │ │ ├── regular.scss │ │ ├── solid.scss │ │ └── v4-shims.scss │ ├── sprites │ │ ├── brands.svg │ │ ├── regular.svg │ │ └── solid.svg │ ├── svgs │ │ ├── brands │ │ │ ├── 500px.svg │ │ │ ├── accessible-icon.svg │ │ │ ├── accusoft.svg │ │ │ ├── acquisitions-incorporated.svg │ │ │ ├── adn.svg │ │ │ ├── adversal.svg │ │ │ ├── affiliatetheme.svg │ │ │ ├── airbnb.svg │ │ │ ├── algolia.svg │ │ │ ├── alipay.svg │ │ │ ├── amazon-pay.svg │ │ │ ├── amazon.svg │ │ │ ├── amilia.svg │ │ │ ├── android.svg │ │ │ ├── angellist.svg │ │ │ ├── angrycreative.svg │ │ │ ├── angular.svg │ │ │ ├── app-store-ios.svg │ │ │ ├── app-store.svg │ │ │ ├── apper.svg │ │ │ ├── apple-pay.svg │ │ │ ├── apple.svg │ │ │ ├── artstation.svg │ │ │ ├── asymmetrik.svg │ │ │ ├── atlassian.svg │ │ │ ├── audible.svg │ │ │ ├── autoprefixer.svg │ │ │ ├── avianex.svg │ │ │ ├── aviato.svg │ │ │ ├── aws.svg │ │ │ ├── bandcamp.svg │ │ │ ├── battle-net.svg │ │ │ ├── behance-square.svg │ │ │ ├── behance.svg │ │ │ ├── bimobject.svg │ │ │ ├── bitbucket.svg │ │ │ ├── bitcoin.svg │ │ │ ├── bity.svg │ │ │ ├── black-tie.svg │ │ │ ├── blackberry.svg │ │ │ ├── blogger-b.svg │ │ │ ├── blogger.svg │ │ │ ├── bluetooth-b.svg │ │ │ ├── bluetooth.svg │ │ │ ├── bootstrap.svg │ │ │ ├── btc.svg │ │ │ ├── buffer.svg │ │ │ ├── buromobelexperte.svg │ │ │ ├── buy-n-large.svg │ │ │ ├── buysellads.svg │ │ │ ├── canadian-maple-leaf.svg │ │ │ ├── cc-amazon-pay.svg │ │ │ ├── cc-amex.svg │ │ │ ├── cc-apple-pay.svg │ │ │ ├── cc-diners-club.svg │ │ │ ├── cc-discover.svg │ │ │ ├── cc-jcb.svg │ │ │ ├── cc-mastercard.svg │ │ │ ├── cc-paypal.svg │ │ │ ├── cc-stripe.svg │ │ │ ├── cc-visa.svg │ │ │ ├── centercode.svg │ │ │ ├── centos.svg │ │ │ ├── chrome.svg │ │ │ ├── chromecast.svg │ │ │ ├── cloudflare.svg │ │ │ ├── cloudscale.svg │ │ │ ├── cloudsmith.svg │ │ │ ├── cloudversify.svg │ │ │ ├── codepen.svg │ │ │ ├── codiepie.svg │ │ │ ├── confluence.svg │ │ │ ├── connectdevelop.svg │ │ │ ├── contao.svg │ │ │ ├── cotton-bureau.svg │ │ │ ├── cpanel.svg │ │ │ ├── creative-commons-by.svg │ │ │ ├── creative-commons-nc-eu.svg │ │ │ ├── creative-commons-nc-jp.svg │ │ │ ├── creative-commons-nc.svg │ │ │ ├── creative-commons-nd.svg │ │ │ ├── creative-commons-pd-alt.svg │ │ │ ├── creative-commons-pd.svg │ │ │ ├── creative-commons-remix.svg │ │ │ ├── creative-commons-sa.svg │ │ │ ├── creative-commons-sampling-plus.svg │ │ │ ├── creative-commons-sampling.svg │ │ │ ├── creative-commons-share.svg │ │ │ ├── creative-commons-zero.svg │ │ │ ├── creative-commons.svg │ │ │ ├── critical-role.svg │ │ │ ├── css3-alt.svg │ │ │ ├── css3.svg │ │ │ ├── cuttlefish.svg │ │ │ ├── d-and-d-beyond.svg │ │ │ ├── d-and-d.svg │ │ │ ├── dailymotion.svg │ │ │ ├── dashcube.svg │ │ │ ├── deezer.svg │ │ │ ├── delicious.svg │ │ │ ├── deploydog.svg │ │ │ ├── deskpro.svg │ │ │ ├── dev.svg │ │ │ ├── deviantart.svg │ │ │ ├── dhl.svg │ │ │ ├── diaspora.svg │ │ │ ├── digg.svg │ │ │ ├── digital-ocean.svg │ │ │ ├── discord.svg │ │ │ ├── discourse.svg │ │ │ ├── dochub.svg │ │ │ ├── docker.svg │ │ │ ├── draft2digital.svg │ │ │ ├── dribbble-square.svg │ │ │ ├── dribbble.svg │ │ │ ├── dropbox.svg │ │ │ ├── drupal.svg │ │ │ ├── dyalog.svg │ │ │ ├── earlybirds.svg │ │ │ ├── ebay.svg │ │ │ ├── edge-legacy.svg │ │ │ ├── edge.svg │ │ │ ├── elementor.svg │ │ │ ├── ello.svg │ │ │ ├── ember.svg │ │ │ ├── empire.svg │ │ │ ├── envira.svg │ │ │ ├── erlang.svg │ │ │ ├── ethereum.svg │ │ │ ├── etsy.svg │ │ │ ├── evernote.svg │ │ │ ├── expeditedssl.svg │ │ │ ├── facebook-f.svg │ │ │ ├── facebook-messenger.svg │ │ │ ├── facebook-square.svg │ │ │ ├── facebook.svg │ │ │ ├── fantasy-flight-games.svg │ │ │ ├── fedex.svg │ │ │ ├── fedora.svg │ │ │ ├── figma.svg │ │ │ ├── firefox-browser.svg │ │ │ ├── firefox.svg │ │ │ ├── first-order-alt.svg │ │ │ ├── first-order.svg │ │ │ ├── firstdraft.svg │ │ │ ├── flickr.svg │ │ │ ├── flipboard.svg │ │ │ ├── fly.svg │ │ │ ├── font-awesome-alt.svg │ │ │ ├── font-awesome-flag.svg │ │ │ ├── font-awesome-logo-full.svg │ │ │ ├── font-awesome.svg │ │ │ ├── fonticons-fi.svg │ │ │ ├── fonticons.svg │ │ │ ├── fort-awesome-alt.svg │ │ │ ├── fort-awesome.svg │ │ │ ├── forumbee.svg │ │ │ ├── foursquare.svg │ │ │ ├── free-code-camp.svg │ │ │ ├── freebsd.svg │ │ │ ├── fulcrum.svg │ │ │ ├── galactic-republic.svg │ │ │ ├── galactic-senate.svg │ │ │ ├── get-pocket.svg │ │ │ ├── gg-circle.svg │ │ │ ├── gg.svg │ │ │ ├── git-alt.svg │ │ │ ├── git-square.svg │ │ │ ├── git.svg │ │ │ ├── github-alt.svg │ │ │ ├── github-square.svg │ │ │ ├── github.svg │ │ │ ├── gitkraken.svg │ │ │ ├── gitlab.svg │ │ │ ├── gitter.svg │ │ │ ├── glide-g.svg │ │ │ ├── glide.svg │ │ │ ├── gofore.svg │ │ │ ├── goodreads-g.svg │ │ │ ├── goodreads.svg │ │ │ ├── google-drive.svg │ │ │ ├── google-pay.svg │ │ │ ├── google-play.svg │ │ │ ├── google-plus-g.svg │ │ │ ├── google-plus-square.svg │ │ │ ├── google-plus.svg │ │ │ ├── google-wallet.svg │ │ │ ├── google.svg │ │ │ ├── gratipay.svg │ │ │ ├── grav.svg │ │ │ ├── gripfire.svg │ │ │ ├── grunt.svg │ │ │ ├── guilded.svg │ │ │ ├── gulp.svg │ │ │ ├── hacker-news-square.svg │ │ │ ├── hacker-news.svg │ │ │ ├── hackerrank.svg │ │ │ ├── hips.svg │ │ │ ├── hire-a-helper.svg │ │ │ ├── hive.svg │ │ │ ├── hooli.svg │ │ │ ├── hornbill.svg │ │ │ ├── hotjar.svg │ │ │ ├── houzz.svg │ │ │ ├── html5.svg │ │ │ ├── hubspot.svg │ │ │ ├── ideal.svg │ │ │ ├── imdb.svg │ │ │ ├── innosoft.svg │ │ │ ├── instagram-square.svg │ │ │ ├── instagram.svg │ │ │ ├── instalod.svg │ │ │ ├── intercom.svg │ │ │ ├── internet-explorer.svg │ │ │ ├── invision.svg │ │ │ ├── ioxhost.svg │ │ │ ├── itch-io.svg │ │ │ ├── itunes-note.svg │ │ │ ├── itunes.svg │ │ │ ├── java.svg │ │ │ ├── jedi-order.svg │ │ │ ├── jenkins.svg │ │ │ ├── jira.svg │ │ │ ├── joget.svg │ │ │ ├── joomla.svg │ │ │ ├── js-square.svg │ │ │ ├── js.svg │ │ │ ├── jsfiddle.svg │ │ │ ├── kaggle.svg │ │ │ ├── keybase.svg │ │ │ ├── keycdn.svg │ │ │ ├── kickstarter-k.svg │ │ │ ├── kickstarter.svg │ │ │ ├── korvue.svg │ │ │ ├── laravel.svg │ │ │ ├── lastfm-square.svg │ │ │ ├── lastfm.svg │ │ │ ├── leanpub.svg │ │ │ ├── less.svg │ │ │ ├── line.svg │ │ │ ├── linkedin-in.svg │ │ │ ├── linkedin.svg │ │ │ ├── linode.svg │ │ │ ├── linux.svg │ │ │ ├── lyft.svg │ │ │ ├── magento.svg │ │ │ ├── mailchimp.svg │ │ │ ├── mandalorian.svg │ │ │ ├── markdown.svg │ │ │ ├── mastodon.svg │ │ │ ├── maxcdn.svg │ │ │ ├── mdb.svg │ │ │ ├── medapps.svg │ │ │ ├── medium-m.svg │ │ │ ├── medium.svg │ │ │ ├── medrt.svg │ │ │ ├── meetup.svg │ │ │ ├── megaport.svg │ │ │ ├── mendeley.svg │ │ │ ├── microblog.svg │ │ │ ├── microsoft.svg │ │ │ ├── mix.svg │ │ │ ├── mixcloud.svg │ │ │ ├── mixer.svg │ │ │ ├── mizuni.svg │ │ │ ├── modx.svg │ │ │ ├── monero.svg │ │ │ ├── napster.svg │ │ │ ├── neos.svg │ │ │ ├── nimblr.svg │ │ │ ├── node-js.svg │ │ │ ├── node.svg │ │ │ ├── npm.svg │ │ │ ├── ns8.svg │ │ │ ├── nutritionix.svg │ │ │ ├── octopus-deploy.svg │ │ │ ├── odnoklassniki-square.svg │ │ │ ├── odnoklassniki.svg │ │ │ ├── old-republic.svg │ │ │ ├── opencart.svg │ │ │ ├── openid.svg │ │ │ ├── opera.svg │ │ │ ├── optin-monster.svg │ │ │ ├── orcid.svg │ │ │ ├── osi.svg │ │ │ ├── page4.svg │ │ │ ├── pagelines.svg │ │ │ ├── palfed.svg │ │ │ ├── patreon.svg │ │ │ ├── paypal.svg │ │ │ ├── penny-arcade.svg │ │ │ ├── perbyte.svg │ │ │ ├── periscope.svg │ │ │ ├── phabricator.svg │ │ │ ├── phoenix-framework.svg │ │ │ ├── phoenix-squadron.svg │ │ │ ├── php.svg │ │ │ ├── pied-piper-alt.svg │ │ │ ├── pied-piper-hat.svg │ │ │ ├── pied-piper-pp.svg │ │ │ ├── pied-piper-square.svg │ │ │ ├── pied-piper.svg │ │ │ ├── pinterest-p.svg │ │ │ ├── pinterest-square.svg │ │ │ ├── pinterest.svg │ │ │ ├── playstation.svg │ │ │ ├── product-hunt.svg │ │ │ ├── pushed.svg │ │ │ ├── python.svg │ │ │ ├── qq.svg │ │ │ ├── quinscape.svg │ │ │ ├── quora.svg │ │ │ ├── r-project.svg │ │ │ ├── raspberry-pi.svg │ │ │ ├── ravelry.svg │ │ │ ├── react.svg │ │ │ ├── reacteurope.svg │ │ │ ├── readme.svg │ │ │ ├── rebel.svg │ │ │ ├── red-river.svg │ │ │ ├── reddit-alien.svg │ │ │ ├── reddit-square.svg │ │ │ ├── reddit.svg │ │ │ ├── redhat.svg │ │ │ ├── renren.svg │ │ │ ├── replyd.svg │ │ │ ├── researchgate.svg │ │ │ ├── resolving.svg │ │ │ ├── rev.svg │ │ │ ├── rocketchat.svg │ │ │ ├── rockrms.svg │ │ │ ├── rust.svg │ │ │ ├── safari.svg │ │ │ ├── salesforce.svg │ │ │ ├── sass.svg │ │ │ ├── schlix.svg │ │ │ ├── scribd.svg │ │ │ ├── searchengin.svg │ │ │ ├── sellcast.svg │ │ │ ├── sellsy.svg │ │ │ ├── servicestack.svg │ │ │ ├── shirtsinbulk.svg │ │ │ ├── shopify.svg │ │ │ ├── shopware.svg │ │ │ ├── simplybuilt.svg │ │ │ ├── sistrix.svg │ │ │ ├── sith.svg │ │ │ ├── sketch.svg │ │ │ ├── skyatlas.svg │ │ │ ├── skype.svg │ │ │ ├── slack-hash.svg │ │ │ ├── slack.svg │ │ │ ├── slideshare.svg │ │ │ ├── snapchat-ghost.svg │ │ │ ├── snapchat-square.svg │ │ │ ├── snapchat.svg │ │ │ ├── soundcloud.svg │ │ │ ├── sourcetree.svg │ │ │ ├── speakap.svg │ │ │ ├── speaker-deck.svg │ │ │ ├── spotify.svg │ │ │ ├── squarespace.svg │ │ │ ├── stack-exchange.svg │ │ │ ├── stack-overflow.svg │ │ │ ├── stackpath.svg │ │ │ ├── staylinked.svg │ │ │ ├── steam-square.svg │ │ │ ├── steam-symbol.svg │ │ │ ├── steam.svg │ │ │ ├── sticker-mule.svg │ │ │ ├── strava.svg │ │ │ ├── stripe-s.svg │ │ │ ├── stripe.svg │ │ │ ├── studiovinari.svg │ │ │ ├── stumbleupon-circle.svg │ │ │ ├── stumbleupon.svg │ │ │ ├── superpowers.svg │ │ │ ├── supple.svg │ │ │ ├── suse.svg │ │ │ ├── swift.svg │ │ │ ├── symfony.svg │ │ │ ├── teamspeak.svg │ │ │ ├── telegram-plane.svg │ │ │ ├── telegram.svg │ │ │ ├── tencent-weibo.svg │ │ │ ├── the-red-yeti.svg │ │ │ ├── themeco.svg │ │ │ ├── themeisle.svg │ │ │ ├── think-peaks.svg │ │ │ ├── tiktok.svg │ │ │ ├── trade-federation.svg │ │ │ ├── trello.svg │ │ │ ├── tripadvisor.svg │ │ │ ├── tumblr-square.svg │ │ │ ├── tumblr.svg │ │ │ ├── twitch.svg │ │ │ ├── twitter-square.svg │ │ │ ├── twitter.svg │ │ │ ├── typo3.svg │ │ │ ├── uber.svg │ │ │ ├── ubuntu.svg │ │ │ ├── uikit.svg │ │ │ ├── umbraco.svg │ │ │ ├── uncharted.svg │ │ │ ├── uniregistry.svg │ │ │ ├── unity.svg │ │ │ ├── unsplash.svg │ │ │ ├── untappd.svg │ │ │ ├── ups.svg │ │ │ ├── usb.svg │ │ │ ├── usps.svg │ │ │ ├── ussunnah.svg │ │ │ ├── vaadin.svg │ │ │ ├── viacoin.svg │ │ │ ├── viadeo-square.svg │ │ │ ├── viadeo.svg │ │ │ ├── viber.svg │ │ │ ├── vimeo-square.svg │ │ │ ├── vimeo-v.svg │ │ │ ├── vimeo.svg │ │ │ ├── vine.svg │ │ │ ├── vk.svg │ │ │ ├── vnv.svg │ │ │ ├── vuejs.svg │ │ │ ├── watchman-monitoring.svg │ │ │ ├── waze.svg │ │ │ ├── weebly.svg │ │ │ ├── weibo.svg │ │ │ ├── weixin.svg │ │ │ ├── whatsapp-square.svg │ │ │ ├── whatsapp.svg │ │ │ ├── whmcs.svg │ │ │ ├── wikipedia-w.svg │ │ │ ├── windows.svg │ │ │ ├── wix.svg │ │ │ ├── wizards-of-the-coast.svg │ │ │ ├── wodu.svg │ │ │ ├── wolf-pack-battalion.svg │ │ │ ├── wordpress-simple.svg │ │ │ ├── wordpress.svg │ │ │ ├── wpbeginner.svg │ │ │ ├── wpexplorer.svg │ │ │ ├── wpforms.svg │ │ │ ├── wpressr.svg │ │ │ ├── xbox.svg │ │ │ ├── xing-square.svg │ │ │ ├── xing.svg │ │ │ ├── y-combinator.svg │ │ │ ├── yahoo.svg │ │ │ ├── yammer.svg │ │ │ ├── yandex-international.svg │ │ │ ├── yandex.svg │ │ │ ├── yarn.svg │ │ │ ├── yelp.svg │ │ │ ├── yoast.svg │ │ │ ├── youtube-square.svg │ │ │ ├── youtube.svg │ │ │ └── zhihu.svg │ │ ├── regular │ │ │ ├── address-book.svg │ │ │ ├── address-card.svg │ │ │ ├── angry.svg │ │ │ ├── arrow-alt-circle-down.svg │ │ │ ├── arrow-alt-circle-left.svg │ │ │ ├── arrow-alt-circle-right.svg │ │ │ ├── arrow-alt-circle-up.svg │ │ │ ├── bell-slash.svg │ │ │ ├── bell.svg │ │ │ ├── bookmark.svg │ │ │ ├── building.svg │ │ │ ├── calendar-alt.svg │ │ │ ├── calendar-check.svg │ │ │ ├── calendar-minus.svg │ │ │ ├── calendar-plus.svg │ │ │ ├── calendar-times.svg │ │ │ ├── calendar.svg │ │ │ ├── caret-square-down.svg │ │ │ ├── caret-square-left.svg │ │ │ ├── caret-square-right.svg │ │ │ ├── caret-square-up.svg │ │ │ ├── chart-bar.svg │ │ │ ├── check-circle.svg │ │ │ ├── check-square.svg │ │ │ ├── circle.svg │ │ │ ├── clipboard.svg │ │ │ ├── clock.svg │ │ │ ├── clone.svg │ │ │ ├── closed-captioning.svg │ │ │ ├── comment-alt.svg │ │ │ ├── comment-dots.svg │ │ │ ├── comment.svg │ │ │ ├── comments.svg │ │ │ ├── compass.svg │ │ │ ├── copy.svg │ │ │ ├── copyright.svg │ │ │ ├── credit-card.svg │ │ │ ├── dizzy.svg │ │ │ ├── dot-circle.svg │ │ │ ├── edit.svg │ │ │ ├── envelope-open.svg │ │ │ ├── envelope.svg │ │ │ ├── eye-slash.svg │ │ │ ├── eye.svg │ │ │ ├── file-alt.svg │ │ │ ├── file-archive.svg │ │ │ ├── file-audio.svg │ │ │ ├── file-code.svg │ │ │ ├── file-excel.svg │ │ │ ├── file-image.svg │ │ │ ├── file-pdf.svg │ │ │ ├── file-powerpoint.svg │ │ │ ├── file-video.svg │ │ │ ├── file-word.svg │ │ │ ├── file.svg │ │ │ ├── flag.svg │ │ │ ├── flushed.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder.svg │ │ │ ├── font-awesome-logo-full.svg │ │ │ ├── frown-open.svg │ │ │ ├── frown.svg │ │ │ ├── futbol.svg │ │ │ ├── gem.svg │ │ │ ├── grimace.svg │ │ │ ├── grin-alt.svg │ │ │ ├── grin-beam-sweat.svg │ │ │ ├── grin-beam.svg │ │ │ ├── grin-hearts.svg │ │ │ ├── grin-squint-tears.svg │ │ │ ├── grin-squint.svg │ │ │ ├── grin-stars.svg │ │ │ ├── grin-tears.svg │ │ │ ├── grin-tongue-squint.svg │ │ │ ├── grin-tongue-wink.svg │ │ │ ├── grin-tongue.svg │ │ │ ├── grin-wink.svg │ │ │ ├── grin.svg │ │ │ ├── hand-lizard.svg │ │ │ ├── hand-paper.svg │ │ │ ├── hand-peace.svg │ │ │ ├── hand-point-down.svg │ │ │ ├── hand-point-left.svg │ │ │ ├── hand-point-right.svg │ │ │ ├── hand-point-up.svg │ │ │ ├── hand-pointer.svg │ │ │ ├── hand-rock.svg │ │ │ ├── hand-scissors.svg │ │ │ ├── hand-spock.svg │ │ │ ├── handshake.svg │ │ │ ├── hdd.svg │ │ │ ├── heart.svg │ │ │ ├── hospital.svg │ │ │ ├── hourglass.svg │ │ │ ├── id-badge.svg │ │ │ ├── id-card.svg │ │ │ ├── image.svg │ │ │ ├── images.svg │ │ │ ├── keyboard.svg │ │ │ ├── kiss-beam.svg │ │ │ ├── kiss-wink-heart.svg │ │ │ ├── kiss.svg │ │ │ ├── laugh-beam.svg │ │ │ ├── laugh-squint.svg │ │ │ ├── laugh-wink.svg │ │ │ ├── laugh.svg │ │ │ ├── lemon.svg │ │ │ ├── life-ring.svg │ │ │ ├── lightbulb.svg │ │ │ ├── list-alt.svg │ │ │ ├── map.svg │ │ │ ├── meh-blank.svg │ │ │ ├── meh-rolling-eyes.svg │ │ │ ├── meh.svg │ │ │ ├── minus-square.svg │ │ │ ├── money-bill-alt.svg │ │ │ ├── moon.svg │ │ │ ├── newspaper.svg │ │ │ ├── object-group.svg │ │ │ ├── object-ungroup.svg │ │ │ ├── paper-plane.svg │ │ │ ├── pause-circle.svg │ │ │ ├── play-circle.svg │ │ │ ├── plus-square.svg │ │ │ ├── question-circle.svg │ │ │ ├── registered.svg │ │ │ ├── sad-cry.svg │ │ │ ├── sad-tear.svg │ │ │ ├── save.svg │ │ │ ├── share-square.svg │ │ │ ├── smile-beam.svg │ │ │ ├── smile-wink.svg │ │ │ ├── smile.svg │ │ │ ├── snowflake.svg │ │ │ ├── square.svg │ │ │ ├── star-half.svg │ │ │ ├── star.svg │ │ │ ├── sticky-note.svg │ │ │ ├── stop-circle.svg │ │ │ ├── sun.svg │ │ │ ├── surprise.svg │ │ │ ├── thumbs-down.svg │ │ │ ├── thumbs-up.svg │ │ │ ├── times-circle.svg │ │ │ ├── tired.svg │ │ │ ├── trash-alt.svg │ │ │ ├── user-circle.svg │ │ │ ├── user.svg │ │ │ ├── window-close.svg │ │ │ ├── window-maximize.svg │ │ │ ├── window-minimize.svg │ │ │ └── window-restore.svg │ │ └── solid │ │ │ ├── ad.svg │ │ │ ├── address-book.svg │ │ │ ├── address-card.svg │ │ │ ├── adjust.svg │ │ │ ├── air-freshener.svg │ │ │ ├── align-center.svg │ │ │ ├── align-justify.svg │ │ │ ├── align-left.svg │ │ │ ├── align-right.svg │ │ │ ├── allergies.svg │ │ │ ├── ambulance.svg │ │ │ ├── american-sign-language-interpreting.svg │ │ │ ├── anchor.svg │ │ │ ├── angle-double-down.svg │ │ │ ├── angle-double-left.svg │ │ │ ├── angle-double-right.svg │ │ │ ├── angle-double-up.svg │ │ │ ├── angle-down.svg │ │ │ ├── angle-left.svg │ │ │ ├── angle-right.svg │ │ │ ├── angle-up.svg │ │ │ ├── angry.svg │ │ │ ├── ankh.svg │ │ │ ├── apple-alt.svg │ │ │ ├── archive.svg │ │ │ ├── archway.svg │ │ │ ├── arrow-alt-circle-down.svg │ │ │ ├── arrow-alt-circle-left.svg │ │ │ ├── arrow-alt-circle-right.svg │ │ │ ├── arrow-alt-circle-up.svg │ │ │ ├── arrow-circle-down.svg │ │ │ ├── arrow-circle-left.svg │ │ │ ├── arrow-circle-right.svg │ │ │ ├── arrow-circle-up.svg │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-left.svg │ │ │ ├── arrow-right.svg │ │ │ ├── arrow-up.svg │ │ │ ├── arrows-alt-h.svg │ │ │ ├── arrows-alt-v.svg │ │ │ ├── arrows-alt.svg │ │ │ ├── assistive-listening-systems.svg │ │ │ ├── asterisk.svg │ │ │ ├── at.svg │ │ │ ├── atlas.svg │ │ │ ├── atom.svg │ │ │ ├── audio-description.svg │ │ │ ├── award.svg │ │ │ ├── baby-carriage.svg │ │ │ ├── baby.svg │ │ │ ├── backspace.svg │ │ │ ├── backward.svg │ │ │ ├── bacon.svg │ │ │ ├── bacteria.svg │ │ │ ├── bacterium.svg │ │ │ ├── bahai.svg │ │ │ ├── balance-scale-left.svg │ │ │ ├── balance-scale-right.svg │ │ │ ├── balance-scale.svg │ │ │ ├── ban.svg │ │ │ ├── band-aid.svg │ │ │ ├── barcode.svg │ │ │ ├── bars.svg │ │ │ ├── baseball-ball.svg │ │ │ ├── basketball-ball.svg │ │ │ ├── bath.svg │ │ │ ├── battery-empty.svg │ │ │ ├── battery-full.svg │ │ │ ├── battery-half.svg │ │ │ ├── battery-quarter.svg │ │ │ ├── battery-three-quarters.svg │ │ │ ├── bed.svg │ │ │ ├── beer.svg │ │ │ ├── bell-slash.svg │ │ │ ├── bell.svg │ │ │ ├── bezier-curve.svg │ │ │ ├── bible.svg │ │ │ ├── bicycle.svg │ │ │ ├── biking.svg │ │ │ ├── binoculars.svg │ │ │ ├── biohazard.svg │ │ │ ├── birthday-cake.svg │ │ │ ├── blender-phone.svg │ │ │ ├── blender.svg │ │ │ ├── blind.svg │ │ │ ├── blog.svg │ │ │ ├── bold.svg │ │ │ ├── bolt.svg │ │ │ ├── bomb.svg │ │ │ ├── bone.svg │ │ │ ├── bong.svg │ │ │ ├── book-dead.svg │ │ │ ├── book-medical.svg │ │ │ ├── book-open.svg │ │ │ ├── book-reader.svg │ │ │ ├── book.svg │ │ │ ├── bookmark.svg │ │ │ ├── border-all.svg │ │ │ ├── border-none.svg │ │ │ ├── border-style.svg │ │ │ ├── bowling-ball.svg │ │ │ ├── box-open.svg │ │ │ ├── box-tissue.svg │ │ │ ├── box.svg │ │ │ ├── boxes.svg │ │ │ ├── braille.svg │ │ │ ├── brain.svg │ │ │ ├── bread-slice.svg │ │ │ ├── briefcase-medical.svg │ │ │ ├── briefcase.svg │ │ │ ├── broadcast-tower.svg │ │ │ ├── broom.svg │ │ │ ├── brush.svg │ │ │ ├── bug.svg │ │ │ ├── building.svg │ │ │ ├── bullhorn.svg │ │ │ ├── bullseye.svg │ │ │ ├── burn.svg │ │ │ ├── bus-alt.svg │ │ │ ├── bus.svg │ │ │ ├── business-time.svg │ │ │ ├── calculator.svg │ │ │ ├── calendar-alt.svg │ │ │ ├── calendar-check.svg │ │ │ ├── calendar-day.svg │ │ │ ├── calendar-minus.svg │ │ │ ├── calendar-plus.svg │ │ │ ├── calendar-times.svg │ │ │ ├── calendar-week.svg │ │ │ ├── calendar.svg │ │ │ ├── camera-retro.svg │ │ │ ├── camera.svg │ │ │ ├── campground.svg │ │ │ ├── candy-cane.svg │ │ │ ├── cannabis.svg │ │ │ ├── capsules.svg │ │ │ ├── car-alt.svg │ │ │ ├── car-battery.svg │ │ │ ├── car-crash.svg │ │ │ ├── car-side.svg │ │ │ ├── car.svg │ │ │ ├── caravan.svg │ │ │ ├── caret-down.svg │ │ │ ├── caret-left.svg │ │ │ ├── caret-right.svg │ │ │ ├── caret-square-down.svg │ │ │ ├── caret-square-left.svg │ │ │ ├── caret-square-right.svg │ │ │ ├── caret-square-up.svg │ │ │ ├── caret-up.svg │ │ │ ├── carrot.svg │ │ │ ├── cart-arrow-down.svg │ │ │ ├── cart-plus.svg │ │ │ ├── cash-register.svg │ │ │ ├── cat.svg │ │ │ ├── certificate.svg │ │ │ ├── chair.svg │ │ │ ├── chalkboard-teacher.svg │ │ │ ├── chalkboard.svg │ │ │ ├── charging-station.svg │ │ │ ├── chart-area.svg │ │ │ ├── chart-bar.svg │ │ │ ├── chart-line.svg │ │ │ ├── chart-pie.svg │ │ │ ├── check-circle.svg │ │ │ ├── check-double.svg │ │ │ ├── check-square.svg │ │ │ ├── check.svg │ │ │ ├── cheese.svg │ │ │ ├── chess-bishop.svg │ │ │ ├── chess-board.svg │ │ │ ├── chess-king.svg │ │ │ ├── chess-knight.svg │ │ │ ├── chess-pawn.svg │ │ │ ├── chess-queen.svg │ │ │ ├── chess-rook.svg │ │ │ ├── chess.svg │ │ │ ├── chevron-circle-down.svg │ │ │ ├── chevron-circle-left.svg │ │ │ ├── chevron-circle-right.svg │ │ │ ├── chevron-circle-up.svg │ │ │ ├── chevron-down.svg │ │ │ ├── chevron-left.svg │ │ │ ├── chevron-right.svg │ │ │ ├── chevron-up.svg │ │ │ ├── child.svg │ │ │ ├── church.svg │ │ │ ├── circle-notch.svg │ │ │ ├── circle.svg │ │ │ ├── city.svg │ │ │ ├── clinic-medical.svg │ │ │ ├── clipboard-check.svg │ │ │ ├── clipboard-list.svg │ │ │ ├── clipboard.svg │ │ │ ├── clock.svg │ │ │ ├── clone.svg │ │ │ ├── closed-captioning.svg │ │ │ ├── cloud-download-alt.svg │ │ │ ├── cloud-meatball.svg │ │ │ ├── cloud-moon-rain.svg │ │ │ ├── cloud-moon.svg │ │ │ ├── cloud-rain.svg │ │ │ ├── cloud-showers-heavy.svg │ │ │ ├── cloud-sun-rain.svg │ │ │ ├── cloud-sun.svg │ │ │ ├── cloud-upload-alt.svg │ │ │ ├── cloud.svg │ │ │ ├── cocktail.svg │ │ │ ├── code-branch.svg │ │ │ ├── code.svg │ │ │ ├── coffee.svg │ │ │ ├── cog.svg │ │ │ ├── cogs.svg │ │ │ ├── coins.svg │ │ │ ├── columns.svg │ │ │ ├── comment-alt.svg │ │ │ ├── comment-dollar.svg │ │ │ ├── comment-dots.svg │ │ │ ├── comment-medical.svg │ │ │ ├── comment-slash.svg │ │ │ ├── comment.svg │ │ │ ├── comments-dollar.svg │ │ │ ├── comments.svg │ │ │ ├── compact-disc.svg │ │ │ ├── compass.svg │ │ │ ├── compress-alt.svg │ │ │ ├── compress-arrows-alt.svg │ │ │ ├── compress.svg │ │ │ ├── concierge-bell.svg │ │ │ ├── cookie-bite.svg │ │ │ ├── cookie.svg │ │ │ ├── copy.svg │ │ │ ├── copyright.svg │ │ │ ├── couch.svg │ │ │ ├── credit-card.svg │ │ │ ├── crop-alt.svg │ │ │ ├── crop.svg │ │ │ ├── cross.svg │ │ │ ├── crosshairs.svg │ │ │ ├── crow.svg │ │ │ ├── crown.svg │ │ │ ├── crutch.svg │ │ │ ├── cube.svg │ │ │ ├── cubes.svg │ │ │ ├── cut.svg │ │ │ ├── database.svg │ │ │ ├── deaf.svg │ │ │ ├── democrat.svg │ │ │ ├── desktop.svg │ │ │ ├── dharmachakra.svg │ │ │ ├── diagnoses.svg │ │ │ ├── dice-d20.svg │ │ │ ├── dice-d6.svg │ │ │ ├── dice-five.svg │ │ │ ├── dice-four.svg │ │ │ ├── dice-one.svg │ │ │ ├── dice-six.svg │ │ │ ├── dice-three.svg │ │ │ ├── dice-two.svg │ │ │ ├── dice.svg │ │ │ ├── digital-tachograph.svg │ │ │ ├── directions.svg │ │ │ ├── disease.svg │ │ │ ├── divide.svg │ │ │ ├── dizzy.svg │ │ │ ├── dna.svg │ │ │ ├── dog.svg │ │ │ ├── dollar-sign.svg │ │ │ ├── dolly-flatbed.svg │ │ │ ├── dolly.svg │ │ │ ├── donate.svg │ │ │ ├── door-closed.svg │ │ │ ├── door-open.svg │ │ │ ├── dot-circle.svg │ │ │ ├── dove.svg │ │ │ ├── download.svg │ │ │ ├── drafting-compass.svg │ │ │ ├── dragon.svg │ │ │ ├── draw-polygon.svg │ │ │ ├── drum-steelpan.svg │ │ │ ├── drum.svg │ │ │ ├── drumstick-bite.svg │ │ │ ├── dumbbell.svg │ │ │ ├── dumpster-fire.svg │ │ │ ├── dumpster.svg │ │ │ ├── dungeon.svg │ │ │ ├── edit.svg │ │ │ ├── egg.svg │ │ │ ├── eject.svg │ │ │ ├── ellipsis-h.svg │ │ │ ├── ellipsis-v.svg │ │ │ ├── envelope-open-text.svg │ │ │ ├── envelope-open.svg │ │ │ ├── envelope-square.svg │ │ │ ├── envelope.svg │ │ │ ├── equals.svg │ │ │ ├── eraser.svg │ │ │ ├── ethernet.svg │ │ │ ├── euro-sign.svg │ │ │ ├── exchange-alt.svg │ │ │ ├── exclamation-circle.svg │ │ │ ├── exclamation-triangle.svg │ │ │ ├── exclamation.svg │ │ │ ├── expand-alt.svg │ │ │ ├── expand-arrows-alt.svg │ │ │ ├── expand.svg │ │ │ ├── external-link-alt.svg │ │ │ ├── external-link-square-alt.svg │ │ │ ├── eye-dropper.svg │ │ │ ├── eye-slash.svg │ │ │ ├── eye.svg │ │ │ ├── fan.svg │ │ │ ├── fast-backward.svg │ │ │ ├── fast-forward.svg │ │ │ ├── faucet.svg │ │ │ ├── fax.svg │ │ │ ├── feather-alt.svg │ │ │ ├── feather.svg │ │ │ ├── female.svg │ │ │ ├── fighter-jet.svg │ │ │ ├── file-alt.svg │ │ │ ├── file-archive.svg │ │ │ ├── file-audio.svg │ │ │ ├── file-code.svg │ │ │ ├── file-contract.svg │ │ │ ├── file-csv.svg │ │ │ ├── file-download.svg │ │ │ ├── file-excel.svg │ │ │ ├── file-export.svg │ │ │ ├── file-image.svg │ │ │ ├── file-import.svg │ │ │ ├── file-invoice-dollar.svg │ │ │ ├── file-invoice.svg │ │ │ ├── file-medical-alt.svg │ │ │ ├── file-medical.svg │ │ │ ├── file-pdf.svg │ │ │ ├── file-powerpoint.svg │ │ │ ├── file-prescription.svg │ │ │ ├── file-signature.svg │ │ │ ├── file-upload.svg │ │ │ ├── file-video.svg │ │ │ ├── file-word.svg │ │ │ ├── file.svg │ │ │ ├── fill-drip.svg │ │ │ ├── fill.svg │ │ │ ├── film.svg │ │ │ ├── filter.svg │ │ │ ├── fingerprint.svg │ │ │ ├── fire-alt.svg │ │ │ ├── fire-extinguisher.svg │ │ │ ├── fire.svg │ │ │ ├── first-aid.svg │ │ │ ├── fish.svg │ │ │ ├── fist-raised.svg │ │ │ ├── flag-checkered.svg │ │ │ ├── flag-usa.svg │ │ │ ├── flag.svg │ │ │ ├── flask.svg │ │ │ ├── flushed.svg │ │ │ ├── folder-minus.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder-plus.svg │ │ │ ├── folder.svg │ │ │ ├── font-awesome-logo-full.svg │ │ │ ├── font.svg │ │ │ ├── football-ball.svg │ │ │ ├── forward.svg │ │ │ ├── frog.svg │ │ │ ├── frown-open.svg │ │ │ ├── frown.svg │ │ │ ├── funnel-dollar.svg │ │ │ ├── futbol.svg │ │ │ ├── gamepad.svg │ │ │ ├── gas-pump.svg │ │ │ ├── gavel.svg │ │ │ ├── gem.svg │ │ │ ├── genderless.svg │ │ │ ├── ghost.svg │ │ │ ├── gift.svg │ │ │ ├── gifts.svg │ │ │ ├── glass-cheers.svg │ │ │ ├── glass-martini-alt.svg │ │ │ ├── glass-martini.svg │ │ │ ├── glass-whiskey.svg │ │ │ ├── glasses.svg │ │ │ ├── globe-africa.svg │ │ │ ├── globe-americas.svg │ │ │ ├── globe-asia.svg │ │ │ ├── globe-europe.svg │ │ │ ├── globe.svg │ │ │ ├── golf-ball.svg │ │ │ ├── gopuram.svg │ │ │ ├── graduation-cap.svg │ │ │ ├── greater-than-equal.svg │ │ │ ├── greater-than.svg │ │ │ ├── grimace.svg │ │ │ ├── grin-alt.svg │ │ │ ├── grin-beam-sweat.svg │ │ │ ├── grin-beam.svg │ │ │ ├── grin-hearts.svg │ │ │ ├── grin-squint-tears.svg │ │ │ ├── grin-squint.svg │ │ │ ├── grin-stars.svg │ │ │ ├── grin-tears.svg │ │ │ ├── grin-tongue-squint.svg │ │ │ ├── grin-tongue-wink.svg │ │ │ ├── grin-tongue.svg │ │ │ ├── grin-wink.svg │ │ │ ├── grin.svg │ │ │ ├── grip-horizontal.svg │ │ │ ├── grip-lines-vertical.svg │ │ │ ├── grip-lines.svg │ │ │ ├── grip-vertical.svg │ │ │ ├── guitar.svg │ │ │ ├── h-square.svg │ │ │ ├── hamburger.svg │ │ │ ├── hammer.svg │ │ │ ├── hamsa.svg │ │ │ ├── hand-holding-heart.svg │ │ │ ├── hand-holding-medical.svg │ │ │ ├── hand-holding-usd.svg │ │ │ ├── hand-holding-water.svg │ │ │ ├── hand-holding.svg │ │ │ ├── hand-lizard.svg │ │ │ ├── hand-middle-finger.svg │ │ │ ├── hand-paper.svg │ │ │ ├── hand-peace.svg │ │ │ ├── hand-point-down.svg │ │ │ ├── hand-point-left.svg │ │ │ ├── hand-point-right.svg │ │ │ ├── hand-point-up.svg │ │ │ ├── hand-pointer.svg │ │ │ ├── hand-rock.svg │ │ │ ├── hand-scissors.svg │ │ │ ├── hand-sparkles.svg │ │ │ ├── hand-spock.svg │ │ │ ├── hands-helping.svg │ │ │ ├── hands-wash.svg │ │ │ ├── hands.svg │ │ │ ├── handshake-alt-slash.svg │ │ │ ├── handshake-slash.svg │ │ │ ├── handshake.svg │ │ │ ├── hanukiah.svg │ │ │ ├── hard-hat.svg │ │ │ ├── hashtag.svg │ │ │ ├── hat-cowboy-side.svg │ │ │ ├── hat-cowboy.svg │ │ │ ├── hat-wizard.svg │ │ │ ├── hdd.svg │ │ │ ├── head-side-cough-slash.svg │ │ │ ├── head-side-cough.svg │ │ │ ├── head-side-mask.svg │ │ │ ├── head-side-virus.svg │ │ │ ├── heading.svg │ │ │ ├── headphones-alt.svg │ │ │ ├── headphones.svg │ │ │ ├── headset.svg │ │ │ ├── heart-broken.svg │ │ │ ├── heart.svg │ │ │ ├── heartbeat.svg │ │ │ ├── helicopter.svg │ │ │ ├── highlighter.svg │ │ │ ├── hiking.svg │ │ │ ├── hippo.svg │ │ │ ├── history.svg │ │ │ ├── hockey-puck.svg │ │ │ ├── holly-berry.svg │ │ │ ├── home.svg │ │ │ ├── horse-head.svg │ │ │ ├── horse.svg │ │ │ ├── hospital-alt.svg │ │ │ ├── hospital-symbol.svg │ │ │ ├── hospital-user.svg │ │ │ ├── hospital.svg │ │ │ ├── hot-tub.svg │ │ │ ├── hotdog.svg │ │ │ ├── hotel.svg │ │ │ ├── hourglass-end.svg │ │ │ ├── hourglass-half.svg │ │ │ ├── hourglass-start.svg │ │ │ ├── hourglass.svg │ │ │ ├── house-damage.svg │ │ │ ├── house-user.svg │ │ │ ├── hryvnia.svg │ │ │ ├── i-cursor.svg │ │ │ ├── ice-cream.svg │ │ │ ├── icicles.svg │ │ │ ├── icons.svg │ │ │ ├── id-badge.svg │ │ │ ├── id-card-alt.svg │ │ │ ├── id-card.svg │ │ │ ├── igloo.svg │ │ │ ├── image.svg │ │ │ ├── images.svg │ │ │ ├── inbox.svg │ │ │ ├── indent.svg │ │ │ ├── industry.svg │ │ │ ├── infinity.svg │ │ │ ├── info-circle.svg │ │ │ ├── info.svg │ │ │ ├── italic.svg │ │ │ ├── jedi.svg │ │ │ ├── joint.svg │ │ │ ├── journal-whills.svg │ │ │ ├── kaaba.svg │ │ │ ├── key.svg │ │ │ ├── keyboard.svg │ │ │ ├── khanda.svg │ │ │ ├── kiss-beam.svg │ │ │ ├── kiss-wink-heart.svg │ │ │ ├── kiss.svg │ │ │ ├── kiwi-bird.svg │ │ │ ├── landmark.svg │ │ │ ├── language.svg │ │ │ ├── laptop-code.svg │ │ │ ├── laptop-house.svg │ │ │ ├── laptop-medical.svg │ │ │ ├── laptop.svg │ │ │ ├── laugh-beam.svg │ │ │ ├── laugh-squint.svg │ │ │ ├── laugh-wink.svg │ │ │ ├── laugh.svg │ │ │ ├── layer-group.svg │ │ │ ├── leaf.svg │ │ │ ├── lemon.svg │ │ │ ├── less-than-equal.svg │ │ │ ├── less-than.svg │ │ │ ├── level-down-alt.svg │ │ │ ├── level-up-alt.svg │ │ │ ├── life-ring.svg │ │ │ ├── lightbulb.svg │ │ │ ├── link.svg │ │ │ ├── lira-sign.svg │ │ │ ├── list-alt.svg │ │ │ ├── list-ol.svg │ │ │ ├── list-ul.svg │ │ │ ├── list.svg │ │ │ ├── location-arrow.svg │ │ │ ├── lock-open.svg │ │ │ ├── lock.svg │ │ │ ├── long-arrow-alt-down.svg │ │ │ ├── long-arrow-alt-left.svg │ │ │ ├── long-arrow-alt-right.svg │ │ │ ├── long-arrow-alt-up.svg │ │ │ ├── low-vision.svg │ │ │ ├── luggage-cart.svg │ │ │ ├── lungs-virus.svg │ │ │ ├── lungs.svg │ │ │ ├── magic.svg │ │ │ ├── magnet.svg │ │ │ ├── mail-bulk.svg │ │ │ ├── male.svg │ │ │ ├── map-marked-alt.svg │ │ │ ├── map-marked.svg │ │ │ ├── map-marker-alt.svg │ │ │ ├── map-marker.svg │ │ │ ├── map-pin.svg │ │ │ ├── map-signs.svg │ │ │ ├── map.svg │ │ │ ├── marker.svg │ │ │ ├── mars-double.svg │ │ │ ├── mars-stroke-h.svg │ │ │ ├── mars-stroke-v.svg │ │ │ ├── mars-stroke.svg │ │ │ ├── mars.svg │ │ │ ├── mask.svg │ │ │ ├── medal.svg │ │ │ ├── medkit.svg │ │ │ ├── meh-blank.svg │ │ │ ├── meh-rolling-eyes.svg │ │ │ ├── meh.svg │ │ │ ├── memory.svg │ │ │ ├── menorah.svg │ │ │ ├── mercury.svg │ │ │ ├── meteor.svg │ │ │ ├── microchip.svg │ │ │ ├── microphone-alt-slash.svg │ │ │ ├── microphone-alt.svg │ │ │ ├── microphone-slash.svg │ │ │ ├── microphone.svg │ │ │ ├── microscope.svg │ │ │ ├── minus-circle.svg │ │ │ ├── minus-square.svg │ │ │ ├── minus.svg │ │ │ ├── mitten.svg │ │ │ ├── mobile-alt.svg │ │ │ ├── mobile.svg │ │ │ ├── money-bill-alt.svg │ │ │ ├── money-bill-wave-alt.svg │ │ │ ├── money-bill-wave.svg │ │ │ ├── money-bill.svg │ │ │ ├── money-check-alt.svg │ │ │ ├── money-check.svg │ │ │ ├── monument.svg │ │ │ ├── moon.svg │ │ │ ├── mortar-pestle.svg │ │ │ ├── mosque.svg │ │ │ ├── motorcycle.svg │ │ │ ├── mountain.svg │ │ │ ├── mouse-pointer.svg │ │ │ ├── mouse.svg │ │ │ ├── mug-hot.svg │ │ │ ├── music.svg │ │ │ ├── network-wired.svg │ │ │ ├── neuter.svg │ │ │ ├── newspaper.svg │ │ │ ├── not-equal.svg │ │ │ ├── notes-medical.svg │ │ │ ├── object-group.svg │ │ │ ├── object-ungroup.svg │ │ │ ├── oil-can.svg │ │ │ ├── om.svg │ │ │ ├── otter.svg │ │ │ ├── outdent.svg │ │ │ ├── pager.svg │ │ │ ├── paint-brush.svg │ │ │ ├── paint-roller.svg │ │ │ ├── palette.svg │ │ │ ├── pallet.svg │ │ │ ├── paper-plane.svg │ │ │ ├── paperclip.svg │ │ │ ├── parachute-box.svg │ │ │ ├── paragraph.svg │ │ │ ├── parking.svg │ │ │ ├── passport.svg │ │ │ ├── pastafarianism.svg │ │ │ ├── paste.svg │ │ │ ├── pause-circle.svg │ │ │ ├── pause.svg │ │ │ ├── paw.svg │ │ │ ├── peace.svg │ │ │ ├── pen-alt.svg │ │ │ ├── pen-fancy.svg │ │ │ ├── pen-nib.svg │ │ │ ├── pen-square.svg │ │ │ ├── pen.svg │ │ │ ├── pencil-alt.svg │ │ │ ├── pencil-ruler.svg │ │ │ ├── people-arrows.svg │ │ │ ├── people-carry.svg │ │ │ ├── pepper-hot.svg │ │ │ ├── percent.svg │ │ │ ├── percentage.svg │ │ │ ├── person-booth.svg │ │ │ ├── phone-alt.svg │ │ │ ├── phone-slash.svg │ │ │ ├── phone-square-alt.svg │ │ │ ├── phone-square.svg │ │ │ ├── phone-volume.svg │ │ │ ├── phone.svg │ │ │ ├── photo-video.svg │ │ │ ├── piggy-bank.svg │ │ │ ├── pills.svg │ │ │ ├── pizza-slice.svg │ │ │ ├── place-of-worship.svg │ │ │ ├── plane-arrival.svg │ │ │ ├── plane-departure.svg │ │ │ ├── plane-slash.svg │ │ │ ├── plane.svg │ │ │ ├── play-circle.svg │ │ │ ├── play.svg │ │ │ ├── plug.svg │ │ │ ├── plus-circle.svg │ │ │ ├── plus-square.svg │ │ │ ├── plus.svg │ │ │ ├── podcast.svg │ │ │ ├── poll-h.svg │ │ │ ├── poll.svg │ │ │ ├── poo-storm.svg │ │ │ ├── poo.svg │ │ │ ├── poop.svg │ │ │ ├── portrait.svg │ │ │ ├── pound-sign.svg │ │ │ ├── power-off.svg │ │ │ ├── pray.svg │ │ │ ├── praying-hands.svg │ │ │ ├── prescription-bottle-alt.svg │ │ │ ├── prescription-bottle.svg │ │ │ ├── prescription.svg │ │ │ ├── print.svg │ │ │ ├── procedures.svg │ │ │ ├── project-diagram.svg │ │ │ ├── pump-medical.svg │ │ │ ├── pump-soap.svg │ │ │ ├── puzzle-piece.svg │ │ │ ├── qrcode.svg │ │ │ ├── question-circle.svg │ │ │ ├── question.svg │ │ │ ├── quidditch.svg │ │ │ ├── quote-left.svg │ │ │ ├── quote-right.svg │ │ │ ├── quran.svg │ │ │ ├── radiation-alt.svg │ │ │ ├── radiation.svg │ │ │ ├── rainbow.svg │ │ │ ├── random.svg │ │ │ ├── receipt.svg │ │ │ ├── record-vinyl.svg │ │ │ ├── recycle.svg │ │ │ ├── redo-alt.svg │ │ │ ├── redo.svg │ │ │ ├── registered.svg │ │ │ ├── remove-format.svg │ │ │ ├── reply-all.svg │ │ │ ├── reply.svg │ │ │ ├── republican.svg │ │ │ ├── restroom.svg │ │ │ ├── retweet.svg │ │ │ ├── ribbon.svg │ │ │ ├── ring.svg │ │ │ ├── road.svg │ │ │ ├── robot.svg │ │ │ ├── rocket.svg │ │ │ ├── route.svg │ │ │ ├── rss-square.svg │ │ │ ├── rss.svg │ │ │ ├── ruble-sign.svg │ │ │ ├── ruler-combined.svg │ │ │ ├── ruler-horizontal.svg │ │ │ ├── ruler-vertical.svg │ │ │ ├── ruler.svg │ │ │ ├── running.svg │ │ │ ├── rupee-sign.svg │ │ │ ├── sad-cry.svg │ │ │ ├── sad-tear.svg │ │ │ ├── satellite-dish.svg │ │ │ ├── satellite.svg │ │ │ ├── save.svg │ │ │ ├── school.svg │ │ │ ├── screwdriver.svg │ │ │ ├── scroll.svg │ │ │ ├── sd-card.svg │ │ │ ├── search-dollar.svg │ │ │ ├── search-location.svg │ │ │ ├── search-minus.svg │ │ │ ├── search-plus.svg │ │ │ ├── search.svg │ │ │ ├── seedling.svg │ │ │ ├── server.svg │ │ │ ├── shapes.svg │ │ │ ├── share-alt-square.svg │ │ │ ├── share-alt.svg │ │ │ ├── share-square.svg │ │ │ ├── share.svg │ │ │ ├── shekel-sign.svg │ │ │ ├── shield-alt.svg │ │ │ ├── shield-virus.svg │ │ │ ├── ship.svg │ │ │ ├── shipping-fast.svg │ │ │ ├── shoe-prints.svg │ │ │ ├── shopping-bag.svg │ │ │ ├── shopping-basket.svg │ │ │ ├── shopping-cart.svg │ │ │ ├── shower.svg │ │ │ ├── shuttle-van.svg │ │ │ ├── sign-in-alt.svg │ │ │ ├── sign-language.svg │ │ │ ├── sign-out-alt.svg │ │ │ ├── sign.svg │ │ │ ├── signal.svg │ │ │ ├── signature.svg │ │ │ ├── sim-card.svg │ │ │ ├── sink.svg │ │ │ ├── sitemap.svg │ │ │ ├── skating.svg │ │ │ ├── skiing-nordic.svg │ │ │ ├── skiing.svg │ │ │ ├── skull-crossbones.svg │ │ │ ├── skull.svg │ │ │ ├── slash.svg │ │ │ ├── sleigh.svg │ │ │ ├── sliders-h.svg │ │ │ ├── smile-beam.svg │ │ │ ├── smile-wink.svg │ │ │ ├── smile.svg │ │ │ ├── smog.svg │ │ │ ├── smoking-ban.svg │ │ │ ├── smoking.svg │ │ │ ├── sms.svg │ │ │ ├── snowboarding.svg │ │ │ ├── snowflake.svg │ │ │ ├── snowman.svg │ │ │ ├── snowplow.svg │ │ │ ├── soap.svg │ │ │ ├── socks.svg │ │ │ ├── solar-panel.svg │ │ │ ├── sort-alpha-down-alt.svg │ │ │ ├── sort-alpha-down.svg │ │ │ ├── sort-alpha-up-alt.svg │ │ │ ├── sort-alpha-up.svg │ │ │ ├── sort-amount-down-alt.svg │ │ │ ├── sort-amount-down.svg │ │ │ ├── sort-amount-up-alt.svg │ │ │ ├── sort-amount-up.svg │ │ │ ├── sort-down.svg │ │ │ ├── sort-numeric-down-alt.svg │ │ │ ├── sort-numeric-down.svg │ │ │ ├── sort-numeric-up-alt.svg │ │ │ ├── sort-numeric-up.svg │ │ │ ├── sort-up.svg │ │ │ ├── sort.svg │ │ │ ├── spa.svg │ │ │ ├── space-shuttle.svg │ │ │ ├── spell-check.svg │ │ │ ├── spider.svg │ │ │ ├── spinner.svg │ │ │ ├── splotch.svg │ │ │ ├── spray-can.svg │ │ │ ├── square-full.svg │ │ │ ├── square-root-alt.svg │ │ │ ├── square.svg │ │ │ ├── stamp.svg │ │ │ ├── star-and-crescent.svg │ │ │ ├── star-half-alt.svg │ │ │ ├── star-half.svg │ │ │ ├── star-of-david.svg │ │ │ ├── star-of-life.svg │ │ │ ├── star.svg │ │ │ ├── step-backward.svg │ │ │ ├── step-forward.svg │ │ │ ├── stethoscope.svg │ │ │ ├── sticky-note.svg │ │ │ ├── stop-circle.svg │ │ │ ├── stop.svg │ │ │ ├── stopwatch-20.svg │ │ │ ├── stopwatch.svg │ │ │ ├── store-alt-slash.svg │ │ │ ├── store-alt.svg │ │ │ ├── store-slash.svg │ │ │ ├── store.svg │ │ │ ├── stream.svg │ │ │ ├── street-view.svg │ │ │ ├── strikethrough.svg │ │ │ ├── stroopwafel.svg │ │ │ ├── subscript.svg │ │ │ ├── subway.svg │ │ │ ├── suitcase-rolling.svg │ │ │ ├── suitcase.svg │ │ │ ├── sun.svg │ │ │ ├── superscript.svg │ │ │ ├── surprise.svg │ │ │ ├── swatchbook.svg │ │ │ ├── swimmer.svg │ │ │ ├── swimming-pool.svg │ │ │ ├── synagogue.svg │ │ │ ├── sync-alt.svg │ │ │ ├── sync.svg │ │ │ ├── syringe.svg │ │ │ ├── table-tennis.svg │ │ │ ├── table.svg │ │ │ ├── tablet-alt.svg │ │ │ ├── tablet.svg │ │ │ ├── tablets.svg │ │ │ ├── tachometer-alt.svg │ │ │ ├── tag.svg │ │ │ ├── tags.svg │ │ │ ├── tape.svg │ │ │ ├── tasks.svg │ │ │ ├── taxi.svg │ │ │ ├── teeth-open.svg │ │ │ ├── teeth.svg │ │ │ ├── temperature-high.svg │ │ │ ├── temperature-low.svg │ │ │ ├── tenge.svg │ │ │ ├── terminal.svg │ │ │ ├── text-height.svg │ │ │ ├── text-width.svg │ │ │ ├── th-large.svg │ │ │ ├── th-list.svg │ │ │ ├── th.svg │ │ │ ├── theater-masks.svg │ │ │ ├── thermometer-empty.svg │ │ │ ├── thermometer-full.svg │ │ │ ├── thermometer-half.svg │ │ │ ├── thermometer-quarter.svg │ │ │ ├── thermometer-three-quarters.svg │ │ │ ├── thermometer.svg │ │ │ ├── thumbs-down.svg │ │ │ ├── thumbs-up.svg │ │ │ ├── thumbtack.svg │ │ │ ├── ticket-alt.svg │ │ │ ├── times-circle.svg │ │ │ ├── times.svg │ │ │ ├── tint-slash.svg │ │ │ ├── tint.svg │ │ │ ├── tired.svg │ │ │ ├── toggle-off.svg │ │ │ ├── toggle-on.svg │ │ │ ├── toilet-paper-slash.svg │ │ │ ├── toilet-paper.svg │ │ │ ├── toilet.svg │ │ │ ├── toolbox.svg │ │ │ ├── tools.svg │ │ │ ├── tooth.svg │ │ │ ├── torah.svg │ │ │ ├── torii-gate.svg │ │ │ ├── tractor.svg │ │ │ ├── trademark.svg │ │ │ ├── traffic-light.svg │ │ │ ├── trailer.svg │ │ │ ├── train.svg │ │ │ ├── tram.svg │ │ │ ├── transgender-alt.svg │ │ │ ├── transgender.svg │ │ │ ├── trash-alt.svg │ │ │ ├── trash-restore-alt.svg │ │ │ ├── trash-restore.svg │ │ │ ├── trash.svg │ │ │ ├── tree.svg │ │ │ ├── trophy.svg │ │ │ ├── truck-loading.svg │ │ │ ├── truck-monster.svg │ │ │ ├── truck-moving.svg │ │ │ ├── truck-pickup.svg │ │ │ ├── truck.svg │ │ │ ├── tshirt.svg │ │ │ ├── tty.svg │ │ │ ├── tv.svg │ │ │ ├── umbrella-beach.svg │ │ │ ├── umbrella.svg │ │ │ ├── underline.svg │ │ │ ├── undo-alt.svg │ │ │ ├── undo.svg │ │ │ ├── universal-access.svg │ │ │ ├── university.svg │ │ │ ├── unlink.svg │ │ │ ├── unlock-alt.svg │ │ │ ├── unlock.svg │ │ │ ├── upload.svg │ │ │ ├── user-alt-slash.svg │ │ │ ├── user-alt.svg │ │ │ ├── user-astronaut.svg │ │ │ ├── user-check.svg │ │ │ ├── user-circle.svg │ │ │ ├── user-clock.svg │ │ │ ├── user-cog.svg │ │ │ ├── user-edit.svg │ │ │ ├── user-friends.svg │ │ │ ├── user-graduate.svg │ │ │ ├── user-injured.svg │ │ │ ├── user-lock.svg │ │ │ ├── user-md.svg │ │ │ ├── user-minus.svg │ │ │ ├── user-ninja.svg │ │ │ ├── user-nurse.svg │ │ │ ├── user-plus.svg │ │ │ ├── user-secret.svg │ │ │ ├── user-shield.svg │ │ │ ├── user-slash.svg │ │ │ ├── user-tag.svg │ │ │ ├── user-tie.svg │ │ │ ├── user-times.svg │ │ │ ├── user.svg │ │ │ ├── users-cog.svg │ │ │ ├── users-slash.svg │ │ │ ├── users.svg │ │ │ ├── utensil-spoon.svg │ │ │ ├── utensils.svg │ │ │ ├── vector-square.svg │ │ │ ├── venus-double.svg │ │ │ ├── venus-mars.svg │ │ │ ├── venus.svg │ │ │ ├── vest-patches.svg │ │ │ ├── vest.svg │ │ │ ├── vial.svg │ │ │ ├── vials.svg │ │ │ ├── video-slash.svg │ │ │ ├── video.svg │ │ │ ├── vihara.svg │ │ │ ├── virus-slash.svg │ │ │ ├── virus.svg │ │ │ ├── viruses.svg │ │ │ ├── voicemail.svg │ │ │ ├── volleyball-ball.svg │ │ │ ├── volume-down.svg │ │ │ ├── volume-mute.svg │ │ │ ├── volume-off.svg │ │ │ ├── volume-up.svg │ │ │ ├── vote-yea.svg │ │ │ ├── vr-cardboard.svg │ │ │ ├── walking.svg │ │ │ ├── wallet.svg │ │ │ ├── warehouse.svg │ │ │ ├── water.svg │ │ │ ├── wave-square.svg │ │ │ ├── weight-hanging.svg │ │ │ ├── weight.svg │ │ │ ├── wheelchair.svg │ │ │ ├── wifi.svg │ │ │ ├── wind.svg │ │ │ ├── window-close.svg │ │ │ ├── window-maximize.svg │ │ │ ├── window-minimize.svg │ │ │ ├── window-restore.svg │ │ │ ├── wine-bottle.svg │ │ │ ├── wine-glass-alt.svg │ │ │ ├── wine-glass.svg │ │ │ ├── won-sign.svg │ │ │ ├── wrench.svg │ │ │ ├── x-ray.svg │ │ │ ├── yen-sign.svg │ │ │ └── yin-yang.svg │ └── webfonts │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ └── fa-solid-900.woff2 ├── react-devtools │ ├── build │ │ ├── background.js │ │ ├── importFile.worker.worker.js │ │ ├── installHook.js │ │ ├── main.js │ │ ├── panel.js │ │ ├── parseHookNames.chunk.js │ │ ├── parseSourceAndMetadata.worker.worker.js │ │ ├── prepareInjection.js │ │ ├── proxy.js │ │ ├── react_devtools_backend.js │ │ ├── renderer.js │ │ └── vendors~parseHookNames.chunk.js │ ├── icons │ │ ├── 128-deadcode.png │ │ ├── 128-development.png │ │ ├── 128-disabled.png │ │ ├── 128-outdated.png │ │ ├── 128-production.png │ │ ├── 128-restricted.png │ │ ├── 128-unminified.png │ │ ├── 16-deadcode.png │ │ ├── 16-development.png │ │ ├── 16-disabled.png │ │ ├── 16-outdated.png │ │ ├── 16-production.png │ │ ├── 16-restricted.png │ │ ├── 16-unminified.png │ │ ├── 32-deadcode.png │ │ ├── 32-development.png │ │ ├── 32-disabled.png │ │ ├── 32-outdated.png │ │ ├── 32-production.png │ │ ├── 32-restricted.png │ │ ├── 32-unminified.png │ │ ├── 48-deadcode.png │ │ ├── 48-development.png │ │ ├── 48-disabled.png │ │ ├── 48-outdated.png │ │ ├── 48-production.png │ │ ├── 48-restricted.png │ │ ├── 48-unminified.png │ │ ├── deadcode.svg │ │ ├── development.svg │ │ ├── disabled.svg │ │ ├── outdated.svg │ │ ├── production.svg │ │ └── restricted.svg │ ├── main.html │ ├── manifest.json │ ├── panel.html │ └── popups │ │ ├── deadcode.html │ │ ├── development.html │ │ ├── disabled.html │ │ ├── outdated.html │ │ ├── production.html │ │ ├── restricted.html │ │ ├── shared.css │ │ ├── shared.js │ │ └── unminified.html ├── roboto.css ├── threejs │ ├── vector2.d.ts │ └── vector2.js ├── toasted.d.ts └── urijs.d.ts ├── webpack.base.config.js ├── webpack.dev-app.config.js ├── webpack.dev.config.js ├── webpack.prod.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/.babelrc -------------------------------------------------------------------------------- /.bundlemonrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/.bundlemonrc.json -------------------------------------------------------------------------------- /.codeclimate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/.codeclimate.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/.npmrc -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/.stylelintrc -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.1.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/.yarn/releases/yarn-3.1.1.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /BASEAGREEMENT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/BASEAGREEMENT -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/README.md -------------------------------------------------------------------------------- /app/app-services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/app-services.ts -------------------------------------------------------------------------------- /app/app.g.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/app.g.less -------------------------------------------------------------------------------- /app/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/app.ts -------------------------------------------------------------------------------- /app/components-react/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/components-react/hooks.ts -------------------------------------------------------------------------------- /app/components-react/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/components-react/index.ts -------------------------------------------------------------------------------- /app/components-react/shared/Volmeter2d.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/components/Selector.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/components/Selector.vue -------------------------------------------------------------------------------- /app/components/Tabs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/components/Tabs.vue -------------------------------------------------------------------------------- /app/components/Tabs.vue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/components/Tabs.vue.ts -------------------------------------------------------------------------------- /app/i18n/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/README.md -------------------------------------------------------------------------------- /app/i18n/ar-SA/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ar-SA/app.json -------------------------------------------------------------------------------- /app/i18n/ar-SA/apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ar-SA/apps.json -------------------------------------------------------------------------------- /app/i18n/ar-SA/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ar-SA/audio.json -------------------------------------------------------------------------------- /app/i18n/ar-SA/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ar-SA/common.json -------------------------------------------------------------------------------- /app/i18n/ar-SA/developer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ar-SA/developer.json -------------------------------------------------------------------------------- /app/i18n/ar-SA/facebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ar-SA/facebook.json -------------------------------------------------------------------------------- /app/i18n/ar-SA/facemasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ar-SA/facemasks.json -------------------------------------------------------------------------------- /app/i18n/ar-SA/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ar-SA/filters.json -------------------------------------------------------------------------------- /app/i18n/ar-SA/grow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ar-SA/grow.json -------------------------------------------------------------------------------- /app/i18n/ar-SA/guest-cam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ar-SA/guest-cam.json -------------------------------------------------------------------------------- /app/i18n/ar-SA/hotkeys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ar-SA/hotkeys.json -------------------------------------------------------------------------------- /app/i18n/ar-SA/kick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ar-SA/kick.json -------------------------------------------------------------------------------- /app/i18n/ar-SA/langname.txt: -------------------------------------------------------------------------------- 1 | English -------------------------------------------------------------------------------- /app/i18n/ar-SA/loader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ar-SA/loader.json -------------------------------------------------------------------------------- /app/i18n/ar-SA/overlays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ar-SA/overlays.json -------------------------------------------------------------------------------- /app/i18n/ar-SA/scenes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ar-SA/scenes.json -------------------------------------------------------------------------------- /app/i18n/ar-SA/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ar-SA/settings.json -------------------------------------------------------------------------------- /app/i18n/ar-SA/socials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ar-SA/socials.json -------------------------------------------------------------------------------- /app/i18n/ar-SA/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ar-SA/sources.json -------------------------------------------------------------------------------- /app/i18n/ar-SA/streaming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ar-SA/streaming.json -------------------------------------------------------------------------------- /app/i18n/ar-SA/tiktok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ar-SA/tiktok.json -------------------------------------------------------------------------------- /app/i18n/ar-SA/trovo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ar-SA/trovo.json -------------------------------------------------------------------------------- /app/i18n/ar-SA/twitch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ar-SA/twitch.json -------------------------------------------------------------------------------- /app/i18n/ar-SA/twitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ar-SA/twitter.json -------------------------------------------------------------------------------- /app/i18n/ar-SA/undo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ar-SA/undo.json -------------------------------------------------------------------------------- /app/i18n/ar-SA/widgets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ar-SA/widgets.json -------------------------------------------------------------------------------- /app/i18n/ar-SA/youtube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ar-SA/youtube.json -------------------------------------------------------------------------------- /app/i18n/cs-CZ/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/cs-CZ/app.json -------------------------------------------------------------------------------- /app/i18n/cs-CZ/apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/cs-CZ/apps.json -------------------------------------------------------------------------------- /app/i18n/cs-CZ/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/cs-CZ/audio.json -------------------------------------------------------------------------------- /app/i18n/cs-CZ/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/cs-CZ/common.json -------------------------------------------------------------------------------- /app/i18n/cs-CZ/developer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/cs-CZ/developer.json -------------------------------------------------------------------------------- /app/i18n/cs-CZ/facebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/cs-CZ/facebook.json -------------------------------------------------------------------------------- /app/i18n/cs-CZ/facemasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/cs-CZ/facemasks.json -------------------------------------------------------------------------------- /app/i18n/cs-CZ/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/cs-CZ/filters.json -------------------------------------------------------------------------------- /app/i18n/cs-CZ/grow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/cs-CZ/grow.json -------------------------------------------------------------------------------- /app/i18n/cs-CZ/guest-cam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/cs-CZ/guest-cam.json -------------------------------------------------------------------------------- /app/i18n/cs-CZ/hotkeys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/cs-CZ/hotkeys.json -------------------------------------------------------------------------------- /app/i18n/cs-CZ/kick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/cs-CZ/kick.json -------------------------------------------------------------------------------- /app/i18n/cs-CZ/langname.txt: -------------------------------------------------------------------------------- 1 | Čeština -------------------------------------------------------------------------------- /app/i18n/cs-CZ/loader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/cs-CZ/loader.json -------------------------------------------------------------------------------- /app/i18n/cs-CZ/overlays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/cs-CZ/overlays.json -------------------------------------------------------------------------------- /app/i18n/cs-CZ/scenes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/cs-CZ/scenes.json -------------------------------------------------------------------------------- /app/i18n/cs-CZ/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/cs-CZ/settings.json -------------------------------------------------------------------------------- /app/i18n/cs-CZ/socials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/cs-CZ/socials.json -------------------------------------------------------------------------------- /app/i18n/cs-CZ/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/cs-CZ/sources.json -------------------------------------------------------------------------------- /app/i18n/cs-CZ/streaming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/cs-CZ/streaming.json -------------------------------------------------------------------------------- /app/i18n/cs-CZ/tiktok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/cs-CZ/tiktok.json -------------------------------------------------------------------------------- /app/i18n/cs-CZ/trovo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/cs-CZ/trovo.json -------------------------------------------------------------------------------- /app/i18n/cs-CZ/twitch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/cs-CZ/twitch.json -------------------------------------------------------------------------------- /app/i18n/cs-CZ/twitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/cs-CZ/twitter.json -------------------------------------------------------------------------------- /app/i18n/cs-CZ/undo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/cs-CZ/undo.json -------------------------------------------------------------------------------- /app/i18n/cs-CZ/widgets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/cs-CZ/widgets.json -------------------------------------------------------------------------------- /app/i18n/cs-CZ/youtube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/cs-CZ/youtube.json -------------------------------------------------------------------------------- /app/i18n/da-DK/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/da-DK/app.json -------------------------------------------------------------------------------- /app/i18n/da-DK/apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/da-DK/apps.json -------------------------------------------------------------------------------- /app/i18n/da-DK/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/da-DK/audio.json -------------------------------------------------------------------------------- /app/i18n/da-DK/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/da-DK/common.json -------------------------------------------------------------------------------- /app/i18n/da-DK/developer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/da-DK/developer.json -------------------------------------------------------------------------------- /app/i18n/da-DK/facebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/da-DK/facebook.json -------------------------------------------------------------------------------- /app/i18n/da-DK/facemasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/da-DK/facemasks.json -------------------------------------------------------------------------------- /app/i18n/da-DK/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/da-DK/filters.json -------------------------------------------------------------------------------- /app/i18n/da-DK/grow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/da-DK/grow.json -------------------------------------------------------------------------------- /app/i18n/da-DK/guest-cam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/da-DK/guest-cam.json -------------------------------------------------------------------------------- /app/i18n/da-DK/hotkeys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/da-DK/hotkeys.json -------------------------------------------------------------------------------- /app/i18n/da-DK/kick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/da-DK/kick.json -------------------------------------------------------------------------------- /app/i18n/da-DK/langname.txt: -------------------------------------------------------------------------------- 1 | Dansk -------------------------------------------------------------------------------- /app/i18n/da-DK/loader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/da-DK/loader.json -------------------------------------------------------------------------------- /app/i18n/da-DK/overlays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/da-DK/overlays.json -------------------------------------------------------------------------------- /app/i18n/da-DK/scenes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/da-DK/scenes.json -------------------------------------------------------------------------------- /app/i18n/da-DK/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/da-DK/settings.json -------------------------------------------------------------------------------- /app/i18n/da-DK/socials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/da-DK/socials.json -------------------------------------------------------------------------------- /app/i18n/da-DK/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/da-DK/sources.json -------------------------------------------------------------------------------- /app/i18n/da-DK/streaming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/da-DK/streaming.json -------------------------------------------------------------------------------- /app/i18n/da-DK/tiktok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/da-DK/tiktok.json -------------------------------------------------------------------------------- /app/i18n/da-DK/trovo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/da-DK/trovo.json -------------------------------------------------------------------------------- /app/i18n/da-DK/twitch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/da-DK/twitch.json -------------------------------------------------------------------------------- /app/i18n/da-DK/twitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/da-DK/twitter.json -------------------------------------------------------------------------------- /app/i18n/da-DK/undo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/da-DK/undo.json -------------------------------------------------------------------------------- /app/i18n/da-DK/widgets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/da-DK/widgets.json -------------------------------------------------------------------------------- /app/i18n/da-DK/youtube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/da-DK/youtube.json -------------------------------------------------------------------------------- /app/i18n/de-DE/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/de-DE/app.json -------------------------------------------------------------------------------- /app/i18n/de-DE/apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/de-DE/apps.json -------------------------------------------------------------------------------- /app/i18n/de-DE/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/de-DE/audio.json -------------------------------------------------------------------------------- /app/i18n/de-DE/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/de-DE/common.json -------------------------------------------------------------------------------- /app/i18n/de-DE/developer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/de-DE/developer.json -------------------------------------------------------------------------------- /app/i18n/de-DE/facebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/de-DE/facebook.json -------------------------------------------------------------------------------- /app/i18n/de-DE/facemasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/de-DE/facemasks.json -------------------------------------------------------------------------------- /app/i18n/de-DE/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/de-DE/filters.json -------------------------------------------------------------------------------- /app/i18n/de-DE/grow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/de-DE/grow.json -------------------------------------------------------------------------------- /app/i18n/de-DE/guest-cam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/de-DE/guest-cam.json -------------------------------------------------------------------------------- /app/i18n/de-DE/hotkeys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/de-DE/hotkeys.json -------------------------------------------------------------------------------- /app/i18n/de-DE/kick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/de-DE/kick.json -------------------------------------------------------------------------------- /app/i18n/de-DE/langname.txt: -------------------------------------------------------------------------------- 1 | Deutsch -------------------------------------------------------------------------------- /app/i18n/de-DE/loader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/de-DE/loader.json -------------------------------------------------------------------------------- /app/i18n/de-DE/overlays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/de-DE/overlays.json -------------------------------------------------------------------------------- /app/i18n/de-DE/scenes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/de-DE/scenes.json -------------------------------------------------------------------------------- /app/i18n/de-DE/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/de-DE/settings.json -------------------------------------------------------------------------------- /app/i18n/de-DE/socials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/de-DE/socials.json -------------------------------------------------------------------------------- /app/i18n/de-DE/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/de-DE/sources.json -------------------------------------------------------------------------------- /app/i18n/de-DE/streaming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/de-DE/streaming.json -------------------------------------------------------------------------------- /app/i18n/de-DE/tiktok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/de-DE/tiktok.json -------------------------------------------------------------------------------- /app/i18n/de-DE/trovo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/de-DE/trovo.json -------------------------------------------------------------------------------- /app/i18n/de-DE/twitch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/de-DE/twitch.json -------------------------------------------------------------------------------- /app/i18n/de-DE/twitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/de-DE/twitter.json -------------------------------------------------------------------------------- /app/i18n/de-DE/undo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/de-DE/undo.json -------------------------------------------------------------------------------- /app/i18n/de-DE/widgets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/de-DE/widgets.json -------------------------------------------------------------------------------- /app/i18n/de-DE/youtube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/de-DE/youtube.json -------------------------------------------------------------------------------- /app/i18n/en-US/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/en-US/app.json -------------------------------------------------------------------------------- /app/i18n/en-US/apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/en-US/apps.json -------------------------------------------------------------------------------- /app/i18n/en-US/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/en-US/audio.json -------------------------------------------------------------------------------- /app/i18n/en-US/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/en-US/common.json -------------------------------------------------------------------------------- /app/i18n/en-US/developer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/en-US/developer.json -------------------------------------------------------------------------------- /app/i18n/en-US/facebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/en-US/facebook.json -------------------------------------------------------------------------------- /app/i18n/en-US/facemasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/en-US/facemasks.json -------------------------------------------------------------------------------- /app/i18n/en-US/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/en-US/filters.json -------------------------------------------------------------------------------- /app/i18n/en-US/grow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/en-US/grow.json -------------------------------------------------------------------------------- /app/i18n/en-US/guest-cam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/en-US/guest-cam.json -------------------------------------------------------------------------------- /app/i18n/en-US/hotkeys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/en-US/hotkeys.json -------------------------------------------------------------------------------- /app/i18n/en-US/kick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/en-US/kick.json -------------------------------------------------------------------------------- /app/i18n/en-US/langname.txt: -------------------------------------------------------------------------------- 1 | English -------------------------------------------------------------------------------- /app/i18n/en-US/loader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/en-US/loader.json -------------------------------------------------------------------------------- /app/i18n/en-US/overlays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/en-US/overlays.json -------------------------------------------------------------------------------- /app/i18n/en-US/scenes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/en-US/scenes.json -------------------------------------------------------------------------------- /app/i18n/en-US/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/en-US/settings.json -------------------------------------------------------------------------------- /app/i18n/en-US/socials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/en-US/socials.json -------------------------------------------------------------------------------- /app/i18n/en-US/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/en-US/sources.json -------------------------------------------------------------------------------- /app/i18n/en-US/streaming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/en-US/streaming.json -------------------------------------------------------------------------------- /app/i18n/en-US/tiktok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/en-US/tiktok.json -------------------------------------------------------------------------------- /app/i18n/en-US/trovo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/en-US/trovo.json -------------------------------------------------------------------------------- /app/i18n/en-US/twitch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/en-US/twitch.json -------------------------------------------------------------------------------- /app/i18n/en-US/twitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/en-US/twitter.json -------------------------------------------------------------------------------- /app/i18n/en-US/undo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/en-US/undo.json -------------------------------------------------------------------------------- /app/i18n/en-US/widgets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/en-US/widgets.json -------------------------------------------------------------------------------- /app/i18n/en-US/youtube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/en-US/youtube.json -------------------------------------------------------------------------------- /app/i18n/es-ES/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/es-ES/app.json -------------------------------------------------------------------------------- /app/i18n/es-ES/apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/es-ES/apps.json -------------------------------------------------------------------------------- /app/i18n/es-ES/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/es-ES/audio.json -------------------------------------------------------------------------------- /app/i18n/es-ES/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/es-ES/common.json -------------------------------------------------------------------------------- /app/i18n/es-ES/developer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/es-ES/developer.json -------------------------------------------------------------------------------- /app/i18n/es-ES/facebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/es-ES/facebook.json -------------------------------------------------------------------------------- /app/i18n/es-ES/facemasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/es-ES/facemasks.json -------------------------------------------------------------------------------- /app/i18n/es-ES/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/es-ES/filters.json -------------------------------------------------------------------------------- /app/i18n/es-ES/grow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/es-ES/grow.json -------------------------------------------------------------------------------- /app/i18n/es-ES/guest-cam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/es-ES/guest-cam.json -------------------------------------------------------------------------------- /app/i18n/es-ES/hotkeys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/es-ES/hotkeys.json -------------------------------------------------------------------------------- /app/i18n/es-ES/kick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/es-ES/kick.json -------------------------------------------------------------------------------- /app/i18n/es-ES/langname.txt: -------------------------------------------------------------------------------- 1 | Español -------------------------------------------------------------------------------- /app/i18n/es-ES/loader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/es-ES/loader.json -------------------------------------------------------------------------------- /app/i18n/es-ES/overlays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/es-ES/overlays.json -------------------------------------------------------------------------------- /app/i18n/es-ES/scenes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/es-ES/scenes.json -------------------------------------------------------------------------------- /app/i18n/es-ES/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/es-ES/settings.json -------------------------------------------------------------------------------- /app/i18n/es-ES/socials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/es-ES/socials.json -------------------------------------------------------------------------------- /app/i18n/es-ES/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/es-ES/sources.json -------------------------------------------------------------------------------- /app/i18n/es-ES/streaming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/es-ES/streaming.json -------------------------------------------------------------------------------- /app/i18n/es-ES/tiktok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/es-ES/tiktok.json -------------------------------------------------------------------------------- /app/i18n/es-ES/trovo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/es-ES/trovo.json -------------------------------------------------------------------------------- /app/i18n/es-ES/twitch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/es-ES/twitch.json -------------------------------------------------------------------------------- /app/i18n/es-ES/twitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/es-ES/twitter.json -------------------------------------------------------------------------------- /app/i18n/es-ES/undo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/es-ES/undo.json -------------------------------------------------------------------------------- /app/i18n/es-ES/widgets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/es-ES/widgets.json -------------------------------------------------------------------------------- /app/i18n/es-ES/youtube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/es-ES/youtube.json -------------------------------------------------------------------------------- /app/i18n/fallback.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/fallback.ts -------------------------------------------------------------------------------- /app/i18n/fr-FR/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/fr-FR/app.json -------------------------------------------------------------------------------- /app/i18n/fr-FR/apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/fr-FR/apps.json -------------------------------------------------------------------------------- /app/i18n/fr-FR/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/fr-FR/audio.json -------------------------------------------------------------------------------- /app/i18n/fr-FR/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/fr-FR/common.json -------------------------------------------------------------------------------- /app/i18n/fr-FR/developer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/fr-FR/developer.json -------------------------------------------------------------------------------- /app/i18n/fr-FR/facebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/fr-FR/facebook.json -------------------------------------------------------------------------------- /app/i18n/fr-FR/facemasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/fr-FR/facemasks.json -------------------------------------------------------------------------------- /app/i18n/fr-FR/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/fr-FR/filters.json -------------------------------------------------------------------------------- /app/i18n/fr-FR/grow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/fr-FR/grow.json -------------------------------------------------------------------------------- /app/i18n/fr-FR/guest-cam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/fr-FR/guest-cam.json -------------------------------------------------------------------------------- /app/i18n/fr-FR/hotkeys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/fr-FR/hotkeys.json -------------------------------------------------------------------------------- /app/i18n/fr-FR/kick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/fr-FR/kick.json -------------------------------------------------------------------------------- /app/i18n/fr-FR/langname.txt: -------------------------------------------------------------------------------- 1 | Français -------------------------------------------------------------------------------- /app/i18n/fr-FR/loader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/fr-FR/loader.json -------------------------------------------------------------------------------- /app/i18n/fr-FR/overlays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/fr-FR/overlays.json -------------------------------------------------------------------------------- /app/i18n/fr-FR/scenes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/fr-FR/scenes.json -------------------------------------------------------------------------------- /app/i18n/fr-FR/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/fr-FR/settings.json -------------------------------------------------------------------------------- /app/i18n/fr-FR/socials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/fr-FR/socials.json -------------------------------------------------------------------------------- /app/i18n/fr-FR/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/fr-FR/sources.json -------------------------------------------------------------------------------- /app/i18n/fr-FR/streaming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/fr-FR/streaming.json -------------------------------------------------------------------------------- /app/i18n/fr-FR/tiktok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/fr-FR/tiktok.json -------------------------------------------------------------------------------- /app/i18n/fr-FR/trovo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/fr-FR/trovo.json -------------------------------------------------------------------------------- /app/i18n/fr-FR/twitch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/fr-FR/twitch.json -------------------------------------------------------------------------------- /app/i18n/fr-FR/twitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/fr-FR/twitter.json -------------------------------------------------------------------------------- /app/i18n/fr-FR/undo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/fr-FR/undo.json -------------------------------------------------------------------------------- /app/i18n/fr-FR/widgets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/fr-FR/widgets.json -------------------------------------------------------------------------------- /app/i18n/fr-FR/youtube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/fr-FR/youtube.json -------------------------------------------------------------------------------- /app/i18n/hu-HU/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/hu-HU/app.json -------------------------------------------------------------------------------- /app/i18n/hu-HU/apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/hu-HU/apps.json -------------------------------------------------------------------------------- /app/i18n/hu-HU/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/hu-HU/audio.json -------------------------------------------------------------------------------- /app/i18n/hu-HU/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/hu-HU/common.json -------------------------------------------------------------------------------- /app/i18n/hu-HU/developer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/hu-HU/developer.json -------------------------------------------------------------------------------- /app/i18n/hu-HU/facebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/hu-HU/facebook.json -------------------------------------------------------------------------------- /app/i18n/hu-HU/facemasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/hu-HU/facemasks.json -------------------------------------------------------------------------------- /app/i18n/hu-HU/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/hu-HU/filters.json -------------------------------------------------------------------------------- /app/i18n/hu-HU/grow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/hu-HU/grow.json -------------------------------------------------------------------------------- /app/i18n/hu-HU/guest-cam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/hu-HU/guest-cam.json -------------------------------------------------------------------------------- /app/i18n/hu-HU/hotkeys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/hu-HU/hotkeys.json -------------------------------------------------------------------------------- /app/i18n/hu-HU/kick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/hu-HU/kick.json -------------------------------------------------------------------------------- /app/i18n/hu-HU/langname.txt: -------------------------------------------------------------------------------- 1 | Magyar -------------------------------------------------------------------------------- /app/i18n/hu-HU/loader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/hu-HU/loader.json -------------------------------------------------------------------------------- /app/i18n/hu-HU/overlays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/hu-HU/overlays.json -------------------------------------------------------------------------------- /app/i18n/hu-HU/scenes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/hu-HU/scenes.json -------------------------------------------------------------------------------- /app/i18n/hu-HU/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/hu-HU/settings.json -------------------------------------------------------------------------------- /app/i18n/hu-HU/socials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/hu-HU/socials.json -------------------------------------------------------------------------------- /app/i18n/hu-HU/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/hu-HU/sources.json -------------------------------------------------------------------------------- /app/i18n/hu-HU/streaming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/hu-HU/streaming.json -------------------------------------------------------------------------------- /app/i18n/hu-HU/tiktok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/hu-HU/tiktok.json -------------------------------------------------------------------------------- /app/i18n/hu-HU/trovo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/hu-HU/trovo.json -------------------------------------------------------------------------------- /app/i18n/hu-HU/twitch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/hu-HU/twitch.json -------------------------------------------------------------------------------- /app/i18n/hu-HU/twitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/hu-HU/twitter.json -------------------------------------------------------------------------------- /app/i18n/hu-HU/undo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/hu-HU/undo.json -------------------------------------------------------------------------------- /app/i18n/hu-HU/widgets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/hu-HU/widgets.json -------------------------------------------------------------------------------- /app/i18n/hu-HU/youtube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/hu-HU/youtube.json -------------------------------------------------------------------------------- /app/i18n/id-ID/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/id-ID/app.json -------------------------------------------------------------------------------- /app/i18n/id-ID/apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/id-ID/apps.json -------------------------------------------------------------------------------- /app/i18n/id-ID/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/id-ID/audio.json -------------------------------------------------------------------------------- /app/i18n/id-ID/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/id-ID/common.json -------------------------------------------------------------------------------- /app/i18n/id-ID/developer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/id-ID/developer.json -------------------------------------------------------------------------------- /app/i18n/id-ID/facebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/id-ID/facebook.json -------------------------------------------------------------------------------- /app/i18n/id-ID/facemasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/id-ID/facemasks.json -------------------------------------------------------------------------------- /app/i18n/id-ID/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/id-ID/filters.json -------------------------------------------------------------------------------- /app/i18n/id-ID/grow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/id-ID/grow.json -------------------------------------------------------------------------------- /app/i18n/id-ID/guest-cam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/id-ID/guest-cam.json -------------------------------------------------------------------------------- /app/i18n/id-ID/hotkeys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/id-ID/hotkeys.json -------------------------------------------------------------------------------- /app/i18n/id-ID/kick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/id-ID/kick.json -------------------------------------------------------------------------------- /app/i18n/id-ID/langname.txt: -------------------------------------------------------------------------------- 1 | Bahasa indonesia -------------------------------------------------------------------------------- /app/i18n/id-ID/loader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/id-ID/loader.json -------------------------------------------------------------------------------- /app/i18n/id-ID/overlays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/id-ID/overlays.json -------------------------------------------------------------------------------- /app/i18n/id-ID/scenes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/id-ID/scenes.json -------------------------------------------------------------------------------- /app/i18n/id-ID/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/id-ID/settings.json -------------------------------------------------------------------------------- /app/i18n/id-ID/socials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/id-ID/socials.json -------------------------------------------------------------------------------- /app/i18n/id-ID/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/id-ID/sources.json -------------------------------------------------------------------------------- /app/i18n/id-ID/streaming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/id-ID/streaming.json -------------------------------------------------------------------------------- /app/i18n/id-ID/tiktok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/id-ID/tiktok.json -------------------------------------------------------------------------------- /app/i18n/id-ID/trovo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/id-ID/trovo.json -------------------------------------------------------------------------------- /app/i18n/id-ID/twitch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/id-ID/twitch.json -------------------------------------------------------------------------------- /app/i18n/id-ID/twitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/id-ID/twitter.json -------------------------------------------------------------------------------- /app/i18n/id-ID/undo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/id-ID/undo.json -------------------------------------------------------------------------------- /app/i18n/id-ID/widgets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/id-ID/widgets.json -------------------------------------------------------------------------------- /app/i18n/id-ID/youtube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/id-ID/youtube.json -------------------------------------------------------------------------------- /app/i18n/it-IT/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/it-IT/app.json -------------------------------------------------------------------------------- /app/i18n/it-IT/apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/it-IT/apps.json -------------------------------------------------------------------------------- /app/i18n/it-IT/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/it-IT/audio.json -------------------------------------------------------------------------------- /app/i18n/it-IT/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/it-IT/common.json -------------------------------------------------------------------------------- /app/i18n/it-IT/developer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/it-IT/developer.json -------------------------------------------------------------------------------- /app/i18n/it-IT/facebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/it-IT/facebook.json -------------------------------------------------------------------------------- /app/i18n/it-IT/facemasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/it-IT/facemasks.json -------------------------------------------------------------------------------- /app/i18n/it-IT/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/it-IT/filters.json -------------------------------------------------------------------------------- /app/i18n/it-IT/grow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/it-IT/grow.json -------------------------------------------------------------------------------- /app/i18n/it-IT/guest-cam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/it-IT/guest-cam.json -------------------------------------------------------------------------------- /app/i18n/it-IT/hotkeys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/it-IT/hotkeys.json -------------------------------------------------------------------------------- /app/i18n/it-IT/kick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/it-IT/kick.json -------------------------------------------------------------------------------- /app/i18n/it-IT/langname.txt: -------------------------------------------------------------------------------- 1 | Italiano -------------------------------------------------------------------------------- /app/i18n/it-IT/loader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/it-IT/loader.json -------------------------------------------------------------------------------- /app/i18n/it-IT/overlays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/it-IT/overlays.json -------------------------------------------------------------------------------- /app/i18n/it-IT/scenes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/it-IT/scenes.json -------------------------------------------------------------------------------- /app/i18n/it-IT/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/it-IT/settings.json -------------------------------------------------------------------------------- /app/i18n/it-IT/socials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/it-IT/socials.json -------------------------------------------------------------------------------- /app/i18n/it-IT/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/it-IT/sources.json -------------------------------------------------------------------------------- /app/i18n/it-IT/streaming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/it-IT/streaming.json -------------------------------------------------------------------------------- /app/i18n/it-IT/tiktok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/it-IT/tiktok.json -------------------------------------------------------------------------------- /app/i18n/it-IT/trovo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/it-IT/trovo.json -------------------------------------------------------------------------------- /app/i18n/it-IT/twitch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/it-IT/twitch.json -------------------------------------------------------------------------------- /app/i18n/it-IT/twitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/it-IT/twitter.json -------------------------------------------------------------------------------- /app/i18n/it-IT/undo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/it-IT/undo.json -------------------------------------------------------------------------------- /app/i18n/it-IT/widgets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/it-IT/widgets.json -------------------------------------------------------------------------------- /app/i18n/it-IT/youtube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/it-IT/youtube.json -------------------------------------------------------------------------------- /app/i18n/ja-JP/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ja-JP/app.json -------------------------------------------------------------------------------- /app/i18n/ja-JP/apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ja-JP/apps.json -------------------------------------------------------------------------------- /app/i18n/ja-JP/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ja-JP/audio.json -------------------------------------------------------------------------------- /app/i18n/ja-JP/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ja-JP/common.json -------------------------------------------------------------------------------- /app/i18n/ja-JP/developer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ja-JP/developer.json -------------------------------------------------------------------------------- /app/i18n/ja-JP/facebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ja-JP/facebook.json -------------------------------------------------------------------------------- /app/i18n/ja-JP/facemasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ja-JP/facemasks.json -------------------------------------------------------------------------------- /app/i18n/ja-JP/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ja-JP/filters.json -------------------------------------------------------------------------------- /app/i18n/ja-JP/grow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ja-JP/grow.json -------------------------------------------------------------------------------- /app/i18n/ja-JP/guest-cam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ja-JP/guest-cam.json -------------------------------------------------------------------------------- /app/i18n/ja-JP/hotkeys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ja-JP/hotkeys.json -------------------------------------------------------------------------------- /app/i18n/ja-JP/kick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ja-JP/kick.json -------------------------------------------------------------------------------- /app/i18n/ja-JP/langname.txt: -------------------------------------------------------------------------------- 1 | 日本語 -------------------------------------------------------------------------------- /app/i18n/ja-JP/loader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ja-JP/loader.json -------------------------------------------------------------------------------- /app/i18n/ja-JP/overlays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ja-JP/overlays.json -------------------------------------------------------------------------------- /app/i18n/ja-JP/scenes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ja-JP/scenes.json -------------------------------------------------------------------------------- /app/i18n/ja-JP/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ja-JP/settings.json -------------------------------------------------------------------------------- /app/i18n/ja-JP/socials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ja-JP/socials.json -------------------------------------------------------------------------------- /app/i18n/ja-JP/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ja-JP/sources.json -------------------------------------------------------------------------------- /app/i18n/ja-JP/streaming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ja-JP/streaming.json -------------------------------------------------------------------------------- /app/i18n/ja-JP/tiktok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ja-JP/tiktok.json -------------------------------------------------------------------------------- /app/i18n/ja-JP/trovo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ja-JP/trovo.json -------------------------------------------------------------------------------- /app/i18n/ja-JP/twitch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ja-JP/twitch.json -------------------------------------------------------------------------------- /app/i18n/ja-JP/twitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ja-JP/twitter.json -------------------------------------------------------------------------------- /app/i18n/ja-JP/undo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ja-JP/undo.json -------------------------------------------------------------------------------- /app/i18n/ja-JP/widgets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ja-JP/widgets.json -------------------------------------------------------------------------------- /app/i18n/ja-JP/youtube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ja-JP/youtube.json -------------------------------------------------------------------------------- /app/i18n/ko-KR/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ko-KR/app.json -------------------------------------------------------------------------------- /app/i18n/ko-KR/apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ko-KR/apps.json -------------------------------------------------------------------------------- /app/i18n/ko-KR/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ko-KR/audio.json -------------------------------------------------------------------------------- /app/i18n/ko-KR/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ko-KR/common.json -------------------------------------------------------------------------------- /app/i18n/ko-KR/developer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ko-KR/developer.json -------------------------------------------------------------------------------- /app/i18n/ko-KR/facebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ko-KR/facebook.json -------------------------------------------------------------------------------- /app/i18n/ko-KR/facemasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ko-KR/facemasks.json -------------------------------------------------------------------------------- /app/i18n/ko-KR/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ko-KR/filters.json -------------------------------------------------------------------------------- /app/i18n/ko-KR/grow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ko-KR/grow.json -------------------------------------------------------------------------------- /app/i18n/ko-KR/guest-cam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ko-KR/guest-cam.json -------------------------------------------------------------------------------- /app/i18n/ko-KR/hotkeys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ko-KR/hotkeys.json -------------------------------------------------------------------------------- /app/i18n/ko-KR/kick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ko-KR/kick.json -------------------------------------------------------------------------------- /app/i18n/ko-KR/langname.txt: -------------------------------------------------------------------------------- 1 | 한국어 -------------------------------------------------------------------------------- /app/i18n/ko-KR/loader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ko-KR/loader.json -------------------------------------------------------------------------------- /app/i18n/ko-KR/overlays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ko-KR/overlays.json -------------------------------------------------------------------------------- /app/i18n/ko-KR/scenes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ko-KR/scenes.json -------------------------------------------------------------------------------- /app/i18n/ko-KR/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ko-KR/settings.json -------------------------------------------------------------------------------- /app/i18n/ko-KR/socials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ko-KR/socials.json -------------------------------------------------------------------------------- /app/i18n/ko-KR/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ko-KR/sources.json -------------------------------------------------------------------------------- /app/i18n/ko-KR/streaming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ko-KR/streaming.json -------------------------------------------------------------------------------- /app/i18n/ko-KR/tiktok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ko-KR/tiktok.json -------------------------------------------------------------------------------- /app/i18n/ko-KR/trovo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ko-KR/trovo.json -------------------------------------------------------------------------------- /app/i18n/ko-KR/twitch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ko-KR/twitch.json -------------------------------------------------------------------------------- /app/i18n/ko-KR/twitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ko-KR/twitter.json -------------------------------------------------------------------------------- /app/i18n/ko-KR/undo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ko-KR/undo.json -------------------------------------------------------------------------------- /app/i18n/ko-KR/widgets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ko-KR/widgets.json -------------------------------------------------------------------------------- /app/i18n/ko-KR/youtube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ko-KR/youtube.json -------------------------------------------------------------------------------- /app/i18n/mk-MK/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/mk-MK/app.json -------------------------------------------------------------------------------- /app/i18n/mk-MK/apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/mk-MK/apps.json -------------------------------------------------------------------------------- /app/i18n/mk-MK/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/mk-MK/audio.json -------------------------------------------------------------------------------- /app/i18n/mk-MK/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/mk-MK/common.json -------------------------------------------------------------------------------- /app/i18n/mk-MK/developer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/mk-MK/developer.json -------------------------------------------------------------------------------- /app/i18n/mk-MK/facebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/mk-MK/facebook.json -------------------------------------------------------------------------------- /app/i18n/mk-MK/facemasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/mk-MK/facemasks.json -------------------------------------------------------------------------------- /app/i18n/mk-MK/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/mk-MK/filters.json -------------------------------------------------------------------------------- /app/i18n/mk-MK/grow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/mk-MK/grow.json -------------------------------------------------------------------------------- /app/i18n/mk-MK/guest-cam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/mk-MK/guest-cam.json -------------------------------------------------------------------------------- /app/i18n/mk-MK/hotkeys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/mk-MK/hotkeys.json -------------------------------------------------------------------------------- /app/i18n/mk-MK/kick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/mk-MK/kick.json -------------------------------------------------------------------------------- /app/i18n/mk-MK/langname.txt: -------------------------------------------------------------------------------- 1 | English -------------------------------------------------------------------------------- /app/i18n/mk-MK/loader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/mk-MK/loader.json -------------------------------------------------------------------------------- /app/i18n/mk-MK/overlays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/mk-MK/overlays.json -------------------------------------------------------------------------------- /app/i18n/mk-MK/scenes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/mk-MK/scenes.json -------------------------------------------------------------------------------- /app/i18n/mk-MK/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/mk-MK/settings.json -------------------------------------------------------------------------------- /app/i18n/mk-MK/socials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/mk-MK/socials.json -------------------------------------------------------------------------------- /app/i18n/mk-MK/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/mk-MK/sources.json -------------------------------------------------------------------------------- /app/i18n/mk-MK/streaming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/mk-MK/streaming.json -------------------------------------------------------------------------------- /app/i18n/mk-MK/tiktok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/mk-MK/tiktok.json -------------------------------------------------------------------------------- /app/i18n/mk-MK/trovo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/mk-MK/trovo.json -------------------------------------------------------------------------------- /app/i18n/mk-MK/twitch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/mk-MK/twitch.json -------------------------------------------------------------------------------- /app/i18n/mk-MK/twitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/mk-MK/twitter.json -------------------------------------------------------------------------------- /app/i18n/mk-MK/undo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/mk-MK/undo.json -------------------------------------------------------------------------------- /app/i18n/mk-MK/widgets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/mk-MK/widgets.json -------------------------------------------------------------------------------- /app/i18n/mk-MK/youtube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/mk-MK/youtube.json -------------------------------------------------------------------------------- /app/i18n/nl-NL/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/nl-NL/app.json -------------------------------------------------------------------------------- /app/i18n/nl-NL/apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/nl-NL/apps.json -------------------------------------------------------------------------------- /app/i18n/nl-NL/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/nl-NL/audio.json -------------------------------------------------------------------------------- /app/i18n/nl-NL/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/nl-NL/common.json -------------------------------------------------------------------------------- /app/i18n/nl-NL/developer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/nl-NL/developer.json -------------------------------------------------------------------------------- /app/i18n/nl-NL/facebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/nl-NL/facebook.json -------------------------------------------------------------------------------- /app/i18n/nl-NL/facemasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/nl-NL/facemasks.json -------------------------------------------------------------------------------- /app/i18n/nl-NL/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/nl-NL/filters.json -------------------------------------------------------------------------------- /app/i18n/nl-NL/grow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/nl-NL/grow.json -------------------------------------------------------------------------------- /app/i18n/nl-NL/guest-cam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/nl-NL/guest-cam.json -------------------------------------------------------------------------------- /app/i18n/nl-NL/hotkeys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/nl-NL/hotkeys.json -------------------------------------------------------------------------------- /app/i18n/nl-NL/kick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/nl-NL/kick.json -------------------------------------------------------------------------------- /app/i18n/nl-NL/langname.txt: -------------------------------------------------------------------------------- 1 | Nederlands -------------------------------------------------------------------------------- /app/i18n/nl-NL/loader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/nl-NL/loader.json -------------------------------------------------------------------------------- /app/i18n/nl-NL/overlays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/nl-NL/overlays.json -------------------------------------------------------------------------------- /app/i18n/nl-NL/scenes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/nl-NL/scenes.json -------------------------------------------------------------------------------- /app/i18n/nl-NL/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/nl-NL/settings.json -------------------------------------------------------------------------------- /app/i18n/nl-NL/socials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/nl-NL/socials.json -------------------------------------------------------------------------------- /app/i18n/nl-NL/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/nl-NL/sources.json -------------------------------------------------------------------------------- /app/i18n/nl-NL/streaming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/nl-NL/streaming.json -------------------------------------------------------------------------------- /app/i18n/nl-NL/tiktok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/nl-NL/tiktok.json -------------------------------------------------------------------------------- /app/i18n/nl-NL/trovo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/nl-NL/trovo.json -------------------------------------------------------------------------------- /app/i18n/nl-NL/twitch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/nl-NL/twitch.json -------------------------------------------------------------------------------- /app/i18n/nl-NL/twitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/nl-NL/twitter.json -------------------------------------------------------------------------------- /app/i18n/nl-NL/undo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/nl-NL/undo.json -------------------------------------------------------------------------------- /app/i18n/nl-NL/widgets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/nl-NL/widgets.json -------------------------------------------------------------------------------- /app/i18n/nl-NL/youtube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/nl-NL/youtube.json -------------------------------------------------------------------------------- /app/i18n/pl-PL/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pl-PL/app.json -------------------------------------------------------------------------------- /app/i18n/pl-PL/apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pl-PL/apps.json -------------------------------------------------------------------------------- /app/i18n/pl-PL/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pl-PL/audio.json -------------------------------------------------------------------------------- /app/i18n/pl-PL/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pl-PL/common.json -------------------------------------------------------------------------------- /app/i18n/pl-PL/developer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pl-PL/developer.json -------------------------------------------------------------------------------- /app/i18n/pl-PL/facebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pl-PL/facebook.json -------------------------------------------------------------------------------- /app/i18n/pl-PL/facemasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pl-PL/facemasks.json -------------------------------------------------------------------------------- /app/i18n/pl-PL/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pl-PL/filters.json -------------------------------------------------------------------------------- /app/i18n/pl-PL/grow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pl-PL/grow.json -------------------------------------------------------------------------------- /app/i18n/pl-PL/guest-cam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pl-PL/guest-cam.json -------------------------------------------------------------------------------- /app/i18n/pl-PL/hotkeys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pl-PL/hotkeys.json -------------------------------------------------------------------------------- /app/i18n/pl-PL/kick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pl-PL/kick.json -------------------------------------------------------------------------------- /app/i18n/pl-PL/langname.txt: -------------------------------------------------------------------------------- 1 | Polski -------------------------------------------------------------------------------- /app/i18n/pl-PL/loader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pl-PL/loader.json -------------------------------------------------------------------------------- /app/i18n/pl-PL/overlays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pl-PL/overlays.json -------------------------------------------------------------------------------- /app/i18n/pl-PL/scenes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pl-PL/scenes.json -------------------------------------------------------------------------------- /app/i18n/pl-PL/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pl-PL/settings.json -------------------------------------------------------------------------------- /app/i18n/pl-PL/socials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pl-PL/socials.json -------------------------------------------------------------------------------- /app/i18n/pl-PL/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pl-PL/sources.json -------------------------------------------------------------------------------- /app/i18n/pl-PL/streaming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pl-PL/streaming.json -------------------------------------------------------------------------------- /app/i18n/pl-PL/tiktok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pl-PL/tiktok.json -------------------------------------------------------------------------------- /app/i18n/pl-PL/trovo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pl-PL/trovo.json -------------------------------------------------------------------------------- /app/i18n/pl-PL/twitch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pl-PL/twitch.json -------------------------------------------------------------------------------- /app/i18n/pl-PL/twitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pl-PL/twitter.json -------------------------------------------------------------------------------- /app/i18n/pl-PL/undo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pl-PL/undo.json -------------------------------------------------------------------------------- /app/i18n/pl-PL/widgets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pl-PL/widgets.json -------------------------------------------------------------------------------- /app/i18n/pl-PL/youtube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pl-PL/youtube.json -------------------------------------------------------------------------------- /app/i18n/pt-BR/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-BR/app.json -------------------------------------------------------------------------------- /app/i18n/pt-BR/apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-BR/apps.json -------------------------------------------------------------------------------- /app/i18n/pt-BR/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-BR/audio.json -------------------------------------------------------------------------------- /app/i18n/pt-BR/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-BR/common.json -------------------------------------------------------------------------------- /app/i18n/pt-BR/developer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-BR/developer.json -------------------------------------------------------------------------------- /app/i18n/pt-BR/facebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-BR/facebook.json -------------------------------------------------------------------------------- /app/i18n/pt-BR/facemasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-BR/facemasks.json -------------------------------------------------------------------------------- /app/i18n/pt-BR/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-BR/filters.json -------------------------------------------------------------------------------- /app/i18n/pt-BR/grow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-BR/grow.json -------------------------------------------------------------------------------- /app/i18n/pt-BR/guest-cam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-BR/guest-cam.json -------------------------------------------------------------------------------- /app/i18n/pt-BR/hotkeys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-BR/hotkeys.json -------------------------------------------------------------------------------- /app/i18n/pt-BR/kick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-BR/kick.json -------------------------------------------------------------------------------- /app/i18n/pt-BR/langname.txt: -------------------------------------------------------------------------------- 1 | Português (Brasil) -------------------------------------------------------------------------------- /app/i18n/pt-BR/loader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-BR/loader.json -------------------------------------------------------------------------------- /app/i18n/pt-BR/overlays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-BR/overlays.json -------------------------------------------------------------------------------- /app/i18n/pt-BR/scenes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-BR/scenes.json -------------------------------------------------------------------------------- /app/i18n/pt-BR/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-BR/settings.json -------------------------------------------------------------------------------- /app/i18n/pt-BR/socials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-BR/socials.json -------------------------------------------------------------------------------- /app/i18n/pt-BR/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-BR/sources.json -------------------------------------------------------------------------------- /app/i18n/pt-BR/streaming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-BR/streaming.json -------------------------------------------------------------------------------- /app/i18n/pt-BR/tiktok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-BR/tiktok.json -------------------------------------------------------------------------------- /app/i18n/pt-BR/trovo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-BR/trovo.json -------------------------------------------------------------------------------- /app/i18n/pt-BR/twitch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-BR/twitch.json -------------------------------------------------------------------------------- /app/i18n/pt-BR/twitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-BR/twitter.json -------------------------------------------------------------------------------- /app/i18n/pt-BR/undo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-BR/undo.json -------------------------------------------------------------------------------- /app/i18n/pt-BR/widgets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-BR/widgets.json -------------------------------------------------------------------------------- /app/i18n/pt-BR/youtube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-BR/youtube.json -------------------------------------------------------------------------------- /app/i18n/pt-PT/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-PT/app.json -------------------------------------------------------------------------------- /app/i18n/pt-PT/apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-PT/apps.json -------------------------------------------------------------------------------- /app/i18n/pt-PT/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-PT/audio.json -------------------------------------------------------------------------------- /app/i18n/pt-PT/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-PT/common.json -------------------------------------------------------------------------------- /app/i18n/pt-PT/developer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-PT/developer.json -------------------------------------------------------------------------------- /app/i18n/pt-PT/facebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-PT/facebook.json -------------------------------------------------------------------------------- /app/i18n/pt-PT/facemasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-PT/facemasks.json -------------------------------------------------------------------------------- /app/i18n/pt-PT/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-PT/filters.json -------------------------------------------------------------------------------- /app/i18n/pt-PT/grow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-PT/grow.json -------------------------------------------------------------------------------- /app/i18n/pt-PT/guest-cam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-PT/guest-cam.json -------------------------------------------------------------------------------- /app/i18n/pt-PT/hotkeys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-PT/hotkeys.json -------------------------------------------------------------------------------- /app/i18n/pt-PT/kick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-PT/kick.json -------------------------------------------------------------------------------- /app/i18n/pt-PT/langname.txt: -------------------------------------------------------------------------------- 1 | Português -------------------------------------------------------------------------------- /app/i18n/pt-PT/loader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-PT/loader.json -------------------------------------------------------------------------------- /app/i18n/pt-PT/overlays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-PT/overlays.json -------------------------------------------------------------------------------- /app/i18n/pt-PT/scenes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-PT/scenes.json -------------------------------------------------------------------------------- /app/i18n/pt-PT/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-PT/settings.json -------------------------------------------------------------------------------- /app/i18n/pt-PT/socials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-PT/socials.json -------------------------------------------------------------------------------- /app/i18n/pt-PT/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-PT/sources.json -------------------------------------------------------------------------------- /app/i18n/pt-PT/streaming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-PT/streaming.json -------------------------------------------------------------------------------- /app/i18n/pt-PT/tiktok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-PT/tiktok.json -------------------------------------------------------------------------------- /app/i18n/pt-PT/trovo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-PT/trovo.json -------------------------------------------------------------------------------- /app/i18n/pt-PT/twitch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-PT/twitch.json -------------------------------------------------------------------------------- /app/i18n/pt-PT/twitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-PT/twitter.json -------------------------------------------------------------------------------- /app/i18n/pt-PT/undo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-PT/undo.json -------------------------------------------------------------------------------- /app/i18n/pt-PT/widgets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-PT/widgets.json -------------------------------------------------------------------------------- /app/i18n/pt-PT/youtube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/pt-PT/youtube.json -------------------------------------------------------------------------------- /app/i18n/ru-RU/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ru-RU/app.json -------------------------------------------------------------------------------- /app/i18n/ru-RU/apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ru-RU/apps.json -------------------------------------------------------------------------------- /app/i18n/ru-RU/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ru-RU/audio.json -------------------------------------------------------------------------------- /app/i18n/ru-RU/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ru-RU/common.json -------------------------------------------------------------------------------- /app/i18n/ru-RU/developer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ru-RU/developer.json -------------------------------------------------------------------------------- /app/i18n/ru-RU/facebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ru-RU/facebook.json -------------------------------------------------------------------------------- /app/i18n/ru-RU/facemasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ru-RU/facemasks.json -------------------------------------------------------------------------------- /app/i18n/ru-RU/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ru-RU/filters.json -------------------------------------------------------------------------------- /app/i18n/ru-RU/grow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ru-RU/grow.json -------------------------------------------------------------------------------- /app/i18n/ru-RU/guest-cam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ru-RU/guest-cam.json -------------------------------------------------------------------------------- /app/i18n/ru-RU/hotkeys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ru-RU/hotkeys.json -------------------------------------------------------------------------------- /app/i18n/ru-RU/kick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ru-RU/kick.json -------------------------------------------------------------------------------- /app/i18n/ru-RU/langname.txt: -------------------------------------------------------------------------------- 1 | Русский -------------------------------------------------------------------------------- /app/i18n/ru-RU/loader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ru-RU/loader.json -------------------------------------------------------------------------------- /app/i18n/ru-RU/overlays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ru-RU/overlays.json -------------------------------------------------------------------------------- /app/i18n/ru-RU/scenes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ru-RU/scenes.json -------------------------------------------------------------------------------- /app/i18n/ru-RU/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ru-RU/settings.json -------------------------------------------------------------------------------- /app/i18n/ru-RU/socials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ru-RU/socials.json -------------------------------------------------------------------------------- /app/i18n/ru-RU/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ru-RU/sources.json -------------------------------------------------------------------------------- /app/i18n/ru-RU/streaming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ru-RU/streaming.json -------------------------------------------------------------------------------- /app/i18n/ru-RU/tiktok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ru-RU/tiktok.json -------------------------------------------------------------------------------- /app/i18n/ru-RU/trovo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ru-RU/trovo.json -------------------------------------------------------------------------------- /app/i18n/ru-RU/twitch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ru-RU/twitch.json -------------------------------------------------------------------------------- /app/i18n/ru-RU/twitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ru-RU/twitter.json -------------------------------------------------------------------------------- /app/i18n/ru-RU/undo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ru-RU/undo.json -------------------------------------------------------------------------------- /app/i18n/ru-RU/widgets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ru-RU/widgets.json -------------------------------------------------------------------------------- /app/i18n/ru-RU/youtube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/ru-RU/youtube.json -------------------------------------------------------------------------------- /app/i18n/sk-SK/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sk-SK/app.json -------------------------------------------------------------------------------- /app/i18n/sk-SK/apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sk-SK/apps.json -------------------------------------------------------------------------------- /app/i18n/sk-SK/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sk-SK/audio.json -------------------------------------------------------------------------------- /app/i18n/sk-SK/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sk-SK/common.json -------------------------------------------------------------------------------- /app/i18n/sk-SK/developer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sk-SK/developer.json -------------------------------------------------------------------------------- /app/i18n/sk-SK/facebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sk-SK/facebook.json -------------------------------------------------------------------------------- /app/i18n/sk-SK/facemasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sk-SK/facemasks.json -------------------------------------------------------------------------------- /app/i18n/sk-SK/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sk-SK/filters.json -------------------------------------------------------------------------------- /app/i18n/sk-SK/grow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sk-SK/grow.json -------------------------------------------------------------------------------- /app/i18n/sk-SK/guest-cam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sk-SK/guest-cam.json -------------------------------------------------------------------------------- /app/i18n/sk-SK/hotkeys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sk-SK/hotkeys.json -------------------------------------------------------------------------------- /app/i18n/sk-SK/kick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sk-SK/kick.json -------------------------------------------------------------------------------- /app/i18n/sk-SK/langname.txt: -------------------------------------------------------------------------------- 1 | English -------------------------------------------------------------------------------- /app/i18n/sk-SK/loader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sk-SK/loader.json -------------------------------------------------------------------------------- /app/i18n/sk-SK/overlays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sk-SK/overlays.json -------------------------------------------------------------------------------- /app/i18n/sk-SK/scenes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sk-SK/scenes.json -------------------------------------------------------------------------------- /app/i18n/sk-SK/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sk-SK/settings.json -------------------------------------------------------------------------------- /app/i18n/sk-SK/socials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sk-SK/socials.json -------------------------------------------------------------------------------- /app/i18n/sk-SK/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sk-SK/sources.json -------------------------------------------------------------------------------- /app/i18n/sk-SK/streaming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sk-SK/streaming.json -------------------------------------------------------------------------------- /app/i18n/sk-SK/tiktok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sk-SK/tiktok.json -------------------------------------------------------------------------------- /app/i18n/sk-SK/trovo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sk-SK/trovo.json -------------------------------------------------------------------------------- /app/i18n/sk-SK/twitch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sk-SK/twitch.json -------------------------------------------------------------------------------- /app/i18n/sk-SK/twitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sk-SK/twitter.json -------------------------------------------------------------------------------- /app/i18n/sk-SK/undo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sk-SK/undo.json -------------------------------------------------------------------------------- /app/i18n/sk-SK/widgets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sk-SK/widgets.json -------------------------------------------------------------------------------- /app/i18n/sk-SK/youtube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sk-SK/youtube.json -------------------------------------------------------------------------------- /app/i18n/sl-SI/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sl-SI/app.json -------------------------------------------------------------------------------- /app/i18n/sl-SI/apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sl-SI/apps.json -------------------------------------------------------------------------------- /app/i18n/sl-SI/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sl-SI/audio.json -------------------------------------------------------------------------------- /app/i18n/sl-SI/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sl-SI/common.json -------------------------------------------------------------------------------- /app/i18n/sl-SI/developer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sl-SI/developer.json -------------------------------------------------------------------------------- /app/i18n/sl-SI/facebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sl-SI/facebook.json -------------------------------------------------------------------------------- /app/i18n/sl-SI/facemasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sl-SI/facemasks.json -------------------------------------------------------------------------------- /app/i18n/sl-SI/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sl-SI/filters.json -------------------------------------------------------------------------------- /app/i18n/sl-SI/grow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sl-SI/grow.json -------------------------------------------------------------------------------- /app/i18n/sl-SI/guest-cam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sl-SI/guest-cam.json -------------------------------------------------------------------------------- /app/i18n/sl-SI/hotkeys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sl-SI/hotkeys.json -------------------------------------------------------------------------------- /app/i18n/sl-SI/kick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sl-SI/kick.json -------------------------------------------------------------------------------- /app/i18n/sl-SI/langname.txt: -------------------------------------------------------------------------------- 1 | English -------------------------------------------------------------------------------- /app/i18n/sl-SI/loader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sl-SI/loader.json -------------------------------------------------------------------------------- /app/i18n/sl-SI/overlays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sl-SI/overlays.json -------------------------------------------------------------------------------- /app/i18n/sl-SI/scenes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sl-SI/scenes.json -------------------------------------------------------------------------------- /app/i18n/sl-SI/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sl-SI/settings.json -------------------------------------------------------------------------------- /app/i18n/sl-SI/socials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sl-SI/socials.json -------------------------------------------------------------------------------- /app/i18n/sl-SI/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sl-SI/sources.json -------------------------------------------------------------------------------- /app/i18n/sl-SI/streaming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sl-SI/streaming.json -------------------------------------------------------------------------------- /app/i18n/sl-SI/tiktok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sl-SI/tiktok.json -------------------------------------------------------------------------------- /app/i18n/sl-SI/trovo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sl-SI/trovo.json -------------------------------------------------------------------------------- /app/i18n/sl-SI/twitch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sl-SI/twitch.json -------------------------------------------------------------------------------- /app/i18n/sl-SI/twitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sl-SI/twitter.json -------------------------------------------------------------------------------- /app/i18n/sl-SI/undo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sl-SI/undo.json -------------------------------------------------------------------------------- /app/i18n/sl-SI/widgets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sl-SI/widgets.json -------------------------------------------------------------------------------- /app/i18n/sl-SI/youtube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sl-SI/youtube.json -------------------------------------------------------------------------------- /app/i18n/sv-SE/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sv-SE/app.json -------------------------------------------------------------------------------- /app/i18n/sv-SE/apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sv-SE/apps.json -------------------------------------------------------------------------------- /app/i18n/sv-SE/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sv-SE/audio.json -------------------------------------------------------------------------------- /app/i18n/sv-SE/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sv-SE/common.json -------------------------------------------------------------------------------- /app/i18n/sv-SE/developer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sv-SE/developer.json -------------------------------------------------------------------------------- /app/i18n/sv-SE/facebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sv-SE/facebook.json -------------------------------------------------------------------------------- /app/i18n/sv-SE/facemasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sv-SE/facemasks.json -------------------------------------------------------------------------------- /app/i18n/sv-SE/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sv-SE/filters.json -------------------------------------------------------------------------------- /app/i18n/sv-SE/grow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sv-SE/grow.json -------------------------------------------------------------------------------- /app/i18n/sv-SE/guest-cam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sv-SE/guest-cam.json -------------------------------------------------------------------------------- /app/i18n/sv-SE/hotkeys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sv-SE/hotkeys.json -------------------------------------------------------------------------------- /app/i18n/sv-SE/kick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sv-SE/kick.json -------------------------------------------------------------------------------- /app/i18n/sv-SE/langname.txt: -------------------------------------------------------------------------------- 1 | Svenska -------------------------------------------------------------------------------- /app/i18n/sv-SE/loader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sv-SE/loader.json -------------------------------------------------------------------------------- /app/i18n/sv-SE/overlays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sv-SE/overlays.json -------------------------------------------------------------------------------- /app/i18n/sv-SE/scenes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sv-SE/scenes.json -------------------------------------------------------------------------------- /app/i18n/sv-SE/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sv-SE/settings.json -------------------------------------------------------------------------------- /app/i18n/sv-SE/socials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sv-SE/socials.json -------------------------------------------------------------------------------- /app/i18n/sv-SE/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sv-SE/sources.json -------------------------------------------------------------------------------- /app/i18n/sv-SE/streaming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sv-SE/streaming.json -------------------------------------------------------------------------------- /app/i18n/sv-SE/tiktok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sv-SE/tiktok.json -------------------------------------------------------------------------------- /app/i18n/sv-SE/trovo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sv-SE/trovo.json -------------------------------------------------------------------------------- /app/i18n/sv-SE/twitch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sv-SE/twitch.json -------------------------------------------------------------------------------- /app/i18n/sv-SE/twitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sv-SE/twitter.json -------------------------------------------------------------------------------- /app/i18n/sv-SE/undo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sv-SE/undo.json -------------------------------------------------------------------------------- /app/i18n/sv-SE/widgets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sv-SE/widgets.json -------------------------------------------------------------------------------- /app/i18n/sv-SE/youtube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/sv-SE/youtube.json -------------------------------------------------------------------------------- /app/i18n/th-TH/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/th-TH/app.json -------------------------------------------------------------------------------- /app/i18n/th-TH/apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/th-TH/apps.json -------------------------------------------------------------------------------- /app/i18n/th-TH/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/th-TH/audio.json -------------------------------------------------------------------------------- /app/i18n/th-TH/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/th-TH/common.json -------------------------------------------------------------------------------- /app/i18n/th-TH/developer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/th-TH/developer.json -------------------------------------------------------------------------------- /app/i18n/th-TH/facebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/th-TH/facebook.json -------------------------------------------------------------------------------- /app/i18n/th-TH/facemasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/th-TH/facemasks.json -------------------------------------------------------------------------------- /app/i18n/th-TH/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/th-TH/filters.json -------------------------------------------------------------------------------- /app/i18n/th-TH/grow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/th-TH/grow.json -------------------------------------------------------------------------------- /app/i18n/th-TH/guest-cam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/th-TH/guest-cam.json -------------------------------------------------------------------------------- /app/i18n/th-TH/hotkeys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/th-TH/hotkeys.json -------------------------------------------------------------------------------- /app/i18n/th-TH/kick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/th-TH/kick.json -------------------------------------------------------------------------------- /app/i18n/th-TH/langname.txt: -------------------------------------------------------------------------------- 1 | English -------------------------------------------------------------------------------- /app/i18n/th-TH/loader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/th-TH/loader.json -------------------------------------------------------------------------------- /app/i18n/th-TH/overlays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/th-TH/overlays.json -------------------------------------------------------------------------------- /app/i18n/th-TH/scenes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/th-TH/scenes.json -------------------------------------------------------------------------------- /app/i18n/th-TH/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/th-TH/settings.json -------------------------------------------------------------------------------- /app/i18n/th-TH/socials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/th-TH/socials.json -------------------------------------------------------------------------------- /app/i18n/th-TH/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/th-TH/sources.json -------------------------------------------------------------------------------- /app/i18n/th-TH/streaming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/th-TH/streaming.json -------------------------------------------------------------------------------- /app/i18n/th-TH/tiktok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/th-TH/tiktok.json -------------------------------------------------------------------------------- /app/i18n/th-TH/trovo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/th-TH/trovo.json -------------------------------------------------------------------------------- /app/i18n/th-TH/twitch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/th-TH/twitch.json -------------------------------------------------------------------------------- /app/i18n/th-TH/twitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/th-TH/twitter.json -------------------------------------------------------------------------------- /app/i18n/th-TH/undo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/th-TH/undo.json -------------------------------------------------------------------------------- /app/i18n/th-TH/widgets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/th-TH/widgets.json -------------------------------------------------------------------------------- /app/i18n/th-TH/youtube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/th-TH/youtube.json -------------------------------------------------------------------------------- /app/i18n/tr-TR/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/tr-TR/app.json -------------------------------------------------------------------------------- /app/i18n/tr-TR/apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/tr-TR/apps.json -------------------------------------------------------------------------------- /app/i18n/tr-TR/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/tr-TR/audio.json -------------------------------------------------------------------------------- /app/i18n/tr-TR/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/tr-TR/common.json -------------------------------------------------------------------------------- /app/i18n/tr-TR/developer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/tr-TR/developer.json -------------------------------------------------------------------------------- /app/i18n/tr-TR/facebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/tr-TR/facebook.json -------------------------------------------------------------------------------- /app/i18n/tr-TR/facemasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/tr-TR/facemasks.json -------------------------------------------------------------------------------- /app/i18n/tr-TR/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/tr-TR/filters.json -------------------------------------------------------------------------------- /app/i18n/tr-TR/grow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/tr-TR/grow.json -------------------------------------------------------------------------------- /app/i18n/tr-TR/guest-cam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/tr-TR/guest-cam.json -------------------------------------------------------------------------------- /app/i18n/tr-TR/hotkeys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/tr-TR/hotkeys.json -------------------------------------------------------------------------------- /app/i18n/tr-TR/kick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/tr-TR/kick.json -------------------------------------------------------------------------------- /app/i18n/tr-TR/langname.txt: -------------------------------------------------------------------------------- 1 | Türkçe -------------------------------------------------------------------------------- /app/i18n/tr-TR/loader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/tr-TR/loader.json -------------------------------------------------------------------------------- /app/i18n/tr-TR/overlays.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/tr-TR/overlays.json -------------------------------------------------------------------------------- /app/i18n/tr-TR/scenes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/tr-TR/scenes.json -------------------------------------------------------------------------------- /app/i18n/tr-TR/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/tr-TR/settings.json -------------------------------------------------------------------------------- /app/i18n/tr-TR/socials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/tr-TR/socials.json -------------------------------------------------------------------------------- /app/i18n/tr-TR/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/tr-TR/sources.json -------------------------------------------------------------------------------- /app/i18n/tr-TR/streaming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/tr-TR/streaming.json -------------------------------------------------------------------------------- /app/i18n/tr-TR/tiktok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/tr-TR/tiktok.json -------------------------------------------------------------------------------- /app/i18n/tr-TR/trovo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/tr-TR/trovo.json -------------------------------------------------------------------------------- /app/i18n/tr-TR/twitch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/tr-TR/twitch.json -------------------------------------------------------------------------------- /app/i18n/tr-TR/twitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/tr-TR/twitter.json -------------------------------------------------------------------------------- /app/i18n/tr-TR/undo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/tr-TR/undo.json -------------------------------------------------------------------------------- /app/i18n/tr-TR/widgets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/tr-TR/widgets.json -------------------------------------------------------------------------------- /app/i18n/tr-TR/youtube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/tr-TR/youtube.json -------------------------------------------------------------------------------- /app/i18n/vi-VN/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/vi-VN/app.json -------------------------------------------------------------------------------- /app/i18n/vi-VN/apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/vi-VN/apps.json -------------------------------------------------------------------------------- /app/i18n/vi-VN/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/vi-VN/audio.json -------------------------------------------------------------------------------- /app/i18n/vi-VN/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/vi-VN/common.json -------------------------------------------------------------------------------- /app/i18n/vi-VN/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/vi-VN/filters.json -------------------------------------------------------------------------------- /app/i18n/vi-VN/grow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/vi-VN/grow.json -------------------------------------------------------------------------------- /app/i18n/vi-VN/hotkeys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/vi-VN/hotkeys.json -------------------------------------------------------------------------------- /app/i18n/vi-VN/kick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/vi-VN/kick.json -------------------------------------------------------------------------------- /app/i18n/vi-VN/langname.txt: -------------------------------------------------------------------------------- 1 | Tiếng Việt -------------------------------------------------------------------------------- /app/i18n/vi-VN/loader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/vi-VN/loader.json -------------------------------------------------------------------------------- /app/i18n/vi-VN/scenes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/vi-VN/scenes.json -------------------------------------------------------------------------------- /app/i18n/vi-VN/socials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/vi-VN/socials.json -------------------------------------------------------------------------------- /app/i18n/vi-VN/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/vi-VN/sources.json -------------------------------------------------------------------------------- /app/i18n/vi-VN/tiktok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/vi-VN/tiktok.json -------------------------------------------------------------------------------- /app/i18n/vi-VN/trovo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/vi-VN/trovo.json -------------------------------------------------------------------------------- /app/i18n/vi-VN/twitch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/vi-VN/twitch.json -------------------------------------------------------------------------------- /app/i18n/vi-VN/twitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/vi-VN/twitter.json -------------------------------------------------------------------------------- /app/i18n/vi-VN/undo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/vi-VN/undo.json -------------------------------------------------------------------------------- /app/i18n/vi-VN/widgets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/vi-VN/widgets.json -------------------------------------------------------------------------------- /app/i18n/vi-VN/youtube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/vi-VN/youtube.json -------------------------------------------------------------------------------- /app/i18n/zh-CN/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/zh-CN/app.json -------------------------------------------------------------------------------- /app/i18n/zh-CN/apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/zh-CN/apps.json -------------------------------------------------------------------------------- /app/i18n/zh-CN/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/zh-CN/audio.json -------------------------------------------------------------------------------- /app/i18n/zh-CN/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/zh-CN/common.json -------------------------------------------------------------------------------- /app/i18n/zh-CN/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/zh-CN/filters.json -------------------------------------------------------------------------------- /app/i18n/zh-CN/grow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/zh-CN/grow.json -------------------------------------------------------------------------------- /app/i18n/zh-CN/hotkeys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/zh-CN/hotkeys.json -------------------------------------------------------------------------------- /app/i18n/zh-CN/kick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/zh-CN/kick.json -------------------------------------------------------------------------------- /app/i18n/zh-CN/langname.txt: -------------------------------------------------------------------------------- 1 | 简体中文 -------------------------------------------------------------------------------- /app/i18n/zh-CN/loader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/zh-CN/loader.json -------------------------------------------------------------------------------- /app/i18n/zh-CN/scenes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/zh-CN/scenes.json -------------------------------------------------------------------------------- /app/i18n/zh-CN/socials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/zh-CN/socials.json -------------------------------------------------------------------------------- /app/i18n/zh-CN/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/zh-CN/sources.json -------------------------------------------------------------------------------- /app/i18n/zh-CN/tiktok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/zh-CN/tiktok.json -------------------------------------------------------------------------------- /app/i18n/zh-CN/trovo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/zh-CN/trovo.json -------------------------------------------------------------------------------- /app/i18n/zh-CN/twitch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/zh-CN/twitch.json -------------------------------------------------------------------------------- /app/i18n/zh-CN/twitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/zh-CN/twitter.json -------------------------------------------------------------------------------- /app/i18n/zh-CN/undo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/zh-CN/undo.json -------------------------------------------------------------------------------- /app/i18n/zh-CN/widgets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/zh-CN/widgets.json -------------------------------------------------------------------------------- /app/i18n/zh-CN/youtube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/zh-CN/youtube.json -------------------------------------------------------------------------------- /app/i18n/zh-TW/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/zh-TW/app.json -------------------------------------------------------------------------------- /app/i18n/zh-TW/apps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/zh-TW/apps.json -------------------------------------------------------------------------------- /app/i18n/zh-TW/audio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/zh-TW/audio.json -------------------------------------------------------------------------------- /app/i18n/zh-TW/common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/zh-TW/common.json -------------------------------------------------------------------------------- /app/i18n/zh-TW/filters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/zh-TW/filters.json -------------------------------------------------------------------------------- /app/i18n/zh-TW/grow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/zh-TW/grow.json -------------------------------------------------------------------------------- /app/i18n/zh-TW/hotkeys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/zh-TW/hotkeys.json -------------------------------------------------------------------------------- /app/i18n/zh-TW/kick.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/zh-TW/kick.json -------------------------------------------------------------------------------- /app/i18n/zh-TW/langname.txt: -------------------------------------------------------------------------------- 1 | 繁體中文 -------------------------------------------------------------------------------- /app/i18n/zh-TW/loader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/zh-TW/loader.json -------------------------------------------------------------------------------- /app/i18n/zh-TW/scenes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/zh-TW/scenes.json -------------------------------------------------------------------------------- /app/i18n/zh-TW/socials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/zh-TW/socials.json -------------------------------------------------------------------------------- /app/i18n/zh-TW/sources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/zh-TW/sources.json -------------------------------------------------------------------------------- /app/i18n/zh-TW/tiktok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/zh-TW/tiktok.json -------------------------------------------------------------------------------- /app/i18n/zh-TW/trovo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/zh-TW/trovo.json -------------------------------------------------------------------------------- /app/i18n/zh-TW/twitch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/zh-TW/twitch.json -------------------------------------------------------------------------------- /app/i18n/zh-TW/twitter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/zh-TW/twitter.json -------------------------------------------------------------------------------- /app/i18n/zh-TW/undo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/zh-TW/undo.json -------------------------------------------------------------------------------- /app/i18n/zh-TW/widgets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/zh-TW/widgets.json -------------------------------------------------------------------------------- /app/i18n/zh-TW/youtube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/i18n/zh-TW/youtube.json -------------------------------------------------------------------------------- /app/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/index.d.ts -------------------------------------------------------------------------------- /app/jsx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/jsx.d.ts -------------------------------------------------------------------------------- /app/services-manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/services-manager.ts -------------------------------------------------------------------------------- /app/services/api/external-api/customization/index.ts: -------------------------------------------------------------------------------- 1 | export * from './customization'; 2 | -------------------------------------------------------------------------------- /app/services/api/external-api/dual-output/index.ts: -------------------------------------------------------------------------------- 1 | export * from './dual-output'; 2 | -------------------------------------------------------------------------------- /app/services/api/external-api/game-overlay/index.ts: -------------------------------------------------------------------------------- 1 | export * from './game-overlay'; 2 | -------------------------------------------------------------------------------- /app/services/api/external-api/notifications/index.ts: -------------------------------------------------------------------------------- 1 | export * from './notifications'; 2 | -------------------------------------------------------------------------------- /app/services/api/external-api/performance/index.ts: -------------------------------------------------------------------------------- 1 | export * from './performance'; 2 | -------------------------------------------------------------------------------- /app/services/api/external-api/recent-events/index.ts: -------------------------------------------------------------------------------- 1 | export * from './recent-events'; 2 | -------------------------------------------------------------------------------- /app/services/api/external-api/scene-collections/index.ts: -------------------------------------------------------------------------------- 1 | export * from './scene-collections'; 2 | -------------------------------------------------------------------------------- /app/services/api/external-api/selection/index.ts: -------------------------------------------------------------------------------- 1 | export * from './selection'; 2 | -------------------------------------------------------------------------------- /app/services/api/external-api/streaming/index.ts: -------------------------------------------------------------------------------- 1 | export * from './streaming'; 2 | -------------------------------------------------------------------------------- /app/services/api/external-api/transitions/index.ts: -------------------------------------------------------------------------------- 1 | export * from './transitions'; 2 | -------------------------------------------------------------------------------- /app/services/api/external-api/video/index.ts: -------------------------------------------------------------------------------- 1 | export * from './video'; 2 | -------------------------------------------------------------------------------- /app/services/api/ipc-server/index.ts: -------------------------------------------------------------------------------- 1 | export * from './ipc-server'; 2 | -------------------------------------------------------------------------------- /app/services/api/rpc-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/services/api/rpc-api.ts -------------------------------------------------------------------------------- /app/services/api/tcp-server/index.ts: -------------------------------------------------------------------------------- 1 | export * from './tcp-server'; 2 | -------------------------------------------------------------------------------- /app/services/app/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/services/app/app.ts -------------------------------------------------------------------------------- /app/services/app/index.ts: -------------------------------------------------------------------------------- 1 | export * from './app'; 2 | -------------------------------------------------------------------------------- /app/services/audio/audio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/services/audio/audio.ts -------------------------------------------------------------------------------- /app/services/audio/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/services/audio/index.ts -------------------------------------------------------------------------------- /app/services/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/services/chat.ts -------------------------------------------------------------------------------- /app/services/clipboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/services/clipboard.ts -------------------------------------------------------------------------------- /app/services/core/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/services/core/index.ts -------------------------------------------------------------------------------- /app/services/diagnostics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/services/diagnostics.ts -------------------------------------------------------------------------------- /app/services/dual-output/index.ts: -------------------------------------------------------------------------------- 1 | export * from './dual-output'; 2 | -------------------------------------------------------------------------------- /app/services/editor-commands/index.ts: -------------------------------------------------------------------------------- 1 | export * from './editor-commands'; 2 | -------------------------------------------------------------------------------- /app/services/editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/services/editor.ts -------------------------------------------------------------------------------- /app/services/grow/grow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/services/grow/grow.ts -------------------------------------------------------------------------------- /app/services/hosts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/services/hosts.ts -------------------------------------------------------------------------------- /app/services/hotkeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/services/hotkeys.ts -------------------------------------------------------------------------------- /app/services/i18n/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/services/i18n/i18n.ts -------------------------------------------------------------------------------- /app/services/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/services/i18n/index.ts -------------------------------------------------------------------------------- /app/services/index.ts: -------------------------------------------------------------------------------- 1 | export * from './core'; 2 | -------------------------------------------------------------------------------- /app/services/magic-link.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/services/magic-link.ts -------------------------------------------------------------------------------- /app/services/markers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/services/markers.ts -------------------------------------------------------------------------------- /app/services/media-gallery/index.ts: -------------------------------------------------------------------------------- 1 | export * from './media-gallery'; 2 | -------------------------------------------------------------------------------- /app/services/metrics/index.ts: -------------------------------------------------------------------------------- 1 | export * from './metrics'; 2 | -------------------------------------------------------------------------------- /app/services/navigation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/services/navigation.ts -------------------------------------------------------------------------------- /app/services/onboarding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/services/onboarding.ts -------------------------------------------------------------------------------- /app/services/performance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/services/performance.ts -------------------------------------------------------------------------------- /app/services/projector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/services/projector.ts -------------------------------------------------------------------------------- /app/services/realm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/services/realm.ts -------------------------------------------------------------------------------- /app/services/restream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/services/restream.ts -------------------------------------------------------------------------------- /app/services/settings/output/index.ts: -------------------------------------------------------------------------------- 1 | export * from './output-settings'; 2 | -------------------------------------------------------------------------------- /app/services/settings/streaming/index.ts: -------------------------------------------------------------------------------- 1 | export * from './stream-settings'; 2 | -------------------------------------------------------------------------------- /app/services/shortcuts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/services/shortcuts.ts -------------------------------------------------------------------------------- /app/services/touch-bar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/services/touch-bar.ts -------------------------------------------------------------------------------- /app/services/transitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/services/transitions.ts -------------------------------------------------------------------------------- /app/services/ts-importer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/services/ts-importer.ts -------------------------------------------------------------------------------- /app/services/user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/services/user/index.ts -------------------------------------------------------------------------------- /app/services/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/services/utils.ts -------------------------------------------------------------------------------- /app/services/video.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/services/video.ts -------------------------------------------------------------------------------- /app/services/websocket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/services/websocket.ts -------------------------------------------------------------------------------- /app/services/windows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/services/windows.ts -------------------------------------------------------------------------------- /app/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/store/index.ts -------------------------------------------------------------------------------- /app/styles/_variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/styles/_variables.less -------------------------------------------------------------------------------- /app/styles/animations.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/styles/animations.less -------------------------------------------------------------------------------- /app/styles/antd/antd.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/styles/antd/antd.less -------------------------------------------------------------------------------- /app/styles/antd/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/styles/antd/index.ts -------------------------------------------------------------------------------- /app/styles/badges.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/styles/badges.less -------------------------------------------------------------------------------- /app/styles/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/styles/buttons.less -------------------------------------------------------------------------------- /app/styles/checkboxes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/styles/checkboxes.less -------------------------------------------------------------------------------- /app/styles/classes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/styles/classes.less -------------------------------------------------------------------------------- /app/styles/colors.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/styles/colors.less -------------------------------------------------------------------------------- /app/styles/foundation.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/styles/foundation.less -------------------------------------------------------------------------------- /app/styles/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/styles/index.less -------------------------------------------------------------------------------- /app/styles/inputs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/styles/inputs.less -------------------------------------------------------------------------------- /app/styles/loader.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/styles/loader.less -------------------------------------------------------------------------------- /app/styles/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/styles/mixins.less -------------------------------------------------------------------------------- /app/styles/sl-vue-tree.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/styles/sl-vue-tree.less -------------------------------------------------------------------------------- /app/styles/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/styles/tables.less -------------------------------------------------------------------------------- /app/styles/tooltips.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/styles/tooltips.less -------------------------------------------------------------------------------- /app/themes.g.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/themes.g.less -------------------------------------------------------------------------------- /app/util/DragHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/util/DragHandler.ts -------------------------------------------------------------------------------- /app/util/FrameRate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/util/FrameRate.js -------------------------------------------------------------------------------- /app/util/NamingHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/util/NamingHelpers.ts -------------------------------------------------------------------------------- /app/util/dot-tree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/util/dot-tree.ts -------------------------------------------------------------------------------- /app/util/lazy-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/util/lazy-module.ts -------------------------------------------------------------------------------- /app/util/menus/EditMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/util/menus/EditMenu.ts -------------------------------------------------------------------------------- /app/util/menus/GroupMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/util/menus/GroupMenu.ts -------------------------------------------------------------------------------- /app/util/menus/Menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/util/menus/Menu.ts -------------------------------------------------------------------------------- /app/util/mutex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/util/mutex.ts -------------------------------------------------------------------------------- /app/util/obs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/util/obs.ts -------------------------------------------------------------------------------- /app/util/performance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/util/performance.ts -------------------------------------------------------------------------------- /app/util/pmap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/util/pmap.ts -------------------------------------------------------------------------------- /app/util/rect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/util/rect.ts -------------------------------------------------------------------------------- /app/util/requests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/util/requests.ts -------------------------------------------------------------------------------- /app/util/slow-imports.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/util/slow-imports.ts -------------------------------------------------------------------------------- /app/util/unload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/util/unload.ts -------------------------------------------------------------------------------- /app/util/vec2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/util/vec2.ts -------------------------------------------------------------------------------- /app/util/webgl/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/util/webgl/utils.ts -------------------------------------------------------------------------------- /app/util/wmi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/app/util/wmi.ts -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /bin/tail-obs-logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/bin/tail-obs-logs.js -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/crowdin.yml -------------------------------------------------------------------------------- /dev-app-update.yml: -------------------------------------------------------------------------------- 1 | provider: generic 2 | url: 'https://d1g6eog1uhe0xm.cloudfront.net' 3 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/how_to_update_fork.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/docs/how_to_update_fork.md -------------------------------------------------------------------------------- /docs/typedoc-monkeypatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/docs/typedoc-monkeypatch.js -------------------------------------------------------------------------------- /guest-api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/guest-api/index.ts -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/index.html -------------------------------------------------------------------------------- /installer.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/installer.nsh -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/main.js -------------------------------------------------------------------------------- /media/chest-deco.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/media/chest-deco.webm -------------------------------------------------------------------------------- /media/chest.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/media/chest.webm -------------------------------------------------------------------------------- /media/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/media/fonts/icomoon.woff -------------------------------------------------------------------------------- /media/images/16x9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/media/images/16x9.png -------------------------------------------------------------------------------- /media/images/connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/media/images/connect.png -------------------------------------------------------------------------------- /media/images/dmg-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/media/images/dmg-bg.png -------------------------------------------------------------------------------- /media/images/icon-mac.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/media/images/icon-mac.icns -------------------------------------------------------------------------------- /media/images/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/media/images/icon.ico -------------------------------------------------------------------------------- /media/images/icons/cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/media/images/icons/cpu.png -------------------------------------------------------------------------------- /media/images/icons/fps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/media/images/icons/fps.png -------------------------------------------------------------------------------- /media/images/icons/jar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/media/images/icons/jar.png -------------------------------------------------------------------------------- /media/images/import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/media/images/import.png -------------------------------------------------------------------------------- /media/images/loader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/media/images/loader.svg -------------------------------------------------------------------------------- /media/images/moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/media/images/moon.png -------------------------------------------------------------------------------- /media/images/optimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/media/images/optimize.png -------------------------------------------------------------------------------- /media/images/prime-apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/media/images/prime-apps.png -------------------------------------------------------------------------------- /media/images/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/media/images/sun.png -------------------------------------------------------------------------------- /media/mp4/alertbox.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/media/mp4/alertbox.mp4 -------------------------------------------------------------------------------- /media/mp4/chatbox.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/media/mp4/chatbox.mp4 -------------------------------------------------------------------------------- /media/mp4/donation-goal.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/media/mp4/donation-goal.mp4 -------------------------------------------------------------------------------- /media/mp4/eventlist.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/media/mp4/eventlist.mp4 -------------------------------------------------------------------------------- /media/mp4/jar.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/media/mp4/jar.mp4 -------------------------------------------------------------------------------- /media/sound/ding.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/media/sound/ding.wav -------------------------------------------------------------------------------- /obs-api/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/obs-api/index.js -------------------------------------------------------------------------------- /obs-api/obs-api.d.ts: -------------------------------------------------------------------------------- 1 | export * from 'obs-studio-node/module'; 2 | -------------------------------------------------------------------------------- /obs-api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/obs-api/package.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/renovate.json -------------------------------------------------------------------------------- /scripts/ci/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/scripts/ci/install.ps1 -------------------------------------------------------------------------------- /scripts/ci/shutdown.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/scripts/ci/shutdown.ps1 -------------------------------------------------------------------------------- /scripts/ci/start-agent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/scripts/ci/start-agent.ps1 -------------------------------------------------------------------------------- /scripts/ci/startup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/scripts/ci/startup.ps1 -------------------------------------------------------------------------------- /scripts/ci/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/scripts/ci/uninstall.ps1 -------------------------------------------------------------------------------- /scripts/github-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/scripts/github-client.js -------------------------------------------------------------------------------- /scripts/postinstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/scripts/postinstall.js -------------------------------------------------------------------------------- /scripts/react-progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/scripts/react-progress.js -------------------------------------------------------------------------------- /scripts/repositories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/scripts/repositories.json -------------------------------------------------------------------------------- /shared-resources/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/shared-resources/README -------------------------------------------------------------------------------- /test-job-template.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/test-main.js -------------------------------------------------------------------------------- /test/data/dummy-accounts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/test/data/dummy-accounts.ts -------------------------------------------------------------------------------- /test/data/obs-studio.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/test/data/obs-studio.zip -------------------------------------------------------------------------------- /test/data/sources-files/text/hello.txt: -------------------------------------------------------------------------------- 1 | Hello world! -------------------------------------------------------------------------------- /test/helpers/api-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/test/helpers/api-client.ts -------------------------------------------------------------------------------- /test/helpers/cmd-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/test/helpers/cmd-client.ts -------------------------------------------------------------------------------- /test/helpers/form-monkey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/test/helpers/form-monkey.ts -------------------------------------------------------------------------------- /test/helpers/modules/forms/index.ts: -------------------------------------------------------------------------------- 1 | export * from './form'; 2 | -------------------------------------------------------------------------------- /test/helpers/repo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/test/helpers/repo.js -------------------------------------------------------------------------------- /test/helpers/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/test/helpers/runner.js -------------------------------------------------------------------------------- /test/helpers/sleep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/test/helpers/sleep.js -------------------------------------------------------------------------------- /test/performance/meter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/test/performance/meter.ts -------------------------------------------------------------------------------- /test/performance/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/test/performance/tools.ts -------------------------------------------------------------------------------- /test/regular/api/audio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/test/regular/api/audio.ts -------------------------------------------------------------------------------- /test/regular/api/folders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/test/regular/api/folders.ts -------------------------------------------------------------------------------- /test/regular/api/scenes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/test/regular/api/scenes.ts -------------------------------------------------------------------------------- /test/regular/api/sources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/test/regular/api/sources.ts -------------------------------------------------------------------------------- /test/regular/filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/test/regular/filters.ts -------------------------------------------------------------------------------- /test/regular/highlighter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/test/regular/highlighter.ts -------------------------------------------------------------------------------- /test/regular/mixer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/test/regular/mixer.ts -------------------------------------------------------------------------------- /test/regular/onboarding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/test/regular/onboarding.ts -------------------------------------------------------------------------------- /test/regular/recording.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/test/regular/recording.ts -------------------------------------------------------------------------------- /test/regular/scenes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/test/regular/scenes.ts -------------------------------------------------------------------------------- /test/regular/sources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/test/regular/sources.ts -------------------------------------------------------------------------------- /test/regular/startup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/test/regular/startup.ts -------------------------------------------------------------------------------- /test/regular/streamdeck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/test/regular/streamdeck.ts -------------------------------------------------------------------------------- /test/regular/themes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/test/regular/themes.ts -------------------------------------------------------------------------------- /test/regular/transitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/test/regular/transitions.ts -------------------------------------------------------------------------------- /test/regular/undo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/test/regular/undo.ts -------------------------------------------------------------------------------- /test/screentest/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/test/screentest/config.json -------------------------------------------------------------------------------- /test/screentest/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/test/screentest/runner.js -------------------------------------------------------------------------------- /test/screentest/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/test/screentest/utils.ts -------------------------------------------------------------------------------- /test/stress/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/test/stress/index.ts -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/tsconfig.json -------------------------------------------------------------------------------- /updater/UpdaterWindow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/updater/UpdaterWindow.vue -------------------------------------------------------------------------------- /updater/bootstrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/updater/bootstrap.ts -------------------------------------------------------------------------------- /updater/bundle-updater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/updater/bundle-updater.ts -------------------------------------------------------------------------------- /updater/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/updater/index.html -------------------------------------------------------------------------------- /updater/mac/Updater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/updater/mac/Updater.js -------------------------------------------------------------------------------- /updater/mac/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/updater/mac/index.html -------------------------------------------------------------------------------- /updater/mac/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/updater/mac/ui.js -------------------------------------------------------------------------------- /updater/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/updater/tsconfig.json -------------------------------------------------------------------------------- /updater/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/updater/ui.js -------------------------------------------------------------------------------- /updater/updater.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/updater/updater.d.ts -------------------------------------------------------------------------------- /vendor/flexboxgrid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/vendor/flexboxgrid.min.css -------------------------------------------------------------------------------- /vendor/roboto.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/vendor/roboto.css -------------------------------------------------------------------------------- /vendor/threejs/vector2.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/vendor/threejs/vector2.d.ts -------------------------------------------------------------------------------- /vendor/threejs/vector2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/vendor/threejs/vector2.js -------------------------------------------------------------------------------- /vendor/toasted.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/vendor/toasted.d.ts -------------------------------------------------------------------------------- /vendor/urijs.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/vendor/urijs.d.ts -------------------------------------------------------------------------------- /webpack.base.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/webpack.base.config.js -------------------------------------------------------------------------------- /webpack.dev-app.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/webpack.dev-app.config.js -------------------------------------------------------------------------------- /webpack.dev.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/webpack.dev.config.js -------------------------------------------------------------------------------- /webpack.prod.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/webpack.prod.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamlabs/desktop/HEAD/yarn.lock --------------------------------------------------------------------------------