├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature-ui-request.md │ └── something-else.md └── workflows │ ├── mirror-to-codeberg.yml │ ├── nightly-builds.yml │ └── validate-gradle-wrapper.yml ├── .gitignore ├── CSAE-POLICY.md ├── FAQ.md ├── LICENSE ├── README.md ├── _config.yml ├── _layouts └── default.html ├── fix-metadata-markdown-lists.sh ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── img ├── CSAE-POLICY │ ├── step1.png │ ├── step2.png │ ├── step3.png │ └── step4.png ├── banner.png ├── f-droid-badge.png ├── google-play-badge.png ├── ic_fluent_animal_cat_24_regular.svg ├── izzy-badge.png └── saunarepo-badge.svg ├── mastodon ├── .editorconfig ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ ├── assets │ │ └── IMG_1010.jpg │ └── java │ │ └── org │ │ └── joinmastodon │ │ └── android │ │ ├── fragments │ │ └── ThreadFragmentTest.java │ │ ├── test │ │ └── StoreScreenshotsGenerator.java │ │ └── ui │ │ └── utils │ │ └── UiUtilsTest.java │ ├── debug │ ├── AndroidManifest.xml │ ├── java │ │ └── org │ │ │ └── joinmastodon │ │ │ └── android │ │ │ └── updater │ │ │ ├── GithubSelfUpdaterImpl.java │ │ │ └── SelfUpdateContentProvider.java │ └── res │ │ ├── drawable │ │ ├── ic_fluent_dismiss_20_filled.xml │ │ ├── ic_fluent_mail_inbox_dismiss_24_regular.xml │ │ ├── ic_fluent_mail_inbox_dismiss_28_regular.xml │ │ ├── ic_fluent_mention_20_regular.xml │ │ ├── ic_fluent_open_24_regular.xml │ │ ├── ic_fluent_sign_out_24_regular.xml │ │ ├── ic_fluent_speaker_0_24_regular.xml │ │ ├── ic_fluent_speaker_0_28_regular.xml │ │ ├── ic_fluent_speaker_off_24_regular.xml │ │ ├── ic_fluent_speaker_off_28_regular.xml │ │ ├── ic_launcher_foreground_debug.xml │ │ └── ic_launcher_foreground_monochrome_debug.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ └── ic_launcher_background.xml │ ├── github │ └── java │ │ └── org │ │ └── joinmastodon │ │ └── android │ │ └── updater │ │ ├── GithubSelfUpdaterImpl.java │ │ └── SelfUpdateContentProvider.java │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ ├── blocks.txt │ │ └── server_about_template.htm │ ├── ic_launcher-playstore.png │ ├── java │ │ ├── com │ │ │ ├── hootsuite │ │ │ │ └── nachos │ │ │ │ │ ├── ChipConfiguration.java │ │ │ │ │ ├── NachoTextView.java │ │ │ │ │ ├── chip │ │ │ │ │ ├── Chip.java │ │ │ │ │ ├── ChipCreator.java │ │ │ │ │ ├── ChipInfo.java │ │ │ │ │ ├── ChipSpan.java │ │ │ │ │ └── ChipSpanChipCreator.java │ │ │ │ │ ├── terminator │ │ │ │ │ ├── ChipTerminatorHandler.java │ │ │ │ │ ├── DefaultChipTerminatorHandler.java │ │ │ │ │ └── TextIterator.java │ │ │ │ │ ├── tokenizer │ │ │ │ │ ├── BaseChipTokenizer.java │ │ │ │ │ ├── ChipTokenizer.java │ │ │ │ │ └── SpanChipTokenizer.java │ │ │ │ │ └── validator │ │ │ │ │ ├── ChipifyingNachoValidator.java │ │ │ │ │ ├── IllegalCharacterIdentifier.java │ │ │ │ │ └── NachoValidator.java │ │ │ └── twitter │ │ │ │ └── twittertext │ │ │ │ ├── Regex.java │ │ │ │ ├── TldLists.java │ │ │ │ └── TwitterTextEmojiRegex.java │ │ ├── name │ │ │ └── fraser │ │ │ │ └── neil │ │ │ │ └── plaintext │ │ │ │ ├── LICENSE │ │ │ │ └── diff_match_patch.java │ │ └── org │ │ │ └── joinmastodon │ │ │ └── android │ │ │ ├── AudioPlayerService.java │ │ │ ├── ChooseAccountForComposeActivity.java │ │ │ ├── E.java │ │ │ ├── ExitActivity.java │ │ │ ├── ExternalShareActivity.java │ │ │ ├── FileProvider.java │ │ │ ├── GlobalUserPreferences.java │ │ │ ├── MainActivity.java │ │ │ ├── MastodonApp.java │ │ │ ├── OAuthActivity.java │ │ │ ├── PanicResponderActivity.java │ │ │ ├── PushNotificationReceiver.java │ │ │ ├── TweakedFileProvider.java │ │ │ ├── UnifiedPushNotificationReceiver.java │ │ │ ├── api │ │ │ ├── AllFieldsAreRequired.java │ │ │ ├── ApiUtils.java │ │ │ ├── AvatarResizedImageRequestBody.java │ │ │ ├── CacheController.java │ │ │ ├── ContentUriRequestBody.java │ │ │ ├── CountingRequestBody.java │ │ │ ├── CountingSink.java │ │ │ ├── JsonObjectRequestBody.java │ │ │ ├── MastodonAPIController.java │ │ │ ├── MastodonAPIRequest.java │ │ │ ├── MastodonDetailedErrorResponse.java │ │ │ ├── MastodonErrorResponse.java │ │ │ ├── ObjectValidationException.java │ │ │ ├── ProgressListener.java │ │ │ ├── PushSubscriptionManager.java │ │ │ ├── RequiredField.java │ │ │ ├── ResizedImageRequestBody.java │ │ │ ├── ResultlessMastodonAPIRequest.java │ │ │ ├── StatusInteractionController.java │ │ │ ├── gson │ │ │ │ ├── IsoInstantTypeAdapter.java │ │ │ │ ├── IsoLocalDateTypeAdapter.java │ │ │ │ ├── JsonArrayBuilder.java │ │ │ │ └── JsonObjectBuilder.java │ │ │ ├── requests │ │ │ │ ├── HeaderPaginationRequest.java │ │ │ │ ├── accounts │ │ │ │ │ ├── AuthorizeFollowRequest.java │ │ │ │ │ ├── CheckInviteLink.java │ │ │ │ │ ├── GetAccountBlocks.java │ │ │ │ │ ├── GetAccountByHandle.java │ │ │ │ │ ├── GetAccountByID.java │ │ │ │ │ ├── GetAccountFeaturedHashtags.java │ │ │ │ │ ├── GetAccountFollowers.java │ │ │ │ │ ├── GetAccountFollowing.java │ │ │ │ │ ├── GetAccountLists.java │ │ │ │ │ ├── GetAccountMutes.java │ │ │ │ │ ├── GetAccountRelationships.java │ │ │ │ │ ├── GetAccountStatuses.java │ │ │ │ │ ├── GetFollowRequests.java │ │ │ │ │ ├── GetFollowSuggestions.java │ │ │ │ │ ├── GetOwnAccount.java │ │ │ │ │ ├── GetPreferences.java │ │ │ │ │ ├── RegisterAccount.java │ │ │ │ │ ├── RejectFollowRequest.java │ │ │ │ │ ├── ResendConfirmationEmail.java │ │ │ │ │ ├── SearchAccounts.java │ │ │ │ │ ├── SetAccountBlocked.java │ │ │ │ │ ├── SetAccountFollowed.java │ │ │ │ │ ├── SetAccountMuted.java │ │ │ │ │ ├── SetDomainBlocked.java │ │ │ │ │ ├── SetPrivateNote.java │ │ │ │ │ ├── UpdateAccountCredentials.java │ │ │ │ │ └── UpdateAccountCredentialsPreferences.java │ │ │ │ ├── announcements │ │ │ │ │ ├── AddAnnouncementReaction.java │ │ │ │ │ ├── DeleteAnnouncementReaction.java │ │ │ │ │ ├── DismissAnnouncement.java │ │ │ │ │ └── GetAnnouncements.java │ │ │ │ ├── catalog │ │ │ │ │ ├── GetCatalogCategories.java │ │ │ │ │ ├── GetCatalogDefaultInstances.java │ │ │ │ │ └── GetCatalogInstances.java │ │ │ │ ├── filters │ │ │ │ │ ├── CreateFilter.java │ │ │ │ │ ├── DeleteFilter.java │ │ │ │ │ ├── FilterRequest.java │ │ │ │ │ ├── GetFilters.java │ │ │ │ │ ├── GetLegacyFilters.java │ │ │ │ │ ├── KeywordAttribute.java │ │ │ │ │ └── UpdateFilter.java │ │ │ │ ├── instance │ │ │ │ │ ├── GetCustomEmojis.java │ │ │ │ │ ├── GetDomainBlocks.java │ │ │ │ │ ├── GetExtendedDescription.java │ │ │ │ │ ├── GetInstance.java │ │ │ │ │ ├── GetInstanceExtendedDescription.java │ │ │ │ │ └── GetWeeklyActivity.java │ │ │ │ ├── lists │ │ │ │ │ ├── AddAccountsToList.java │ │ │ │ │ ├── AddList.java │ │ │ │ │ ├── CreateList.java │ │ │ │ │ ├── DeleteList.java │ │ │ │ │ ├── EditListName.java │ │ │ │ │ ├── GetList.java │ │ │ │ │ ├── GetListAccounts.java │ │ │ │ │ ├── GetLists.java │ │ │ │ │ ├── RemoveAccountsFromList.java │ │ │ │ │ ├── RemoveList.java │ │ │ │ │ └── UpdateList.java │ │ │ │ ├── markers │ │ │ │ │ ├── GetMarkers.java │ │ │ │ │ └── SaveMarkers.java │ │ │ │ ├── notifications │ │ │ │ │ ├── DismissNotification.java │ │ │ │ │ ├── GetNotificationByID.java │ │ │ │ │ ├── GetNotifications.java │ │ │ │ │ ├── PleromaMarkNotificationsRead.java │ │ │ │ │ ├── RegisterForPushNotifications.java │ │ │ │ │ └── UpdatePushSettings.java │ │ │ │ ├── oauth │ │ │ │ │ ├── CreateOAuthApp.java │ │ │ │ │ ├── GetOauthToken.java │ │ │ │ │ └── RevokeOauthToken.java │ │ │ │ ├── polls │ │ │ │ │ └── SubmitPollVote.java │ │ │ │ ├── reports │ │ │ │ │ └── SendReport.java │ │ │ │ ├── search │ │ │ │ │ └── GetSearchResults.java │ │ │ │ ├── statuses │ │ │ │ │ ├── AddStatusReaction.java │ │ │ │ │ ├── AkkomaTranslateStatus.java │ │ │ │ │ ├── CreateStatus.java │ │ │ │ │ ├── DeleteStatus.java │ │ │ │ │ ├── DeleteStatusReaction.java │ │ │ │ │ ├── EditStatus.java │ │ │ │ │ ├── GetAttachmentByID.java │ │ │ │ │ ├── GetBookmarkedStatuses.java │ │ │ │ │ ├── GetFavoritedStatuses.java │ │ │ │ │ ├── GetScheduledStatuses.java │ │ │ │ │ ├── GetStatusByID.java │ │ │ │ │ ├── GetStatusContext.java │ │ │ │ │ ├── GetStatusEditHistory.java │ │ │ │ │ ├── GetStatusFavorites.java │ │ │ │ │ ├── GetStatusReblogs.java │ │ │ │ │ ├── GetStatusSourceText.java │ │ │ │ │ ├── PleromaAddStatusReaction.java │ │ │ │ │ ├── PleromaDeleteStatusReaction.java │ │ │ │ │ ├── PleromaGetStatusReactions.java │ │ │ │ │ ├── SetStatusBookmarked.java │ │ │ │ │ ├── SetStatusFavorited.java │ │ │ │ │ ├── SetStatusMuted.java │ │ │ │ │ ├── SetStatusPinned.java │ │ │ │ │ ├── SetStatusReblogged.java │ │ │ │ │ ├── TranslateStatus.java │ │ │ │ │ ├── UpdateAttachment.java │ │ │ │ │ └── UploadAttachment.java │ │ │ │ ├── tags │ │ │ │ │ ├── GetFollowedHashtags.java │ │ │ │ │ ├── GetFollowedTags.java │ │ │ │ │ ├── GetHashtag.java │ │ │ │ │ ├── GetTag.java │ │ │ │ │ ├── SetHashtagFollowed.java │ │ │ │ │ └── SetTagFollowed.java │ │ │ │ ├── timelines │ │ │ │ │ ├── GetBubbleTimeline.java │ │ │ │ │ ├── GetHashtagTimeline.java │ │ │ │ │ ├── GetHomeTimeline.java │ │ │ │ │ ├── GetListTimeline.java │ │ │ │ │ ├── GetPublicTimeline.java │ │ │ │ │ └── GetTrendingLinksTimeline.java │ │ │ │ └── trends │ │ │ │ │ ├── GetTrendingHashtags.java │ │ │ │ │ ├── GetTrendingLinks.java │ │ │ │ │ └── GetTrendingStatuses.java │ │ │ └── session │ │ │ │ ├── AccountActivationInfo.java │ │ │ │ ├── AccountLocalPreferences.java │ │ │ │ ├── AccountSession.java │ │ │ │ └── AccountSessionManager.java │ │ │ ├── events │ │ │ ├── AccountAddedToListEvent.java │ │ │ ├── AccountRemovedFromListEvent.java │ │ │ ├── EmojiReactionsUpdatedEvent.java │ │ │ ├── EmojiUpdatedEvent.java │ │ │ ├── FinishListCreationFragmentEvent.java │ │ │ ├── FinishReportFragmentsEvent.java │ │ │ ├── FollowRequestHandledEvent.java │ │ │ ├── HashtagUpdatedEvent.java │ │ │ ├── ListCreatedEvent.java │ │ │ ├── ListDeletedEvent.java │ │ │ ├── ListUpdatedCreatedEvent.java │ │ │ ├── ListUpdatedEvent.java │ │ │ ├── NotificationDeletedEvent.java │ │ │ ├── NotificationsMarkerUpdatedEvent.java │ │ │ ├── PollUpdatedEvent.java │ │ │ ├── ReblogDeletedEvent.java │ │ │ ├── RemoveAccountPostsEvent.java │ │ │ ├── ScheduledStatusCreatedEvent.java │ │ │ ├── ScheduledStatusDeletedEvent.java │ │ │ ├── SelfUpdateStateChangedEvent.java │ │ │ ├── SettingsFilterCreatedOrUpdatedEvent.java │ │ │ ├── SettingsFilterDeletedEvent.java │ │ │ ├── StatusCountersUpdatedEvent.java │ │ │ ├── StatusCreatedEvent.java │ │ │ ├── StatusDeletedEvent.java │ │ │ ├── StatusDisplaySettingsChangedEvent.java │ │ │ ├── StatusMuteChangedEvent.java │ │ │ ├── StatusUnpinnedEvent.java │ │ │ ├── StatusUpdatedEvent.java │ │ │ └── TakePictureRequestEvent.java │ │ │ ├── fragments │ │ │ ├── AccountTimelineFragment.java │ │ │ ├── AddAccountToListsFragment.java │ │ │ ├── AnnouncementsFragment.java │ │ │ ├── BaseEditListFragment.java │ │ │ ├── BaseStatusListFragment.java │ │ │ ├── BookmarkedStatusListFragment.java │ │ │ ├── ComposeFragment.java │ │ │ ├── ComposeImageDescriptionFragment.java │ │ │ ├── CreateListAddMembersFragment.java │ │ │ ├── CreateListFragment.java │ │ │ ├── CustomLocalTimelineFragment.java │ │ │ ├── EditListFragment.java │ │ │ ├── EditTimelinesFragment.java │ │ │ ├── FavoritedStatusListFragment.java │ │ │ ├── FeaturedHashtagsListFragment.java │ │ │ ├── FollowRequestsListFragment.java │ │ │ ├── FollowedHashtagsFragment.java │ │ │ ├── HasAccountID.java │ │ │ ├── HasElevationOnScrollListener.java │ │ │ ├── HasFab.java │ │ │ ├── HashtagTimelineFragment.java │ │ │ ├── HomeFragment.java │ │ │ ├── HomeTabFragment.java │ │ │ ├── HomeTimelineFragment.java │ │ │ ├── IsOnTop.java │ │ │ ├── ListMembersFragment.java │ │ │ ├── ListTimelineFragment.java │ │ │ ├── ListsFragment.java │ │ │ ├── ManageFollowedHashtagsFragment.java │ │ │ ├── ManageListsFragment.java │ │ │ ├── MastodonRecyclerFragment.java │ │ │ ├── MastodonToolbarFragment.java │ │ │ ├── NotificationsFragment.java │ │ │ ├── NotificationsListFragment.java │ │ │ ├── PinnableStatusListFragment.java │ │ │ ├── PinnedPostsListFragment.java │ │ │ ├── ProfileAboutFragment.java │ │ │ ├── ProfileFragment.java │ │ │ ├── ScheduledStatusListFragment.java │ │ │ ├── ScrollableToTop.java │ │ │ ├── SplashFragment.java │ │ │ ├── StatusEditHistoryFragment.java │ │ │ ├── StatusListFragment.java │ │ │ ├── ThreadFragment.java │ │ │ ├── account_list │ │ │ │ ├── AccountRelatedAccountListFragment.java │ │ │ │ ├── AccountSearchFragment.java │ │ │ │ ├── AddListMembersFragment.java │ │ │ │ ├── AddNewListMembersFragment.java │ │ │ │ ├── BaseAccountListFragment.java │ │ │ │ ├── BlockedAccountsListFragment.java │ │ │ │ ├── BlocksListFragment.java │ │ │ │ ├── FollowerListFragment.java │ │ │ │ ├── FollowingListFragment.java │ │ │ │ ├── MutedAccountsListFragment.java │ │ │ │ ├── MutesListFragment.java │ │ │ │ ├── PaginatedAccountListFragment.java │ │ │ │ ├── StatusEmojiReactionsListFragment.java │ │ │ │ ├── StatusFavoritesListFragment.java │ │ │ │ ├── StatusReblogsListFragment.java │ │ │ │ └── StatusRelatedAccountListFragment.java │ │ │ ├── discover │ │ │ │ ├── BubbleTimelineFragment.java │ │ │ │ ├── DiscoverAccountsFragment.java │ │ │ │ ├── DiscoverFragment.java │ │ │ │ ├── DiscoverNewsFragment.java │ │ │ │ ├── DiscoverPostsFragment.java │ │ │ │ ├── DiscoverTrendingLinkTimelineFragment.java │ │ │ │ ├── FederatedTimelineFragment.java │ │ │ │ ├── LocalTimelineFragment.java │ │ │ │ ├── SearchFragment.java │ │ │ │ ├── SearchQueryFragment.java │ │ │ │ └── TrendingHashtagsFragment.java │ │ │ ├── onboarding │ │ │ │ ├── AccountActivationFragment.java │ │ │ │ ├── CustomWelcomeFragment.java │ │ │ │ ├── GoogleMadeMeAddThisFragment.java │ │ │ │ ├── InstanceCatalogFragment.java │ │ │ │ ├── InstanceCatalogSignupFragment.java │ │ │ │ ├── InstanceChooserLoginFragment.java │ │ │ │ ├── InstanceRulesFragment.java │ │ │ │ ├── OnboardingFollowSuggestionsFragment.java │ │ │ │ ├── OnboardingProfileSetupFragment.java │ │ │ │ └── SignupFragment.java │ │ │ ├── report │ │ │ │ ├── BaseReportChoiceFragment.java │ │ │ │ ├── ChoiceItem.java │ │ │ │ ├── ChoiceItemViewHolder.java │ │ │ │ ├── ChoiceItemsAdapter.java │ │ │ │ ├── ReportAddPostsChoiceFragment.java │ │ │ │ ├── ReportCommentFragment.java │ │ │ │ ├── ReportDoneFragment.java │ │ │ │ ├── ReportReasonChoiceFragment.java │ │ │ │ └── ReportRuleChoiceFragment.java │ │ │ └── settings │ │ │ │ ├── BaseSettingsFragment.java │ │ │ │ ├── EditFilterFragment.java │ │ │ │ ├── FilterContextFragment.java │ │ │ │ ├── FilterWordsFragment.java │ │ │ │ ├── SettingsAboutAppFragment.java │ │ │ │ ├── SettingsBehaviorFragment.java │ │ │ │ ├── SettingsDebugFragment.java │ │ │ │ ├── SettingsDisplayFragment.java │ │ │ │ ├── SettingsFiltersFragment.java │ │ │ │ ├── SettingsInstanceFragment.java │ │ │ │ ├── SettingsMainFragment.java │ │ │ │ ├── SettingsNotificationsFragment.java │ │ │ │ ├── SettingsPrivacyFragment.java │ │ │ │ ├── SettingsServerAboutFragment.java │ │ │ │ ├── SettingsServerFragment.java │ │ │ │ └── SettingsServerRulesFragment.java │ │ │ ├── model │ │ │ ├── Account.java │ │ │ ├── AccountField.java │ │ │ ├── AkkomaTranslation.java │ │ │ ├── AltTextFilter.java │ │ │ ├── Announcement.java │ │ │ ├── Application.java │ │ │ ├── Attachment.java │ │ │ ├── BaseModel.java │ │ │ ├── CacheablePaginatedResponse.java │ │ │ ├── Card.java │ │ │ ├── ContentType.java │ │ │ ├── CustomLocalTimeline.java │ │ │ ├── DisplayItemsParent.java │ │ │ ├── DomainBlock.java │ │ │ ├── Emoji.java │ │ │ ├── EmojiCategory.java │ │ │ ├── EmojiReaction.java │ │ │ ├── ExpandMedia.java │ │ │ ├── ExtendedDescription.java │ │ │ ├── Filter.java │ │ │ ├── FilterAction.java │ │ │ ├── FilterContext.java │ │ │ ├── FilterKeyword.java │ │ │ ├── FilterResult.java │ │ │ ├── FilterStatus.java │ │ │ ├── FollowList.java │ │ │ ├── FollowSuggestion.java │ │ │ ├── Hashtag.java │ │ │ ├── HeaderPaginationList.java │ │ │ ├── History.java │ │ │ ├── Instance.java │ │ │ ├── LegacyFilter.java │ │ │ ├── ListTimeline.java │ │ │ ├── Marker.java │ │ │ ├── Markers.java │ │ │ ├── Mention.java │ │ │ ├── Notification.java │ │ │ ├── NotificationAction.java │ │ │ ├── PaginatedResponse.java │ │ │ ├── Poll.java │ │ │ ├── Preferences.java │ │ │ ├── PushNotification.java │ │ │ ├── PushSubscription.java │ │ │ ├── Relationship.java │ │ │ ├── ReportReason.java │ │ │ ├── ScheduledStatus.java │ │ │ ├── SearchResult.java │ │ │ ├── SearchResults.java │ │ │ ├── Searchable.java │ │ │ ├── Severity.java │ │ │ ├── Source.java │ │ │ ├── Status.java │ │ │ ├── StatusContext.java │ │ │ ├── StatusPrivacy.java │ │ │ ├── TimelineDefinition.java │ │ │ ├── TimelineMarkers.java │ │ │ ├── Token.java │ │ │ ├── Translation.java │ │ │ ├── WeeklyActivity.java │ │ │ ├── catalog │ │ │ │ ├── CatalogCategory.java │ │ │ │ ├── CatalogDefaultInstance.java │ │ │ │ └── CatalogInstance.java │ │ │ └── viewmodel │ │ │ │ ├── AccountViewModel.java │ │ │ │ ├── AvatarPileListItem.java │ │ │ │ ├── CardViewModel.java │ │ │ │ ├── CheckableListItem.java │ │ │ │ ├── ListItem.java │ │ │ │ ├── ListItemWithOptionsMenu.java │ │ │ │ └── SearchResultViewModel.java │ │ │ ├── ui │ │ │ ├── BetterItemAnimator.java │ │ │ ├── ClickableSingleViewRecyclerAdapter.java │ │ │ ├── CustomEmojiPopupKeyboard.java │ │ │ ├── DividerItemDecoration.java │ │ │ ├── InterpolatingMotionEffect.java │ │ │ ├── M3AlertDialogBuilder.java │ │ │ ├── NonMutualPreReplySheet.java │ │ │ ├── OldPostPreReplySheet.java │ │ │ ├── OutlineProviders.java │ │ │ ├── PhotoLayoutHelper.java │ │ │ ├── PopupKeyboard.java │ │ │ ├── PreReplySheet.java │ │ │ ├── SearchViewHelper.java │ │ │ ├── SimpleViewHolder.java │ │ │ ├── SingleImagePhotoViewerListener.java │ │ │ ├── Snackbar.java │ │ │ ├── StickyHeadersOverlay.java │ │ │ ├── adapters │ │ │ │ ├── GenericListItemsAdapter.java │ │ │ │ └── InstanceRulesAdapter.java │ │ │ ├── displayitems │ │ │ │ ├── AccountCardStatusDisplayItem.java │ │ │ │ ├── AccountStatusDisplayItem.java │ │ │ │ ├── AudioStatusDisplayItem.java │ │ │ │ ├── CheckableHeaderStatusDisplayItem.java │ │ │ │ ├── DummyStatusDisplayItem.java │ │ │ │ ├── EmojiReactionsStatusDisplayItem.java │ │ │ │ ├── ErrorStatusDisplayItem.java │ │ │ │ ├── ExtendedFooterStatusDisplayItem.java │ │ │ │ ├── FileStatusDisplayItem.java │ │ │ │ ├── FooterStatusDisplayItem.java │ │ │ │ ├── GapStatusDisplayItem.java │ │ │ │ ├── HashtagStatusDisplayItem.java │ │ │ │ ├── HeaderStatusDisplayItem.java │ │ │ │ ├── LinkCardStatusDisplayItem.java │ │ │ │ ├── MediaGridStatusDisplayItem.java │ │ │ │ ├── NotificationHeaderStatusDisplayItem.java │ │ │ │ ├── PollFooterStatusDisplayItem.java │ │ │ │ ├── PollOptionStatusDisplayItem.java │ │ │ │ ├── PreviewlessMediaGridStatusDisplayItem.java │ │ │ │ ├── ReblogOrReplyLineStatusDisplayItem.java │ │ │ │ ├── SectionHeaderStatusDisplayItem.java │ │ │ │ ├── SpoilerStatusDisplayItem.java │ │ │ │ ├── StatusDisplayItem.java │ │ │ │ ├── TextStatusDisplayItem.java │ │ │ │ └── WarningFilteredStatusDisplayItem.java │ │ │ ├── drawables │ │ │ │ ├── AudioAttachmentBackgroundDrawable.java │ │ │ │ ├── BlurhashCrossfadeDrawable.java │ │ │ │ ├── EmptyDrawable.java │ │ │ │ ├── PlayIconDrawable.java │ │ │ │ ├── SawtoothTearDrawable.java │ │ │ │ ├── SpoilerStripesDrawable.java │ │ │ │ └── TiledDrawable.java │ │ │ ├── photoviewer │ │ │ │ ├── AltTextSheet.java │ │ │ │ ├── PhotoViewer.java │ │ │ │ ├── PhotoViewerHost.java │ │ │ │ ├── PhotoViewerInfoSheet.java │ │ │ │ └── ZoomPanView.java │ │ │ ├── sheets │ │ │ │ ├── AccountRestrictionConfirmationSheet.java │ │ │ │ ├── AccountSwitcherSheet.java │ │ │ │ ├── BlockAccountConfirmationSheet.java │ │ │ │ ├── BlockDomainConfirmationSheet.java │ │ │ │ ├── DecentralizationExplainerSheet.java │ │ │ │ ├── MuteAccountConfirmationSheet.java │ │ │ │ ├── MuteHashtagConfirmationSheet.java │ │ │ │ ├── NonMutualPreReplySheet.java │ │ │ │ ├── OldPostPreReplySheet.java │ │ │ │ └── PreReplySheet.java │ │ │ ├── tabs │ │ │ │ ├── ElasticTabIndicatorInterpolator.java │ │ │ │ ├── MaterialResources.java │ │ │ │ ├── TabIndicatorInterpolator.java │ │ │ │ ├── TabItem.java │ │ │ │ ├── TabLayout.java │ │ │ │ └── TabLayoutMediator.java │ │ │ ├── text │ │ │ │ ├── AvatarSpan.java │ │ │ │ ├── ClickableLinksDelegate.java │ │ │ │ ├── ComposeAutocompleteSpan.java │ │ │ │ ├── ComposeHashtagOrMentionSpan.java │ │ │ │ ├── CustomEmojiSpan.java │ │ │ │ ├── DeleteWhenCopiedSpan.java │ │ │ │ ├── DiffRemovedSpan.java │ │ │ │ ├── HtmlParser.java │ │ │ │ ├── InvisibleSpan.java │ │ │ │ ├── LengthLimitHighlighter.java │ │ │ │ ├── LinkSpan.java │ │ │ │ └── SpacerSpan.java │ │ │ ├── utils │ │ │ │ ├── ActionModeHelper.java │ │ │ │ ├── BlurHashDecoder.java │ │ │ │ ├── BlurHashDrawable.java │ │ │ │ ├── ColorPalette.java │ │ │ │ ├── CustomEmojiHelper.java │ │ │ │ ├── DiscoverInfoBannerHelper.java │ │ │ │ ├── HideableSingleViewRecyclerAdapter.java │ │ │ │ ├── InsetStatusItemDecoration.java │ │ │ │ ├── MediaAttachmentViewController.java │ │ │ │ ├── PreviewlessMediaAttachmentViewController.java │ │ │ │ ├── SimpleTextWatcher.java │ │ │ │ ├── TextDrawable.java │ │ │ │ └── UiUtils.java │ │ │ ├── viewcontrollers │ │ │ │ ├── ComposeAutocompleteViewController.java │ │ │ │ ├── ComposeLanguageAlertViewController.java │ │ │ │ ├── ComposeMediaViewController.java │ │ │ │ ├── ComposePollViewController.java │ │ │ │ ├── DropdownSubmenuController.java │ │ │ │ ├── HomeTimelineHashtagsMenuController.java │ │ │ │ ├── HomeTimelineListsMenuController.java │ │ │ │ ├── HomeTimelineMenuController.java │ │ │ │ └── ToolbarDropdownMenuController.java │ │ │ ├── viewholders │ │ │ │ ├── AccountViewHolder.java │ │ │ │ ├── AvatarPileListItemViewHolder.java │ │ │ │ ├── CheckableListItemViewHolder.java │ │ │ │ ├── CheckboxOrRadioListItemViewHolder.java │ │ │ │ ├── InstanceRuleViewHolder.java │ │ │ │ ├── ListItemViewHolder.java │ │ │ │ ├── OptionsListItemViewHolder.java │ │ │ │ ├── SimpleListItemViewHolder.java │ │ │ │ └── SwitchListItemViewHolder.java │ │ │ └── views │ │ │ │ ├── AutoOrientationLinearLayout.java │ │ │ │ ├── AvatarPileView.java │ │ │ │ ├── CheckIconSelectableTextView.java │ │ │ │ ├── CheckableLinearLayout.java │ │ │ │ ├── CheckableRelativeLayout.java │ │ │ │ ├── ChildDrawingOrderCallback.java │ │ │ │ ├── ComposeEditText.java │ │ │ │ ├── ComposeMediaLayout.java │ │ │ │ ├── CoverImageView.java │ │ │ │ ├── CurlyArrowEmptyView.java │ │ │ │ ├── CustomDrawingOrderLinearLayout.java │ │ │ │ ├── CustomScrollView.java │ │ │ │ ├── EmojiReactionButton.java │ │ │ │ ├── EmojiReactionsRecyclerView.java │ │ │ │ ├── FilterChipView.java │ │ │ │ ├── FixedAspectRatioImageView.java │ │ │ │ ├── FloatingHintEditTextLayout.java │ │ │ │ ├── FrameLayoutThatOnlyMeasuresFirstChild.java │ │ │ │ ├── HashtagChartView.java │ │ │ │ ├── HeaderSubtitleLinearLayout.java │ │ │ │ ├── HorizontalScrollViewThatRespectsMatchParent.java │ │ │ │ ├── LinkedTextView.java │ │ │ │ ├── ListEditor.java │ │ │ │ ├── M3Switch.java │ │ │ │ ├── MaxWidthFrameLayout.java │ │ │ │ ├── MediaGridLayout.java │ │ │ │ ├── NestableScrollView.java │ │ │ │ ├── NestedRecyclerScrollView.java │ │ │ │ ├── ProgressBarButton.java │ │ │ │ ├── ReorderableLinearLayout.java │ │ │ │ ├── RippleAnimationTextView.java │ │ │ │ ├── SizeListenerFrameLayout.java │ │ │ │ ├── SizeListenerLinearLayout.java │ │ │ │ ├── SplashLogoView.java │ │ │ │ ├── TabBar.java │ │ │ │ ├── TextInputFrameLayout.java │ │ │ │ ├── TopBarsScrollAwayLinearLayout.java │ │ │ │ ├── UntouchableScrollView.java │ │ │ │ └── WrappingLinearLayout.java │ │ │ ├── updater │ │ │ └── GithubSelfUpdater.java │ │ │ └── utils │ │ │ ├── ElevationOnScrollListener.java │ │ │ ├── FileProvider.java │ │ │ ├── MastodonLanguage.java │ │ │ ├── ObjectIdComparator.java │ │ │ ├── ProvidesAssistContent.java │ │ │ ├── StatusTextEncoder.java │ │ │ ├── Tracking.java │ │ │ ├── TransferSpeedTracker.java │ │ │ ├── TypedObjectPool.java │ │ │ ├── UnifiedPushHelper.java │ │ │ └── ViewImageLoaderHolderTarget.java │ └── res │ │ ├── anim │ │ └── fade_out_fast.xml │ │ ├── animator │ │ ├── fab_shadow.xml │ │ ├── m3_button_elevation.xml │ │ └── squish.xml │ │ ├── color │ │ ├── action_bar_icons.xml │ │ ├── bookmark_icon.xml │ │ ├── boost_icon.xml │ │ ├── button_text_m3_filled.xml │ │ ├── button_text_m3_text.xml │ │ ├── button_text_m3_tonal.xml │ │ ├── button_text_m3_tonal_error.xml │ │ ├── chip_material_background.xml │ │ ├── compose_button.xml │ │ ├── favorite_icon.xml │ │ ├── filter_chip_text.xml │ │ ├── like_icon.xml │ │ ├── m3_on_background_alpha38.xml │ │ ├── m3_on_primary_overlay.xml │ │ ├── m3_on_secondary_container_overlay.xml │ │ ├── m3_on_surface_alpha12.xml │ │ ├── m3_on_surface_alpha38.xml │ │ ├── m3_on_surface_overlay.xml │ │ ├── m3_on_surface_selector.xml │ │ ├── m3_on_surface_variant_overlay.xml │ │ ├── m3_outlined_text_field_label.xml │ │ ├── m3_pressed_overlay.xml │ │ ├── m3_primary_alpha11.xml │ │ ├── m3_primary_alpha5.xml │ │ ├── m3_primary_alpha8.xml │ │ ├── m3_primary_overlay.xml │ │ ├── m3_primary_selector.xml │ │ ├── m3_radiobutton_tint.xml │ │ ├── m3_white_overlay.xml │ │ ├── mtrl_switch_thumb_tint.xml │ │ ├── mtrl_switch_track_decoration_tint.xml │ │ ├── mtrl_switch_track_tint.xml │ │ ├── selectable_icon_tint.xml │ │ ├── tab_bar_icon.xml │ │ ├── text_on_surface_disableable.xml │ │ ├── text_segmented_button.xml │ │ ├── translate_icon.xml │ │ └── window_bg_alpha95.xml │ │ ├── drawable-anydpi-v24 │ │ └── ic_ntf_logo.xml │ │ ├── drawable-anydpi-v26 │ │ ├── ic_launcher_background.xml │ │ └── ic_launcher_foreground.xml │ │ ├── drawable-hdpi │ │ └── ic_ntf_logo.png │ │ ├── drawable-mdpi │ │ └── ic_ntf_logo.png │ │ ├── drawable-nodpi │ │ ├── poof.png │ │ ├── splash_art_layer0.webp │ │ ├── splash_art_layer1.webp │ │ ├── splash_art_layer2.webp │ │ ├── splash_art_layer3.webp │ │ └── splash_art_layer4.webp │ │ ├── drawable-v24 │ │ └── ic_launcher_monochrome.xml │ │ ├── drawable-xhdpi │ │ ├── confirm_email_art.webp │ │ └── ic_ntf_logo.png │ │ ├── drawable-xxhdpi │ │ └── ic_ntf_logo.png │ │ ├── drawable-xxxhdpi │ │ ├── confirm_email_art.webp │ │ └── ic_fluent_task_list_ltr_24_regular.xml │ │ ├── drawable │ │ ├── bg_alert.xml │ │ ├── bg_alert_button.xml │ │ ├── bg_audio_play_button.xml │ │ ├── bg_bottom_sheet.xml │ │ ├── bg_bottom_sheet_handle.xml │ │ ├── bg_button_borderless_rounded.xml │ │ ├── bg_button_m3_elevated.xml │ │ ├── bg_button_m3_filled.xml │ │ ├── bg_button_m3_filled_icon.xml │ │ ├── bg_button_m3_filled_outlined.xml │ │ ├── bg_button_m3_icon_label.xml │ │ ├── bg_button_m3_outlined.xml │ │ ├── bg_button_m3_outlined_white.xml │ │ ├── bg_button_m3_text.xml │ │ ├── bg_button_m3_text_circle.xml │ │ ├── bg_button_m3_text_white.xml │ │ ├── bg_button_m3_tonal.xml │ │ ├── bg_button_m3_tonal_circle.xml │ │ ├── bg_button_m3_tonal_circle_selector.xml │ │ ├── bg_button_m3_tonal_error.xml │ │ ├── bg_button_m3_tonal_icon.xml │ │ ├── bg_button_m3_tonal_outlined.xml │ │ ├── bg_button_m3_tonal_selector.xml │ │ ├── bg_button_new_posts.xml │ │ ├── bg_button_new_posts_outlined.xml │ │ ├── bg_compose_attachment.xml │ │ ├── bg_compose_button.xml │ │ ├── bg_custom_emoji.xml │ │ ├── bg_cw_edit.xml │ │ ├── bg_fab.xml │ │ ├── bg_filled_card.xml │ │ ├── bg_filter_chip.xml │ │ ├── bg_filter_warning.xml │ │ ├── bg_handle_help.xml │ │ ├── bg_icon_button.xml │ │ ├── bg_image_alt_overlay.xml │ │ ├── bg_image_alt_text_overlay.xml │ │ ├── bg_image_no_alt_overlay.xml │ │ ├── bg_m3_bottom_bar.xml │ │ ├── bg_m3_filled_text_field.xml │ │ ├── bg_m3_filled_text_field_error.xml │ │ ├── bg_m3_outlined_text_field.xml │ │ ├── bg_m3_outlined_text_field_error.xml │ │ ├── bg_m3_outlined_text_field_error_nopad.xml │ │ ├── bg_m3_outlined_text_field_nopad.xml │ │ ├── bg_m3_surface1.xml │ │ ├── bg_m3_surface2.xml │ │ ├── bg_m3_surface3.xml │ │ ├── bg_note_edit.xml │ │ ├── bg_onboarding_avatar.xml │ │ ├── bg_onboarding_panel.xml │ │ ├── bg_poll_option_clickable.xml │ │ ├── bg_poll_option_voted.xml │ │ ├── bg_popup.xml │ │ ├── bg_profile_follows_you.xml │ │ ├── bg_rect_12dp_ripple.xml │ │ ├── bg_rect_4dp_ripple.xml │ │ ├── bg_rect_ripple.xml │ │ ├── bg_reported_stamp.xml │ │ ├── bg_role_chip.xml │ │ ├── bg_round_ripple.xml │ │ ├── bg_search_button.xml │ │ ├── bg_search_field.xml │ │ ├── bg_segmented_button.xml │ │ ├── bg_settings_banner.xml │ │ ├── bg_spinner.xml │ │ ├── bg_spoiler.xml │ │ ├── bg_spoiler_overlay.xml │ │ ├── bg_tab_profile.xml │ │ ├── bg_tabbar.xml │ │ ├── bg_tabbar_badge.xml │ │ ├── bg_tabbar_tab.xml │ │ ├── bg_tabbar_tab_ripple.xml │ │ ├── bg_timeline_gap.xml │ │ ├── bg_timeline_gap_border.xml │ │ ├── bg_user_info.xml │ │ ├── bordered_rectangle_rounded_corners.xml │ │ ├── discover_ava_bg.xml │ │ ├── divider_inset_16dp.xml │ │ ├── divider_inset_16dp_start.xml │ │ ├── divider_vertical_outline.xml │ │ ├── divider_vertical_variant_1dp.xml │ │ ├── edit_avatar_overlay.xml │ │ ├── empty_8dp.xml │ │ ├── fg_link_card.xml │ │ ├── fg_onboarding_ava.xml │ │ ├── fg_segmented_button_container.xml │ │ ├── fg_user_info_ava.xml │ │ ├── filter_banner_stripe_texture.xml │ │ ├── ic_announcements_24_badged.xml │ │ ├── ic_arrow_drop_down_24px.xml │ │ ├── ic_arrow_right_24px.xml │ │ ├── ic_arrow_upward_24px.xml │ │ ├── ic_badge_24px.xml │ │ ├── ic_baseline_arrow_drop_down_18.xml │ │ ├── ic_baseline_check_18.xml │ │ ├── ic_bookmark_fill1_24px.xml │ │ ├── ic_boost.xml │ │ ├── ic_boost_24px.xml │ │ ├── ic_boost_disabled_24px.xml │ │ ├── ic_boost_fill_alt_24px.xml │ │ ├── ic_boost_private.xml │ │ ├── ic_bot.xml │ │ ├── ic_campaign_24px.xml │ │ ├── ic_compose_foreground.xml │ │ ├── ic_confirmation_number_24px.xml │ │ ├── ic_done_all_24px.xml │ │ ├── ic_feed_48px.xml │ │ ├── ic_fluent_accessibility_24_regular.xml │ │ ├── ic_fluent_add_24_filled.xml │ │ ├── ic_fluent_add_24_regular.xml │ │ ├── ic_fluent_add_circle_24_filled.xml │ │ ├── ic_fluent_add_circle_24_regular.xml │ │ ├── ic_fluent_add_square_24_regular.xml │ │ ├── ic_fluent_alert_24_filled.xml │ │ ├── ic_fluent_alert_24_regular.xml │ │ ├── ic_fluent_alert_24_selector.xml │ │ ├── ic_fluent_alert_24_selector_for_tabbar.xml │ │ ├── ic_fluent_alert_28_filled.xml │ │ ├── ic_fluent_alert_28_filled_badged.xml │ │ ├── ic_fluent_alert_28_regular.xml │ │ ├── ic_fluent_alert_28_regular_badged.xml │ │ ├── ic_fluent_alert_28_selector.xml │ │ ├── ic_fluent_alert_28_selector_badged.xml │ │ ├── ic_fluent_alert_arrow_up_24_regular.xml │ │ ├── ic_fluent_alert_badge_24_regular.xml │ │ ├── ic_fluent_alert_off_24_regular.xml │ │ ├── ic_fluent_alert_off_28_regular.xml │ │ ├── ic_fluent_alert_snooze_24_regular.xml │ │ ├── ic_fluent_alert_urgent_24_filled.xml │ │ ├── ic_fluent_animal_cat_24_regular.xml │ │ ├── ic_fluent_animal_dog_24_regular.xml │ │ ├── ic_fluent_animal_rabbit_24_regular.xml │ │ ├── ic_fluent_animal_turtle_24_regular.xml │ │ ├── ic_fluent_arrow_autofit_down_24_regular.xml │ │ ├── ic_fluent_arrow_circle_up_24_regular.xml │ │ ├── ic_fluent_arrow_clockwise_24_filled.xml │ │ ├── ic_fluent_arrow_clockwise_24_regular.xml │ │ ├── ic_fluent_arrow_clockwise_28_regular.xml │ │ ├── ic_fluent_arrow_counterclockwise_24_regular.xml │ │ ├── ic_fluent_arrow_download_24_regular.xml │ │ ├── ic_fluent_arrow_export_24_filled.xml │ │ ├── ic_fluent_arrow_forward_24_regular.xml │ │ ├── ic_fluent_arrow_import_24_filled.xml │ │ ├── ic_fluent_arrow_left_24_regular.xml │ │ ├── ic_fluent_arrow_maximize_vertical_24_regular.xml │ │ ├── ic_fluent_arrow_repeat_all_20_filled.xml │ │ ├── ic_fluent_arrow_repeat_all_20_regular.xml │ │ ├── ic_fluent_arrow_repeat_all_20sp_filled.xml │ │ ├── ic_fluent_arrow_repeat_all_24_filled.xml │ │ ├── ic_fluent_arrow_repeat_all_24_regular.xml │ │ ├── ic_fluent_arrow_repeat_all_24_very_filled.xml │ │ ├── ic_fluent_arrow_repeat_all_off_24_regular.xml │ │ ├── ic_fluent_arrow_repeat_all_off_24_regular_alpha38.xml │ │ ├── ic_fluent_arrow_reply_20_filled.xml │ │ ├── ic_fluent_arrow_reply_20sp_filled.xml │ │ ├── ic_fluent_arrow_reply_24_regular.xml │ │ ├── ic_fluent_arrow_reply_28_regular.xml │ │ ├── ic_fluent_arrow_sync_24_regular.xml │ │ ├── ic_fluent_arrow_trending_24_regular.xml │ │ ├── ic_fluent_arrow_up_24_regular.xml │ │ ├── ic_fluent_attach_24_regular.xml │ │ ├── ic_fluent_backpack_24_regular.xml │ │ ├── ic_fluent_backspace_24_regular.xml │ │ ├── ic_fluent_balloon_24_regular.xml │ │ ├── ic_fluent_beaker_24_regular.xml │ │ ├── ic_fluent_bed_24_regular.xml │ │ ├── ic_fluent_bin_recycle_24_regular.xml │ │ ├── ic_fluent_book_exclamation_mark_24_regular.xml │ │ ├── ic_fluent_book_open_24_regular.xml │ │ ├── ic_fluent_bookmark_24_filled.xml │ │ ├── ic_fluent_bookmark_24_regular.xml │ │ ├── ic_fluent_bookmark_24_selector.xml │ │ ├── ic_fluent_bookmark_28_regular.xml │ │ ├── ic_fluent_bookmark_multiple_24_regular.xml │ │ ├── ic_fluent_bot_16_filled.xml │ │ ├── ic_fluent_bot_20_filled.xml │ │ ├── ic_fluent_bot_20_regular.xml │ │ ├── ic_fluent_bot_24_filled.xml │ │ ├── ic_fluent_bot_24_regular.xml │ │ ├── ic_fluent_briefcase_24_regular.xml │ │ ├── ic_fluent_bug_24_regular.xml │ │ ├── ic_fluent_camera_24_regular.xml │ │ ├── ic_fluent_channel_add_24_regular.xml │ │ ├── ic_fluent_chat_24_filled.xml │ │ ├── ic_fluent_chat_24_regular.xml │ │ ├── ic_fluent_chat_multiple_24_regular.xml │ │ ├── ic_fluent_chat_multiple_24_regular_text.xml │ │ ├── ic_fluent_chat_multiple_24_selector_text.xml │ │ ├── ic_fluent_chat_settings_24_regular.xml │ │ ├── ic_fluent_chat_warning_24_filled.xml │ │ ├── ic_fluent_chat_warning_24_regular.xml │ │ ├── ic_fluent_chat_warning_24_selector.xml │ │ ├── ic_fluent_checkbox_checked_24_filled.xml │ │ ├── ic_fluent_checkbox_checked_24_regular.xml │ │ ├── ic_fluent_checkbox_unchecked_24_filled.xml │ │ ├── ic_fluent_checkbox_unchecked_24_regular.xml │ │ ├── ic_fluent_checkmark_20_filled.xml │ │ ├── ic_fluent_checkmark_24_filled.xml │ │ ├── ic_fluent_checkmark_24_regular.xml │ │ ├── ic_fluent_checkmark_circle_20_regular.xml │ │ ├── ic_fluent_checkmark_circle_24_filled.xml │ │ ├── ic_fluent_checkmark_circle_24_regular.xml │ │ ├── ic_fluent_checkmark_starburst_20_regular.xml │ │ ├── ic_fluent_checkmark_starburst_24_regular.xml │ │ ├── ic_fluent_chevron_double_down_20_filled.xml │ │ ├── ic_fluent_chevron_double_up_20_filled.xml │ │ ├── ic_fluent_chevron_down_16_filled.xml │ │ ├── ic_fluent_chevron_down_20_filled.xml │ │ ├── ic_fluent_chevron_down_24_filled.xml │ │ ├── ic_fluent_chevron_down_24_regular.xml │ │ ├── ic_fluent_chevron_up_down_16_regular.xml │ │ ├── ic_fluent_circle_24_regular.xml │ │ ├── ic_fluent_circle_small_20_filled.xml │ │ ├── ic_fluent_city_24_regular.xml │ │ ├── ic_fluent_clock_20_filled.xml │ │ ├── ic_fluent_clock_20_regular.xml │ │ ├── ic_fluent_clock_24_filled.xml │ │ ├── ic_fluent_clock_24_filled_enabled.xml │ │ ├── ic_fluent_clock_24_regular.xml │ │ ├── ic_fluent_clock_24_selector.xml │ │ ├── ic_fluent_cloud_24_regular.xml │ │ ├── ic_fluent_code_24_regular.xml │ │ ├── ic_fluent_color_24_regular.xml │ │ ├── ic_fluent_comment_mention_24_regular.xml │ │ ├── ic_fluent_communication_24_regular.xml │ │ ├── ic_fluent_compose_24_filled.xml │ │ ├── ic_fluent_compose_24_regular.xml │ │ ├── ic_fluent_compose_28_regular.xml │ │ ├── ic_fluent_convert_range_24_regular.xml │ │ ├── ic_fluent_custom_alert_latest_24_regular.xml │ │ ├── ic_fluent_dark_theme_24_regular.xml │ │ ├── ic_fluent_delete_20_filled.xml │ │ ├── ic_fluent_delete_20_regular.xml │ │ ├── ic_fluent_delete_24_regular.xml │ │ ├── ic_fluent_delete_28_regular.xml │ │ ├── ic_fluent_dismiss_16_filled.xml │ │ ├── ic_fluent_dismiss_20_filled.xml │ │ ├── ic_fluent_dismiss_24_filled.xml │ │ ├── ic_fluent_dismiss_24_regular.xml │ │ ├── ic_fluent_dismiss_circle_24_filled.xml │ │ ├── ic_fluent_doctor_24_regular.xml │ │ ├── ic_fluent_document_24_regular.xml │ │ ├── ic_fluent_double_tap_swipe_right_24_regular.xml │ │ ├── ic_fluent_double_tap_swipe_up_24_regular.xml │ │ ├── ic_fluent_drafts_20_filled.xml │ │ ├── ic_fluent_drafts_20_regular.xml │ │ ├── ic_fluent_drafts_24_filled.xml │ │ ├── ic_fluent_drafts_24_regular.xml │ │ ├── ic_fluent_drafts_24_selector.xml │ │ ├── ic_fluent_drink_coffee_24_regular.xml │ │ ├── ic_fluent_earth_16_regular.xml │ │ ├── ic_fluent_earth_20_regular.xml │ │ ├── ic_fluent_earth_20sp_regular.xml │ │ ├── ic_fluent_earth_24_filled.xml │ │ ├── ic_fluent_earth_24_regular.xml │ │ ├── ic_fluent_edit_24_filled.xml │ │ ├── ic_fluent_edit_24_regular.xml │ │ ├── ic_fluent_edit_28_filled.xml │ │ ├── ic_fluent_emoji_20_regular.xml │ │ ├── ic_fluent_emoji_24_filled.xml │ │ ├── ic_fluent_emoji_24_regular.xml │ │ ├── ic_fluent_emoji_24_selector.xml │ │ ├── ic_fluent_emoji_laugh_24_regular.xml │ │ ├── ic_fluent_error_circle_24_regular.xml │ │ ├── ic_fluent_eye_16_regular.xml │ │ ├── ic_fluent_eye_20_regular.xml │ │ ├── ic_fluent_eye_24_filled.xml │ │ ├── ic_fluent_eye_24_regular.xml │ │ ├── ic_fluent_eye_28_regular.xml │ │ ├── ic_fluent_eye_off_24_filled.xml │ │ ├── ic_fluent_eye_off_24_regular.xml │ │ ├── ic_fluent_eye_tracking_off_24_filled.xml │ │ ├── ic_fluent_eye_tracking_on_24_regular.xml │ │ ├── ic_fluent_filter_24_regular.xml │ │ ├── ic_fluent_fire_24_regular.xml │ │ ├── ic_fluent_flag_16_filled.xml │ │ ├── ic_fluent_flag_16_regular.xml │ │ ├── ic_fluent_flag_18_selector.xml │ │ ├── ic_fluent_flag_24_filled.xml │ │ ├── ic_fluent_flag_24_regular.xml │ │ ├── ic_fluent_flag_24_selector.xml │ │ ├── ic_fluent_folder_open_24_regular.xml │ │ ├── ic_fluent_food_pizza_24_regular.xml │ │ ├── ic_fluent_games_24_regular.xml │ │ ├── ic_fluent_gauge_24_regular.xml │ │ ├── ic_fluent_gavel_24_regular.xml │ │ ├── ic_fluent_gif_24_regular.xml │ │ ├── ic_fluent_globe_20_regular.xml │ │ ├── ic_fluent_globe_24_regular.xml │ │ ├── ic_fluent_hat_graduation_24_regular.xml │ │ ├── ic_fluent_headphones_sound_wave_24_regular.xml │ │ ├── ic_fluent_heart_20_regular.xml │ │ ├── ic_fluent_heart_24_filled.xml │ │ ├── ic_fluent_heart_24_regular.xml │ │ ├── ic_fluent_heart_24_selector.xml │ │ ├── ic_fluent_heart_28_regular.xml │ │ ├── ic_fluent_heart_pulse_24_regular.xml │ │ ├── ic_fluent_history_20_regular.xml │ │ ├── ic_fluent_history_24_filled.xml │ │ ├── ic_fluent_history_24_regular.xml │ │ ├── ic_fluent_home_24_filled.xml │ │ ├── ic_fluent_home_24_regular.xml │ │ ├── ic_fluent_home_24_selector.xml │ │ ├── ic_fluent_home_28_filled.xml │ │ ├── ic_fluent_home_28_regular.xml │ │ ├── ic_fluent_home_28_selector.xml │ │ ├── ic_fluent_image_24_regular.xml │ │ ├── ic_fluent_image_add_24_regular.xml │ │ ├── ic_fluent_image_alt_text_24_regular.xml │ │ ├── ic_fluent_image_edit_24_regular.xml │ │ ├── ic_fluent_image_multiple_24_regular.xml │ │ ├── ic_fluent_important_16_filled.xml │ │ ├── ic_fluent_important_20_filled.xml │ │ ├── ic_fluent_important_24_filled.xml │ │ ├── ic_fluent_important_24_regular.xml │ │ ├── ic_fluent_info_24_regular.xml │ │ ├── ic_fluent_keyboard_dock_24_regular.xml │ │ ├── ic_fluent_leaf_three_24_regular.xml │ │ ├── ic_fluent_lightbulb_24_regular.xml │ │ ├── ic_fluent_link_24_regular.xml │ │ ├── ic_fluent_list_24_regular.xml │ │ ├── ic_fluent_list_28_regular.xml │ │ ├── ic_fluent_lists_28_selector.xml │ │ ├── ic_fluent_local_language_16_regular.xml │ │ ├── ic_fluent_local_language_24_regular.xml │ │ ├── ic_fluent_location_24_regular.xml │ │ ├── ic_fluent_lock_closed_16_filled.xml │ │ ├── ic_fluent_lock_closed_20_filled.xml │ │ ├── ic_fluent_lock_closed_20_regular.xml │ │ ├── ic_fluent_lock_closed_20sp_filled.xml │ │ ├── ic_fluent_lock_closed_24_filled.xml │ │ ├── ic_fluent_lock_closed_24_regular.xml │ │ ├── ic_fluent_lock_open_16_regular.xml │ │ ├── ic_fluent_lock_open_20_regular.xml │ │ ├── ic_fluent_lock_open_20sp_regular.xml │ │ ├── ic_fluent_lock_open_24_regular.xml │ │ ├── ic_fluent_mail_24_regular.xml │ │ ├── ic_fluent_mail_inbox_dismiss_24_regular.xml │ │ ├── ic_fluent_mail_inbox_dismiss_28_regular.xml │ │ ├── ic_fluent_map_24_regular.xml │ │ ├── ic_fluent_math_formula_24_regular.xml │ │ ├── ic_fluent_megaphone_24_regular.xml │ │ ├── ic_fluent_megaphone_loud_24_regular.xml │ │ ├── ic_fluent_mention_16_regular.xml │ │ ├── ic_fluent_mention_20_regular.xml │ │ ├── ic_fluent_mention_24_filled.xml │ │ ├── ic_fluent_mention_24_regular.xml │ │ ├── ic_fluent_mic_24_regular.xml │ │ ├── ic_fluent_microscope_24_regular.xml │ │ ├── ic_fluent_midi_24_regular.xml │ │ ├── ic_fluent_more_horizontal_24_regular.xml │ │ ├── ic_fluent_more_vertical_20_filled.xml │ │ ├── ic_fluent_more_vertical_24_regular.xml │ │ ├── ic_fluent_movies_and_tv_24_regular.xml │ │ ├── ic_fluent_music_note_2_24_regular.xml │ │ ├── ic_fluent_news_24_regular.xml │ │ ├── ic_fluent_notepad_20_regular.xml │ │ ├── ic_fluent_notepad_24_regular.xml │ │ ├── ic_fluent_number_row_24_regular.xml │ │ ├── ic_fluent_number_symbol_20_filled.xml │ │ ├── ic_fluent_number_symbol_20sp_filled.xml │ │ ├── ic_fluent_number_symbol_24_regular.xml │ │ ├── ic_fluent_open_24_regular.xml │ │ ├── ic_fluent_paint_brush_24_regular.xml │ │ ├── ic_fluent_password_24_regular.xml │ │ ├── ic_fluent_pause_24_filled.xml │ │ ├── ic_fluent_pause_48_regular.xml │ │ ├── ic_fluent_pause_circle_24_filled.xml │ │ ├── ic_fluent_people_20_regular.xml │ │ ├── ic_fluent_people_24_regular.xml │ │ ├── ic_fluent_people_28_regular.xml │ │ ├── ic_fluent_people_add_24_regular.xml │ │ ├── ic_fluent_people_add_28_regular.xml │ │ ├── ic_fluent_people_checkmark_20_regular.xml │ │ ├── ic_fluent_people_checkmark_24_regular.xml │ │ ├── ic_fluent_people_community_16_regular.xml │ │ ├── ic_fluent_people_community_20_regular.xml │ │ ├── ic_fluent_people_community_24_filled.xml │ │ ├── ic_fluent_people_community_24_regular.xml │ │ ├── ic_fluent_people_list_24_filled.xml │ │ ├── ic_fluent_people_list_24_regular.xml │ │ ├── ic_fluent_people_list_28_regular.xml │ │ ├── ic_fluent_person_24_regular.xml │ │ ├── ic_fluent_person_28_regular.xml │ │ ├── ic_fluent_person_add_24_filled.xml │ │ ├── ic_fluent_person_add_24_regular.xml │ │ ├── ic_fluent_person_add_28_regular.xml │ │ ├── ic_fluent_person_arrow_right_24_filled.xml │ │ ├── ic_fluent_person_available_24_filled.xml │ │ ├── ic_fluent_person_available_24_regular.xml │ │ ├── ic_fluent_person_delete_20_filled.xml │ │ ├── ic_fluent_person_delete_24_filled.xml │ │ ├── ic_fluent_person_delete_24_regular.xml │ │ ├── ic_fluent_person_delete_note_24_regular.xml │ │ ├── ic_fluent_person_note_24_regular.xml │ │ ├── ic_fluent_person_prohibited_20_filled.xml │ │ ├── ic_fluent_person_prohibited_24_regular.xml │ │ ├── ic_fluent_person_prohibited_28_regular.xml │ │ ├── ic_fluent_person_swap_24_regular.xml │ │ ├── ic_fluent_phone_update_24_regular.xml │ │ ├── ic_fluent_phone_vibrate_24_filled.xml │ │ ├── ic_fluent_phone_vibrate_24_regular.xml │ │ ├── ic_fluent_pi_24_regular.xml │ │ ├── ic_fluent_pill_24_regular.xml │ │ ├── ic_fluent_pin_24_filled.xml │ │ ├── ic_fluent_pin_24_regular.xml │ │ ├── ic_fluent_pin_28_regular.xml │ │ ├── ic_fluent_pin_off_24_regular.xml │ │ ├── ic_fluent_pin_off_28_regular.xml │ │ ├── ic_fluent_planet_16_regular.xml │ │ ├── ic_fluent_planet_20_regular.xml │ │ ├── ic_fluent_planet_24_regular.xml │ │ ├── ic_fluent_play_24_filled.xml │ │ ├── ic_fluent_play_48_regular.xml │ │ ├── ic_fluent_play_circle_24_filled.xml │ │ ├── ic_fluent_play_circle_hint_24_regular.xml │ │ ├── ic_fluent_poll_24_filled.xml │ │ ├── ic_fluent_poll_24_regular.xml │ │ ├── ic_fluent_poll_24_selector.xml │ │ ├── ic_fluent_premium_24_regular.xml │ │ ├── ic_fluent_question_circle_24_filled.xml │ │ ├── ic_fluent_question_circle_24_regular.xml │ │ ├── ic_fluent_question_circle_24_selector.xml │ │ ├── ic_fluent_radio_button_24_filled.xml │ │ ├── ic_fluent_radio_button_24_regular.xml │ │ ├── ic_fluent_radio_button_24_selector.xml │ │ ├── ic_fluent_re_order_24_regular.xml │ │ ├── ic_fluent_re_order_dots_vertical_20_filled.xml │ │ ├── ic_fluent_re_order_dots_vertical_24_regular.xml │ │ ├── ic_fluent_receipt_sparkles_24_regular.xml │ │ ├── ic_fluent_rss_24_regular.xml │ │ ├── ic_fluent_save_24_filled.xml │ │ ├── ic_fluent_save_24_regular.xml │ │ ├── ic_fluent_save_24_selector.xml │ │ ├── ic_fluent_scan_24_regular.xml │ │ ├── ic_fluent_scan_text_24_regular.xml │ │ ├── ic_fluent_search_20_filled.xml │ │ ├── ic_fluent_search_20_regular.xml │ │ ├── ic_fluent_search_24_filled.xml │ │ ├── ic_fluent_search_24_regular.xml │ │ ├── ic_fluent_search_24_selector.xml │ │ ├── ic_fluent_search_28_filled.xml │ │ ├── ic_fluent_search_28_regular.xml │ │ ├── ic_fluent_search_28_selector.xml │ │ ├── ic_fluent_send_24_regular.xml │ │ ├── ic_fluent_server_24_regular.xml │ │ ├── ic_fluent_settings_24_regular.xml │ │ ├── ic_fluent_shape_intersect_20_filled.xml │ │ ├── ic_fluent_shape_intersect_20_regular.xml │ │ ├── ic_fluent_shape_subtract_20_filled.xml │ │ ├── ic_fluent_shape_union_20_filled.xml │ │ ├── ic_fluent_shape_union_20_regular.xml │ │ ├── ic_fluent_share_24_regular.xml │ │ ├── ic_fluent_share_28_regular.xml │ │ ├── ic_fluent_shield_24_regular.xml │ │ ├── ic_fluent_shield_28_regular.xml │ │ ├── ic_fluent_shield_prohibited_24_regular.xml │ │ ├── ic_fluent_shield_prohibited_28_regular.xml │ │ ├── ic_fluent_sign_out_24_regular.xml │ │ ├── ic_fluent_speaker_0_20_filled.xml │ │ ├── ic_fluent_speaker_0_24_regular.xml │ │ ├── ic_fluent_speaker_0_28_regular.xml │ │ ├── ic_fluent_speaker_2_24_regular.xml │ │ ├── ic_fluent_speaker_2_28_regular.xml │ │ ├── ic_fluent_speaker_mute_24_regular.xml │ │ ├── ic_fluent_speaker_mute_28_regular.xml │ │ ├── ic_fluent_speaker_off_24_regular.xml │ │ ├── ic_fluent_speaker_off_28_regular.xml │ │ ├── ic_fluent_sport_24_regular.xml │ │ ├── ic_fluent_star_20_regular.xml │ │ ├── ic_fluent_star_24_filled.xml │ │ ├── ic_fluent_star_24_regular.xml │ │ ├── ic_fluent_star_24_selector.xml │ │ ├── ic_fluent_star_28_regular.xml │ │ ├── ic_fluent_star_emphasis_24_regular.xml │ │ ├── ic_fluent_star_off_24_regular.xml │ │ ├── ic_fluent_stethoscope_24_regular.xml │ │ ├── ic_fluent_subtract_circle_24_filled.xml │ │ ├── ic_fluent_swipe_right_24_regular.xml │ │ ├── ic_fluent_tag_24_regular.xml │ │ ├── ic_fluent_task_list_ltr_24_regular.xml │ │ ├── ic_fluent_text_bold_24_regular.xml │ │ ├── ic_fluent_text_edit_style_24_filled.xml │ │ ├── ic_fluent_text_edit_style_24_regular.xml │ │ ├── ic_fluent_text_edit_style_24_selector.xml │ │ ├── ic_fluent_text_more_24_regular.xml │ │ ├── ic_fluent_text_underline_24_regular.xml │ │ ├── ic_fluent_thumb_like_dislike_24_regular.xml │ │ ├── ic_fluent_timeline_24_regular.xml │ │ ├── ic_fluent_translate_24_filled.xml │ │ ├── ic_fluent_translate_24_regular.xml │ │ ├── ic_fluent_umbrella_24_regular.xml │ │ ├── ic_fluent_vehicle_bicycle_24_regular.xml │ │ ├── ic_fluent_vehicle_subway_24_regular.xml │ │ ├── ic_fluent_video_clip_24_regular.xml │ │ ├── ic_fluent_warning_24_filled.xml │ │ ├── ic_fluent_warning_24_regular.xml │ │ ├── ic_fluent_water_24_regular.xml │ │ ├── ic_fluent_weather_moon_24_regular.xml │ │ ├── ic_fluent_weather_rain_24_regular.xml │ │ ├── ic_fluent_weather_rain_showers_day_24_regular.xml │ │ ├── ic_fluent_weather_snowflake_24_regular.xml │ │ ├── ic_fluent_weather_sunny_24_regular.xml │ │ ├── ic_fluent_weather_sunny_low_24_regular.xml │ │ ├── ic_fluent_weather_thunderstorm_24_regular.xml │ │ ├── ic_fluent_wrench_24_regular.xml │ │ ├── ic_fluent_wrench_screwdriver_24_regular.xml │ │ ├── ic_follow_requests_24_badged.xml │ │ ├── ic_forward_10_48px.xml │ │ ├── ic_gnome_logo.xml │ │ ├── ic_help_24px.xml │ │ ├── ic_info_fill1_24px.xml │ │ ├── ic_launcher_background.xml │ │ ├── ic_launcher_foreground.xml │ │ ├── ic_launcher_monochrome.xml │ │ ├── ic_list_alt_24px.xml │ │ ├── ic_m3_cancel.xml │ │ ├── ic_more_vert_24px.xml │ │ ├── ic_poll_checkbox_filled_selector.xml │ │ ├── ic_poll_checkbox_regular_selector.xml │ │ ├── ic_poll_option_button.xml │ │ ├── ic_private_boost_24px.xml │ │ ├── ic_private_boost_fill_alt_24px.xml │ │ ├── ic_replay_5_48px.xml │ │ ├── ic_settings_24_badged.xml │ │ ├── ic_switch_account_24px.xml │ │ ├── ic_translate.xml │ │ ├── ic_waving_hand_24px.xml │ │ ├── image_placeholder.xml │ │ ├── logo.xml │ │ ├── m3_progress.xml │ │ ├── mtrl_switch_thumb.xml │ │ ├── mtrl_switch_thumb_checked.xml │ │ ├── mtrl_switch_thumb_checked_pressed.xml │ │ ├── mtrl_switch_thumb_checked_unchecked.xml │ │ ├── mtrl_switch_thumb_pressed.xml │ │ ├── mtrl_switch_thumb_pressed_checked.xml │ │ ├── mtrl_switch_thumb_pressed_unchecked.xml │ │ ├── mtrl_switch_thumb_unchecked.xml │ │ ├── mtrl_switch_thumb_unchecked_checked.xml │ │ ├── mtrl_switch_thumb_unchecked_pressed.xml │ │ ├── mtrl_switch_track.xml │ │ ├── mtrl_switch_track_decoration.xml │ │ ├── mtrl_tabs_default_indicator.xml │ │ ├── poll_multiple.xml │ │ ├── poll_single.xml │ │ ├── rect_12dp.xml │ │ ├── rect_4dp.xml │ │ ├── round_rect.xml │ │ ├── seekbar_video_player.xml │ │ ├── seekbar_video_player_thumb.xml │ │ ├── tab_indicator_m3.xml │ │ ├── white_circle.xml │ │ └── window_bg_alpha95.xml │ │ ├── interpolator-v21 │ │ ├── m3_sys_motion_easing_emphasized.xml │ │ ├── m3_sys_motion_easing_emphasized_accelerate.xml │ │ ├── m3_sys_motion_easing_emphasized_decelerate.xml │ │ ├── m3_sys_motion_easing_standard.xml │ │ ├── m3_sys_motion_easing_standard_accelerate.xml │ │ └── m3_sys_motion_easing_standard_decelerate.xml │ │ ├── layout │ │ ├── alert_invite_link.xml │ │ ├── alert_title_with_help.xml │ │ ├── alert_title_with_supporting_text.xml │ │ ├── alt_text_badge.xml │ │ ├── button_bar_one.xml │ │ ├── compose_action.xml │ │ ├── compose_fab.xml │ │ ├── compose_media_thumb.xml │ │ ├── compose_poll_option.xml │ │ ├── design_layout_tab_icon.xml │ │ ├── design_layout_tab_text.xml │ │ ├── discover_info_banner.xml │ │ ├── display_item_account_card.xml │ │ ├── display_item_audio.xml │ │ ├── display_item_emoji_reactions.xml │ │ ├── display_item_error.xml │ │ ├── display_item_extended_footer.xml │ │ ├── display_item_file.xml │ │ ├── display_item_filter_warning.xml │ │ ├── display_item_footer.xml │ │ ├── display_item_gap.xml │ │ ├── display_item_gifv.xml │ │ ├── display_item_header.xml │ │ ├── display_item_header_checkable.xml │ │ ├── display_item_link_card.xml │ │ ├── display_item_link_card_compact.xml │ │ ├── display_item_notification_header.xml │ │ ├── display_item_photo.xml │ │ ├── display_item_poll_footer.xml │ │ ├── display_item_poll_option.xml │ │ ├── display_item_reblog_or_reply_line.xml │ │ ├── display_item_section_header.xml │ │ ├── display_item_spoiler.xml │ │ ├── display_item_text.xml │ │ ├── display_item_video.xml │ │ ├── display_item_warning.xml │ │ ├── edit_timeline.xml │ │ ├── empty_with_arrow.xml │ │ ├── floating_hint_edit_text.xml │ │ ├── floating_hint_spinner.xml │ │ ├── footer_text_translation.xml │ │ ├── fragment_compose.xml │ │ ├── fragment_content_report_posts.xml │ │ ├── fragment_discover.xml │ │ ├── fragment_image_description.xml │ │ ├── fragment_instance_info.xml │ │ ├── fragment_lists.xml │ │ ├── fragment_login.xml │ │ ├── fragment_notifications.xml │ │ ├── fragment_onboarding_activation.xml │ │ ├── fragment_onboarding_common.xml │ │ ├── fragment_onboarding_follow_suggestions.xml │ │ ├── fragment_onboarding_profile_setup.xml │ │ ├── fragment_onboarding_rules.xml │ │ ├── fragment_onboarding_signup.xml │ │ ├── fragment_profile.xml │ │ ├── fragment_profile_about.xml │ │ ├── fragment_report_choice.xml │ │ ├── fragment_report_comment.xml │ │ ├── fragment_report_done.xml │ │ ├── fragment_report_posts.xml │ │ ├── fragment_search.xml │ │ ├── fragment_settings_server.xml │ │ ├── fragment_splash.xml │ │ ├── fragment_thread.xml │ │ ├── fragment_timeline.xml │ │ ├── fragment_welcome_custom.xml │ │ ├── header_hashtag_timeline.xml │ │ ├── header_onboarding_login.xml │ │ ├── header_trending_link_timeline.xml │ │ ├── header_welcome_custom.xml │ │ ├── home_toolbar.xml │ │ ├── intro_bottom_sheet.xml │ │ ├── item_account_list.xml │ │ ├── item_account_list_onboarding.xml │ │ ├── item_account_switcher.xml │ │ ├── item_alert_single_choice_1line.xml │ │ ├── item_alert_single_choice_2lines.xml │ │ ├── item_alert_single_choice_2lines_but_different.xml │ │ ├── item_autocomplete_hashtag.xml │ │ ├── item_autocomplete_user.xml │ │ ├── item_boost_menu.xml │ │ ├── item_discover_account.xml │ │ ├── item_dropdown_menu.xml │ │ ├── item_emoji_reaction.xml │ │ ├── item_emoji_section.xml │ │ ├── item_external_share_heading.xml │ │ ├── item_generic_list.xml │ │ ├── item_generic_list_checkable.xml │ │ ├── item_generic_list_content.xml │ │ ├── item_generic_list_options.xml │ │ ├── item_instance_catalog.xml │ │ ├── item_instance_custom.xml │ │ ├── item_instance_login.xml │ │ ├── item_list_header.xml │ │ ├── item_list_header_simple.xml │ │ ├── item_mute_duration.xml │ │ ├── item_other_numbered_rule.xml │ │ ├── item_privacy_policy_link.xml │ │ ├── item_profile_about.xml │ │ ├── item_profile_about_add_row.xml │ │ ├── item_report_choice.xml │ │ ├── item_server_block.xml │ │ ├── item_server_rule.xml │ │ ├── item_settings_banner.xml │ │ ├── item_settings_button.xml │ │ ├── item_settings_category.xml │ │ ├── item_spinner.xml │ │ ├── item_text.xml │ │ ├── item_text_with_icon.xml │ │ ├── item_trending_hashtag.xml │ │ ├── item_trending_link.xml │ │ ├── item_trending_link_card.xml │ │ ├── item_user_row.xml │ │ ├── list_timeline_editor.xml │ │ ├── load_more_with_end_mark.xml │ │ ├── mute_user_dialog.xml │ │ ├── onboarding_profile_field.xml │ │ ├── overlay_image_alt_text.xml │ │ ├── overlay_image_sensitive.xml │ │ ├── photo_viewer_ui.xml │ │ ├── place_holder_display_item.xml │ │ ├── poll_style.xml │ │ ├── popup_menu_empty.xml │ │ ├── progress_bar.xml │ │ ├── recycler_fragment_no_refresh.xml │ │ ├── recycler_fragment_with_fab.xml │ │ ├── sheet_alt_text.xml │ │ ├── sheet_decentralization_info.xml │ │ ├── sheet_photo_viewer_info.xml │ │ ├── sheet_pre_reply.xml │ │ ├── sheet_restrict_account.xml │ │ ├── tab_bar.xml │ │ └── toolbar_fragment_with_progressbar.xml │ │ ├── menu │ │ ├── attach.xml │ │ ├── color_palettes.xml │ │ ├── compose.xml │ │ ├── compose_edit.xml │ │ ├── compose_image_description.xml │ │ ├── compose_more.xml │ │ ├── compose_visibility.xml │ │ ├── custom_local_timelines.xml │ │ ├── hashtag_timeline.xml │ │ ├── home.xml │ │ ├── home_overflow.xml │ │ ├── instance_info.xml │ │ ├── list.xml │ │ ├── list_reply_policies.xml │ │ ├── menu_list.xml │ │ ├── mute_duration.xml │ │ ├── notifications.xml │ │ ├── post.xml │ │ ├── profile.xml │ │ ├── profile_own.xml │ │ ├── reply_visibility.xml │ │ ├── selectable_list.xml │ │ ├── settings_auto_reveal_spoiler.xml │ │ ├── settings_edit_filter.xml │ │ ├── settings_filter_words_action_mode.xml │ │ ├── settings_prefix_reply_mode.xml │ │ ├── standalone_list_timeline.xml │ │ └── trending_links_timeline.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ ├── ic_launcher_round.xml │ │ └── ic_shortcut_compose.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── values-ar-rDZ │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-ar-rSA │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-ar │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-ast │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-be-rBY │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-bn-rBD │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-bn │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-bs-rBA │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-ca-rES │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-cs-rCZ │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-cy │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-da-rDK │ │ └── strings.xml │ │ ├── values-de-rDE │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-el-rGR │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-eo │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-es-rES │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-eu-rES │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-fa-rIR │ │ └── strings.xml │ │ ├── values-fa │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-fi-rFI │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-fil-rPH │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-fr-rFR │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-ga-rIE │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-gd-rGB │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-gl-rES │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-hi-rIN │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-hr-rHR │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-hu-rHU │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-hy-rAM │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-ia │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-ig-rNG │ │ └── strings.xml │ │ ├── values-in-rID │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-is-rIS │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-it-rIT │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-iw-rIL │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-ja-rJP │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-ka-rGE │ │ └── strings.xml │ │ ├── values-kab │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-ko-rKR │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-lt-rLT │ │ └── strings.xml │ │ ├── values-lt │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-my-rMM │ │ └── strings.xml │ │ ├── values-my │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-night │ │ ├── colors.xml │ │ ├── palettes.xml │ │ └── styles.xml │ │ ├── values-nl-rNL │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-nn │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-no-rNO │ │ └── strings.xml │ │ ├── values-notnight │ │ └── palettes.xml │ │ ├── values-oc-rFR │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-pl-rPL │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-pt-rBR │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-pt-rPT │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-pt │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-ro-rRO │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-ru-rRU │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-si-rLK │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-sl-rSI │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-sv-rSE │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-th-rTH │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-tr-rTR │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-uk-rUA │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-ur-rIN │ │ └── strings.xml │ │ ├── values-v24 │ │ └── styles.xml │ │ ├── values-v27 │ │ └── colors.xml │ │ ├── values-v31 │ │ └── colors.xml │ │ ├── values-vi-rVN │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-zh-rCN │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values-zh-rTW │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ └── strings_sk.xml │ │ ├── values │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── ids.xml │ │ ├── mtrl_switch.xml │ │ ├── nachos_attrs.xml │ │ ├── nachos_colors.xml │ │ ├── nachos_dimens.xml │ │ ├── nachos_strings.xml │ │ ├── nachos_styles.xml │ │ ├── palettes.xml │ │ ├── signup_params.xml │ │ ├── strings.xml │ │ ├── strings_mo.xml │ │ ├── strings_sk.xml │ │ ├── styles.xml │ │ ├── tablayout_attrs.xml │ │ ├── tablayout_dimens.xml │ │ ├── tablayout_integers.xml │ │ ├── tablayout_styles.xml │ │ ├── tokens.xml │ │ └── urls.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ ├── fileprovider_paths.xml │ │ └── locales_config.xml │ └── nightly │ ├── AndroidManifest.xml │ ├── ic_launcher-playstore.png │ ├── java │ └── org │ │ └── joinmastodon │ │ └── android │ │ └── updater │ │ ├── GithubSelfUpdaterImpl.java │ │ └── SelfUpdateContentProvider.java │ └── res │ ├── drawable │ └── ic_launcher_foreground_nightly.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ └── values │ └── ic_launcher_background.xml ├── metadata ├── ar-DZ │ └── title.txt ├── ar │ └── title.txt ├── ast │ └── title.txt ├── bn │ ├── changelogs │ │ └── 78.txt │ ├── short_description.txt │ └── title.txt ├── ca │ ├── changelogs │ │ ├── 67.txt │ │ ├── 74.txt │ │ ├── 76.txt │ │ ├── 77.txt │ │ ├── 78.txt │ │ ├── 79.txt │ │ ├── 83.txt │ │ └── 94.txt │ ├── short_description.txt │ └── title.txt ├── cy │ └── changelogs │ │ └── 74.txt ├── de-DE │ ├── changelogs │ │ ├── 101.txt │ │ ├── 102.txt │ │ ├── 103.txt │ │ ├── 104.txt │ │ ├── 105.txt │ │ ├── 106.txt │ │ ├── 107.txt │ │ ├── 108.txt │ │ ├── 110.txt │ │ ├── 55.txt │ │ ├── 56.txt │ │ ├── 59.txt │ │ ├── 61.txt │ │ ├── 62.txt │ │ ├── 63.txt │ │ ├── 65.txt │ │ ├── 67.txt │ │ ├── 68.txt │ │ ├── 73.txt │ │ ├── 74.txt │ │ ├── 76.txt │ │ ├── 77.txt │ │ ├── 78.txt │ │ ├── 79.txt │ │ ├── 80.txt │ │ ├── 81.txt │ │ ├── 82.txt │ │ ├── 83.txt │ │ ├── 84.txt │ │ ├── 85.txt │ │ ├── 86.txt │ │ ├── 87.txt │ │ ├── 88.txt │ │ ├── 89.txt │ │ ├── 91.txt │ │ ├── 92.txt │ │ ├── 94.txt │ │ ├── 95.txt │ │ ├── 96.txt │ │ ├── 97.txt │ │ ├── 98.txt │ │ └── 99.txt │ ├── full_description.txt │ ├── images │ │ └── phoneScreenshots │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ └── 6.jpg │ ├── short_description.txt │ └── title.txt ├── el-GR │ ├── changelogs │ │ ├── 101.txt │ │ ├── 102.txt │ │ ├── 103.txt │ │ ├── 104.txt │ │ ├── 105.txt │ │ ├── 110.txt │ │ ├── 59.txt │ │ ├── 61.txt │ │ ├── 62.txt │ │ ├── 63.txt │ │ ├── 65.txt │ │ ├── 67.txt │ │ ├── 73.txt │ │ ├── 74.txt │ │ ├── 76.txt │ │ ├── 77.txt │ │ ├── 78.txt │ │ └── 79.txt │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── en-US │ ├── changelogs │ │ ├── 93 │ │ ├── 101.txt │ │ ├── 102.txt │ │ ├── 103.txt │ │ ├── 104.txt │ │ ├── 105.txt │ │ ├── 106.txt │ │ ├── 107.txt │ │ ├── 108.txt │ │ ├── 109.txt │ │ ├── 110.txt │ │ ├── 59.txt │ │ ├── 61.txt │ │ ├── 62.txt │ │ ├── 63.txt │ │ ├── 65.txt │ │ ├── 67.txt │ │ ├── 73.txt │ │ ├── 74.txt │ │ ├── 76.txt │ │ ├── 77.txt │ │ ├── 78.txt │ │ ├── 79.txt │ │ ├── 80.txt │ │ ├── 81.txt │ │ ├── 82.txt │ │ ├── 83.txt │ │ ├── 84.txt │ │ ├── 85.txt │ │ ├── 86.txt │ │ ├── 87.txt │ │ ├── 88.txt │ │ ├── 89.txt │ │ ├── 90,txt │ │ ├── 91.txt │ │ ├── 92.txt │ │ ├── 94.txt │ │ ├── 95.txt │ │ ├── 96.txt │ │ ├── 97.txt │ │ ├── 98.txt │ │ └── 99.txt │ ├── full_description.txt │ ├── images │ │ ├── icon.png │ │ └── phoneScreenshots │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ └── 6.jpg │ ├── short_description.txt │ └── title.txt ├── eo │ ├── changelogs │ │ ├── 101.txt │ │ ├── 102.txt │ │ ├── 103.txt │ │ ├── 104.txt │ │ ├── 105.txt │ │ ├── 106.txt │ │ ├── 107.txt │ │ ├── 59.txt │ │ ├── 61.txt │ │ ├── 62.txt │ │ ├── 63.txt │ │ ├── 78.txt │ │ ├── 79.txt │ │ ├── 80.txt │ │ ├── 97.txt │ │ ├── 98.txt │ │ └── 99.txt │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── es-ES │ ├── changelogs │ │ ├── 59.txt │ │ ├── 61.txt │ │ ├── 62.txt │ │ ├── 63.txt │ │ ├── 65.txt │ │ ├── 67.txt │ │ ├── 73.txt │ │ ├── 74.txt │ │ ├── 76.txt │ │ ├── 77.txt │ │ ├── 78.txt │ │ ├── 79.txt │ │ ├── 80.txt │ │ ├── 81.txt │ │ ├── 82.txt │ │ ├── 83.txt │ │ ├── 84.txt │ │ ├── 85.txt │ │ ├── 86.txt │ │ ├── 87.txt │ │ ├── 88.txt │ │ ├── 89.txt │ │ ├── 91.txt │ │ ├── 92.txt │ │ ├── 94.txt │ │ ├── 95.txt │ │ ├── 96.txt │ │ ├── 97.txt │ │ ├── 98.txt │ │ └── 99.txt │ ├── full_description.txt │ ├── images │ │ └── phoneScreenshots │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ └── 6.jpg │ ├── short_description.txt │ └── title.txt ├── es │ ├── changelogs │ │ ├── 101.txt │ │ ├── 102.txt │ │ ├── 103.txt │ │ ├── 104.txt │ │ ├── 105.txt │ │ ├── 106.txt │ │ ├── 107.txt │ │ ├── 108.txt │ │ ├── 110.txt │ │ ├── 59.txt │ │ ├── 61.txt │ │ ├── 62.txt │ │ ├── 63.txt │ │ ├── 65.txt │ │ ├── 67.txt │ │ ├── 73.txt │ │ ├── 74.txt │ │ ├── 76.txt │ │ ├── 77.txt │ │ ├── 78.txt │ │ ├── 79.txt │ │ ├── 80.txt │ │ ├── 81.txt │ │ ├── 82.txt │ │ ├── 83.txt │ │ ├── 84.txt │ │ ├── 85.txt │ │ ├── 86.txt │ │ ├── 87.txt │ │ ├── 88.txt │ │ ├── 89.txt │ │ ├── 91.txt │ │ ├── 92.txt │ │ ├── 94.txt │ │ ├── 95.txt │ │ ├── 96.txt │ │ ├── 97.txt │ │ ├── 98.txt │ │ └── 99.txt │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── eu-ES │ └── title.txt ├── fa-IR │ ├── changelogs │ │ ├── 108.txt │ │ ├── 50.txt │ │ ├── 51.txt │ │ ├── 55.txt │ │ ├── 56.txt │ │ ├── 59.txt │ │ ├── 61.txt │ │ ├── 62.txt │ │ ├── 67.txt │ │ └── 77.txt │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── fi-FI │ ├── changelogs │ │ └── 103.txt │ └── short_description.txt ├── fr-FR │ ├── changelogs │ │ ├── 55.txt │ │ ├── 56.txt │ │ ├── 59.txt │ │ ├── 61.txt │ │ ├── 62.txt │ │ ├── 63.txt │ │ ├── 65.txt │ │ ├── 67.txt │ │ ├── 73.txt │ │ ├── 74.txt │ │ ├── 76.txt │ │ └── 77.txt │ ├── short_description.txt │ └── title.txt ├── fr │ ├── short_description.txt │ └── title.txt ├── ga │ ├── changelogs │ │ ├── 101.txt │ │ ├── 102.txt │ │ ├── 103.txt │ │ ├── 104.txt │ │ ├── 105.txt │ │ ├── 106.txt │ │ ├── 107.txt │ │ ├── 59.txt │ │ ├── 61.txt │ │ ├── 62.txt │ │ ├── 63.txt │ │ ├── 65.txt │ │ ├── 67.txt │ │ ├── 73.txt │ │ ├── 74.txt │ │ ├── 76.txt │ │ ├── 77.txt │ │ ├── 78.txt │ │ ├── 79.txt │ │ ├── 80.txt │ │ ├── 81.txt │ │ ├── 82.txt │ │ ├── 83.txt │ │ ├── 84.txt │ │ ├── 85.txt │ │ ├── 86.txt │ │ ├── 87.txt │ │ ├── 88.txt │ │ ├── 89.txt │ │ ├── 91.txt │ │ ├── 92.txt │ │ ├── 94.txt │ │ ├── 95.txt │ │ ├── 96.txt │ │ ├── 97.txt │ │ ├── 98.txt │ │ └── 99.txt │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── gl-ES │ ├── changelogs │ │ ├── 104.txt │ │ ├── 108.txt │ │ ├── 110.txt │ │ ├── 50.txt │ │ ├── 51.txt │ │ ├── 55.txt │ │ ├── 56.txt │ │ ├── 59.txt │ │ ├── 61.txt │ │ ├── 62.txt │ │ ├── 63.txt │ │ ├── 65.txt │ │ ├── 67.txt │ │ ├── 73.txt │ │ ├── 74.txt │ │ ├── 76.txt │ │ ├── 77.txt │ │ ├── 78.txt │ │ ├── 79.txt │ │ ├── 80.txt │ │ ├── 81.txt │ │ ├── 82.txt │ │ ├── 83.txt │ │ ├── 94.txt │ │ └── 98.txt │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── hr │ ├── short_description.txt │ └── title.txt ├── ia │ └── title.txt ├── id │ ├── changelogs │ │ ├── 101.txt │ │ ├── 102.txt │ │ ├── 103.txt │ │ ├── 104.txt │ │ ├── 105.txt │ │ ├── 106.txt │ │ ├── 107.txt │ │ ├── 108.txt │ │ ├── 110.txt │ │ ├── 59.txt │ │ ├── 61.txt │ │ ├── 62.txt │ │ ├── 63.txt │ │ ├── 65.txt │ │ ├── 67.txt │ │ ├── 73.txt │ │ ├── 74.txt │ │ ├── 76.txt │ │ ├── 77.txt │ │ ├── 78.txt │ │ ├── 79.txt │ │ ├── 80.txt │ │ ├── 81.txt │ │ ├── 82.txt │ │ ├── 83.txt │ │ ├── 84.txt │ │ ├── 85.txt │ │ ├── 86.txt │ │ ├── 87.txt │ │ ├── 88.txt │ │ ├── 89.txt │ │ ├── 91.txt │ │ ├── 92.txt │ │ ├── 94.txt │ │ ├── 95.txt │ │ ├── 96.txt │ │ ├── 97.txt │ │ ├── 98.txt │ │ └── 99.txt │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── it-IT │ ├── changelogs │ │ ├── 101.txt │ │ ├── 102.txt │ │ ├── 103.txt │ │ ├── 104.txt │ │ ├── 105.txt │ │ ├── 106.txt │ │ ├── 107.txt │ │ ├── 110.txt │ │ ├── 59.txt │ │ ├── 61.txt │ │ ├── 62.txt │ │ ├── 63.txt │ │ ├── 65.txt │ │ ├── 67.txt │ │ ├── 73.txt │ │ ├── 74.txt │ │ ├── 76.txt │ │ ├── 77.txt │ │ ├── 78.txt │ │ ├── 79.txt │ │ ├── 80.txt │ │ ├── 81.txt │ │ ├── 82.txt │ │ ├── 83.txt │ │ ├── 84.txt │ │ ├── 85.txt │ │ ├── 86.txt │ │ ├── 87.txt │ │ ├── 88.txt │ │ ├── 89.txt │ │ ├── 91.txt │ │ ├── 92.txt │ │ ├── 94.txt │ │ ├── 95.txt │ │ ├── 96.txt │ │ ├── 97.txt │ │ ├── 98.txt │ │ └── 99.txt │ ├── full_description.txt │ ├── images │ │ └── phoneScreenshots │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ └── 6.jpg │ ├── short_description.txt │ └── title.txt ├── ja-JP │ ├── changelogs │ │ ├── 101.txt │ │ ├── 102.txt │ │ ├── 103.txt │ │ ├── 104.txt │ │ └── 105.txt │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── kab │ ├── full_description.txt │ └── short_description.txt ├── ko │ ├── changelogs │ │ ├── 74.txt │ │ ├── 76.txt │ │ ├── 77.txt │ │ ├── 83.txt │ │ └── 94.txt │ └── images │ │ └── phoneScreenshots │ │ ├── 1.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ └── 6.jpg ├── lt │ ├── changelogs │ │ ├── 101.txt │ │ ├── 102.txt │ │ ├── 106.txt │ │ ├── 107.txt │ │ ├── 59.txt │ │ ├── 61.txt │ │ ├── 77.txt │ │ ├── 78.txt │ │ ├── 79.txt │ │ ├── 80.txt │ │ ├── 81.txt │ │ ├── 95.txt │ │ ├── 96.txt │ │ ├── 97.txt │ │ ├── 98.txt │ │ └── 99.txt │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── my │ └── title.txt ├── nl-NL │ ├── changelogs │ │ ├── 101.txt │ │ ├── 102.txt │ │ ├── 103.txt │ │ ├── 104.txt │ │ ├── 105.txt │ │ ├── 106.txt │ │ ├── 110.txt │ │ ├── 59.txt │ │ ├── 61.txt │ │ ├── 62.txt │ │ ├── 63.txt │ │ ├── 65.txt │ │ ├── 67.txt │ │ ├── 73.txt │ │ ├── 74.txt │ │ ├── 76.txt │ │ ├── 77.txt │ │ ├── 78.txt │ │ ├── 79.txt │ │ ├── 80.txt │ │ ├── 81.txt │ │ ├── 82.txt │ │ ├── 83.txt │ │ ├── 84.txt │ │ ├── 85.txt │ │ ├── 86.txt │ │ ├── 87.txt │ │ ├── 88.txt │ │ ├── 89.txt │ │ ├── 91.txt │ │ ├── 92.txt │ │ ├── 94.txt │ │ ├── 95.txt │ │ ├── 96.txt │ │ ├── 97.txt │ │ ├── 98.txt │ │ └── 99.txt │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── oc │ ├── full_description.txt │ └── short_description.txt ├── pl-PL │ ├── short_description.txt │ └── title.txt ├── pl │ ├── changelogs │ │ ├── 101.txt │ │ ├── 102.txt │ │ ├── 103.txt │ │ ├── 108.txt │ │ ├── 110.txt │ │ ├── 59.txt │ │ ├── 61.txt │ │ ├── 62.txt │ │ ├── 63.txt │ │ ├── 65.txt │ │ ├── 67.txt │ │ ├── 73.txt │ │ ├── 74.txt │ │ ├── 76.txt │ │ ├── 77.txt │ │ ├── 78.txt │ │ ├── 79.txt │ │ ├── 80.txt │ │ ├── 81.txt │ │ ├── 82.txt │ │ ├── 83.txt │ │ ├── 84.txt │ │ ├── 85.txt │ │ ├── 86.txt │ │ ├── 87.txt │ │ ├── 88.txt │ │ ├── 89.txt │ │ ├── 91.txt │ │ ├── 92.txt │ │ ├── 94.txt │ │ ├── 95.txt │ │ ├── 96.txt │ │ ├── 97.txt │ │ ├── 98.txt │ │ └── 99.txt │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── pt-BR │ ├── changelogs │ │ ├── 59.txt │ │ ├── 74.txt │ │ ├── 76.txt │ │ ├── 77.txt │ │ ├── 83.txt │ │ ├── 94.txt │ │ └── 99.txt │ ├── full_description.txt │ ├── images │ │ └── phoneScreenshots │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ └── 6.jpg │ ├── short_description.txt │ └── title.txt ├── pt-PT │ ├── changelogs │ │ ├── 50.txt │ │ ├── 51.txt │ │ ├── 55.txt │ │ ├── 56.txt │ │ ├── 59.txt │ │ ├── 61.txt │ │ ├── 62.txt │ │ ├── 63.txt │ │ ├── 65.txt │ │ └── 67.txt │ ├── full_description.txt │ ├── images │ │ └── phoneScreenshots │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ └── 6.jpg │ ├── short_description.txt │ └── title.txt ├── ro │ ├── changelogs │ │ ├── 101.txt │ │ ├── 108.txt │ │ ├── 110.txt │ │ ├── 50.txt │ │ ├── 51.txt │ │ ├── 55.txt │ │ ├── 56.txt │ │ ├── 59.txt │ │ ├── 61.txt │ │ ├── 62.txt │ │ ├── 63.txt │ │ ├── 65.txt │ │ ├── 67.txt │ │ ├── 73.txt │ │ ├── 74.txt │ │ ├── 76.txt │ │ ├── 77.txt │ │ ├── 78.txt │ │ ├── 79.txt │ │ ├── 80.txt │ │ ├── 81.txt │ │ ├── 82.txt │ │ ├── 83.txt │ │ ├── 84.txt │ │ ├── 85.txt │ │ ├── 86.txt │ │ ├── 87.txt │ │ ├── 88.txt │ │ ├── 89.txt │ │ ├── 91.txt │ │ ├── 92.txt │ │ ├── 94.txt │ │ ├── 95.txt │ │ ├── 96.txt │ │ ├── 97.txt │ │ ├── 98.txt │ │ └── 99.txt │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── ru-RU │ ├── changelogs │ │ ├── 59.txt │ │ ├── 61.txt │ │ ├── 62.txt │ │ ├── 63.txt │ │ ├── 65.txt │ │ ├── 67.txt │ │ ├── 73.txt │ │ ├── 74.txt │ │ ├── 76.txt │ │ ├── 77.txt │ │ ├── 78.txt │ │ ├── 79.txt │ │ ├── 80.txt │ │ ├── 81.txt │ │ ├── 82.txt │ │ ├── 83.txt │ │ ├── 84.txt │ │ ├── 85.txt │ │ ├── 86.txt │ │ ├── 87.txt │ │ ├── 88.txt │ │ ├── 89.txt │ │ ├── 91.txt │ │ ├── 92.txt │ │ ├── 94.txt │ │ ├── 95.txt │ │ ├── 96.txt │ │ ├── 97.txt │ │ ├── 98.txt │ │ └── 99.txt │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── ru │ ├── changelogs │ │ ├── 101.txt │ │ ├── 108.txt │ │ ├── 65.txt │ │ ├── 67.txt │ │ ├── 77.txt │ │ ├── 83.txt │ │ └── 94.txt │ ├── short_description.txt │ └── title.txt ├── sl │ ├── changelogs │ │ ├── 50.txt │ │ ├── 55.txt │ │ ├── 59.txt │ │ ├── 62.txt │ │ ├── 63.txt │ │ ├── 65.txt │ │ ├── 67.txt │ │ ├── 74.txt │ │ ├── 78.txt │ │ ├── 79.txt │ │ ├── 80.txt │ │ ├── 87.txt │ │ └── 94.txt │ ├── short_description.txt │ └── title.txt ├── sv-SE │ ├── changelogs │ │ ├── 73.txt │ │ ├── 78.txt │ │ ├── 79.txt │ │ ├── 80.txt │ │ ├── 81.txt │ │ ├── 82.txt │ │ ├── 83.txt │ │ ├── 84.txt │ │ ├── 85.txt │ │ ├── 86.txt │ │ ├── 87.txt │ │ ├── 88.txt │ │ └── 89.txt │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── sv │ ├── changelogs │ │ ├── 55.txt │ │ ├── 56.txt │ │ ├── 59.txt │ │ └── 61.txt │ ├── short_description.txt │ └── title.txt ├── tr-TR │ ├── changelogs │ │ ├── 101.txt │ │ ├── 102.txt │ │ ├── 103.txt │ │ ├── 104.txt │ │ ├── 105.txt │ │ ├── 106.txt │ │ ├── 107.txt │ │ ├── 108.txt │ │ ├── 59.txt │ │ ├── 61.txt │ │ ├── 62.txt │ │ ├── 63.txt │ │ ├── 65.txt │ │ ├── 67.txt │ │ ├── 73.txt │ │ ├── 74.txt │ │ ├── 76.txt │ │ ├── 77.txt │ │ ├── 78.txt │ │ ├── 79.txt │ │ ├── 80.txt │ │ ├── 81.txt │ │ ├── 82.txt │ │ ├── 83.txt │ │ ├── 84.txt │ │ ├── 85.txt │ │ ├── 86.txt │ │ ├── 87.txt │ │ ├── 88.txt │ │ ├── 89.txt │ │ ├── 91.txt │ │ ├── 92.txt │ │ ├── 94.txt │ │ ├── 95.txt │ │ ├── 96.txt │ │ ├── 97.txt │ │ ├── 98.txt │ │ └── 99.txt │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── uk │ ├── changelogs │ │ ├── 101.txt │ │ ├── 102.txt │ │ ├── 103.txt │ │ ├── 104.txt │ │ ├── 105.txt │ │ ├── 106.txt │ │ ├── 107.txt │ │ ├── 108.txt │ │ ├── 110.txt │ │ ├── 59.txt │ │ ├── 61.txt │ │ ├── 62.txt │ │ ├── 63.txt │ │ ├── 65.txt │ │ ├── 67.txt │ │ ├── 73.txt │ │ ├── 74.txt │ │ ├── 76.txt │ │ ├── 77.txt │ │ ├── 78.txt │ │ ├── 79.txt │ │ ├── 80.txt │ │ ├── 81.txt │ │ ├── 82.txt │ │ ├── 83.txt │ │ ├── 84.txt │ │ ├── 85.txt │ │ ├── 86.txt │ │ ├── 87.txt │ │ ├── 88.txt │ │ ├── 89.txt │ │ ├── 91.txt │ │ ├── 92.txt │ │ ├── 93.txt │ │ ├── 94.txt │ │ ├── 95.txt │ │ ├── 96.txt │ │ ├── 97.txt │ │ ├── 98.txt │ │ └── 99.txt │ ├── full_description.txt │ ├── images │ │ └── phoneScreenshots │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ └── 6.jpg │ ├── short_description.txt │ └── title.txt ├── vi │ └── title.txt ├── zh-CN │ ├── changelogs │ │ ├── 101.txt │ │ ├── 102.txt │ │ ├── 103.txt │ │ ├── 104.txt │ │ ├── 105.txt │ │ ├── 106.txt │ │ ├── 107.txt │ │ ├── 108.txt │ │ ├── 110.txt │ │ ├── 59.txt │ │ ├── 61.txt │ │ ├── 62.txt │ │ ├── 63.txt │ │ ├── 65.txt │ │ ├── 67.txt │ │ ├── 73.txt │ │ ├── 74.txt │ │ ├── 76.txt │ │ ├── 77.txt │ │ ├── 78.txt │ │ ├── 79.txt │ │ ├── 80.txt │ │ ├── 81.txt │ │ ├── 82.txt │ │ ├── 83.txt │ │ ├── 84.txt │ │ ├── 85.txt │ │ ├── 86.txt │ │ ├── 87.txt │ │ ├── 88.txt │ │ ├── 89.txt │ │ ├── 91.txt │ │ ├── 92.txt │ │ ├── 94.txt │ │ ├── 95.txt │ │ ├── 96.txt │ │ ├── 97.txt │ │ ├── 98.txt │ │ └── 99.txt │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── zh-Hans │ └── changelogs │ │ ├── 108.txt │ │ ├── 110.txt │ │ ├── 74.txt │ │ ├── 76.txt │ │ ├── 77.txt │ │ ├── 83.txt │ │ └── 94.txt └── zh-TW │ ├── changelogs │ ├── 101.txt │ ├── 102.txt │ └── 107.txt │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── settings.gradle └── tools ├── GenerateLocaleConfig.java └── VerifyTranslatedStringFormatting.java /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/something-else.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/.github/ISSUE_TEMPLATE/something-else.md -------------------------------------------------------------------------------- /.github/workflows/mirror-to-codeberg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/.github/workflows/mirror-to-codeberg.yml -------------------------------------------------------------------------------- /.github/workflows/nightly-builds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/.github/workflows/nightly-builds.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/.gitignore -------------------------------------------------------------------------------- /CSAE-POLICY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/CSAE-POLICY.md -------------------------------------------------------------------------------- /FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/FAQ.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | title: Moshidon 2 | layout: default 3 | -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /fix-metadata-markdown-lists.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | find metadata -name '*.txt' -exec sed -Ei 's/^[–—─•·*]\s+/- /' {} \; 4 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/gradlew.bat -------------------------------------------------------------------------------- /img/CSAE-POLICY/step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/img/CSAE-POLICY/step1.png -------------------------------------------------------------------------------- /img/CSAE-POLICY/step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/img/CSAE-POLICY/step2.png -------------------------------------------------------------------------------- /img/CSAE-POLICY/step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/img/CSAE-POLICY/step3.png -------------------------------------------------------------------------------- /img/CSAE-POLICY/step4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/img/CSAE-POLICY/step4.png -------------------------------------------------------------------------------- /img/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/img/banner.png -------------------------------------------------------------------------------- /img/f-droid-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/img/f-droid-badge.png -------------------------------------------------------------------------------- /img/google-play-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/img/google-play-badge.png -------------------------------------------------------------------------------- /img/ic_fluent_animal_cat_24_regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/img/ic_fluent_animal_cat_24_regular.svg -------------------------------------------------------------------------------- /img/izzy-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/img/izzy-badge.png -------------------------------------------------------------------------------- /img/saunarepo-badge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/img/saunarepo-badge.svg -------------------------------------------------------------------------------- /mastodon/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/mastodon/.editorconfig -------------------------------------------------------------------------------- /mastodon/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /release 3 | /debug 4 | *.apk 5 | output-metadata.json 6 | -------------------------------------------------------------------------------- /mastodon/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/mastodon/build.gradle -------------------------------------------------------------------------------- /mastodon/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/mastodon/proguard-rules.pro -------------------------------------------------------------------------------- /mastodon/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/mastodon/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /mastodon/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/mastodon/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /mastodon/src/main/assets/blocks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/mastodon/src/main/assets/blocks.txt -------------------------------------------------------------------------------- /mastodon/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/mastodon/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /mastodon/src/main/res/animator/squish.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/mastodon/src/main/res/animator/squish.xml -------------------------------------------------------------------------------- /mastodon/src/main/res/color/boost_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/mastodon/src/main/res/color/boost_icon.xml -------------------------------------------------------------------------------- /mastodon/src/main/res/color/like_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/mastodon/src/main/res/color/like_icon.xml -------------------------------------------------------------------------------- /mastodon/src/main/res/drawable/bg_alert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/mastodon/src/main/res/drawable/bg_alert.xml -------------------------------------------------------------------------------- /mastodon/src/main/res/drawable/bg_fab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/mastodon/src/main/res/drawable/bg_fab.xml -------------------------------------------------------------------------------- /mastodon/src/main/res/drawable/bg_popup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/mastodon/src/main/res/drawable/bg_popup.xml -------------------------------------------------------------------------------- /mastodon/src/main/res/drawable/ic_boost.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/mastodon/src/main/res/drawable/ic_boost.xml -------------------------------------------------------------------------------- /mastodon/src/main/res/drawable/ic_bot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/mastodon/src/main/res/drawable/ic_bot.xml -------------------------------------------------------------------------------- /mastodon/src/main/res/drawable/logo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/mastodon/src/main/res/drawable/logo.xml -------------------------------------------------------------------------------- /mastodon/src/main/res/drawable/rect_4dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/mastodon/src/main/res/drawable/rect_4dp.xml -------------------------------------------------------------------------------- /mastodon/src/main/res/layout/item_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/mastodon/src/main/res/layout/item_text.xml -------------------------------------------------------------------------------- /mastodon/src/main/res/layout/tab_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/mastodon/src/main/res/layout/tab_bar.xml -------------------------------------------------------------------------------- /mastodon/src/main/res/menu/attach.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/mastodon/src/main/res/menu/attach.xml -------------------------------------------------------------------------------- /mastodon/src/main/res/menu/compose.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/mastodon/src/main/res/menu/compose.xml -------------------------------------------------------------------------------- /mastodon/src/main/res/menu/home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/mastodon/src/main/res/menu/home.xml -------------------------------------------------------------------------------- /mastodon/src/main/res/menu/list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/mastodon/src/main/res/menu/list.xml -------------------------------------------------------------------------------- /mastodon/src/main/res/menu/menu_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/mastodon/src/main/res/menu/menu_list.xml -------------------------------------------------------------------------------- /mastodon/src/main/res/menu/post.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/mastodon/src/main/res/menu/post.xml -------------------------------------------------------------------------------- /mastodon/src/main/res/menu/profile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/mastodon/src/main/res/menu/profile.xml -------------------------------------------------------------------------------- /mastodon/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/mastodon/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /mastodon/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/mastodon/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /mastodon/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/mastodon/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /mastodon/src/main/res/values/ids.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/mastodon/src/main/res/values/ids.xml -------------------------------------------------------------------------------- /mastodon/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/mastodon/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /mastodon/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/mastodon/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /mastodon/src/main/res/values/tokens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/mastodon/src/main/res/values/tokens.xml -------------------------------------------------------------------------------- /mastodon/src/main/res/values/urls.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/mastodon/src/main/res/values/urls.xml -------------------------------------------------------------------------------- /mastodon/src/nightly/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/mastodon/src/nightly/AndroidManifest.xml -------------------------------------------------------------------------------- /metadata/ar-DZ/title.txt: -------------------------------------------------------------------------------- 1 | Moshidon 2 | -------------------------------------------------------------------------------- /metadata/ar/title.txt: -------------------------------------------------------------------------------- 1 | Megalodon 2 | -------------------------------------------------------------------------------- /metadata/ast/title.txt: -------------------------------------------------------------------------------- 1 | Moshidon 2 | -------------------------------------------------------------------------------- /metadata/bn/changelogs/78.txt: -------------------------------------------------------------------------------- 1 | টুট বিভাজক 2 | -------------------------------------------------------------------------------- /metadata/bn/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/bn/short_description.txt -------------------------------------------------------------------------------- /metadata/bn/title.txt: -------------------------------------------------------------------------------- 1 | মসিডন 2 | -------------------------------------------------------------------------------- /metadata/ca/changelogs/67.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ca/changelogs/67.txt -------------------------------------------------------------------------------- /metadata/ca/changelogs/74.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ca/changelogs/74.txt -------------------------------------------------------------------------------- /metadata/ca/changelogs/76.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ca/changelogs/76.txt -------------------------------------------------------------------------------- /metadata/ca/changelogs/77.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ca/changelogs/77.txt -------------------------------------------------------------------------------- /metadata/ca/changelogs/78.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ca/changelogs/78.txt -------------------------------------------------------------------------------- /metadata/ca/changelogs/79.txt: -------------------------------------------------------------------------------- 1 | Afegint un botó de donació! 2 | -------------------------------------------------------------------------------- /metadata/ca/changelogs/83.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ca/changelogs/83.txt -------------------------------------------------------------------------------- /metadata/ca/changelogs/94.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ca/changelogs/94.txt -------------------------------------------------------------------------------- /metadata/ca/short_description.txt: -------------------------------------------------------------------------------- 1 | Mastodon per a Android, però amb Material You i més funcions 2 | -------------------------------------------------------------------------------- /metadata/ca/title.txt: -------------------------------------------------------------------------------- 1 | Moshidon 2 | -------------------------------------------------------------------------------- /metadata/cy/changelogs/74.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/cy/changelogs/74.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/101.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/changelogs/101.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/102.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/changelogs/102.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/103.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/changelogs/103.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/104.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/changelogs/104.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/105.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/changelogs/105.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/106.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/changelogs/106.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/107.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/changelogs/107.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/108.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/changelogs/108.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/110.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/changelogs/110.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/changelogs/55.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/56.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/changelogs/56.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/59.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/changelogs/59.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/61.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/changelogs/61.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/62.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/changelogs/62.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/63.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/changelogs/63.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/65.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/changelogs/65.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/67.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/changelogs/67.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/68.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/changelogs/68.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/73.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/changelogs/73.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/74.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/changelogs/74.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/76.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/changelogs/76.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/77.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/changelogs/77.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/78.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/changelogs/78.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/79.txt: -------------------------------------------------------------------------------- 1 | Eine Spenden-Schaltfläche wurde hinzugefügt! 2 | -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/80.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/changelogs/80.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/81.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/changelogs/81.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/82.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/changelogs/82.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/83.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/changelogs/83.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/84.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/changelogs/84.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/85.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/changelogs/85.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/86.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/changelogs/86.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/87.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/changelogs/87.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/88.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/changelogs/88.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/89.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/changelogs/89.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/91.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/changelogs/91.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/92.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/changelogs/92.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/94.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/changelogs/94.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/95.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/changelogs/95.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/96.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/changelogs/96.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/97.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/changelogs/97.txt -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/98.txt: -------------------------------------------------------------------------------- 1 | Erste Veröffentlichung im Play Store 2 | -------------------------------------------------------------------------------- /metadata/de-DE/changelogs/99.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/changelogs/99.txt -------------------------------------------------------------------------------- /metadata/de-DE/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/de-DE/full_description.txt -------------------------------------------------------------------------------- /metadata/de-DE/short_description.txt: -------------------------------------------------------------------------------- 1 | Mastodon für Android, aber mit Material You und viel mehr Funktionen 2 | -------------------------------------------------------------------------------- /metadata/de-DE/title.txt: -------------------------------------------------------------------------------- 1 | Moshidon 2 | -------------------------------------------------------------------------------- /metadata/el-GR/changelogs/101.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/el-GR/changelogs/101.txt -------------------------------------------------------------------------------- /metadata/el-GR/changelogs/102.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/el-GR/changelogs/102.txt -------------------------------------------------------------------------------- /metadata/el-GR/changelogs/103.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/el-GR/changelogs/103.txt -------------------------------------------------------------------------------- /metadata/el-GR/changelogs/104.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/el-GR/changelogs/104.txt -------------------------------------------------------------------------------- /metadata/el-GR/changelogs/105.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/el-GR/changelogs/105.txt -------------------------------------------------------------------------------- /metadata/el-GR/changelogs/110.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/el-GR/changelogs/110.txt -------------------------------------------------------------------------------- /metadata/el-GR/changelogs/59.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/el-GR/changelogs/59.txt -------------------------------------------------------------------------------- /metadata/el-GR/changelogs/61.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/el-GR/changelogs/61.txt -------------------------------------------------------------------------------- /metadata/el-GR/changelogs/62.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/el-GR/changelogs/62.txt -------------------------------------------------------------------------------- /metadata/el-GR/changelogs/63.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/el-GR/changelogs/63.txt -------------------------------------------------------------------------------- /metadata/el-GR/changelogs/65.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/el-GR/changelogs/65.txt -------------------------------------------------------------------------------- /metadata/el-GR/changelogs/67.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/el-GR/changelogs/67.txt -------------------------------------------------------------------------------- /metadata/el-GR/changelogs/73.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/el-GR/changelogs/73.txt -------------------------------------------------------------------------------- /metadata/el-GR/changelogs/74.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/el-GR/changelogs/74.txt -------------------------------------------------------------------------------- /metadata/el-GR/changelogs/76.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/el-GR/changelogs/76.txt -------------------------------------------------------------------------------- /metadata/el-GR/changelogs/77.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/el-GR/changelogs/77.txt -------------------------------------------------------------------------------- /metadata/el-GR/changelogs/78.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/el-GR/changelogs/78.txt -------------------------------------------------------------------------------- /metadata/el-GR/changelogs/79.txt: -------------------------------------------------------------------------------- 1 | Προστέθηκε κουμπί δωρεάς! 2 | -------------------------------------------------------------------------------- /metadata/el-GR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/el-GR/full_description.txt -------------------------------------------------------------------------------- /metadata/el-GR/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/el-GR/short_description.txt -------------------------------------------------------------------------------- /metadata/el-GR/title.txt: -------------------------------------------------------------------------------- 1 | Moshidon 2 | -------------------------------------------------------------------------------- /metadata/en-US/changelogs/101.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/changelogs/101.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/102.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/changelogs/102.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/103.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/changelogs/103.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/104.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/changelogs/104.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/105.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/changelogs/105.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/106.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/changelogs/106.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/107.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/changelogs/107.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/108.txt: -------------------------------------------------------------------------------- 1 | - Fixed a bunch of crashes 2 | - Small bug fixes and improvements -------------------------------------------------------------------------------- /metadata/en-US/changelogs/109.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/changelogs/109.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/110.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/changelogs/110.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/59.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/changelogs/59.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/61.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/changelogs/61.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/62.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/changelogs/62.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/63.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/changelogs/63.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/65.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/changelogs/65.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/67.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/changelogs/67.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/73.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/changelogs/73.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/74.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/changelogs/74.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/76.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/changelogs/76.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/77.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/changelogs/77.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/78.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/changelogs/78.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/79.txt: -------------------------------------------------------------------------------- 1 | Adding a donate button! -------------------------------------------------------------------------------- /metadata/en-US/changelogs/80.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/changelogs/80.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/81.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/changelogs/81.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/82.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/changelogs/82.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/83.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/changelogs/83.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/84.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/changelogs/84.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/85.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/changelogs/85.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/86.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/changelogs/86.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/87.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/changelogs/87.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/88.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/changelogs/88.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/89.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/changelogs/89.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/90,txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/changelogs/90,txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/91.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/changelogs/91.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/92.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/changelogs/92.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/93: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/changelogs/93 -------------------------------------------------------------------------------- /metadata/en-US/changelogs/94.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/changelogs/94.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/95.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/changelogs/95.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/96.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/changelogs/96.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/97.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/changelogs/97.txt -------------------------------------------------------------------------------- /metadata/en-US/changelogs/98.txt: -------------------------------------------------------------------------------- 1 | Initial play store release -------------------------------------------------------------------------------- /metadata/en-US/changelogs/99.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/changelogs/99.txt -------------------------------------------------------------------------------- /metadata/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/full_description.txt -------------------------------------------------------------------------------- /metadata/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/images/icon.png -------------------------------------------------------------------------------- /metadata/en-US/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/en-US/short_description.txt -------------------------------------------------------------------------------- /metadata/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Moshidon -------------------------------------------------------------------------------- /metadata/eo/changelogs/101.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/eo/changelogs/101.txt -------------------------------------------------------------------------------- /metadata/eo/changelogs/102.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/eo/changelogs/102.txt -------------------------------------------------------------------------------- /metadata/eo/changelogs/103.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/eo/changelogs/103.txt -------------------------------------------------------------------------------- /metadata/eo/changelogs/104.txt: -------------------------------------------------------------------------------- 1 | - 2 | -------------------------------------------------------------------------------- /metadata/eo/changelogs/105.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/eo/changelogs/105.txt -------------------------------------------------------------------------------- /metadata/eo/changelogs/106.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/eo/changelogs/106.txt -------------------------------------------------------------------------------- /metadata/eo/changelogs/107.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/eo/changelogs/107.txt -------------------------------------------------------------------------------- /metadata/eo/changelogs/59.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/eo/changelogs/59.txt -------------------------------------------------------------------------------- /metadata/eo/changelogs/61.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/eo/changelogs/61.txt -------------------------------------------------------------------------------- /metadata/eo/changelogs/62.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/eo/changelogs/62.txt -------------------------------------------------------------------------------- /metadata/eo/changelogs/63.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/eo/changelogs/63.txt -------------------------------------------------------------------------------- /metadata/eo/changelogs/78.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/eo/changelogs/78.txt -------------------------------------------------------------------------------- /metadata/eo/changelogs/79.txt: -------------------------------------------------------------------------------- 1 | Plusas donacbuton! 2 | -------------------------------------------------------------------------------- /metadata/eo/changelogs/80.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/eo/changelogs/80.txt -------------------------------------------------------------------------------- /metadata/eo/changelogs/97.txt: -------------------------------------------------------------------------------- 1 | Versio 97 plusas: 2 | -------------------------------------------------------------------------------- /metadata/eo/changelogs/98.txt: -------------------------------------------------------------------------------- 1 | Unua versio por play store 2 | -------------------------------------------------------------------------------- /metadata/eo/changelogs/99.txt: -------------------------------------------------------------------------------- 1 | Novaj Aferoj de 2 | -------------------------------------------------------------------------------- /metadata/eo/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/eo/full_description.txt -------------------------------------------------------------------------------- /metadata/eo/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/eo/short_description.txt -------------------------------------------------------------------------------- /metadata/eo/title.txt: -------------------------------------------------------------------------------- 1 | Moshidon 2 | -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/59.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es-ES/changelogs/59.txt -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/61.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es-ES/changelogs/61.txt -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/62.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es-ES/changelogs/62.txt -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/63.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es-ES/changelogs/63.txt -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/65.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es-ES/changelogs/65.txt -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/67.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es-ES/changelogs/67.txt -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/73.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es-ES/changelogs/73.txt -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/74.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es-ES/changelogs/74.txt -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/76.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es-ES/changelogs/76.txt -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/77.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es-ES/changelogs/77.txt -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/78.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es-ES/changelogs/78.txt -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/79.txt: -------------------------------------------------------------------------------- 1 | ¡Añadido un botón para donar! 2 | -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/80.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es-ES/changelogs/80.txt -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/81.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es-ES/changelogs/81.txt -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/82.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es-ES/changelogs/82.txt -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/83.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es-ES/changelogs/83.txt -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/84.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es-ES/changelogs/84.txt -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/85.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es-ES/changelogs/85.txt -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/86.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es-ES/changelogs/86.txt -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/87.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es-ES/changelogs/87.txt -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/88.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es-ES/changelogs/88.txt -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/89.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es-ES/changelogs/89.txt -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/91.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es-ES/changelogs/91.txt -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/92.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es-ES/changelogs/92.txt -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/94.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es-ES/changelogs/94.txt -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/95.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es-ES/changelogs/95.txt -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/96.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es-ES/changelogs/96.txt -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/97.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es-ES/changelogs/97.txt -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/98.txt: -------------------------------------------------------------------------------- 1 | Primera versión en Play Store 2 | -------------------------------------------------------------------------------- /metadata/es-ES/changelogs/99.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es-ES/changelogs/99.txt -------------------------------------------------------------------------------- /metadata/es-ES/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es-ES/full_description.txt -------------------------------------------------------------------------------- /metadata/es-ES/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es-ES/short_description.txt -------------------------------------------------------------------------------- /metadata/es-ES/title.txt: -------------------------------------------------------------------------------- 1 | Moshidon 2 | -------------------------------------------------------------------------------- /metadata/es/changelogs/101.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es/changelogs/101.txt -------------------------------------------------------------------------------- /metadata/es/changelogs/102.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es/changelogs/102.txt -------------------------------------------------------------------------------- /metadata/es/changelogs/103.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es/changelogs/103.txt -------------------------------------------------------------------------------- /metadata/es/changelogs/104.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es/changelogs/104.txt -------------------------------------------------------------------------------- /metadata/es/changelogs/105.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es/changelogs/105.txt -------------------------------------------------------------------------------- /metadata/es/changelogs/106.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es/changelogs/106.txt -------------------------------------------------------------------------------- /metadata/es/changelogs/107.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es/changelogs/107.txt -------------------------------------------------------------------------------- /metadata/es/changelogs/108.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es/changelogs/108.txt -------------------------------------------------------------------------------- /metadata/es/changelogs/110.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es/changelogs/110.txt -------------------------------------------------------------------------------- /metadata/es/changelogs/59.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es/changelogs/59.txt -------------------------------------------------------------------------------- /metadata/es/changelogs/61.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es/changelogs/61.txt -------------------------------------------------------------------------------- /metadata/es/changelogs/62.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es/changelogs/62.txt -------------------------------------------------------------------------------- /metadata/es/changelogs/63.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es/changelogs/63.txt -------------------------------------------------------------------------------- /metadata/es/changelogs/65.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es/changelogs/65.txt -------------------------------------------------------------------------------- /metadata/es/changelogs/67.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es/changelogs/67.txt -------------------------------------------------------------------------------- /metadata/es/changelogs/73.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es/changelogs/73.txt -------------------------------------------------------------------------------- /metadata/es/changelogs/74.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es/changelogs/74.txt -------------------------------------------------------------------------------- /metadata/es/changelogs/76.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es/changelogs/76.txt -------------------------------------------------------------------------------- /metadata/es/changelogs/77.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es/changelogs/77.txt -------------------------------------------------------------------------------- /metadata/es/changelogs/78.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es/changelogs/78.txt -------------------------------------------------------------------------------- /metadata/es/changelogs/79.txt: -------------------------------------------------------------------------------- 1 | ¡Añadir un botón de donación! 2 | -------------------------------------------------------------------------------- /metadata/es/changelogs/80.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es/changelogs/80.txt -------------------------------------------------------------------------------- /metadata/es/changelogs/81.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es/changelogs/81.txt -------------------------------------------------------------------------------- /metadata/es/changelogs/82.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es/changelogs/82.txt -------------------------------------------------------------------------------- /metadata/es/changelogs/83.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es/changelogs/83.txt -------------------------------------------------------------------------------- /metadata/es/changelogs/84.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es/changelogs/84.txt -------------------------------------------------------------------------------- /metadata/es/changelogs/85.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es/changelogs/85.txt -------------------------------------------------------------------------------- /metadata/es/changelogs/86.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es/changelogs/86.txt -------------------------------------------------------------------------------- /metadata/es/changelogs/87.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es/changelogs/87.txt -------------------------------------------------------------------------------- /metadata/es/changelogs/88.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es/changelogs/88.txt -------------------------------------------------------------------------------- /metadata/es/changelogs/89.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es/changelogs/89.txt -------------------------------------------------------------------------------- /metadata/es/changelogs/91.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es/changelogs/91.txt -------------------------------------------------------------------------------- /metadata/es/changelogs/92.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es/changelogs/92.txt -------------------------------------------------------------------------------- /metadata/es/changelogs/94.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es/changelogs/94.txt -------------------------------------------------------------------------------- /metadata/es/changelogs/95.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es/changelogs/95.txt -------------------------------------------------------------------------------- /metadata/es/changelogs/96.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es/changelogs/96.txt -------------------------------------------------------------------------------- /metadata/es/changelogs/97.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es/changelogs/97.txt -------------------------------------------------------------------------------- /metadata/es/changelogs/98.txt: -------------------------------------------------------------------------------- 1 | Lanzamiento inicial en la Play Store 2 | -------------------------------------------------------------------------------- /metadata/es/changelogs/99.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es/changelogs/99.txt -------------------------------------------------------------------------------- /metadata/es/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/es/full_description.txt -------------------------------------------------------------------------------- /metadata/es/short_description.txt: -------------------------------------------------------------------------------- 1 | Mastodon para Android pero es Material You y tiene más funciones 2 | -------------------------------------------------------------------------------- /metadata/es/title.txt: -------------------------------------------------------------------------------- 1 | Moshidon 2 | -------------------------------------------------------------------------------- /metadata/eu-ES/title.txt: -------------------------------------------------------------------------------- 1 | Moshidon 2 | -------------------------------------------------------------------------------- /metadata/fa-IR/changelogs/108.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/fa-IR/changelogs/108.txt -------------------------------------------------------------------------------- /metadata/fa-IR/changelogs/50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/fa-IR/changelogs/50.txt -------------------------------------------------------------------------------- /metadata/fa-IR/changelogs/51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/fa-IR/changelogs/51.txt -------------------------------------------------------------------------------- /metadata/fa-IR/changelogs/55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/fa-IR/changelogs/55.txt -------------------------------------------------------------------------------- /metadata/fa-IR/changelogs/56.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/fa-IR/changelogs/56.txt -------------------------------------------------------------------------------- /metadata/fa-IR/changelogs/59.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/fa-IR/changelogs/59.txt -------------------------------------------------------------------------------- /metadata/fa-IR/changelogs/61.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/fa-IR/changelogs/61.txt -------------------------------------------------------------------------------- /metadata/fa-IR/changelogs/62.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/fa-IR/changelogs/62.txt -------------------------------------------------------------------------------- /metadata/fa-IR/changelogs/67.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/fa-IR/changelogs/67.txt -------------------------------------------------------------------------------- /metadata/fa-IR/changelogs/77.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/fa-IR/changelogs/77.txt -------------------------------------------------------------------------------- /metadata/fa-IR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/fa-IR/full_description.txt -------------------------------------------------------------------------------- /metadata/fa-IR/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/fa-IR/short_description.txt -------------------------------------------------------------------------------- /metadata/fa-IR/title.txt: -------------------------------------------------------------------------------- 1 | Moshidon 2 | -------------------------------------------------------------------------------- /metadata/fi-FI/changelogs/103.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/fi-FI/changelogs/103.txt -------------------------------------------------------------------------------- /metadata/fi-FI/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/fi-FI/short_description.txt -------------------------------------------------------------------------------- /metadata/fr-FR/changelogs/55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/fr-FR/changelogs/55.txt -------------------------------------------------------------------------------- /metadata/fr-FR/changelogs/56.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/fr-FR/changelogs/56.txt -------------------------------------------------------------------------------- /metadata/fr-FR/changelogs/59.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/fr-FR/changelogs/59.txt -------------------------------------------------------------------------------- /metadata/fr-FR/changelogs/61.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/fr-FR/changelogs/61.txt -------------------------------------------------------------------------------- /metadata/fr-FR/changelogs/62.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/fr-FR/changelogs/62.txt -------------------------------------------------------------------------------- /metadata/fr-FR/changelogs/63.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/fr-FR/changelogs/63.txt -------------------------------------------------------------------------------- /metadata/fr-FR/changelogs/65.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/fr-FR/changelogs/65.txt -------------------------------------------------------------------------------- /metadata/fr-FR/changelogs/67.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/fr-FR/changelogs/67.txt -------------------------------------------------------------------------------- /metadata/fr-FR/changelogs/73.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/fr-FR/changelogs/73.txt -------------------------------------------------------------------------------- /metadata/fr-FR/changelogs/74.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/fr-FR/changelogs/74.txt -------------------------------------------------------------------------------- /metadata/fr-FR/changelogs/76.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/fr-FR/changelogs/76.txt -------------------------------------------------------------------------------- /metadata/fr-FR/changelogs/77.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/fr-FR/changelogs/77.txt -------------------------------------------------------------------------------- /metadata/fr-FR/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/fr-FR/short_description.txt -------------------------------------------------------------------------------- /metadata/fr-FR/title.txt: -------------------------------------------------------------------------------- 1 | Moshidon 2 | -------------------------------------------------------------------------------- /metadata/fr/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/fr/short_description.txt -------------------------------------------------------------------------------- /metadata/fr/title.txt: -------------------------------------------------------------------------------- 1 | Moshidon 2 | -------------------------------------------------------------------------------- /metadata/ga/changelogs/101.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ga/changelogs/101.txt -------------------------------------------------------------------------------- /metadata/ga/changelogs/102.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ga/changelogs/102.txt -------------------------------------------------------------------------------- /metadata/ga/changelogs/103.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ga/changelogs/103.txt -------------------------------------------------------------------------------- /metadata/ga/changelogs/104.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ga/changelogs/104.txt -------------------------------------------------------------------------------- /metadata/ga/changelogs/105.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ga/changelogs/105.txt -------------------------------------------------------------------------------- /metadata/ga/changelogs/106.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ga/changelogs/106.txt -------------------------------------------------------------------------------- /metadata/ga/changelogs/107.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ga/changelogs/107.txt -------------------------------------------------------------------------------- /metadata/ga/changelogs/59.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ga/changelogs/59.txt -------------------------------------------------------------------------------- /metadata/ga/changelogs/61.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ga/changelogs/61.txt -------------------------------------------------------------------------------- /metadata/ga/changelogs/62.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ga/changelogs/62.txt -------------------------------------------------------------------------------- /metadata/ga/changelogs/63.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ga/changelogs/63.txt -------------------------------------------------------------------------------- /metadata/ga/changelogs/65.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ga/changelogs/65.txt -------------------------------------------------------------------------------- /metadata/ga/changelogs/67.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ga/changelogs/67.txt -------------------------------------------------------------------------------- /metadata/ga/changelogs/73.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ga/changelogs/73.txt -------------------------------------------------------------------------------- /metadata/ga/changelogs/74.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ga/changelogs/74.txt -------------------------------------------------------------------------------- /metadata/ga/changelogs/76.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ga/changelogs/76.txt -------------------------------------------------------------------------------- /metadata/ga/changelogs/77.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ga/changelogs/77.txt -------------------------------------------------------------------------------- /metadata/ga/changelogs/78.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ga/changelogs/78.txt -------------------------------------------------------------------------------- /metadata/ga/changelogs/79.txt: -------------------------------------------------------------------------------- 1 | Cnaipe tabhartais á chur leis! 2 | -------------------------------------------------------------------------------- /metadata/ga/changelogs/80.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ga/changelogs/80.txt -------------------------------------------------------------------------------- /metadata/ga/changelogs/81.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ga/changelogs/81.txt -------------------------------------------------------------------------------- /metadata/ga/changelogs/82.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ga/changelogs/82.txt -------------------------------------------------------------------------------- /metadata/ga/changelogs/83.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ga/changelogs/83.txt -------------------------------------------------------------------------------- /metadata/ga/changelogs/84.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ga/changelogs/84.txt -------------------------------------------------------------------------------- /metadata/ga/changelogs/85.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ga/changelogs/85.txt -------------------------------------------------------------------------------- /metadata/ga/changelogs/86.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ga/changelogs/86.txt -------------------------------------------------------------------------------- /metadata/ga/changelogs/87.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ga/changelogs/87.txt -------------------------------------------------------------------------------- /metadata/ga/changelogs/88.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ga/changelogs/88.txt -------------------------------------------------------------------------------- /metadata/ga/changelogs/89.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ga/changelogs/89.txt -------------------------------------------------------------------------------- /metadata/ga/changelogs/91.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ga/changelogs/91.txt -------------------------------------------------------------------------------- /metadata/ga/changelogs/92.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ga/changelogs/92.txt -------------------------------------------------------------------------------- /metadata/ga/changelogs/94.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ga/changelogs/94.txt -------------------------------------------------------------------------------- /metadata/ga/changelogs/95.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ga/changelogs/95.txt -------------------------------------------------------------------------------- /metadata/ga/changelogs/96.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ga/changelogs/96.txt -------------------------------------------------------------------------------- /metadata/ga/changelogs/97.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ga/changelogs/97.txt -------------------------------------------------------------------------------- /metadata/ga/changelogs/98.txt: -------------------------------------------------------------------------------- 1 | Eisiúint tosaigh sa store súgartha 2 | -------------------------------------------------------------------------------- /metadata/ga/changelogs/99.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ga/changelogs/99.txt -------------------------------------------------------------------------------- /metadata/ga/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ga/full_description.txt -------------------------------------------------------------------------------- /metadata/ga/short_description.txt: -------------------------------------------------------------------------------- 1 | Mastodon do Android ach is Ábhar Tú é agus tá níos mó gnéithe aige 2 | -------------------------------------------------------------------------------- /metadata/ga/title.txt: -------------------------------------------------------------------------------- 1 | Moshidon 2 | -------------------------------------------------------------------------------- /metadata/gl-ES/changelogs/104.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/gl-ES/changelogs/104.txt -------------------------------------------------------------------------------- /metadata/gl-ES/changelogs/108.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/gl-ES/changelogs/108.txt -------------------------------------------------------------------------------- /metadata/gl-ES/changelogs/110.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/gl-ES/changelogs/110.txt -------------------------------------------------------------------------------- /metadata/gl-ES/changelogs/50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/gl-ES/changelogs/50.txt -------------------------------------------------------------------------------- /metadata/gl-ES/changelogs/51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/gl-ES/changelogs/51.txt -------------------------------------------------------------------------------- /metadata/gl-ES/changelogs/55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/gl-ES/changelogs/55.txt -------------------------------------------------------------------------------- /metadata/gl-ES/changelogs/56.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/gl-ES/changelogs/56.txt -------------------------------------------------------------------------------- /metadata/gl-ES/changelogs/59.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/gl-ES/changelogs/59.txt -------------------------------------------------------------------------------- /metadata/gl-ES/changelogs/61.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/gl-ES/changelogs/61.txt -------------------------------------------------------------------------------- /metadata/gl-ES/changelogs/62.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/gl-ES/changelogs/62.txt -------------------------------------------------------------------------------- /metadata/gl-ES/changelogs/63.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/gl-ES/changelogs/63.txt -------------------------------------------------------------------------------- /metadata/gl-ES/changelogs/65.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/gl-ES/changelogs/65.txt -------------------------------------------------------------------------------- /metadata/gl-ES/changelogs/67.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/gl-ES/changelogs/67.txt -------------------------------------------------------------------------------- /metadata/gl-ES/changelogs/73.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/gl-ES/changelogs/73.txt -------------------------------------------------------------------------------- /metadata/gl-ES/changelogs/74.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/gl-ES/changelogs/74.txt -------------------------------------------------------------------------------- /metadata/gl-ES/changelogs/76.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/gl-ES/changelogs/76.txt -------------------------------------------------------------------------------- /metadata/gl-ES/changelogs/77.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/gl-ES/changelogs/77.txt -------------------------------------------------------------------------------- /metadata/gl-ES/changelogs/78.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/gl-ES/changelogs/78.txt -------------------------------------------------------------------------------- /metadata/gl-ES/changelogs/79.txt: -------------------------------------------------------------------------------- 1 | Engadindo un botón de doazón! 2 | -------------------------------------------------------------------------------- /metadata/gl-ES/changelogs/80.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/gl-ES/changelogs/80.txt -------------------------------------------------------------------------------- /metadata/gl-ES/changelogs/81.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/gl-ES/changelogs/81.txt -------------------------------------------------------------------------------- /metadata/gl-ES/changelogs/82.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/gl-ES/changelogs/82.txt -------------------------------------------------------------------------------- /metadata/gl-ES/changelogs/83.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/gl-ES/changelogs/83.txt -------------------------------------------------------------------------------- /metadata/gl-ES/changelogs/94.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/gl-ES/changelogs/94.txt -------------------------------------------------------------------------------- /metadata/gl-ES/changelogs/98.txt: -------------------------------------------------------------------------------- 1 | Versión inicial na play store 2 | -------------------------------------------------------------------------------- /metadata/gl-ES/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/gl-ES/full_description.txt -------------------------------------------------------------------------------- /metadata/gl-ES/short_description.txt: -------------------------------------------------------------------------------- 1 | Mastodon para Android pero é Material You e ten máis ferramentas 2 | -------------------------------------------------------------------------------- /metadata/gl-ES/title.txt: -------------------------------------------------------------------------------- 1 | Moshidon 2 | -------------------------------------------------------------------------------- /metadata/hr/short_description.txt: -------------------------------------------------------------------------------- 1 | Mastodon za Android, ali je ružičaste boje i ima više mogućnosti 2 | -------------------------------------------------------------------------------- /metadata/hr/title.txt: -------------------------------------------------------------------------------- 1 | Moshidon 2 | -------------------------------------------------------------------------------- /metadata/ia/title.txt: -------------------------------------------------------------------------------- 1 | Megalodon 2 | -------------------------------------------------------------------------------- /metadata/id/changelogs/101.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/id/changelogs/101.txt -------------------------------------------------------------------------------- /metadata/id/changelogs/102.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/id/changelogs/102.txt -------------------------------------------------------------------------------- /metadata/id/changelogs/103.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/id/changelogs/103.txt -------------------------------------------------------------------------------- /metadata/id/changelogs/104.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/id/changelogs/104.txt -------------------------------------------------------------------------------- /metadata/id/changelogs/105.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/id/changelogs/105.txt -------------------------------------------------------------------------------- /metadata/id/changelogs/106.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/id/changelogs/106.txt -------------------------------------------------------------------------------- /metadata/id/changelogs/107.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/id/changelogs/107.txt -------------------------------------------------------------------------------- /metadata/id/changelogs/108.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/id/changelogs/108.txt -------------------------------------------------------------------------------- /metadata/id/changelogs/110.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/id/changelogs/110.txt -------------------------------------------------------------------------------- /metadata/id/changelogs/59.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/id/changelogs/59.txt -------------------------------------------------------------------------------- /metadata/id/changelogs/61.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/id/changelogs/61.txt -------------------------------------------------------------------------------- /metadata/id/changelogs/62.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/id/changelogs/62.txt -------------------------------------------------------------------------------- /metadata/id/changelogs/63.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/id/changelogs/63.txt -------------------------------------------------------------------------------- /metadata/id/changelogs/65.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/id/changelogs/65.txt -------------------------------------------------------------------------------- /metadata/id/changelogs/67.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/id/changelogs/67.txt -------------------------------------------------------------------------------- /metadata/id/changelogs/73.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/id/changelogs/73.txt -------------------------------------------------------------------------------- /metadata/id/changelogs/74.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/id/changelogs/74.txt -------------------------------------------------------------------------------- /metadata/id/changelogs/76.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/id/changelogs/76.txt -------------------------------------------------------------------------------- /metadata/id/changelogs/77.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/id/changelogs/77.txt -------------------------------------------------------------------------------- /metadata/id/changelogs/78.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/id/changelogs/78.txt -------------------------------------------------------------------------------- /metadata/id/changelogs/79.txt: -------------------------------------------------------------------------------- 1 | Menambahkan tombol donasi! 2 | -------------------------------------------------------------------------------- /metadata/id/changelogs/80.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/id/changelogs/80.txt -------------------------------------------------------------------------------- /metadata/id/changelogs/81.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/id/changelogs/81.txt -------------------------------------------------------------------------------- /metadata/id/changelogs/82.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/id/changelogs/82.txt -------------------------------------------------------------------------------- /metadata/id/changelogs/83.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/id/changelogs/83.txt -------------------------------------------------------------------------------- /metadata/id/changelogs/84.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/id/changelogs/84.txt -------------------------------------------------------------------------------- /metadata/id/changelogs/85.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/id/changelogs/85.txt -------------------------------------------------------------------------------- /metadata/id/changelogs/86.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/id/changelogs/86.txt -------------------------------------------------------------------------------- /metadata/id/changelogs/87.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/id/changelogs/87.txt -------------------------------------------------------------------------------- /metadata/id/changelogs/88.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/id/changelogs/88.txt -------------------------------------------------------------------------------- /metadata/id/changelogs/89.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/id/changelogs/89.txt -------------------------------------------------------------------------------- /metadata/id/changelogs/91.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/id/changelogs/91.txt -------------------------------------------------------------------------------- /metadata/id/changelogs/92.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/id/changelogs/92.txt -------------------------------------------------------------------------------- /metadata/id/changelogs/94.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/id/changelogs/94.txt -------------------------------------------------------------------------------- /metadata/id/changelogs/95.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/id/changelogs/95.txt -------------------------------------------------------------------------------- /metadata/id/changelogs/96.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/id/changelogs/96.txt -------------------------------------------------------------------------------- /metadata/id/changelogs/97.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/id/changelogs/97.txt -------------------------------------------------------------------------------- /metadata/id/changelogs/98.txt: -------------------------------------------------------------------------------- 1 | Rilis awal play store 2 | -------------------------------------------------------------------------------- /metadata/id/changelogs/99.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/id/changelogs/99.txt -------------------------------------------------------------------------------- /metadata/id/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/id/full_description.txt -------------------------------------------------------------------------------- /metadata/id/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/id/short_description.txt -------------------------------------------------------------------------------- /metadata/id/title.txt: -------------------------------------------------------------------------------- 1 | Moshidon 2 | -------------------------------------------------------------------------------- /metadata/it-IT/changelogs/101.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/it-IT/changelogs/101.txt -------------------------------------------------------------------------------- /metadata/it-IT/changelogs/102.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/it-IT/changelogs/102.txt -------------------------------------------------------------------------------- /metadata/it-IT/changelogs/103.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/it-IT/changelogs/103.txt -------------------------------------------------------------------------------- /metadata/it-IT/changelogs/104.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/it-IT/changelogs/104.txt -------------------------------------------------------------------------------- /metadata/it-IT/changelogs/105.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/it-IT/changelogs/105.txt -------------------------------------------------------------------------------- /metadata/it-IT/changelogs/106.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/it-IT/changelogs/106.txt -------------------------------------------------------------------------------- /metadata/it-IT/changelogs/107.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/it-IT/changelogs/107.txt -------------------------------------------------------------------------------- /metadata/it-IT/changelogs/110.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/it-IT/changelogs/110.txt -------------------------------------------------------------------------------- /metadata/it-IT/changelogs/59.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/it-IT/changelogs/59.txt -------------------------------------------------------------------------------- /metadata/it-IT/changelogs/61.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/it-IT/changelogs/61.txt -------------------------------------------------------------------------------- /metadata/it-IT/changelogs/62.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/it-IT/changelogs/62.txt -------------------------------------------------------------------------------- /metadata/it-IT/changelogs/63.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/it-IT/changelogs/63.txt -------------------------------------------------------------------------------- /metadata/it-IT/changelogs/65.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/it-IT/changelogs/65.txt -------------------------------------------------------------------------------- /metadata/it-IT/changelogs/67.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/it-IT/changelogs/67.txt -------------------------------------------------------------------------------- /metadata/it-IT/changelogs/73.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/it-IT/changelogs/73.txt -------------------------------------------------------------------------------- /metadata/it-IT/changelogs/74.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/it-IT/changelogs/74.txt -------------------------------------------------------------------------------- /metadata/it-IT/changelogs/76.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/it-IT/changelogs/76.txt -------------------------------------------------------------------------------- /metadata/it-IT/changelogs/77.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/it-IT/changelogs/77.txt -------------------------------------------------------------------------------- /metadata/it-IT/changelogs/78.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/it-IT/changelogs/78.txt -------------------------------------------------------------------------------- /metadata/it-IT/changelogs/79.txt: -------------------------------------------------------------------------------- 1 | Aggiunto un tasto per donare! 2 | -------------------------------------------------------------------------------- /metadata/it-IT/changelogs/80.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/it-IT/changelogs/80.txt -------------------------------------------------------------------------------- /metadata/it-IT/changelogs/81.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/it-IT/changelogs/81.txt -------------------------------------------------------------------------------- /metadata/it-IT/changelogs/82.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/it-IT/changelogs/82.txt -------------------------------------------------------------------------------- /metadata/it-IT/changelogs/83.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/it-IT/changelogs/83.txt -------------------------------------------------------------------------------- /metadata/it-IT/changelogs/84.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/it-IT/changelogs/84.txt -------------------------------------------------------------------------------- /metadata/it-IT/changelogs/85.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/it-IT/changelogs/85.txt -------------------------------------------------------------------------------- /metadata/it-IT/changelogs/86.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/it-IT/changelogs/86.txt -------------------------------------------------------------------------------- /metadata/it-IT/changelogs/87.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/it-IT/changelogs/87.txt -------------------------------------------------------------------------------- /metadata/it-IT/changelogs/88.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/it-IT/changelogs/88.txt -------------------------------------------------------------------------------- /metadata/it-IT/changelogs/89.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/it-IT/changelogs/89.txt -------------------------------------------------------------------------------- /metadata/it-IT/changelogs/91.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/it-IT/changelogs/91.txt -------------------------------------------------------------------------------- /metadata/it-IT/changelogs/92.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/it-IT/changelogs/92.txt -------------------------------------------------------------------------------- /metadata/it-IT/changelogs/94.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/it-IT/changelogs/94.txt -------------------------------------------------------------------------------- /metadata/it-IT/changelogs/95.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/it-IT/changelogs/95.txt -------------------------------------------------------------------------------- /metadata/it-IT/changelogs/96.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/it-IT/changelogs/96.txt -------------------------------------------------------------------------------- /metadata/it-IT/changelogs/97.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/it-IT/changelogs/97.txt -------------------------------------------------------------------------------- /metadata/it-IT/changelogs/98.txt: -------------------------------------------------------------------------------- 1 | Versione iniziale sul Play Store 2 | -------------------------------------------------------------------------------- /metadata/it-IT/changelogs/99.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/it-IT/changelogs/99.txt -------------------------------------------------------------------------------- /metadata/it-IT/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/it-IT/full_description.txt -------------------------------------------------------------------------------- /metadata/it-IT/short_description.txt: -------------------------------------------------------------------------------- 1 | Mastodon per Android, ma in Material You e con più funzioni 2 | -------------------------------------------------------------------------------- /metadata/it-IT/title.txt: -------------------------------------------------------------------------------- 1 | Moshidon 2 | -------------------------------------------------------------------------------- /metadata/ja-JP/changelogs/101.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ja-JP/changelogs/101.txt -------------------------------------------------------------------------------- /metadata/ja-JP/changelogs/102.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ja-JP/changelogs/102.txt -------------------------------------------------------------------------------- /metadata/ja-JP/changelogs/103.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ja-JP/changelogs/103.txt -------------------------------------------------------------------------------- /metadata/ja-JP/changelogs/104.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ja-JP/changelogs/104.txt -------------------------------------------------------------------------------- /metadata/ja-JP/changelogs/105.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ja-JP/changelogs/105.txt -------------------------------------------------------------------------------- /metadata/ja-JP/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ja-JP/full_description.txt -------------------------------------------------------------------------------- /metadata/ja-JP/short_description.txt: -------------------------------------------------------------------------------- 1 | ピンクなAndroid版Mastodonアプリですが、様々な機能が追加されています 2 | -------------------------------------------------------------------------------- /metadata/ja-JP/title.txt: -------------------------------------------------------------------------------- 1 | Moshidon 2 | -------------------------------------------------------------------------------- /metadata/kab/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/kab/full_description.txt -------------------------------------------------------------------------------- /metadata/kab/short_description.txt: -------------------------------------------------------------------------------- 1 | Mastodon for Android but it's pink and has more features 2 | -------------------------------------------------------------------------------- /metadata/ko/changelogs/74.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ko/changelogs/74.txt -------------------------------------------------------------------------------- /metadata/ko/changelogs/76.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ko/changelogs/76.txt -------------------------------------------------------------------------------- /metadata/ko/changelogs/77.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ko/changelogs/77.txt -------------------------------------------------------------------------------- /metadata/ko/changelogs/83.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ko/changelogs/83.txt -------------------------------------------------------------------------------- /metadata/ko/changelogs/94.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ko/changelogs/94.txt -------------------------------------------------------------------------------- /metadata/lt/changelogs/101.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/lt/changelogs/101.txt -------------------------------------------------------------------------------- /metadata/lt/changelogs/102.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/lt/changelogs/102.txt -------------------------------------------------------------------------------- /metadata/lt/changelogs/106.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/lt/changelogs/106.txt -------------------------------------------------------------------------------- /metadata/lt/changelogs/107.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/lt/changelogs/107.txt -------------------------------------------------------------------------------- /metadata/lt/changelogs/59.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/lt/changelogs/59.txt -------------------------------------------------------------------------------- /metadata/lt/changelogs/61.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/lt/changelogs/61.txt -------------------------------------------------------------------------------- /metadata/lt/changelogs/77.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/lt/changelogs/77.txt -------------------------------------------------------------------------------- /metadata/lt/changelogs/78.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/lt/changelogs/78.txt -------------------------------------------------------------------------------- /metadata/lt/changelogs/79.txt: -------------------------------------------------------------------------------- 1 | Pridėta aukojimo mygtukas. 2 | -------------------------------------------------------------------------------- /metadata/lt/changelogs/80.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/lt/changelogs/80.txt -------------------------------------------------------------------------------- /metadata/lt/changelogs/81.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/lt/changelogs/81.txt -------------------------------------------------------------------------------- /metadata/lt/changelogs/95.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/lt/changelogs/95.txt -------------------------------------------------------------------------------- /metadata/lt/changelogs/96.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/lt/changelogs/96.txt -------------------------------------------------------------------------------- /metadata/lt/changelogs/97.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/lt/changelogs/97.txt -------------------------------------------------------------------------------- /metadata/lt/changelogs/98.txt: -------------------------------------------------------------------------------- 1 | Pirminis „Play Store“ leidimas 2 | -------------------------------------------------------------------------------- /metadata/lt/changelogs/99.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/lt/changelogs/99.txt -------------------------------------------------------------------------------- /metadata/lt/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/lt/full_description.txt -------------------------------------------------------------------------------- /metadata/lt/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/lt/short_description.txt -------------------------------------------------------------------------------- /metadata/lt/title.txt: -------------------------------------------------------------------------------- 1 | Moshidon 2 | -------------------------------------------------------------------------------- /metadata/my/title.txt: -------------------------------------------------------------------------------- 1 | Moshidon 2 | -------------------------------------------------------------------------------- /metadata/nl-NL/changelogs/101.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/nl-NL/changelogs/101.txt -------------------------------------------------------------------------------- /metadata/nl-NL/changelogs/102.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/nl-NL/changelogs/102.txt -------------------------------------------------------------------------------- /metadata/nl-NL/changelogs/103.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/nl-NL/changelogs/103.txt -------------------------------------------------------------------------------- /metadata/nl-NL/changelogs/104.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/nl-NL/changelogs/104.txt -------------------------------------------------------------------------------- /metadata/nl-NL/changelogs/105.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/nl-NL/changelogs/105.txt -------------------------------------------------------------------------------- /metadata/nl-NL/changelogs/106.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/nl-NL/changelogs/106.txt -------------------------------------------------------------------------------- /metadata/nl-NL/changelogs/110.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/nl-NL/changelogs/110.txt -------------------------------------------------------------------------------- /metadata/nl-NL/changelogs/59.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/nl-NL/changelogs/59.txt -------------------------------------------------------------------------------- /metadata/nl-NL/changelogs/61.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/nl-NL/changelogs/61.txt -------------------------------------------------------------------------------- /metadata/nl-NL/changelogs/62.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/nl-NL/changelogs/62.txt -------------------------------------------------------------------------------- /metadata/nl-NL/changelogs/63.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/nl-NL/changelogs/63.txt -------------------------------------------------------------------------------- /metadata/nl-NL/changelogs/65.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/nl-NL/changelogs/65.txt -------------------------------------------------------------------------------- /metadata/nl-NL/changelogs/67.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/nl-NL/changelogs/67.txt -------------------------------------------------------------------------------- /metadata/nl-NL/changelogs/73.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/nl-NL/changelogs/73.txt -------------------------------------------------------------------------------- /metadata/nl-NL/changelogs/74.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/nl-NL/changelogs/74.txt -------------------------------------------------------------------------------- /metadata/nl-NL/changelogs/76.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/nl-NL/changelogs/76.txt -------------------------------------------------------------------------------- /metadata/nl-NL/changelogs/77.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/nl-NL/changelogs/77.txt -------------------------------------------------------------------------------- /metadata/nl-NL/changelogs/78.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/nl-NL/changelogs/78.txt -------------------------------------------------------------------------------- /metadata/nl-NL/changelogs/79.txt: -------------------------------------------------------------------------------- 1 | Adding a donate button! 2 | -------------------------------------------------------------------------------- /metadata/nl-NL/changelogs/80.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/nl-NL/changelogs/80.txt -------------------------------------------------------------------------------- /metadata/nl-NL/changelogs/81.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/nl-NL/changelogs/81.txt -------------------------------------------------------------------------------- /metadata/nl-NL/changelogs/82.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/nl-NL/changelogs/82.txt -------------------------------------------------------------------------------- /metadata/nl-NL/changelogs/83.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/nl-NL/changelogs/83.txt -------------------------------------------------------------------------------- /metadata/nl-NL/changelogs/84.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/nl-NL/changelogs/84.txt -------------------------------------------------------------------------------- /metadata/nl-NL/changelogs/85.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/nl-NL/changelogs/85.txt -------------------------------------------------------------------------------- /metadata/nl-NL/changelogs/86.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/nl-NL/changelogs/86.txt -------------------------------------------------------------------------------- /metadata/nl-NL/changelogs/87.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/nl-NL/changelogs/87.txt -------------------------------------------------------------------------------- /metadata/nl-NL/changelogs/88.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/nl-NL/changelogs/88.txt -------------------------------------------------------------------------------- /metadata/nl-NL/changelogs/89.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/nl-NL/changelogs/89.txt -------------------------------------------------------------------------------- /metadata/nl-NL/changelogs/91.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/nl-NL/changelogs/91.txt -------------------------------------------------------------------------------- /metadata/nl-NL/changelogs/92.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/nl-NL/changelogs/92.txt -------------------------------------------------------------------------------- /metadata/nl-NL/changelogs/94.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/nl-NL/changelogs/94.txt -------------------------------------------------------------------------------- /metadata/nl-NL/changelogs/95.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/nl-NL/changelogs/95.txt -------------------------------------------------------------------------------- /metadata/nl-NL/changelogs/96.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/nl-NL/changelogs/96.txt -------------------------------------------------------------------------------- /metadata/nl-NL/changelogs/97.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/nl-NL/changelogs/97.txt -------------------------------------------------------------------------------- /metadata/nl-NL/changelogs/98.txt: -------------------------------------------------------------------------------- 1 | Initial play store release 2 | -------------------------------------------------------------------------------- /metadata/nl-NL/changelogs/99.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/nl-NL/changelogs/99.txt -------------------------------------------------------------------------------- /metadata/nl-NL/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/nl-NL/full_description.txt -------------------------------------------------------------------------------- /metadata/nl-NL/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/nl-NL/short_description.txt -------------------------------------------------------------------------------- /metadata/nl-NL/title.txt: -------------------------------------------------------------------------------- 1 | Moshidon 2 | -------------------------------------------------------------------------------- /metadata/oc/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/oc/full_description.txt -------------------------------------------------------------------------------- /metadata/oc/short_description.txt: -------------------------------------------------------------------------------- 1 | Mastodon for Android but it's pink and has more features 2 | -------------------------------------------------------------------------------- /metadata/pl-PL/short_description.txt: -------------------------------------------------------------------------------- 1 | Mastodon na Android ale ma więcej funkcji i jest w stylu Material You 2 | -------------------------------------------------------------------------------- /metadata/pl-PL/title.txt: -------------------------------------------------------------------------------- 1 | Moshidon 2 | -------------------------------------------------------------------------------- /metadata/pl/changelogs/101.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pl/changelogs/101.txt -------------------------------------------------------------------------------- /metadata/pl/changelogs/102.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pl/changelogs/102.txt -------------------------------------------------------------------------------- /metadata/pl/changelogs/103.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pl/changelogs/103.txt -------------------------------------------------------------------------------- /metadata/pl/changelogs/108.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pl/changelogs/108.txt -------------------------------------------------------------------------------- /metadata/pl/changelogs/110.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pl/changelogs/110.txt -------------------------------------------------------------------------------- /metadata/pl/changelogs/59.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pl/changelogs/59.txt -------------------------------------------------------------------------------- /metadata/pl/changelogs/61.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pl/changelogs/61.txt -------------------------------------------------------------------------------- /metadata/pl/changelogs/62.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pl/changelogs/62.txt -------------------------------------------------------------------------------- /metadata/pl/changelogs/63.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pl/changelogs/63.txt -------------------------------------------------------------------------------- /metadata/pl/changelogs/65.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pl/changelogs/65.txt -------------------------------------------------------------------------------- /metadata/pl/changelogs/67.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pl/changelogs/67.txt -------------------------------------------------------------------------------- /metadata/pl/changelogs/73.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pl/changelogs/73.txt -------------------------------------------------------------------------------- /metadata/pl/changelogs/74.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pl/changelogs/74.txt -------------------------------------------------------------------------------- /metadata/pl/changelogs/76.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pl/changelogs/76.txt -------------------------------------------------------------------------------- /metadata/pl/changelogs/77.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pl/changelogs/77.txt -------------------------------------------------------------------------------- /metadata/pl/changelogs/78.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pl/changelogs/78.txt -------------------------------------------------------------------------------- /metadata/pl/changelogs/79.txt: -------------------------------------------------------------------------------- 1 | Dodanie przycisku wpłaty darowizny! 2 | -------------------------------------------------------------------------------- /metadata/pl/changelogs/80.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pl/changelogs/80.txt -------------------------------------------------------------------------------- /metadata/pl/changelogs/81.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pl/changelogs/81.txt -------------------------------------------------------------------------------- /metadata/pl/changelogs/82.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pl/changelogs/82.txt -------------------------------------------------------------------------------- /metadata/pl/changelogs/83.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pl/changelogs/83.txt -------------------------------------------------------------------------------- /metadata/pl/changelogs/84.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pl/changelogs/84.txt -------------------------------------------------------------------------------- /metadata/pl/changelogs/85.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pl/changelogs/85.txt -------------------------------------------------------------------------------- /metadata/pl/changelogs/86.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pl/changelogs/86.txt -------------------------------------------------------------------------------- /metadata/pl/changelogs/87.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pl/changelogs/87.txt -------------------------------------------------------------------------------- /metadata/pl/changelogs/88.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pl/changelogs/88.txt -------------------------------------------------------------------------------- /metadata/pl/changelogs/89.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pl/changelogs/89.txt -------------------------------------------------------------------------------- /metadata/pl/changelogs/91.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pl/changelogs/91.txt -------------------------------------------------------------------------------- /metadata/pl/changelogs/92.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pl/changelogs/92.txt -------------------------------------------------------------------------------- /metadata/pl/changelogs/94.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pl/changelogs/94.txt -------------------------------------------------------------------------------- /metadata/pl/changelogs/95.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pl/changelogs/95.txt -------------------------------------------------------------------------------- /metadata/pl/changelogs/96.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pl/changelogs/96.txt -------------------------------------------------------------------------------- /metadata/pl/changelogs/97.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pl/changelogs/97.txt -------------------------------------------------------------------------------- /metadata/pl/changelogs/98.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pl/changelogs/98.txt -------------------------------------------------------------------------------- /metadata/pl/changelogs/99.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pl/changelogs/99.txt -------------------------------------------------------------------------------- /metadata/pl/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pl/full_description.txt -------------------------------------------------------------------------------- /metadata/pl/short_description.txt: -------------------------------------------------------------------------------- 1 | Mastodon na Android ale wspiera motyw Material You i ma więcej funkcji 2 | -------------------------------------------------------------------------------- /metadata/pl/title.txt: -------------------------------------------------------------------------------- 1 | Moshidon 2 | -------------------------------------------------------------------------------- /metadata/pt-BR/changelogs/59.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pt-BR/changelogs/59.txt -------------------------------------------------------------------------------- /metadata/pt-BR/changelogs/74.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pt-BR/changelogs/74.txt -------------------------------------------------------------------------------- /metadata/pt-BR/changelogs/76.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pt-BR/changelogs/76.txt -------------------------------------------------------------------------------- /metadata/pt-BR/changelogs/77.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pt-BR/changelogs/77.txt -------------------------------------------------------------------------------- /metadata/pt-BR/changelogs/83.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pt-BR/changelogs/83.txt -------------------------------------------------------------------------------- /metadata/pt-BR/changelogs/94.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pt-BR/changelogs/94.txt -------------------------------------------------------------------------------- /metadata/pt-BR/changelogs/99.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pt-BR/changelogs/99.txt -------------------------------------------------------------------------------- /metadata/pt-BR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pt-BR/full_description.txt -------------------------------------------------------------------------------- /metadata/pt-BR/short_description.txt: -------------------------------------------------------------------------------- 1 | Mastodon para Android mas é Material You e tem mais recursos 2 | -------------------------------------------------------------------------------- /metadata/pt-BR/title.txt: -------------------------------------------------------------------------------- 1 | Moshidon 2 | -------------------------------------------------------------------------------- /metadata/pt-PT/changelogs/50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pt-PT/changelogs/50.txt -------------------------------------------------------------------------------- /metadata/pt-PT/changelogs/51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pt-PT/changelogs/51.txt -------------------------------------------------------------------------------- /metadata/pt-PT/changelogs/55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pt-PT/changelogs/55.txt -------------------------------------------------------------------------------- /metadata/pt-PT/changelogs/56.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pt-PT/changelogs/56.txt -------------------------------------------------------------------------------- /metadata/pt-PT/changelogs/59.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pt-PT/changelogs/59.txt -------------------------------------------------------------------------------- /metadata/pt-PT/changelogs/61.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pt-PT/changelogs/61.txt -------------------------------------------------------------------------------- /metadata/pt-PT/changelogs/62.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pt-PT/changelogs/62.txt -------------------------------------------------------------------------------- /metadata/pt-PT/changelogs/63.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pt-PT/changelogs/63.txt -------------------------------------------------------------------------------- /metadata/pt-PT/changelogs/65.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pt-PT/changelogs/65.txt -------------------------------------------------------------------------------- /metadata/pt-PT/changelogs/67.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pt-PT/changelogs/67.txt -------------------------------------------------------------------------------- /metadata/pt-PT/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/pt-PT/full_description.txt -------------------------------------------------------------------------------- /metadata/pt-PT/short_description.txt: -------------------------------------------------------------------------------- 1 | Mastodon para Android mas é Material You e tem mais recursos 2 | -------------------------------------------------------------------------------- /metadata/pt-PT/title.txt: -------------------------------------------------------------------------------- 1 | Moshidon 2 | -------------------------------------------------------------------------------- /metadata/ro/changelogs/101.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ro/changelogs/101.txt -------------------------------------------------------------------------------- /metadata/ro/changelogs/108.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ro/changelogs/108.txt -------------------------------------------------------------------------------- /metadata/ro/changelogs/110.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ro/changelogs/110.txt -------------------------------------------------------------------------------- /metadata/ro/changelogs/50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ro/changelogs/50.txt -------------------------------------------------------------------------------- /metadata/ro/changelogs/51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ro/changelogs/51.txt -------------------------------------------------------------------------------- /metadata/ro/changelogs/55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ro/changelogs/55.txt -------------------------------------------------------------------------------- /metadata/ro/changelogs/56.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ro/changelogs/56.txt -------------------------------------------------------------------------------- /metadata/ro/changelogs/59.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ro/changelogs/59.txt -------------------------------------------------------------------------------- /metadata/ro/changelogs/61.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ro/changelogs/61.txt -------------------------------------------------------------------------------- /metadata/ro/changelogs/62.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ro/changelogs/62.txt -------------------------------------------------------------------------------- /metadata/ro/changelogs/63.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ro/changelogs/63.txt -------------------------------------------------------------------------------- /metadata/ro/changelogs/65.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ro/changelogs/65.txt -------------------------------------------------------------------------------- /metadata/ro/changelogs/67.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ro/changelogs/67.txt -------------------------------------------------------------------------------- /metadata/ro/changelogs/73.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ro/changelogs/73.txt -------------------------------------------------------------------------------- /metadata/ro/changelogs/74.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ro/changelogs/74.txt -------------------------------------------------------------------------------- /metadata/ro/changelogs/76.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ro/changelogs/76.txt -------------------------------------------------------------------------------- /metadata/ro/changelogs/77.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ro/changelogs/77.txt -------------------------------------------------------------------------------- /metadata/ro/changelogs/78.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ro/changelogs/78.txt -------------------------------------------------------------------------------- /metadata/ro/changelogs/79.txt: -------------------------------------------------------------------------------- 1 | Butonul de donare adăugat! 2 | -------------------------------------------------------------------------------- /metadata/ro/changelogs/80.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ro/changelogs/80.txt -------------------------------------------------------------------------------- /metadata/ro/changelogs/81.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ro/changelogs/81.txt -------------------------------------------------------------------------------- /metadata/ro/changelogs/82.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ro/changelogs/82.txt -------------------------------------------------------------------------------- /metadata/ro/changelogs/83.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ro/changelogs/83.txt -------------------------------------------------------------------------------- /metadata/ro/changelogs/84.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ro/changelogs/84.txt -------------------------------------------------------------------------------- /metadata/ro/changelogs/85.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ro/changelogs/85.txt -------------------------------------------------------------------------------- /metadata/ro/changelogs/86.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ro/changelogs/86.txt -------------------------------------------------------------------------------- /metadata/ro/changelogs/87.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ro/changelogs/87.txt -------------------------------------------------------------------------------- /metadata/ro/changelogs/88.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ro/changelogs/88.txt -------------------------------------------------------------------------------- /metadata/ro/changelogs/89.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ro/changelogs/89.txt -------------------------------------------------------------------------------- /metadata/ro/changelogs/91.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ro/changelogs/91.txt -------------------------------------------------------------------------------- /metadata/ro/changelogs/92.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ro/changelogs/92.txt -------------------------------------------------------------------------------- /metadata/ro/changelogs/94.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ro/changelogs/94.txt -------------------------------------------------------------------------------- /metadata/ro/changelogs/95.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ro/changelogs/95.txt -------------------------------------------------------------------------------- /metadata/ro/changelogs/96.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ro/changelogs/96.txt -------------------------------------------------------------------------------- /metadata/ro/changelogs/97.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ro/changelogs/97.txt -------------------------------------------------------------------------------- /metadata/ro/changelogs/98.txt: -------------------------------------------------------------------------------- 1 | Lansarea inițială pe play store 2 | -------------------------------------------------------------------------------- /metadata/ro/changelogs/99.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ro/changelogs/99.txt -------------------------------------------------------------------------------- /metadata/ro/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ro/full_description.txt -------------------------------------------------------------------------------- /metadata/ro/short_description.txt: -------------------------------------------------------------------------------- 1 | Mastodon pentru Android dar e roz și are mai multă funcționalitate 2 | -------------------------------------------------------------------------------- /metadata/ro/title.txt: -------------------------------------------------------------------------------- 1 | Moshidon 2 | -------------------------------------------------------------------------------- /metadata/ru-RU/changelogs/59.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ru-RU/changelogs/59.txt -------------------------------------------------------------------------------- /metadata/ru-RU/changelogs/61.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ru-RU/changelogs/61.txt -------------------------------------------------------------------------------- /metadata/ru-RU/changelogs/62.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ru-RU/changelogs/62.txt -------------------------------------------------------------------------------- /metadata/ru-RU/changelogs/63.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ru-RU/changelogs/63.txt -------------------------------------------------------------------------------- /metadata/ru-RU/changelogs/65.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ru-RU/changelogs/65.txt -------------------------------------------------------------------------------- /metadata/ru-RU/changelogs/67.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ru-RU/changelogs/67.txt -------------------------------------------------------------------------------- /metadata/ru-RU/changelogs/73.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ru-RU/changelogs/73.txt -------------------------------------------------------------------------------- /metadata/ru-RU/changelogs/74.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ru-RU/changelogs/74.txt -------------------------------------------------------------------------------- /metadata/ru-RU/changelogs/76.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ru-RU/changelogs/76.txt -------------------------------------------------------------------------------- /metadata/ru-RU/changelogs/77.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ru-RU/changelogs/77.txt -------------------------------------------------------------------------------- /metadata/ru-RU/changelogs/78.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ru-RU/changelogs/78.txt -------------------------------------------------------------------------------- /metadata/ru-RU/changelogs/79.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ru-RU/changelogs/79.txt -------------------------------------------------------------------------------- /metadata/ru-RU/changelogs/80.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ru-RU/changelogs/80.txt -------------------------------------------------------------------------------- /metadata/ru-RU/changelogs/81.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ru-RU/changelogs/81.txt -------------------------------------------------------------------------------- /metadata/ru-RU/changelogs/82.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ru-RU/changelogs/82.txt -------------------------------------------------------------------------------- /metadata/ru-RU/changelogs/83.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ru-RU/changelogs/83.txt -------------------------------------------------------------------------------- /metadata/ru-RU/changelogs/84.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ru-RU/changelogs/84.txt -------------------------------------------------------------------------------- /metadata/ru-RU/changelogs/85.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ru-RU/changelogs/85.txt -------------------------------------------------------------------------------- /metadata/ru-RU/changelogs/86.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ru-RU/changelogs/86.txt -------------------------------------------------------------------------------- /metadata/ru-RU/changelogs/87.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ru-RU/changelogs/87.txt -------------------------------------------------------------------------------- /metadata/ru-RU/changelogs/88.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ru-RU/changelogs/88.txt -------------------------------------------------------------------------------- /metadata/ru-RU/changelogs/89.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ru-RU/changelogs/89.txt -------------------------------------------------------------------------------- /metadata/ru-RU/changelogs/91.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ru-RU/changelogs/91.txt -------------------------------------------------------------------------------- /metadata/ru-RU/changelogs/92.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ru-RU/changelogs/92.txt -------------------------------------------------------------------------------- /metadata/ru-RU/changelogs/94.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ru-RU/changelogs/94.txt -------------------------------------------------------------------------------- /metadata/ru-RU/changelogs/95.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ru-RU/changelogs/95.txt -------------------------------------------------------------------------------- /metadata/ru-RU/changelogs/96.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ru-RU/changelogs/96.txt -------------------------------------------------------------------------------- /metadata/ru-RU/changelogs/97.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ru-RU/changelogs/97.txt -------------------------------------------------------------------------------- /metadata/ru-RU/changelogs/98.txt: -------------------------------------------------------------------------------- 1 | Публикация Play Store 2 | -------------------------------------------------------------------------------- /metadata/ru-RU/changelogs/99.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ru-RU/changelogs/99.txt -------------------------------------------------------------------------------- /metadata/ru-RU/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ru-RU/full_description.txt -------------------------------------------------------------------------------- /metadata/ru-RU/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ru-RU/short_description.txt -------------------------------------------------------------------------------- /metadata/ru-RU/title.txt: -------------------------------------------------------------------------------- 1 | Moshidon 2 | -------------------------------------------------------------------------------- /metadata/ru/changelogs/101.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ru/changelogs/101.txt -------------------------------------------------------------------------------- /metadata/ru/changelogs/108.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ru/changelogs/108.txt -------------------------------------------------------------------------------- /metadata/ru/changelogs/65.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ru/changelogs/65.txt -------------------------------------------------------------------------------- /metadata/ru/changelogs/67.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ru/changelogs/67.txt -------------------------------------------------------------------------------- /metadata/ru/changelogs/77.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ru/changelogs/77.txt -------------------------------------------------------------------------------- /metadata/ru/changelogs/83.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ru/changelogs/83.txt -------------------------------------------------------------------------------- /metadata/ru/changelogs/94.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ru/changelogs/94.txt -------------------------------------------------------------------------------- /metadata/ru/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/ru/short_description.txt -------------------------------------------------------------------------------- /metadata/ru/title.txt: -------------------------------------------------------------------------------- 1 | Moshidon 2 | -------------------------------------------------------------------------------- /metadata/sl/changelogs/50.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/sl/changelogs/50.txt -------------------------------------------------------------------------------- /metadata/sl/changelogs/55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/sl/changelogs/55.txt -------------------------------------------------------------------------------- /metadata/sl/changelogs/59.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/sl/changelogs/59.txt -------------------------------------------------------------------------------- /metadata/sl/changelogs/62.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/sl/changelogs/62.txt -------------------------------------------------------------------------------- /metadata/sl/changelogs/63.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/sl/changelogs/63.txt -------------------------------------------------------------------------------- /metadata/sl/changelogs/65.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/sl/changelogs/65.txt -------------------------------------------------------------------------------- /metadata/sl/changelogs/67.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/sl/changelogs/67.txt -------------------------------------------------------------------------------- /metadata/sl/changelogs/74.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/sl/changelogs/74.txt -------------------------------------------------------------------------------- /metadata/sl/changelogs/78.txt: -------------------------------------------------------------------------------- 1 | Odstranitev ločevanja objav iz časovnice! Je tudi nastavljivo. 2 | -------------------------------------------------------------------------------- /metadata/sl/changelogs/79.txt: -------------------------------------------------------------------------------- 1 | Dodan gumb za doniranje! 2 | -------------------------------------------------------------------------------- /metadata/sl/changelogs/80.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/sl/changelogs/80.txt -------------------------------------------------------------------------------- /metadata/sl/changelogs/87.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/sl/changelogs/87.txt -------------------------------------------------------------------------------- /metadata/sl/changelogs/94.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/sl/changelogs/94.txt -------------------------------------------------------------------------------- /metadata/sl/short_description.txt: -------------------------------------------------------------------------------- 1 | Mastodon za Android,ki podpira teme Material You in ima več funkcij 2 | -------------------------------------------------------------------------------- /metadata/sl/title.txt: -------------------------------------------------------------------------------- 1 | Moshidon 2 | -------------------------------------------------------------------------------- /metadata/sv-SE/changelogs/73.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/sv-SE/changelogs/73.txt -------------------------------------------------------------------------------- /metadata/sv-SE/changelogs/78.txt: -------------------------------------------------------------------------------- 1 | Tar bort tutavdelaren på huvudtidslinjen! Det är också konfigurerbart. 2 | -------------------------------------------------------------------------------- /metadata/sv-SE/changelogs/79.txt: -------------------------------------------------------------------------------- 1 | Lägger till en donationsknapp! 2 | -------------------------------------------------------------------------------- /metadata/sv-SE/changelogs/80.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/sv-SE/changelogs/80.txt -------------------------------------------------------------------------------- /metadata/sv-SE/changelogs/81.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/sv-SE/changelogs/81.txt -------------------------------------------------------------------------------- /metadata/sv-SE/changelogs/82.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/sv-SE/changelogs/82.txt -------------------------------------------------------------------------------- /metadata/sv-SE/changelogs/83.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/sv-SE/changelogs/83.txt -------------------------------------------------------------------------------- /metadata/sv-SE/changelogs/84.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/sv-SE/changelogs/84.txt -------------------------------------------------------------------------------- /metadata/sv-SE/changelogs/85.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/sv-SE/changelogs/85.txt -------------------------------------------------------------------------------- /metadata/sv-SE/changelogs/86.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/sv-SE/changelogs/86.txt -------------------------------------------------------------------------------- /metadata/sv-SE/changelogs/87.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/sv-SE/changelogs/87.txt -------------------------------------------------------------------------------- /metadata/sv-SE/changelogs/88.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/sv-SE/changelogs/88.txt -------------------------------------------------------------------------------- /metadata/sv-SE/changelogs/89.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/sv-SE/changelogs/89.txt -------------------------------------------------------------------------------- /metadata/sv-SE/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/sv-SE/full_description.txt -------------------------------------------------------------------------------- /metadata/sv-SE/short_description.txt: -------------------------------------------------------------------------------- 1 | Mastodon för Android men det är Material You och har fler funktioner 2 | -------------------------------------------------------------------------------- /metadata/sv-SE/title.txt: -------------------------------------------------------------------------------- 1 | Moshidon 2 | -------------------------------------------------------------------------------- /metadata/sv/changelogs/55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/sv/changelogs/55.txt -------------------------------------------------------------------------------- /metadata/sv/changelogs/56.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/sv/changelogs/56.txt -------------------------------------------------------------------------------- /metadata/sv/changelogs/59.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/sv/changelogs/59.txt -------------------------------------------------------------------------------- /metadata/sv/changelogs/61.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/sv/changelogs/61.txt -------------------------------------------------------------------------------- /metadata/sv/short_description.txt: -------------------------------------------------------------------------------- 1 | Mastodon för Android, men med Material You och har fler egenskaper 2 | -------------------------------------------------------------------------------- /metadata/sv/title.txt: -------------------------------------------------------------------------------- 1 | Moshidon 2 | -------------------------------------------------------------------------------- /metadata/tr-TR/changelogs/101.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/tr-TR/changelogs/101.txt -------------------------------------------------------------------------------- /metadata/tr-TR/changelogs/102.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/tr-TR/changelogs/102.txt -------------------------------------------------------------------------------- /metadata/tr-TR/changelogs/103.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/tr-TR/changelogs/103.txt -------------------------------------------------------------------------------- /metadata/tr-TR/changelogs/104.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/tr-TR/changelogs/104.txt -------------------------------------------------------------------------------- /metadata/tr-TR/changelogs/105.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/tr-TR/changelogs/105.txt -------------------------------------------------------------------------------- /metadata/tr-TR/changelogs/106.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/tr-TR/changelogs/106.txt -------------------------------------------------------------------------------- /metadata/tr-TR/changelogs/107.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/tr-TR/changelogs/107.txt -------------------------------------------------------------------------------- /metadata/tr-TR/changelogs/108.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/tr-TR/changelogs/108.txt -------------------------------------------------------------------------------- /metadata/tr-TR/changelogs/59.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/tr-TR/changelogs/59.txt -------------------------------------------------------------------------------- /metadata/tr-TR/changelogs/61.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/tr-TR/changelogs/61.txt -------------------------------------------------------------------------------- /metadata/tr-TR/changelogs/62.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/tr-TR/changelogs/62.txt -------------------------------------------------------------------------------- /metadata/tr-TR/changelogs/63.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/tr-TR/changelogs/63.txt -------------------------------------------------------------------------------- /metadata/tr-TR/changelogs/65.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/tr-TR/changelogs/65.txt -------------------------------------------------------------------------------- /metadata/tr-TR/changelogs/67.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/tr-TR/changelogs/67.txt -------------------------------------------------------------------------------- /metadata/tr-TR/changelogs/73.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/tr-TR/changelogs/73.txt -------------------------------------------------------------------------------- /metadata/tr-TR/changelogs/74.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/tr-TR/changelogs/74.txt -------------------------------------------------------------------------------- /metadata/tr-TR/changelogs/76.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/tr-TR/changelogs/76.txt -------------------------------------------------------------------------------- /metadata/tr-TR/changelogs/77.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/tr-TR/changelogs/77.txt -------------------------------------------------------------------------------- /metadata/tr-TR/changelogs/78.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/tr-TR/changelogs/78.txt -------------------------------------------------------------------------------- /metadata/tr-TR/changelogs/79.txt: -------------------------------------------------------------------------------- 1 | Bağış butonu ekleniyor! 2 | -------------------------------------------------------------------------------- /metadata/tr-TR/changelogs/80.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/tr-TR/changelogs/80.txt -------------------------------------------------------------------------------- /metadata/tr-TR/changelogs/81.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/tr-TR/changelogs/81.txt -------------------------------------------------------------------------------- /metadata/tr-TR/changelogs/82.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/tr-TR/changelogs/82.txt -------------------------------------------------------------------------------- /metadata/tr-TR/changelogs/83.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/tr-TR/changelogs/83.txt -------------------------------------------------------------------------------- /metadata/tr-TR/changelogs/84.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/tr-TR/changelogs/84.txt -------------------------------------------------------------------------------- /metadata/tr-TR/changelogs/85.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/tr-TR/changelogs/85.txt -------------------------------------------------------------------------------- /metadata/tr-TR/changelogs/86.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/tr-TR/changelogs/86.txt -------------------------------------------------------------------------------- /metadata/tr-TR/changelogs/87.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/tr-TR/changelogs/87.txt -------------------------------------------------------------------------------- /metadata/tr-TR/changelogs/88.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/tr-TR/changelogs/88.txt -------------------------------------------------------------------------------- /metadata/tr-TR/changelogs/89.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/tr-TR/changelogs/89.txt -------------------------------------------------------------------------------- /metadata/tr-TR/changelogs/91.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/tr-TR/changelogs/91.txt -------------------------------------------------------------------------------- /metadata/tr-TR/changelogs/92.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/tr-TR/changelogs/92.txt -------------------------------------------------------------------------------- /metadata/tr-TR/changelogs/94.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/tr-TR/changelogs/94.txt -------------------------------------------------------------------------------- /metadata/tr-TR/changelogs/95.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/tr-TR/changelogs/95.txt -------------------------------------------------------------------------------- /metadata/tr-TR/changelogs/96.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/tr-TR/changelogs/96.txt -------------------------------------------------------------------------------- /metadata/tr-TR/changelogs/97.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/tr-TR/changelogs/97.txt -------------------------------------------------------------------------------- /metadata/tr-TR/changelogs/98.txt: -------------------------------------------------------------------------------- 1 | İlk Play Store sürümü 2 | -------------------------------------------------------------------------------- /metadata/tr-TR/changelogs/99.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/tr-TR/changelogs/99.txt -------------------------------------------------------------------------------- /metadata/tr-TR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/tr-TR/full_description.txt -------------------------------------------------------------------------------- /metadata/tr-TR/short_description.txt: -------------------------------------------------------------------------------- 1 | Android için Mastodon ama Material You'dur ve daha fazla özelliğe sahiptir 2 | -------------------------------------------------------------------------------- /metadata/tr-TR/title.txt: -------------------------------------------------------------------------------- 1 | Moshidon 2 | -------------------------------------------------------------------------------- /metadata/uk/changelogs/101.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/uk/changelogs/101.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/102.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/uk/changelogs/102.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/103.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/uk/changelogs/103.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/104.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/uk/changelogs/104.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/105.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/uk/changelogs/105.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/106.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/uk/changelogs/106.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/107.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/uk/changelogs/107.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/108.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/uk/changelogs/108.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/110.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/uk/changelogs/110.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/59.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/uk/changelogs/59.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/61.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/uk/changelogs/61.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/62.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/uk/changelogs/62.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/63.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/uk/changelogs/63.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/65.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/uk/changelogs/65.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/67.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/uk/changelogs/67.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/73.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/uk/changelogs/73.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/74.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/uk/changelogs/74.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/76.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/uk/changelogs/76.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/77.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/uk/changelogs/77.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/78.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/uk/changelogs/78.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/79.txt: -------------------------------------------------------------------------------- 1 | Додано кнопку пожертви! 2 | -------------------------------------------------------------------------------- /metadata/uk/changelogs/80.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/uk/changelogs/80.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/81.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/uk/changelogs/81.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/82.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/uk/changelogs/82.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/83.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/uk/changelogs/83.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/84.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/uk/changelogs/84.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/85.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/uk/changelogs/85.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/86.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/uk/changelogs/86.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/87.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/uk/changelogs/87.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/88.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/uk/changelogs/88.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/89.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/uk/changelogs/89.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/91.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/uk/changelogs/91.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/92.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/uk/changelogs/92.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/93.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/uk/changelogs/93.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/94.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/uk/changelogs/94.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/95.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/uk/changelogs/95.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/96.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/uk/changelogs/96.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/97.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/uk/changelogs/97.txt -------------------------------------------------------------------------------- /metadata/uk/changelogs/98.txt: -------------------------------------------------------------------------------- 1 | Публікація Play Store 2 | -------------------------------------------------------------------------------- /metadata/uk/changelogs/99.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/uk/changelogs/99.txt -------------------------------------------------------------------------------- /metadata/uk/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/uk/full_description.txt -------------------------------------------------------------------------------- /metadata/uk/short_description.txt: -------------------------------------------------------------------------------- 1 | Mastodon для Android, але має більше функцій і дизайн Material You 2 | -------------------------------------------------------------------------------- /metadata/uk/title.txt: -------------------------------------------------------------------------------- 1 | Moshidon 2 | -------------------------------------------------------------------------------- /metadata/vi/title.txt: -------------------------------------------------------------------------------- 1 | Moshidon 2 | -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/101.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-CN/changelogs/101.txt -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/102.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-CN/changelogs/102.txt -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/103.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-CN/changelogs/103.txt -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/104.txt: -------------------------------------------------------------------------------- 1 | - 允许直接从图像查看器分享(不再需要下载媒体来分享) 2 | - 许多次要错误修复和改进 3 | -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/105.txt: -------------------------------------------------------------------------------- 1 | - 合并了上游 (2.3.0) 2 | - 为嘟文历史添加了远程获取功能 3 | - 修复了大量错误 4 | -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/106.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-CN/changelogs/106.txt -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/108.txt: -------------------------------------------------------------------------------- 1 | - 修复了大量崩溃问题 2 | - 细微错误修复及改进 3 | -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/110.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-CN/changelogs/110.txt -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/59.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-CN/changelogs/59.txt -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/61.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-CN/changelogs/61.txt -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/62.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-CN/changelogs/62.txt -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/63.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-CN/changelogs/63.txt -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/65.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-CN/changelogs/65.txt -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/67.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-CN/changelogs/67.txt -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/73.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-CN/changelogs/73.txt -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/74.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-CN/changelogs/74.txt -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/76.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-CN/changelogs/76.txt -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/77.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-CN/changelogs/77.txt -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/78.txt: -------------------------------------------------------------------------------- 1 | 删除主时间线上的贴文分隔线!它也是可配置的。 2 | -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/79.txt: -------------------------------------------------------------------------------- 1 | 添加捐赠按钮! 2 | -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/80.txt: -------------------------------------------------------------------------------- 1 | 现在添加一个可选的开关,用于将发布按钮带到更容易触及的位置!现在默认了! 2 | -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/81.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-CN/changelogs/81.txt -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/82.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-CN/changelogs/82.txt -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/83.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-CN/changelogs/83.txt -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/84.txt: -------------------------------------------------------------------------------- 1 | Release 84 修复了一些错误,例如: 2 | - 登录回调不工作 3 | - 更新德语翻译。谢谢@DanTobi! 4 | -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/85.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-CN/changelogs/85.txt -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/86.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-CN/changelogs/86.txt -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/87.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-CN/changelogs/87.txt -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/88.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-CN/changelogs/88.txt -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/89.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-CN/changelogs/89.txt -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/91.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-CN/changelogs/91.txt -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/92.txt: -------------------------------------------------------------------------------- 1 | 版本92的更新内容: 2 | - 更好的过滤器 3 | - 新的个人资料页面布局 4 | - 大量微小的调整和改进 5 | -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/94.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-CN/changelogs/94.txt -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/95.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-CN/changelogs/95.txt -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/96.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-CN/changelogs/96.txt -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/97.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-CN/changelogs/97.txt -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/98.txt: -------------------------------------------------------------------------------- 1 | 首个Play Store发布版本 2 | -------------------------------------------------------------------------------- /metadata/zh-CN/changelogs/99.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-CN/changelogs/99.txt -------------------------------------------------------------------------------- /metadata/zh-CN/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-CN/full_description.txt -------------------------------------------------------------------------------- /metadata/zh-CN/short_description.txt: -------------------------------------------------------------------------------- 1 | 面向 Mastodon 的 Android 客户端,适配 Material You 并且提供更多功能 2 | -------------------------------------------------------------------------------- /metadata/zh-CN/title.txt: -------------------------------------------------------------------------------- 1 | Moshidon 2 | -------------------------------------------------------------------------------- /metadata/zh-Hans/changelogs/108.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-Hans/changelogs/108.txt -------------------------------------------------------------------------------- /metadata/zh-Hans/changelogs/110.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-Hans/changelogs/110.txt -------------------------------------------------------------------------------- /metadata/zh-Hans/changelogs/74.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-Hans/changelogs/74.txt -------------------------------------------------------------------------------- /metadata/zh-Hans/changelogs/76.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-Hans/changelogs/76.txt -------------------------------------------------------------------------------- /metadata/zh-Hans/changelogs/77.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-Hans/changelogs/77.txt -------------------------------------------------------------------------------- /metadata/zh-Hans/changelogs/83.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-Hans/changelogs/83.txt -------------------------------------------------------------------------------- /metadata/zh-Hans/changelogs/94.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-Hans/changelogs/94.txt -------------------------------------------------------------------------------- /metadata/zh-TW/changelogs/101.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-TW/changelogs/101.txt -------------------------------------------------------------------------------- /metadata/zh-TW/changelogs/102.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-TW/changelogs/102.txt -------------------------------------------------------------------------------- /metadata/zh-TW/changelogs/107.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-TW/changelogs/107.txt -------------------------------------------------------------------------------- /metadata/zh-TW/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/metadata/zh-TW/full_description.txt -------------------------------------------------------------------------------- /metadata/zh-TW/short_description.txt: -------------------------------------------------------------------------------- 1 | Android 專用的乳齒象,不過它採用 Material You 設計語言並且具有更多功能 2 | -------------------------------------------------------------------------------- /metadata/zh-TW/title.txt: -------------------------------------------------------------------------------- 1 | Moshidon 2 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/settings.gradle -------------------------------------------------------------------------------- /tools/GenerateLocaleConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucasGGamerM/moshidon/HEAD/tools/GenerateLocaleConfig.java --------------------------------------------------------------------------------