2020-05-11 19:53:44 +00:00
|
|
|
QT += quick
|
2020-09-22 19:16:44 +00:00
|
|
|
QT += webchannel
|
2020-05-11 19:53:44 +00:00
|
|
|
|
|
|
|
# The following define makes your compiler emit warnings if you use
|
|
|
|
# any Qt feature that has been marked deprecated (the exact warnings
|
|
|
|
# depend on your compiler). Refer to the documentation for the
|
|
|
|
# deprecated API to know how to port your code away from it.
|
|
|
|
DEFINES += QT_DEPRECATED_WARNINGS
|
|
|
|
|
|
|
|
# You can also make your code fail to compile if it uses deprecated APIs.
|
|
|
|
# In order to do so, uncomment the following line.
|
|
|
|
# You can also select to disable deprecated APIs only up to a certain version of Qt.
|
|
|
|
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
|
|
|
|
|
2020-06-18 20:11:12 +00:00
|
|
|
lupdate_only{
|
|
|
|
SOURCES = *.qml \
|
|
|
|
app/*.qml \
|
|
|
|
shared/*.qml \
|
2021-02-18 16:35:35 +00:00
|
|
|
import/*.qml \
|
2020-09-28 18:09:44 +00:00
|
|
|
shared/status/*.qml \
|
2020-07-07 19:25:20 +00:00
|
|
|
onboarding/*.qml \
|
|
|
|
onboarding/Login/*.qml \
|
2020-06-18 20:11:12 +00:00
|
|
|
app/AppLayouts/*.qml \
|
2020-09-22 15:12:48 +00:00
|
|
|
app/AppLayouts/Browser/*.qml \
|
2020-06-18 20:11:12 +00:00
|
|
|
app/AppLayouts/Chat/*.qml \
|
2020-12-11 20:38:10 +00:00
|
|
|
app/AppLayouts/Chat/CommunityComponents/*.qml \
|
2020-06-18 20:11:12 +00:00
|
|
|
app/AppLayouts/Chat/ChatColumn/*.qml \
|
2020-08-26 15:52:26 +00:00
|
|
|
app/AppLayouts/Chat/ChatColumn/ChatComponents/*.qml \
|
|
|
|
app/AppLayouts/Chat/ChatColumn/MessageComponents/*.qml \
|
2020-09-28 18:09:44 +00:00
|
|
|
app/AppLayouts/Chat/ChatColumn/MessageComponents/TransactionComponents/*.qml \
|
2020-07-08 17:54:11 +00:00
|
|
|
app/AppLayouts/Chat/ContactsColumn/*.qml \
|
2020-06-18 20:11:12 +00:00
|
|
|
app/AppLayouts/Chat/components/*.qml \
|
|
|
|
app/AppLayouts/Node/*.qml \
|
|
|
|
app/AppLayouts/Profile/*.qml \
|
|
|
|
app/AppLayouts/Profile/LeftTab/*.qml \
|
2020-08-26 15:52:26 +00:00
|
|
|
app/AppLayouts/Profile/LeftTab/components/*.qml \
|
2020-06-18 20:11:12 +00:00
|
|
|
app/AppLayouts/Profile/Sections/*.qml \
|
2021-03-15 20:51:15 +00:00
|
|
|
app/AppLayouts/Profile/Sections/BrowserModals/*.qml \
|
2020-06-18 20:11:12 +00:00
|
|
|
app/AppLayouts/Profile/Sections/Contacts/*.qml \
|
2021-03-15 20:51:15 +00:00
|
|
|
app/AppLayouts/Profile/Sections/Data/*.qml \
|
2020-09-14 12:12:47 +00:00
|
|
|
app/AppLayouts/Profile/Sections/Ens/*.qml \
|
2021-03-15 20:51:15 +00:00
|
|
|
app/AppLayouts/Profile/Sections/Privileges/*.qml \
|
2020-12-17 10:40:37 +00:00
|
|
|
app/AppLayouts/Timeline/*.qml\
|
2020-06-18 20:11:12 +00:00
|
|
|
app/AppLayouts/Wallet/*.qml \
|
2020-06-04 20:56:44 +00:00
|
|
|
app/AppLayouts/Wallet/components/*.qml \
|
2020-08-18 19:10:30 +00:00
|
|
|
app/AppLayouts/Wallet/components/collectiblesComponents/*.qml \
|
2020-09-10 04:20:27 +00:00
|
|
|
app/AppLayouts/Wallet/data/Currencies.qml \
|
2020-06-18 20:11:12 +00:00
|
|
|
}
|
2020-05-11 19:53:44 +00:00
|
|
|
|
2020-07-07 19:25:20 +00:00
|
|
|
TRANSLATIONS += \
|
|
|
|
i18n/base.ts \
|
2020-07-08 16:56:51 +00:00
|
|
|
i18n/qml_en.ts \
|
|
|
|
i18n/qml_fr.ts \
|
|
|
|
i18n/qml_it.ts \
|
|
|
|
i18n/qml_ko.ts \
|
|
|
|
i18n/qml_ru.ts \
|
|
|
|
i18n/qml_tr.ts \
|
2021-02-18 16:35:35 +00:00
|
|
|
i18n/qml_es.ts \
|
|
|
|
i18n/qml_id.ts \
|
|
|
|
i18n/qml_de.ts \
|
|
|
|
i18n/qml_pt_BR.ts \
|
|
|
|
i18n/qml_fil.ts \
|
2020-07-08 16:56:51 +00:00
|
|
|
i18n/qml_zh.ts \
|
|
|
|
i18n/qml_zh_TW.ts \
|
2021-02-18 16:35:35 +00:00
|
|
|
i18n/qml_ar.ts \
|
|
|
|
i18n/qml_ur.ts
|
2020-06-18 20:55:01 +00:00
|
|
|
|
2020-05-11 19:53:44 +00:00
|
|
|
RESOURCES += \
|
2020-05-28 14:58:25 +00:00
|
|
|
imports/Constants.qml \
|
2020-07-02 15:14:31 +00:00
|
|
|
imports/Style.qml \
|
2020-05-11 19:53:44 +00:00
|
|
|
main.qml
|
|
|
|
|
|
|
|
# Additional import path used to resolve QML modules in Qt Creator's code model
|
|
|
|
QML_IMPORT_PATH = $$PWD/imports
|
|
|
|
|
|
|
|
# Additional import path used to resolve QML modules just for Qt Quick Designer
|
|
|
|
QML_DESIGNER_IMPORT_PATH = $$PWD/imports
|
|
|
|
|
|
|
|
# Default rules for deployment.
|
|
|
|
qnx: target.path = /tmp/$${TARGET}/bin
|
|
|
|
else: unix:!android: target.path = /opt/$${TARGET}/bin
|
|
|
|
!isEmpty(target.path): INSTALLS += target
|
|
|
|
|
|
|
|
DISTFILES += \
|
2020-10-29 15:19:27 +00:00
|
|
|
app/AppLayouts/Browser/AddFavoriteModal.qml \
|
2020-10-19 19:00:43 +00:00
|
|
|
app/AppLayouts/Browser/BrowserConnectionModal.qml \
|
2020-10-07 20:14:55 +00:00
|
|
|
app/AppLayouts/Browser/BrowserHeader.qml \
|
2020-10-09 17:56:42 +00:00
|
|
|
app/AppLayouts/Browser/BrowserSettingsMenu.qml \
|
2020-10-21 18:49:49 +00:00
|
|
|
app/AppLayouts/Browser/BrowserTabStyle.qml \
|
2020-10-08 18:08:50 +00:00
|
|
|
app/AppLayouts/Browser/BrowserTabs.qml \
|
2020-10-15 17:05:34 +00:00
|
|
|
app/AppLayouts/Browser/BrowserWalletMenu.qml \
|
2020-10-22 17:34:14 +00:00
|
|
|
app/AppLayouts/Browser/DownloadBar.qml \
|
|
|
|
app/AppLayouts/Browser/DownloadElement.qml \
|
2020-10-19 19:00:43 +00:00
|
|
|
app/AppLayouts/Browser/FaviconImage.qml \
|
2020-10-29 20:07:52 +00:00
|
|
|
app/AppLayouts/Browser/FavoriteMenu.qml \
|
2020-12-29 17:10:22 +00:00
|
|
|
app/AppLayouts/Browser/FavoritesBar.qml \
|
|
|
|
app/AppLayouts/Browser/FavoritesList.qml \
|
2020-10-27 20:53:22 +00:00
|
|
|
app/AppLayouts/Browser/components/BookmarkButton.qml \
|
2020-08-17 20:46:13 +00:00
|
|
|
app/AppLayouts/Chat/ChatColumn/ChatComponents/ChatCommandButton.qml \
|
2020-09-03 20:14:44 +00:00
|
|
|
app/AppLayouts/Chat/ChatColumn/ChatComponents/ChatCommandModal.qml \
|
2020-08-17 20:46:13 +00:00
|
|
|
app/AppLayouts/Chat/ChatColumn/ChatComponents/ChatCommandsPopup.qml \
|
2020-08-17 15:52:41 +00:00
|
|
|
app/AppLayouts/Chat/ChatColumn/ChatComponents/ChatInputButton.qml \
|
2020-09-03 20:14:44 +00:00
|
|
|
app/AppLayouts/Chat/ChatColumn/ChatComponents/RequestModal.qml \
|
|
|
|
app/AppLayouts/Chat/ChatColumn/ChatComponents/SignTransactionModal.qml \
|
2020-07-15 21:04:14 +00:00
|
|
|
app/AppLayouts/Chat/ChatColumn/CompactMessage.qml \
|
|
|
|
app/AppLayouts/Chat/ChatColumn/MessageComponents/ChannelIdentifier.qml \
|
2021-01-25 20:50:42 +00:00
|
|
|
app/AppLayouts/Chat/ChatColumn/MessageComponents/ChatButtons.qml \
|
2020-07-22 17:46:17 +00:00
|
|
|
app/AppLayouts/Chat/ChatColumn/MessageComponents/ChatImage.qml \
|
2020-07-15 21:04:14 +00:00
|
|
|
app/AppLayouts/Chat/ChatColumn/MessageComponents/ChatReply \
|
|
|
|
app/AppLayouts/Chat/ChatColumn/MessageComponents/ChatReply.qml \
|
|
|
|
app/AppLayouts/Chat/ChatColumn/MessageComponents/ChatText.qml \
|
|
|
|
app/AppLayouts/Chat/ChatColumn/MessageComponents/ChatTime.qml \
|
|
|
|
app/AppLayouts/Chat/ChatColumn/MessageComponents/CompactMessage.qml \
|
|
|
|
app/AppLayouts/Chat/ChatColumn/MessageComponents/DateGroup.qml \
|
2020-08-12 15:01:03 +00:00
|
|
|
app/AppLayouts/Chat/ChatColumn/MessageComponents/EmojiReactions.qml \
|
2020-07-23 18:20:57 +00:00
|
|
|
app/AppLayouts/Chat/ChatColumn/MessageComponents/ImageLoader.qml \
|
2020-12-11 20:38:10 +00:00
|
|
|
app/AppLayouts/Chat/ChatColumn/MessageComponents/InvitationBubble.qml \
|
2020-10-23 19:46:44 +00:00
|
|
|
app/AppLayouts/Chat/ChatColumn/MessageComponents/LinksMessage.qml \
|
2020-07-15 21:04:14 +00:00
|
|
|
app/AppLayouts/Chat/ChatColumn/MessageComponents/MessageMouseArea.qml \
|
|
|
|
app/AppLayouts/Chat/ChatColumn/MessageComponents/NormalMessage.qml \
|
2020-07-16 14:51:12 +00:00
|
|
|
app/AppLayouts/Chat/ChatColumn/MessageComponents/RectangleCorner.qml \
|
2020-07-15 21:04:14 +00:00
|
|
|
app/AppLayouts/Chat/ChatColumn/MessageComponents/SentMessage.qml \
|
|
|
|
app/AppLayouts/Chat/ChatColumn/MessageComponents/Sticker.qml \
|
2020-08-25 18:44:29 +00:00
|
|
|
app/AppLayouts/Chat/ChatColumn/MessageComponents/TransactionBubble.qml \
|
|
|
|
app/AppLayouts/Chat/ChatColumn/MessageComponents/TransactionComponents/AcceptTransaction.qml \
|
|
|
|
app/AppLayouts/Chat/ChatColumn/MessageComponents/TransactionComponents/SendTransactionButton.qml \
|
|
|
|
app/AppLayouts/Chat/ChatColumn/MessageComponents/TransactionComponents/StateBubble.qml \
|
2020-07-15 21:04:14 +00:00
|
|
|
app/AppLayouts/Chat/ChatColumn/MessageComponents/UserImage.qml \
|
|
|
|
app/AppLayouts/Chat/ChatColumn/MessageComponents/UsernameLabel.qml \
|
|
|
|
app/AppLayouts/Chat/ChatColumn/MessageComponents/qmldir \
|
2020-12-11 20:29:46 +00:00
|
|
|
app/AppLayouts/Chat/CommunityColumn.qml \
|
2021-02-12 18:19:31 +00:00
|
|
|
app/AppLayouts/Chat/CommunityComponents/AccessExistingCommunityPopup.qml \
|
2020-12-11 20:38:10 +00:00
|
|
|
app/AppLayouts/Chat/CommunityComponents/CommunitiesPopup.qml \
|
|
|
|
app/AppLayouts/Chat/CommunityComponents/CommunityButton.qml \
|
|
|
|
app/AppLayouts/Chat/CommunityComponents/CommunityDetailPopup.qml \
|
2020-12-21 17:09:00 +00:00
|
|
|
app/AppLayouts/Chat/CommunityComponents/CommunityMembersPopup.qml \
|
2021-02-11 19:06:39 +00:00
|
|
|
app/AppLayouts/Chat/CommunityComponents/CommunityProfilePopup.qml \
|
2020-12-11 20:38:10 +00:00
|
|
|
app/AppLayouts/Chat/CommunityComponents/CommunityList.qml \
|
|
|
|
app/AppLayouts/Chat/CommunityComponents/CommunityWelcomeBanner.qml \
|
|
|
|
app/AppLayouts/Chat/CommunityComponents/CreateChannelPopup.qml \
|
|
|
|
app/AppLayouts/Chat/CommunityComponents/CreateCommunityPopup.qml \
|
2020-12-18 20:55:33 +00:00
|
|
|
app/AppLayouts/Chat/CommunityComponents/ImportCommunityPopup.qml \
|
2020-12-11 20:38:10 +00:00
|
|
|
app/AppLayouts/Chat/CommunityComponents/InviteFriendsToCommunityPopup.qml \
|
2021-02-10 20:37:17 +00:00
|
|
|
app/AppLayouts/Chat/CommunityComponents/MembershipRadioButton.qml \
|
2021-02-11 19:06:39 +00:00
|
|
|
app/AppLayouts/Chat/CommunityComponents/MembershipRequestsButton.qml \
|
2021-02-10 20:37:17 +00:00
|
|
|
app/AppLayouts/Chat/CommunityComponents/MembershipRequestsPopup.qml \
|
|
|
|
app/AppLayouts/Chat/CommunityComponents/MembershipRequirementPopup.qml \
|
2021-02-12 15:26:57 +00:00
|
|
|
app/AppLayouts/Chat/CommunityComponents/TransferOwnershipPopup.qml \
|
2020-08-26 18:10:47 +00:00
|
|
|
app/AppLayouts/Chat/ContactsColumn/AddChat.qml \
|
2020-07-08 19:59:10 +00:00
|
|
|
app/AppLayouts/Chat/ContactsColumn/ClosedEmptyView.qml \
|
2020-12-29 20:33:54 +00:00
|
|
|
app/AppLayouts/Chat/components/ChooseBrowserPopup.qml \
|
2020-12-11 20:29:46 +00:00
|
|
|
app/AppLayouts/Chat/ContactsColumn/CommunityButton.qml \
|
|
|
|
app/AppLayouts/Chat/ContactsColumn/CommunityList.qml \
|
|
|
|
app/AppLayouts/Chat/ContactsColumn/CommunityWelcomeBanner.qml \
|
|
|
|
app/AppLayouts/Chat/components/CommunitiesPopup.qml \
|
|
|
|
app/AppLayouts/Chat/components/CommunityDetailPopup.qml \
|
2020-12-11 20:38:10 +00:00
|
|
|
app/AppLayouts/Chat/components/ContactList.qml \
|
2020-12-11 20:29:46 +00:00
|
|
|
app/AppLayouts/Chat/components/CreateCommunityPopup.qml \
|
2020-07-28 20:10:38 +00:00
|
|
|
app/AppLayouts/Chat/components/EmojiCategoryButton.qml \
|
2020-07-02 17:48:06 +00:00
|
|
|
app/AppLayouts/Chat/components/EmojiPopup.qml \
|
2020-07-20 19:29:57 +00:00
|
|
|
app/AppLayouts/Chat/components/EmojiReaction.qml \
|
2021-02-17 16:31:59 +00:00
|
|
|
app/AppLayouts/Chat/components/LeftTabBottomButtons.qml \
|
2020-12-11 20:38:10 +00:00
|
|
|
app/AppLayouts/Chat/components/NoFriendsRectangle.qml \
|
2020-09-17 14:26:26 +00:00
|
|
|
app/AppLayouts/Chat/components/ProfilePopup.qml \
|
2020-07-28 20:10:38 +00:00
|
|
|
app/AppLayouts/Chat/components/EmojiSection.qml \
|
2020-07-09 15:21:45 +00:00
|
|
|
app/AppLayouts/Chat/components/InviteFriendsPopup.qml \
|
2020-08-03 17:17:03 +00:00
|
|
|
app/AppLayouts/Chat/components/MessageContextMenu.qml \
|
2020-09-16 16:00:21 +00:00
|
|
|
app/AppLayouts/Chat/components/NicknamePopup.qml \
|
2020-09-23 18:21:08 +00:00
|
|
|
app/AppLayouts/Chat/components/SuggestedChannels.qml \
|
2021-02-17 20:36:10 +00:00
|
|
|
app/AppLayouts/Chat/components/GroupInfoPopup.qml \
|
2020-09-23 13:51:49 +00:00
|
|
|
app/AppLayouts/Chat/data/channelList.js \
|
2020-07-21 21:03:22 +00:00
|
|
|
app/AppLayouts/Profile/LeftTab/Constants.js \
|
|
|
|
app/AppLayouts/Profile/LeftTab/components/MenuButton.qml \
|
2020-07-20 19:29:57 +00:00
|
|
|
app/AppLayouts/Chat/data/EmojiReactions.qml \
|
2020-07-21 21:03:22 +00:00
|
|
|
app/AppLayouts/Profile/Sections/AppearanceContainer.qml \
|
2020-08-25 20:19:46 +00:00
|
|
|
app/AppLayouts/Profile/Sections/BackupSeedModal.qml \
|
2020-10-21 14:45:28 +00:00
|
|
|
app/AppLayouts/Profile/Sections/BrowserContainer.qml \
|
2021-01-04 21:23:20 +00:00
|
|
|
app/AppLayouts/Profile/Sections/BrowserModals/EthereumExplorerModal.qml \
|
2021-01-04 20:34:46 +00:00
|
|
|
app/AppLayouts/Profile/Sections/BrowserModals/HomepageModal.qml \
|
2021-01-04 21:06:38 +00:00
|
|
|
app/AppLayouts/Profile/Sections/BrowserModals/SearchEngineModal.qml \
|
2020-11-30 17:03:52 +00:00
|
|
|
app/AppLayouts/Profile/Sections/ChangeProfilePicModal.qml \
|
2021-01-18 20:25:20 +00:00
|
|
|
app/AppLayouts/Profile/Sections/ChatLinksPreviewModal.qml \
|
2020-07-21 21:03:22 +00:00
|
|
|
app/AppLayouts/Profile/Sections/MyProfileContainer.qml \
|
2021-01-19 19:26:59 +00:00
|
|
|
app/AppLayouts/Profile/Sections/NotificationAppearancePreview.qml \
|
2020-12-29 20:34:53 +00:00
|
|
|
app/AppLayouts/Profile/Sections/OpenLinksWithModal.qml \
|
2020-07-21 21:03:22 +00:00
|
|
|
app/AppLayouts/Profile/Sections/SoundsContainer.qml \
|
2020-08-27 17:28:31 +00:00
|
|
|
app/AppLayouts/UIComponents/UIComponents.qml \
|
2020-08-14 19:19:08 +00:00
|
|
|
app/AppLayouts/Wallet/ReceiveModal.qml \
|
2020-07-15 19:38:03 +00:00
|
|
|
app/AppLayouts/Wallet/components/HeaderButton.qml \
|
2020-07-20 14:28:32 +00:00
|
|
|
app/AppLayouts/Profile/Sections/Data/locales.js \
|
2020-08-18 19:10:30 +00:00
|
|
|
app/AppLayouts/Wallet/components/collectiblesComponents/CollectiblesContainer.qml \
|
2020-08-18 20:11:36 +00:00
|
|
|
app/AppLayouts/Wallet/components/collectiblesComponents/CollectiblesContent.qml \
|
2020-08-18 19:10:30 +00:00
|
|
|
app/AppLayouts/Wallet/components/collectiblesComponents/CollectiblesHeader.qml \
|
2020-08-19 15:58:25 +00:00
|
|
|
app/AppLayouts/Wallet/components/collectiblesComponents/CollectiblesModal.qml \
|
|
|
|
app/AppLayouts/Wallet/components/collectiblesComponents/CollectiblesModalContent.qml \
|
2020-08-20 21:59:07 +00:00
|
|
|
app/AppLayouts/Wallet/components/collectiblesComponents/collectiblesData.js \
|
2020-09-03 20:43:08 +00:00
|
|
|
app/AppLayouts/Wallet/data/Tokens.qml \
|
2020-06-19 18:06:58 +00:00
|
|
|
fonts/InterStatus/InterStatus-Black.otf \
|
|
|
|
fonts/InterStatus/InterStatus-BlackItalic.otf \
|
|
|
|
fonts/InterStatus/InterStatus-Bold.otf \
|
|
|
|
fonts/InterStatus/InterStatus-BoldItalic.otf \
|
|
|
|
fonts/InterStatus/InterStatus-ExtraBold.otf \
|
|
|
|
fonts/InterStatus/InterStatus-ExtraBoldItalic.otf \
|
|
|
|
fonts/InterStatus/InterStatus-ExtraLight.otf \
|
|
|
|
fonts/InterStatus/InterStatus-ExtraLightItalic.otf \
|
|
|
|
fonts/InterStatus/InterStatus-Italic.otf \
|
|
|
|
fonts/InterStatus/InterStatus-Light.otf \
|
|
|
|
fonts/InterStatus/InterStatus-LightItalic.otf \
|
|
|
|
fonts/InterStatus/InterStatus-Medium.otf \
|
|
|
|
fonts/InterStatus/InterStatus-MediumItalic.otf \
|
|
|
|
fonts/InterStatus/InterStatus-Regular.otf \
|
|
|
|
fonts/InterStatus/InterStatus-SemiBold.otf \
|
|
|
|
fonts/InterStatus/InterStatus-SemiBoldItalic.otf \
|
|
|
|
fonts/InterStatus/InterStatus-Thin.otf \
|
|
|
|
fonts/InterStatus/InterStatus-ThinItalic.otf \
|
2020-05-11 19:53:44 +00:00
|
|
|
Theme.qml \
|
2020-09-22 15:12:48 +00:00
|
|
|
app/AppLayouts/Browser/BrowserLayout.qml \
|
2020-10-02 17:30:27 +00:00
|
|
|
app/AppLayouts/Browser/BrowserDialog.qml \
|
|
|
|
app/AppLayouts/Browser/DownloadView.qml \
|
|
|
|
app/AppLayouts/Browser/FindBar.qml \
|
2020-05-25 20:34:26 +00:00
|
|
|
app/AppLayouts/Chat/ChatColumn.qml \
|
2020-06-24 03:23:49 +00:00
|
|
|
app/AppLayouts/Chat/ChatColumn/samples/MessagesData.qml \
|
|
|
|
app/AppLayouts/Chat/ChatColumn/samples/StickerData.qml \
|
|
|
|
app/AppLayouts/Chat/ChatColumn/samples/StickerPackData.qml \
|
2020-05-28 16:47:42 +00:00
|
|
|
app/AppLayouts/Chat/ChatColumn/ChatInput.qml \
|
2020-06-24 03:23:49 +00:00
|
|
|
app/AppLayouts/Chat/ChatColumn/ChatButtons.qml \
|
2020-05-28 16:47:42 +00:00
|
|
|
app/AppLayouts/Chat/ChatColumn/ChatMessages.qml \
|
|
|
|
app/AppLayouts/Chat/ChatColumn/EmptyChat.qml \
|
|
|
|
app/AppLayouts/Chat/ChatColumn/Message.qml \
|
2020-09-30 12:33:26 +00:00
|
|
|
app/AppLayouts/Chat/ChatColumn/ReplyArea.qml \
|
2020-05-28 16:47:42 +00:00
|
|
|
app/AppLayouts/Chat/ChatColumn/TopBar.qml \
|
|
|
|
app/AppLayouts/Chat/ChatColumn/qmldir \
|
2020-05-19 19:44:45 +00:00
|
|
|
app/AppLayouts/Chat/ChatLayout.qml \
|
2020-05-25 20:34:26 +00:00
|
|
|
app/AppLayouts/Chat/ContactsColumn.qml \
|
2020-05-28 16:47:42 +00:00
|
|
|
app/AppLayouts/Chat/ContactsColumn/Channel.qml \
|
|
|
|
app/AppLayouts/Chat/ContactsColumn/ChannelList.qml \
|
|
|
|
app/AppLayouts/Chat/ContactsColumn/EmptyView.qml \
|
|
|
|
app/AppLayouts/Chat/ContactsColumn/qmldir \
|
2020-06-17 15:56:48 +00:00
|
|
|
app/AppLayouts/Chat/components/GroupChatPopup.qml \
|
2020-05-27 21:09:12 +00:00
|
|
|
app/AppLayouts/Chat/components/PublicChatPopup.qml \
|
2020-05-28 12:56:43 +00:00
|
|
|
app/AppLayouts/Chat/components/PrivateChatPopup.qml \
|
2020-06-15 12:51:04 +00:00
|
|
|
app/AppLayouts/Chat/components/RenameGroupPopup.qml \
|
2020-05-26 18:16:07 +00:00
|
|
|
app/AppLayouts/Chat/components/SuggestedChannel.qml \
|
2020-06-29 22:02:19 +00:00
|
|
|
app/AppLayouts/Chat/components/StickerButton.qml \
|
|
|
|
app/AppLayouts/Chat/components/StickerMarket.qml \
|
2020-06-24 03:23:49 +00:00
|
|
|
app/AppLayouts/Chat/components/StickersPopup.qml \
|
2020-06-29 22:02:19 +00:00
|
|
|
app/AppLayouts/Chat/components/StickerPackIconWithIndicator.qml \
|
2020-05-26 18:16:07 +00:00
|
|
|
app/AppLayouts/Chat/components/qmldir \
|
2020-05-25 20:34:26 +00:00
|
|
|
app/AppLayouts/Chat/qmldir \
|
2020-05-19 19:44:45 +00:00
|
|
|
app/AppLayouts/Node/NodeLayout.qml \
|
2020-05-28 16:47:42 +00:00
|
|
|
app/AppLayouts/Profile/LeftTab.qml \
|
|
|
|
app/AppLayouts/Profile/LeftTab/Menu.qml \
|
|
|
|
app/AppLayouts/Profile/LeftTab/Profile.qml \
|
2020-05-27 20:57:36 +00:00
|
|
|
app/AppLayouts/Profile/LeftTab/qmldir \
|
2020-05-19 19:44:45 +00:00
|
|
|
app/AppLayouts/Profile/ProfileLayout.qml \
|
2020-06-13 13:49:20 +00:00
|
|
|
app/AppLayouts/Profile/Sections/Contacts/Contact.qml \
|
|
|
|
app/AppLayouts/Profile/Sections/Contacts/ContactList.qml \
|
|
|
|
app/AppLayouts/Profile/Sections/Contacts/qmldir \
|
|
|
|
app/AppLayouts/Profile/Sections/Contacts/samples/ContactsData.qml \
|
|
|
|
app/AppLayouts/Profile/Sections/Contacts/samples/qmldir \
|
2020-06-10 20:32:04 +00:00
|
|
|
app/AppLayouts/Wallet/AccountSettingsModal.qml \
|
2020-06-11 19:52:54 +00:00
|
|
|
app/AppLayouts/Wallet/AddCustomTokenModal.qml \
|
2020-05-28 14:54:42 +00:00
|
|
|
app/AppLayouts/Wallet/AssetsTab.qml \
|
|
|
|
app/AppLayouts/Wallet/CollectiblesTab.qml \
|
2020-06-04 20:56:44 +00:00
|
|
|
app/AppLayouts/Wallet/components/AccountSettingsModal.qml \
|
|
|
|
app/AppLayouts/Wallet/components/AddAccount.qml \
|
|
|
|
app/AppLayouts/Wallet/components/AddAccountWithPrivateKey.qml \
|
|
|
|
app/AppLayouts/Wallet/components/AddAccountWithSeed.qml \
|
|
|
|
app/AppLayouts/Wallet/components/AddWatchOnlyAccount \
|
|
|
|
app/AppLayouts/Wallet/components/AddWatchOnlyAccount.qml \
|
|
|
|
app/AppLayouts/Wallet/components/GenerateAccountModal.qml \
|
|
|
|
app/AppLayouts/Wallet/components/SendModalContent.qml \
|
|
|
|
app/AppLayouts/Wallet/components/SetCurrencyModalContent.qml \
|
|
|
|
app/AppLayouts/Wallet/components/TokenSettingsModalContent.qml \
|
|
|
|
app/AppLayouts/Wallet/components/qmldir \
|
2020-05-28 14:54:42 +00:00
|
|
|
app/AppLayouts/Wallet/HistoryTab.qml \
|
2020-05-28 16:47:42 +00:00
|
|
|
app/AppLayouts/Profile/Sections/AboutContainer.qml \
|
|
|
|
app/AppLayouts/Profile/Sections/AdvancedContainer.qml \
|
|
|
|
app/AppLayouts/Profile/Sections/ContactsContainer.qml \
|
|
|
|
app/AppLayouts/Profile/Sections/EnsContainer.qml \
|
|
|
|
app/AppLayouts/Profile/Sections/HelpContainer.qml \
|
|
|
|
app/AppLayouts/Profile/Sections/LanguageContainer.qml \
|
|
|
|
app/AppLayouts/Profile/Sections/NotificationsContainer.qml \
|
|
|
|
app/AppLayouts/Profile/Sections/PrivacyContainer.qml \
|
|
|
|
app/AppLayouts/Profile/Sections/SignoutContainer.qml \
|
|
|
|
app/AppLayouts/Profile/Sections/SyncContainer.qml \
|
2020-07-03 16:54:27 +00:00
|
|
|
app/AppLayouts/Profile/Sections/DevicesContainer.qml \
|
2020-05-28 16:47:42 +00:00
|
|
|
app/AppLayouts/Profile/Sections/qmldir \
|
|
|
|
app/AppLayouts/Profile/qmldir \
|
2020-05-14 16:16:01 +00:00
|
|
|
app/AppLayouts/Wallet/LeftTab.qml \
|
2020-05-27 20:50:39 +00:00
|
|
|
app/AppLayouts/Wallet/SendModal.qml \
|
2020-06-04 16:00:07 +00:00
|
|
|
app/AppLayouts/Wallet/SetCurrencyModal.qml \
|
2020-06-03 16:49:18 +00:00
|
|
|
app/AppLayouts/Wallet/TokenSettingsModal.qml \
|
2020-05-28 13:49:28 +00:00
|
|
|
app/AppLayouts/Wallet/WalletHeader.qml \
|
2020-05-14 16:16:01 +00:00
|
|
|
app/AppLayouts/Wallet/WalletLayout.qml \
|
2020-06-04 16:00:07 +00:00
|
|
|
app/AppLayouts/Wallet/data/Currencies.qml \
|
2020-05-14 16:16:01 +00:00
|
|
|
app/AppLayouts/Wallet/qmldir \
|
2020-06-03 16:49:18 +00:00
|
|
|
app/AppLayouts/Wallet/tokens/Tokens.qml \
|
|
|
|
app/AppLayouts/Wallet/tokens/qmldir \
|
2020-05-13 18:17:18 +00:00
|
|
|
app/AppLayouts/WalletLayout.qml \
|
2020-05-13 17:27:06 +00:00
|
|
|
app/AppLayouts/qmldir \
|
2020-05-11 21:24:08 +00:00
|
|
|
app/AppMain.qml \
|
2020-05-27 21:09:12 +00:00
|
|
|
app/img/arrow-btn-active.svg \
|
|
|
|
app/img/arrow-btn-inactive.svg \
|
2020-05-11 21:24:08 +00:00
|
|
|
app/img/compass.svg \
|
|
|
|
app/img/compassActive.svg \
|
2020-05-27 21:09:12 +00:00
|
|
|
app/img/group_chat.svg \
|
|
|
|
app/img/hash.svg \
|
2020-06-24 03:23:49 +00:00
|
|
|
app/img/history_icon.svg \
|
2020-05-11 21:24:08 +00:00
|
|
|
app/img/message.svg \
|
|
|
|
app/img/messageActive.svg \
|
2020-05-27 21:09:12 +00:00
|
|
|
app/img/new_chat.svg \
|
2020-05-11 21:24:08 +00:00
|
|
|
app/img/profile.svg \
|
|
|
|
app/img/profileActive.svg \
|
2020-05-27 21:09:12 +00:00
|
|
|
app/img/public_chat.svg \
|
2020-05-11 21:24:08 +00:00
|
|
|
app/img/search.svg \
|
|
|
|
app/img/wallet.svg \
|
2020-06-29 22:02:19 +00:00
|
|
|
app/img/status-logo-no-bg.svg \
|
2020-06-24 03:23:49 +00:00
|
|
|
app/img/stickers_icon.svg \
|
|
|
|
app/img/stickers_icon_open.svg \
|
|
|
|
app/img/stickers_sad_icon.svg \
|
2020-05-11 21:24:08 +00:00
|
|
|
app/img/walletActive.svg \
|
|
|
|
app/qmldir \
|
2020-06-26 01:23:38 +00:00
|
|
|
imports/Emoji.qml \
|
2020-07-01 17:35:57 +00:00
|
|
|
imports/Themes/DarkTheme.qml \
|
2020-07-02 15:14:31 +00:00
|
|
|
imports/Themes/LightTheme.qml \
|
|
|
|
imports/Themes/Theme.qml \
|
|
|
|
imports/Themes/qmldir \
|
2020-06-22 15:51:15 +00:00
|
|
|
imports/Utils.qml \
|
2020-05-11 21:24:08 +00:00
|
|
|
imports/qmldir \
|
2020-06-12 20:47:44 +00:00
|
|
|
onboarding/CreatePasswordModal.qml \
|
|
|
|
onboarding/EnterSeedPhraseModal.qml \
|
2020-05-19 13:22:38 +00:00
|
|
|
onboarding/ExistingKey.qml \
|
|
|
|
onboarding/GenKey.qml \
|
2020-06-13 15:17:54 +00:00
|
|
|
onboarding/GenKeyModal.qml \
|
2020-05-11 21:24:08 +00:00
|
|
|
onboarding/Intro.qml \
|
2020-05-19 13:22:38 +00:00
|
|
|
onboarding/KeysMain.qml \
|
2020-05-29 19:15:55 +00:00
|
|
|
onboarding/Login.qml \
|
2020-06-03 20:50:59 +00:00
|
|
|
onboarding/Login/AccountList.qml \
|
|
|
|
onboarding/Login/AddressView.qml \
|
2020-06-12 20:47:44 +00:00
|
|
|
onboarding/Login/ConfirmAddExistingKeyModal.qml \
|
2020-06-11 21:23:27 +00:00
|
|
|
onboarding/Login/SelectAnotherAccountModal.qml \
|
2020-06-03 20:50:59 +00:00
|
|
|
onboarding/Login/qmldir \
|
|
|
|
onboarding/Login/samples/AccountsData.qml \
|
|
|
|
onboarding/Login/samples/qmldir \
|
2020-05-19 13:22:38 +00:00
|
|
|
onboarding/OnboardingMain.qml \
|
2020-06-03 19:49:47 +00:00
|
|
|
onboarding/Slide.qml \
|
2020-05-11 21:24:08 +00:00
|
|
|
onboarding/img/browser-dark@2x.jpg \
|
|
|
|
onboarding/img/browser-dark@3x.jpg \
|
|
|
|
onboarding/img/browser@2x.jpg \
|
|
|
|
onboarding/img/browser@3x.jpg \
|
|
|
|
onboarding/img/chat-dark@2x.jpg \
|
|
|
|
onboarding/img/chat-dark@3x.jpg \
|
|
|
|
onboarding/img/chat@2x.jpg \
|
|
|
|
onboarding/img/chat@3x.jpg \
|
2020-05-19 13:22:38 +00:00
|
|
|
onboarding/img/key.png \
|
|
|
|
onboarding/img/key@2x.png \
|
2020-05-11 21:24:08 +00:00
|
|
|
onboarding/img/next.svg \
|
|
|
|
onboarding/img/wallet-dark@2x.jpg \
|
|
|
|
onboarding/img/wallet-dark@3x.jpg \
|
|
|
|
onboarding/img/wallet@2x.jpg \
|
|
|
|
onboarding/img/wallet@3x.jpg \
|
|
|
|
onboarding/qmldir \
|
2020-07-30 05:18:54 +00:00
|
|
|
shared/AccountSelector.qml \
|
2020-06-24 03:23:49 +00:00
|
|
|
shared/AddButton.qml \
|
2020-08-27 17:28:31 +00:00
|
|
|
shared/Address.qml \
|
2020-11-30 17:03:52 +00:00
|
|
|
shared/CropCornerRectangle.qml \
|
2021-02-10 20:37:17 +00:00
|
|
|
shared/DelegateModelGeneralized.qml \
|
2020-08-20 04:45:29 +00:00
|
|
|
shared/FormGroup.qml \
|
2020-07-24 11:27:26 +00:00
|
|
|
shared/IconButton.qml \
|
2020-11-30 17:03:52 +00:00
|
|
|
shared/ImageCropper.qml \
|
2021-02-10 20:37:17 +00:00
|
|
|
shared/ImageCropperModal.qml \
|
2020-05-29 17:42:25 +00:00
|
|
|
shared/Input.qml \
|
2020-08-13 08:24:51 +00:00
|
|
|
shared/LabelValueRow.qml \
|
2020-05-29 16:27:50 +00:00
|
|
|
shared/ModalPopup.qml \
|
2020-07-10 21:47:31 +00:00
|
|
|
shared/NotificationWindow.qml \
|
2020-05-27 21:09:12 +00:00
|
|
|
shared/PopupMenu.qml \
|
2020-06-24 03:23:49 +00:00
|
|
|
shared/Identicon.qml \
|
2020-09-08 21:22:47 +00:00
|
|
|
shared/AssetAndAmountInput.qml \
|
2020-07-09 15:19:10 +00:00
|
|
|
shared/CopyToClipBoardButton.qml \
|
2020-08-19 13:36:56 +00:00
|
|
|
shared/GasSelector.qml \
|
2020-09-23 18:01:33 +00:00
|
|
|
shared/GasValidator.qml \
|
2020-06-24 03:23:49 +00:00
|
|
|
shared/RoundedImage.qml \
|
2020-06-15 16:24:21 +00:00
|
|
|
shared/SearchBox.qml \
|
2020-06-10 14:11:06 +00:00
|
|
|
shared/Select.qml \
|
2020-10-19 09:39:07 +00:00
|
|
|
shared/SendToContractWarning.qml \
|
2020-05-27 21:09:12 +00:00
|
|
|
shared/Separator.qml \
|
2020-08-20 04:45:29 +00:00
|
|
|
shared/SeparatorWithIcon.qml \
|
2020-06-23 18:51:10 +00:00
|
|
|
shared/SplitViewHandle.qml \
|
2020-05-28 14:32:58 +00:00
|
|
|
shared/StatusTabButton.qml \
|
2020-05-19 13:22:38 +00:00
|
|
|
shared/StyledButton.qml \
|
2020-05-13 19:41:16 +00:00
|
|
|
shared/RoundedIcon.qml \
|
2020-06-19 18:06:58 +00:00
|
|
|
shared/StyledText.qml \
|
2020-06-10 14:11:06 +00:00
|
|
|
shared/StyledTextArea.qml \
|
2020-06-19 18:21:02 +00:00
|
|
|
shared/StyledTextEdit.qml \
|
|
|
|
shared/StyledTextField.qml \
|
2020-07-22 20:46:28 +00:00
|
|
|
shared/SVGImage.qml \
|
2020-06-10 20:32:04 +00:00
|
|
|
shared/TextWithLabel.qml \
|
2020-09-10 19:56:05 +00:00
|
|
|
shared/ToastMessage.qml \
|
2020-08-13 08:24:51 +00:00
|
|
|
shared/TransactionPreview.qml \
|
2020-08-20 04:45:29 +00:00
|
|
|
shared/TransactionFormGroup.qml \
|
|
|
|
shared/TransactionStackView.qml \
|
2020-06-29 22:02:19 +00:00
|
|
|
shared/img/check.svg \
|
2020-06-04 20:56:44 +00:00
|
|
|
shared/img/close.svg \
|
2020-06-29 22:02:19 +00:00
|
|
|
shared/img/loading.png \
|
|
|
|
shared/img/loading.svg \
|
2020-06-04 20:56:44 +00:00
|
|
|
shared/img/status-logo.png \
|
2020-06-30 20:01:37 +00:00
|
|
|
shared/qmldir \
|
2020-10-20 15:32:03 +00:00
|
|
|
shared/status/StatusEmojiSuggestionPopup.qml \
|
|
|
|
shared/status/StatusInputListPopup.qml \
|
2021-01-19 19:26:59 +00:00
|
|
|
shared/status/StatusRadioButtonRow.qml \
|
2020-12-29 15:31:26 +00:00
|
|
|
shared/status/StatusSettingsLineButton.qml \
|
2020-06-30 20:01:37 +00:00
|
|
|
sounds/ErrorSound.qml
|