├── .clang-format ├── .gitignore ├── .travis.yml ├── .tx └── config ├── Application.manifest ├── CMakeLists.txt ├── Doxyfile.in ├── Info.plist ├── LICENSE ├── README.md ├── appcast.example.xml ├── coding-style.md ├── data ├── com.seafile.seafile-applet.desktop └── icons │ ├── 128x128 │ └── apps │ │ └── seafile.png │ ├── 16x16 │ └── apps │ │ └── seafile.png │ ├── 22x22 │ └── apps │ │ └── seafile.png │ ├── 24x24 │ └── apps │ │ └── seafile.png │ ├── 32x32 │ └── apps │ │ └── seafile.png │ ├── 48x48 │ └── apps │ │ └── seafile.png │ └── scalable │ └── apps │ └── seafile.svg ├── debian ├── README.Debian ├── changelog ├── compat ├── control ├── copyright ├── rules ├── seafile-gui.install └── source │ └── format ├── dev-guide.md ├── extensions ├── CMakeLists.txt ├── README.md ├── README.org ├── applet-connection.cpp ├── applet-connection.h ├── build.sh ├── class-factory.cpp ├── class-factory.h ├── commands.cpp ├── commands.h ├── context-menu.cpp ├── debug-register.reg ├── debug-unregister.reg ├── dll.cpp ├── error.ico ├── ext-common.h ├── ext-utils.cpp ├── ext-utils.h ├── guids.h ├── i18n.cpp ├── i18n.h ├── icon-overlay.cpp ├── locked-by-me.ico ├── locked-by-others.ico ├── log.cpp ├── log.h ├── normal.ico ├── paused.ico ├── readonly.ico ├── seafile_shell_ext.def ├── seafile_shell_ext.rc ├── shell-ext.cpp ├── shell-ext.h └── syncing.ico ├── fsplugin ├── .clang-format ├── .tx │ └── config ├── CMakeLists.txt ├── FinderSync.h ├── FinderSync.mm ├── FinderSyncClient.h ├── FinderSyncClient.mm ├── Info.plist ├── bg_BG.lproj │ └── Localizable.strings ├── build.sh ├── ca.lproj │ └── Localizable.strings ├── cs_CZ.lproj │ └── Localizable.strings ├── de_DE.lproj │ └── Localizable.strings ├── el_GR.lproj │ └── Localizable.strings ├── en.lproj │ └── Localizable.strings ├── es.lproj │ └── Localizable.strings ├── es_AR.lproj │ └── Localizable.strings ├── es_MX.lproj │ └── Localizable.strings ├── et_EE.lproj │ └── Localizable.strings ├── fr_FR.lproj │ └── Localizable.strings ├── he_IL.lproj │ └── Localizable.strings ├── hu_HU.lproj │ └── Localizable.strings ├── is.lproj │ └── Localizable.strings ├── it.lproj │ └── Localizable.strings ├── ja.lproj │ └── Localizable.strings ├── ko_KR.lproj │ └── Localizable.strings ├── lv.lproj │ └── Localizable.strings ├── nb_NO.lproj │ └── Localizable.strings ├── nl_BE.lproj │ └── Localizable.strings ├── nl_NL.lproj │ └── Localizable.strings ├── pl_PL.lproj │ └── Localizable.strings ├── pt_BR.lproj │ └── Localizable.strings ├── pt_PT.lproj │ └── Localizable.strings ├── ru.lproj │ └── Localizable.strings ├── seafile-findersync-arch.svg ├── seafile-fsplugin.entitlements ├── sk_SK.lproj │ └── Localizable.strings ├── status-done.icns ├── status-error.icns ├── status-ignored.icns ├── status-locked-by-me.icns ├── status-locked.icns ├── status-syncing.icns ├── sv.lproj │ └── Localizable.strings ├── tr.lproj │ └── Localizable.strings ├── uk.lproj │ └── Localizable.strings ├── zh_CN.lproj │ └── Localizable.strings └── zh_TW.lproj │ └── Localizable.strings ├── i18n ├── seafile_bg_BG.ts ├── seafile_ca.ts ├── seafile_cs_CZ.ts ├── seafile_de_DE.ts ├── seafile_el_GR.ts ├── seafile_en.ts ├── seafile_es.ts ├── seafile_es_AR.ts ├── seafile_es_MX.ts ├── seafile_et_EE.ts ├── seafile_fr_FR.ts ├── seafile_he_IL.ts ├── seafile_hu_HU.ts ├── seafile_is.ts ├── seafile_it.ts ├── seafile_ja.ts ├── seafile_ko_KR.ts ├── seafile_lv.ts ├── seafile_nb_NO.ts ├── seafile_nl_BE.ts ├── seafile_nl_NL.ts ├── seafile_pl_PL.ts ├── seafile_pt_BR.ts ├── seafile_pt_PT.ts ├── seafile_ru.ts ├── seafile_sk_SK.ts ├── seafile_sv.ts ├── seafile_tr.ts ├── seafile_uk.ts ├── seafile_zh_CN.ts └── seafile_zh_TW.ts ├── images ├── account-256.png ├── account-checked.png ├── account-checked@2x.png ├── account-else.png ├── account-else@2x.png ├── account-settings.png ├── account-settings@2x.png ├── account.png ├── account@2x.png ├── add-account.png ├── add-account@2x.png ├── cancel.png ├── cancel@2x.png ├── clock.png ├── clock@2x.png ├── cloud-gray.png ├── cloud-gray@2x.png ├── daemon_down.png ├── daemon_up.png ├── delete-account.png ├── delete-account@2x.png ├── disk@2x.png ├── download-48.png ├── filebrowser │ ├── add.png │ ├── add@2x.png │ ├── backward.png │ ├── backward@2x.png │ ├── down-arrow.png │ ├── forward.png │ ├── forward@2x.png │ ├── home.png │ ├── home@2x.png │ ├── locked-by-me.png │ ├── locked-by-me@2x.png │ ├── locked.png │ ├── locked@2x.png │ ├── path-separator.png │ ├── path-separator@2x.png │ ├── refresh-gray.png │ ├── refresh-gray@2x.png │ ├── settings.png │ ├── settings@2x.png │ └── up-arrow.png ├── files │ ├── file_audio.png │ ├── file_audio@2x.png │ ├── file_folder.png │ ├── file_folder@2x.png │ ├── file_folder_readonly.png │ ├── file_folder_readonly@2x.png │ ├── file_image.png │ ├── file_image@2x.png │ ├── file_ms_excel.png │ ├── file_ms_excel@2x.png │ ├── file_ms_ppt.png │ ├── file_ms_ppt@2x.png │ ├── file_ms_word.png │ ├── file_ms_word@2x.png │ ├── file_pdf.png │ ├── file_pdf@2x.png │ ├── file_text.png │ ├── file_text@2x.png │ ├── file_unknown.png │ ├── file_unknown@2x.png │ ├── file_video.png │ ├── file_video@2x.png │ ├── file_zip.png │ └── file_zip@2x.png ├── files_v2 │ ├── file_audio.png │ ├── file_audio@2x.png │ ├── file_folder.png │ ├── file_folder@2x.png │ ├── file_folder_readonly.png │ ├── file_folder_readonly@2x.png │ ├── file_image.png │ ├── file_image@2x.png │ ├── file_ms_excel.png │ ├── file_ms_excel@2x.png │ ├── file_ms_ppt.png │ ├── file_ms_ppt@2x.png │ ├── file_ms_word.png │ ├── file_ms_word@2x.png │ ├── file_pdf.png │ ├── file_pdf@2x.png │ ├── file_text.png │ ├── file_text@2x.png │ ├── file_unknown.png │ ├── file_unknown@2x.png │ ├── file_video.png │ ├── file_video@2x.png │ ├── file_zip.png │ └── file_zip@2x.png ├── folder.png ├── info-gray.png ├── info-gray@2x.png ├── info.png ├── leave-share.png ├── leave-share@2x.png ├── library-256.png ├── loading-spinner.gif ├── logout.png ├── logout@2x.png ├── mac │ ├── daemon_down.png │ ├── daemon_down@2x.png │ ├── daemon_up.png │ ├── daemon_up@2x.png │ ├── notification.png │ ├── notification@2x.png │ ├── seafile_auto_sync_disabled.png │ ├── seafile_auto_sync_disabled@2x.png │ ├── seafile_transfer_1.png │ ├── seafile_transfer_1_white.png │ ├── seafile_transfer_2.png │ ├── seafile_transfer_2_white.png │ ├── seafile_warning.png │ └── seafile_warning@2x.png ├── main-panel │ ├── download.png │ ├── download@2x.png │ ├── folder.png │ ├── folder@2x.png │ ├── library-encrypted.png │ ├── library-encrypted@2x.png │ ├── library-normal.png │ ├── library-normal@2x.png │ ├── library-readonly.png │ ├── library-readonly@2x.png │ ├── network-error.png │ ├── network-error@2x.png │ ├── search-background.png │ ├── search-background@2x.png │ ├── sync.png │ ├── sync@2x.png │ ├── upload.png │ └── upload@2x.png ├── minus-gray.png ├── minus-gray@2x.png ├── notification.png ├── pause-gray.png ├── pause-gray@2x.png ├── play-gray.png ├── play-gray@2x.png ├── remove-gray.png ├── remove-gray@2x.png ├── remove-red.png ├── resync.png ├── resync@2x.png ├── seafile-24.png ├── seafile-32.png ├── seafile.png ├── seafile_auto_sync_disabled.png ├── seafile_transfer_1.png ├── seafile_transfer_2.png ├── seafile_warning.png ├── share.png ├── share@2x.png ├── svg │ ├── account.svg │ ├── arrow.svg │ ├── caret-down.svg │ ├── caret-right.svg │ ├── caret-up.svg │ ├── clock.svg │ ├── close.svg │ ├── cloud.svg │ ├── disk.svg │ ├── download-alt.svg │ ├── exclamation.svg │ ├── folder-open.svg │ ├── info-sign.svg │ ├── link.svg │ ├── ok.svg │ ├── pause.svg │ ├── play.svg │ ├── plus.svg │ ├── question.svg │ ├── refresh.svg │ ├── repo.svg │ ├── rotate.svg │ └── share.svg ├── sync │ ├── cloud-sync.png │ ├── cloud-sync@2x.png │ ├── cloud-synced.png │ ├── cloud-synced@2x.png │ ├── cloud-unsynced.png │ ├── cloud-unsynced@2x.png │ ├── done.png │ ├── done@2x.png │ ├── exclamation.png │ ├── minus-sign.png │ ├── pause.png │ ├── pause@2x.png │ ├── question.png │ ├── status-done.png │ ├── status-done@2x.png │ ├── status-syncing.png │ ├── status-syncing@2x.png │ ├── waiting.png │ └── waiting@2x.png ├── sync_now-gray.png ├── sync_now-gray@2x.png ├── tabs │ ├── highlighted │ │ ├── history-orange.png │ │ ├── history-orange@2x.png │ │ ├── library-orange.png │ │ ├── library-orange@2x.png │ │ ├── search-orange.png │ │ ├── search-orange@2x.png │ │ ├── star-orange.png │ │ └── star-orange@2x.png │ ├── history-normal.png │ ├── history-normal@2x.png │ ├── library-normal.png │ ├── library-normal@2x.png │ ├── search-normal.png │ ├── search-normal@2x.png │ ├── star-normal.png │ └── star-normal@2x.png ├── toolbar │ ├── add-gray.png │ ├── add-gray@2x.png │ ├── add.png │ ├── add@2x.png │ ├── download-gray.png │ ├── download-gray@2x.png │ ├── download.png │ ├── download@2x.png │ ├── file-gray.png │ ├── file-gray@2x.png │ ├── file.png │ ├── file@2x.png │ ├── refresh-gray.png │ ├── refresh-gray@2x.png │ ├── refresh-new.png │ ├── refresh-new@2x.png │ ├── refresh-orange.png │ ├── refresh-orange@2x.png │ ├── refresh.png │ ├── refresh@2x.png │ ├── settings-orange.png │ ├── settings-orange@2x.png │ ├── settings.png │ ├── settings@2x.png │ ├── sorts-orange.png │ ├── sorts-orange@2x.png │ ├── sorts.png │ └── sorts@2x.png └── win │ ├── daemon_down.ico │ ├── daemon_up.ico │ ├── notification.ico │ ├── seafile_auto_sync_disabled.ico │ ├── seafile_transfer_1.ico │ ├── seafile_transfer_2.ico │ └── seafile_warning.ico ├── qt-linux.css ├── qt-mac.css ├── qt-win.css ├── qt.css ├── resource.h ├── scripts ├── build.py ├── build_breakpad.sh ├── build_helper.py ├── ci-build.sh ├── genapp.sh ├── install-deps-linux.sh ├── install-deps-osx.sh ├── strip-png.sh └── update-i18n.sh ├── seafile-applet.rc.in ├── seafile-client.qrc ├── seafile-client.rc ├── seafile-client.sln ├── seafile-client.vcxproj ├── seafile-client.vcxproj.filters ├── seafile.icns ├── seafile.ico ├── sparkle-readme.md ├── src ├── account-info-service.cpp ├── account-info-service.h ├── account-mgr.cpp ├── account-mgr.h ├── account.cpp ├── account.h ├── api │ ├── api-client.cpp │ ├── api-client.h │ ├── api-error.cpp │ ├── api-error.h │ ├── api-request.cpp │ ├── api-request.h │ ├── commit-details.cpp │ ├── commit-details.h │ ├── contact-share-info.cpp │ ├── contact-share-info.h │ ├── event.cpp │ ├── event.h │ ├── requests.cpp │ ├── requests.h │ ├── server-info.h │ ├── server-repo.cpp │ ├── server-repo.h │ ├── sso-status.h │ ├── starred-file.cpp │ └── starred-file.h ├── application.cpp ├── application.h ├── auto-login-service.cpp ├── auto-login-service.h ├── auto-update-service.cpp ├── auto-update-service.h ├── avatar-service.cpp ├── avatar-service.h ├── certs-mgr.cpp ├── certs-mgr.h ├── configurator.cpp ├── configurator.h ├── crash-handler.cpp ├── crash-handler.h ├── customization-service.cpp ├── customization-service.h ├── daemon-mgr.cpp ├── daemon-mgr.h ├── events-service.cpp ├── events-service.h ├── ext-handler.cpp ├── ext-handler.h ├── filebrowser │ ├── auto-update-mgr.cpp │ ├── auto-update-mgr.h │ ├── data-cache.cpp │ ├── data-cache.h │ ├── data-mgr.cpp │ ├── data-mgr.h │ ├── file-browser-dialog.cpp │ ├── file-browser-dialog.h │ ├── file-browser-manager.cpp │ ├── file-browser-manager.h │ ├── file-browser-requests.cpp │ ├── file-browser-requests.h │ ├── file-browser-search-tab.cpp │ ├── file-browser-search-tab.h │ ├── file-table.cpp │ ├── file-table.h │ ├── progress-dialog.cpp │ ├── progress-dialog.h │ ├── reliable-upload.cpp │ ├── reliable-upload.h │ ├── seaf-dirent.cpp │ ├── seaf-dirent.h │ ├── seafilelink-dialog.cpp │ ├── seafilelink-dialog.h │ ├── sharedlink-dialog.cpp │ ├── sharedlink-dialog.h │ ├── tasks.cpp │ ├── tasks.h │ ├── thumbnail-service.cpp │ ├── thumbnail-service.h │ ├── transfer-mgr.cpp │ ├── transfer-mgr.h │ ├── uploadlink-dialog.cpp │ └── uploadlink-dialog.h ├── finder-sync │ ├── finder-sync-host.cpp │ ├── finder-sync-host.h │ ├── finder-sync-listener.h │ ├── finder-sync-listener.mm │ ├── finder-sync.cpp │ └── finder-sync.h ├── i18n.cpp ├── i18n.h ├── log-uploader.cpp ├── log-uploader.h ├── mac-sparkle-support.h ├── mac-sparkle-support.mm ├── main.cpp ├── message-poller.cpp ├── message-poller.h ├── network-mgr.cpp ├── network-mgr.h ├── open-local-helper.cpp ├── open-local-helper.h ├── repo-service-helper.cpp ├── repo-service-helper.h ├── repo-service.cpp ├── repo-service.h ├── rpc │ ├── clone-task.cpp │ ├── clone-task.h │ ├── local-repo.cpp │ ├── local-repo.h │ ├── rpc-client.cpp │ ├── rpc-client.h │ ├── rpc-server.cpp │ ├── rpc-server.h │ ├── rpc_table.py │ ├── searpc-marshal.h │ ├── searpc-signature.h │ ├── sync-error.cpp │ ├── sync-error.h │ └── update_rpc_sigs.sh ├── seafile-applet.cpp ├── seafile-applet.h ├── seahub-notifications-monitor.cpp ├── seahub-notifications-monitor.h ├── server-status-service.cpp ├── server-status-service.h ├── settings-mgr.cpp ├── settings-mgr.h ├── shib │ ├── shib-helper.h │ ├── shib-login-dialog.cpp │ └── shib-login-dialog.h ├── sync-error-service.cpp ├── sync-error-service.h ├── traynotificationmanager.cpp ├── traynotificationmanager.h ├── traynotificationwidget.cpp ├── traynotificationwidget.h ├── ui │ ├── about-dialog.cpp │ ├── about-dialog.h │ ├── account-settings-dialog.cpp │ ├── account-settings-dialog.h │ ├── account-view.cpp │ ├── account-view.h │ ├── activities-tab.cpp │ ├── activities-tab.h │ ├── check-repo-root-perm-dialog.cpp │ ├── check-repo-root-perm-dialog.h │ ├── clone-tasks-dialog.cpp │ ├── clone-tasks-dialog.h │ ├── clone-tasks-table-model.cpp │ ├── clone-tasks-table-model.h │ ├── clone-tasks-table-view.cpp │ ├── clone-tasks-table-view.h │ ├── cloud-view.cpp │ ├── cloud-view.h │ ├── create-repo-dialog.cpp │ ├── create-repo-dialog.h │ ├── download-repo-dialog.cpp │ ├── download-repo-dialog.h │ ├── event-details-dialog.cpp │ ├── event-details-dialog.h │ ├── event-details-tree.cpp │ ├── event-details-tree.h │ ├── events-list-view.cpp │ ├── events-list-view.h │ ├── init-seafile-dialog.cpp │ ├── init-seafile-dialog.h │ ├── init-vdrive-dialog.cpp │ ├── init-vdrive-dialog.h │ ├── loading-view.cpp │ ├── loading-view.h │ ├── login-dialog.cpp │ ├── login-dialog.h │ ├── logout-view.cpp │ ├── logout-view.h │ ├── main-window.cpp │ ├── main-window.h │ ├── private-share-dialog.cpp │ ├── private-share-dialog.h │ ├── proxy-style.cpp │ ├── proxy-style.h │ ├── repo-detail-dialog.cpp │ ├── repo-detail-dialog.h │ ├── repo-item-delegate.cpp │ ├── repo-item-delegate.h │ ├── repo-item.cpp │ ├── repo-item.h │ ├── repo-tree-model.cpp │ ├── repo-tree-model.h │ ├── repo-tree-view.cpp │ ├── repo-tree-view.h │ ├── repos-tab.cpp │ ├── repos-tab.h │ ├── seafile-tab-widget.cpp │ ├── seafile-tab-widget.h │ ├── search-bar.cpp │ ├── search-bar.h │ ├── search-tab-items.cpp │ ├── search-tab-items.h │ ├── search-tab.cpp │ ├── search-tab.h │ ├── server-status-dialog.cpp │ ├── server-status-dialog.h │ ├── set-repo-password-dialog.cpp │ ├── set-repo-password-dialog.h │ ├── settings-dialog.cpp │ ├── settings-dialog.h │ ├── ssl-confirm-dialog.cpp │ ├── ssl-confirm-dialog.h │ ├── starred-file-item-delegate.cpp │ ├── starred-file-item-delegate.h │ ├── starred-file-item.cpp │ ├── starred-file-item.h │ ├── starred-files-list-model.cpp │ ├── starred-files-list-model.h │ ├── starred-files-list-view.cpp │ ├── starred-files-list-view.h │ ├── starred-files-tab.cpp │ ├── starred-files-tab.h │ ├── sync-errors-dialog.cpp │ ├── sync-errors-dialog.h │ ├── tab-view.cpp │ ├── tab-view.h │ ├── tray-icon.cpp │ ├── tray-icon.h │ ├── two-factor-dialog.cpp │ ├── two-factor-dialog.h │ ├── uninstall-helper-dialog.cpp │ ├── uninstall-helper-dialog.h │ ├── user-name-completer.cpp │ └── user-name-completer.h └── utils │ ├── api-utils.cpp │ ├── api-utils.h │ ├── file-utils.cpp │ ├── file-utils.h │ ├── json-utils.cpp │ ├── json-utils.h │ ├── log.c │ ├── log.h │ ├── paint-utils.cpp │ ├── paint-utils.h │ ├── process-linux.cpp │ ├── process-mac.cpp │ ├── process-win.cpp │ ├── process.h │ ├── registry.cpp │ ├── registry.h │ ├── rsa.cpp │ ├── rsa.h │ ├── seafile-error.cpp │ ├── seafile-error.h │ ├── singleton.h │ ├── stl.cpp │ ├── stl.h │ ├── translate-commit-desc.cpp │ ├── translate-commit-desc.h │ ├── uninstall-helpers.cpp │ ├── uninstall-helpers.h │ ├── utils-mac.h │ ├── utils-mac.mm │ ├── utils-win.cpp │ ├── utils-win.h │ ├── utils.cpp │ └── utils.h ├── tests ├── CMakeLists.txt ├── test_file-utils.cpp ├── test_file-utils.h ├── test_server-info.cpp ├── test_server-info.h ├── test_stl.cpp ├── test_stl.h ├── test_utils.cpp └── test_utils.h ├── third_party ├── QtAwesome │ ├── QtAwesome.cpp │ ├── QtAwesome.h │ ├── QtAwesome.qrc │ └── fonts │ │ └── fontawesome.ttf ├── WinSparkle-0.5.3 │ ├── AUTHORS │ ├── COPYING │ ├── NEWS │ ├── README.md │ ├── Release │ │ ├── WinSparkle.dll │ │ ├── WinSparkle.lib │ │ └── WinSparkle.pdb │ ├── include │ │ ├── winsparkle-version.h │ │ └── winsparkle.h │ └── x64 │ │ └── Release │ │ ├── WinSparkle.dll │ │ ├── WinSparkle.lib │ │ └── WinSparkle.pdb └── quazip │ ├── JlCompress.cpp │ ├── JlCompress.h │ ├── ioapi.h │ ├── minizip_crypt.h │ ├── qioapi.cpp │ ├── quaadler32.cpp │ ├── quaadler32.h │ ├── quachecksum32.cpp │ ├── quachecksum32.h │ ├── quacrc32.cpp │ ├── quacrc32.h │ ├── quagzipfile.cpp │ ├── quagzipfile.h │ ├── quaziodevice.cpp │ ├── quaziodevice.h │ ├── quazip.cpp │ ├── quazip.h │ ├── quazip.sln │ ├── quazip.vcxproj │ ├── quazip.vcxproj.filters │ ├── quazip_global.h │ ├── quazipdir.cpp │ ├── quazipdir.h │ ├── quazipfile.cpp │ ├── quazipfile.h │ ├── quazipfileinfo.cpp │ ├── quazipfileinfo.h │ ├── quazipnewinfo.cpp │ ├── quazipnewinfo.h │ ├── unzip.c │ ├── unzip.h │ ├── vcpkg.json │ ├── zip.c │ └── zip.h ├── ui ├── about-dialog.ui ├── account-settings-dialog.ui ├── account-view.ui ├── clone-tasks-dialog.ui ├── cloud-view.ui ├── create-repo-dialog.ui ├── download-repo-dialog.ui ├── init-seafile-dialog.ui ├── init-vdrive-dialog.ui ├── login-dialog.ui ├── private-share-dialog.ui ├── repo-detail-dialog.ui ├── server-status-dialog.ui ├── set-repo-password-dialog.ui ├── settings-dialog.ui ├── ssl-confirm-dialog.ui ├── two-factor-dialog.ui └── uninstall-helper-dialog.ui └── vcpkg.json /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/.travis.yml -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/.tx/config -------------------------------------------------------------------------------- /Application.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/Application.manifest -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/Doxyfile.in -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/README.md -------------------------------------------------------------------------------- /appcast.example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/appcast.example.xml -------------------------------------------------------------------------------- /coding-style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/coding-style.md -------------------------------------------------------------------------------- /data/com.seafile.seafile-applet.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/data/com.seafile.seafile-applet.desktop -------------------------------------------------------------------------------- /data/icons/128x128/apps/seafile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/data/icons/128x128/apps/seafile.png -------------------------------------------------------------------------------- /data/icons/16x16/apps/seafile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/data/icons/16x16/apps/seafile.png -------------------------------------------------------------------------------- /data/icons/22x22/apps/seafile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/data/icons/22x22/apps/seafile.png -------------------------------------------------------------------------------- /data/icons/24x24/apps/seafile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/data/icons/24x24/apps/seafile.png -------------------------------------------------------------------------------- /data/icons/32x32/apps/seafile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/data/icons/32x32/apps/seafile.png -------------------------------------------------------------------------------- /data/icons/48x48/apps/seafile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/data/icons/48x48/apps/seafile.png -------------------------------------------------------------------------------- /data/icons/scalable/apps/seafile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/data/icons/scalable/apps/seafile.svg -------------------------------------------------------------------------------- /debian/README.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/debian/README.Debian -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/seafile-gui.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/debian/seafile-gui.install -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /dev-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/dev-guide.md -------------------------------------------------------------------------------- /extensions/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/extensions/CMakeLists.txt -------------------------------------------------------------------------------- /extensions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/extensions/README.md -------------------------------------------------------------------------------- /extensions/README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/extensions/README.org -------------------------------------------------------------------------------- /extensions/applet-connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/extensions/applet-connection.cpp -------------------------------------------------------------------------------- /extensions/applet-connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/extensions/applet-connection.h -------------------------------------------------------------------------------- /extensions/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/extensions/build.sh -------------------------------------------------------------------------------- /extensions/class-factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/extensions/class-factory.cpp -------------------------------------------------------------------------------- /extensions/class-factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/extensions/class-factory.h -------------------------------------------------------------------------------- /extensions/commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/extensions/commands.cpp -------------------------------------------------------------------------------- /extensions/commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/extensions/commands.h -------------------------------------------------------------------------------- /extensions/context-menu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/extensions/context-menu.cpp -------------------------------------------------------------------------------- /extensions/debug-register.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/extensions/debug-register.reg -------------------------------------------------------------------------------- /extensions/debug-unregister.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/extensions/debug-unregister.reg -------------------------------------------------------------------------------- /extensions/dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/extensions/dll.cpp -------------------------------------------------------------------------------- /extensions/error.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/extensions/error.ico -------------------------------------------------------------------------------- /extensions/ext-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/extensions/ext-common.h -------------------------------------------------------------------------------- /extensions/ext-utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/extensions/ext-utils.cpp -------------------------------------------------------------------------------- /extensions/ext-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/extensions/ext-utils.h -------------------------------------------------------------------------------- /extensions/guids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/extensions/guids.h -------------------------------------------------------------------------------- /extensions/i18n.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/extensions/i18n.cpp -------------------------------------------------------------------------------- /extensions/i18n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/extensions/i18n.h -------------------------------------------------------------------------------- /extensions/icon-overlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/extensions/icon-overlay.cpp -------------------------------------------------------------------------------- /extensions/locked-by-me.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/extensions/locked-by-me.ico -------------------------------------------------------------------------------- /extensions/locked-by-others.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/extensions/locked-by-others.ico -------------------------------------------------------------------------------- /extensions/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/extensions/log.cpp -------------------------------------------------------------------------------- /extensions/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/extensions/log.h -------------------------------------------------------------------------------- /extensions/normal.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/extensions/normal.ico -------------------------------------------------------------------------------- /extensions/paused.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/extensions/paused.ico -------------------------------------------------------------------------------- /extensions/readonly.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/extensions/readonly.ico -------------------------------------------------------------------------------- /extensions/seafile_shell_ext.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/extensions/seafile_shell_ext.def -------------------------------------------------------------------------------- /extensions/seafile_shell_ext.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/extensions/seafile_shell_ext.rc -------------------------------------------------------------------------------- /extensions/shell-ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/extensions/shell-ext.cpp -------------------------------------------------------------------------------- /extensions/shell-ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/extensions/shell-ext.h -------------------------------------------------------------------------------- /extensions/syncing.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/extensions/syncing.ico -------------------------------------------------------------------------------- /fsplugin/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/.clang-format -------------------------------------------------------------------------------- /fsplugin/.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/.tx/config -------------------------------------------------------------------------------- /fsplugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/CMakeLists.txt -------------------------------------------------------------------------------- /fsplugin/FinderSync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/FinderSync.h -------------------------------------------------------------------------------- /fsplugin/FinderSync.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/FinderSync.mm -------------------------------------------------------------------------------- /fsplugin/FinderSyncClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/FinderSyncClient.h -------------------------------------------------------------------------------- /fsplugin/FinderSyncClient.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/FinderSyncClient.mm -------------------------------------------------------------------------------- /fsplugin/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/Info.plist -------------------------------------------------------------------------------- /fsplugin/bg_BG.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/bg_BG.lproj/Localizable.strings -------------------------------------------------------------------------------- /fsplugin/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/build.sh -------------------------------------------------------------------------------- /fsplugin/ca.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/ca.lproj/Localizable.strings -------------------------------------------------------------------------------- /fsplugin/cs_CZ.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/cs_CZ.lproj/Localizable.strings -------------------------------------------------------------------------------- /fsplugin/de_DE.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/de_DE.lproj/Localizable.strings -------------------------------------------------------------------------------- /fsplugin/el_GR.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/el_GR.lproj/Localizable.strings -------------------------------------------------------------------------------- /fsplugin/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /fsplugin/es.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/es.lproj/Localizable.strings -------------------------------------------------------------------------------- /fsplugin/es_AR.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/es_AR.lproj/Localizable.strings -------------------------------------------------------------------------------- /fsplugin/es_MX.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/es_MX.lproj/Localizable.strings -------------------------------------------------------------------------------- /fsplugin/et_EE.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/et_EE.lproj/Localizable.strings -------------------------------------------------------------------------------- /fsplugin/fr_FR.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/fr_FR.lproj/Localizable.strings -------------------------------------------------------------------------------- /fsplugin/he_IL.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/he_IL.lproj/Localizable.strings -------------------------------------------------------------------------------- /fsplugin/hu_HU.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/hu_HU.lproj/Localizable.strings -------------------------------------------------------------------------------- /fsplugin/is.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/is.lproj/Localizable.strings -------------------------------------------------------------------------------- /fsplugin/it.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/it.lproj/Localizable.strings -------------------------------------------------------------------------------- /fsplugin/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /fsplugin/ko_KR.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/ko_KR.lproj/Localizable.strings -------------------------------------------------------------------------------- /fsplugin/lv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/lv.lproj/Localizable.strings -------------------------------------------------------------------------------- /fsplugin/nb_NO.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/nb_NO.lproj/Localizable.strings -------------------------------------------------------------------------------- /fsplugin/nl_BE.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/nl_BE.lproj/Localizable.strings -------------------------------------------------------------------------------- /fsplugin/nl_NL.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/nl_NL.lproj/Localizable.strings -------------------------------------------------------------------------------- /fsplugin/pl_PL.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/pl_PL.lproj/Localizable.strings -------------------------------------------------------------------------------- /fsplugin/pt_BR.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/pt_BR.lproj/Localizable.strings -------------------------------------------------------------------------------- /fsplugin/pt_PT.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/pt_PT.lproj/Localizable.strings -------------------------------------------------------------------------------- /fsplugin/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /fsplugin/seafile-findersync-arch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/seafile-findersync-arch.svg -------------------------------------------------------------------------------- /fsplugin/seafile-fsplugin.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/seafile-fsplugin.entitlements -------------------------------------------------------------------------------- /fsplugin/sk_SK.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/sk_SK.lproj/Localizable.strings -------------------------------------------------------------------------------- /fsplugin/status-done.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/status-done.icns -------------------------------------------------------------------------------- /fsplugin/status-error.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/status-error.icns -------------------------------------------------------------------------------- /fsplugin/status-ignored.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/status-ignored.icns -------------------------------------------------------------------------------- /fsplugin/status-locked-by-me.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/status-locked-by-me.icns -------------------------------------------------------------------------------- /fsplugin/status-locked.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/status-locked.icns -------------------------------------------------------------------------------- /fsplugin/status-syncing.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/status-syncing.icns -------------------------------------------------------------------------------- /fsplugin/sv.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/sv.lproj/Localizable.strings -------------------------------------------------------------------------------- /fsplugin/tr.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/tr.lproj/Localizable.strings -------------------------------------------------------------------------------- /fsplugin/uk.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/uk.lproj/Localizable.strings -------------------------------------------------------------------------------- /fsplugin/zh_CN.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/zh_CN.lproj/Localizable.strings -------------------------------------------------------------------------------- /fsplugin/zh_TW.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/fsplugin/zh_TW.lproj/Localizable.strings -------------------------------------------------------------------------------- /i18n/seafile_bg_BG.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/i18n/seafile_bg_BG.ts -------------------------------------------------------------------------------- /i18n/seafile_ca.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/i18n/seafile_ca.ts -------------------------------------------------------------------------------- /i18n/seafile_cs_CZ.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/i18n/seafile_cs_CZ.ts -------------------------------------------------------------------------------- /i18n/seafile_de_DE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/i18n/seafile_de_DE.ts -------------------------------------------------------------------------------- /i18n/seafile_el_GR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/i18n/seafile_el_GR.ts -------------------------------------------------------------------------------- /i18n/seafile_en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/i18n/seafile_en.ts -------------------------------------------------------------------------------- /i18n/seafile_es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/i18n/seafile_es.ts -------------------------------------------------------------------------------- /i18n/seafile_es_AR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/i18n/seafile_es_AR.ts -------------------------------------------------------------------------------- /i18n/seafile_es_MX.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/i18n/seafile_es_MX.ts -------------------------------------------------------------------------------- /i18n/seafile_et_EE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/i18n/seafile_et_EE.ts -------------------------------------------------------------------------------- /i18n/seafile_fr_FR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/i18n/seafile_fr_FR.ts -------------------------------------------------------------------------------- /i18n/seafile_he_IL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/i18n/seafile_he_IL.ts -------------------------------------------------------------------------------- /i18n/seafile_hu_HU.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/i18n/seafile_hu_HU.ts -------------------------------------------------------------------------------- /i18n/seafile_is.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/i18n/seafile_is.ts -------------------------------------------------------------------------------- /i18n/seafile_it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/i18n/seafile_it.ts -------------------------------------------------------------------------------- /i18n/seafile_ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/i18n/seafile_ja.ts -------------------------------------------------------------------------------- /i18n/seafile_ko_KR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/i18n/seafile_ko_KR.ts -------------------------------------------------------------------------------- /i18n/seafile_lv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/i18n/seafile_lv.ts -------------------------------------------------------------------------------- /i18n/seafile_nb_NO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/i18n/seafile_nb_NO.ts -------------------------------------------------------------------------------- /i18n/seafile_nl_BE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/i18n/seafile_nl_BE.ts -------------------------------------------------------------------------------- /i18n/seafile_nl_NL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/i18n/seafile_nl_NL.ts -------------------------------------------------------------------------------- /i18n/seafile_pl_PL.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/i18n/seafile_pl_PL.ts -------------------------------------------------------------------------------- /i18n/seafile_pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/i18n/seafile_pt_BR.ts -------------------------------------------------------------------------------- /i18n/seafile_pt_PT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/i18n/seafile_pt_PT.ts -------------------------------------------------------------------------------- /i18n/seafile_ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/i18n/seafile_ru.ts -------------------------------------------------------------------------------- /i18n/seafile_sk_SK.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/i18n/seafile_sk_SK.ts -------------------------------------------------------------------------------- /i18n/seafile_sv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/i18n/seafile_sv.ts -------------------------------------------------------------------------------- /i18n/seafile_tr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/i18n/seafile_tr.ts -------------------------------------------------------------------------------- /i18n/seafile_uk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/i18n/seafile_uk.ts -------------------------------------------------------------------------------- /i18n/seafile_zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/i18n/seafile_zh_CN.ts -------------------------------------------------------------------------------- /i18n/seafile_zh_TW.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/i18n/seafile_zh_TW.ts -------------------------------------------------------------------------------- /images/account-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/account-256.png -------------------------------------------------------------------------------- /images/account-checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/account-checked.png -------------------------------------------------------------------------------- /images/account-checked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/account-checked@2x.png -------------------------------------------------------------------------------- /images/account-else.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/account-else.png -------------------------------------------------------------------------------- /images/account-else@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/account-else@2x.png -------------------------------------------------------------------------------- /images/account-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/account-settings.png -------------------------------------------------------------------------------- /images/account-settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/account-settings@2x.png -------------------------------------------------------------------------------- /images/account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/account.png -------------------------------------------------------------------------------- /images/account@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/account@2x.png -------------------------------------------------------------------------------- /images/add-account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/add-account.png -------------------------------------------------------------------------------- /images/add-account@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/add-account@2x.png -------------------------------------------------------------------------------- /images/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/cancel.png -------------------------------------------------------------------------------- /images/cancel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/cancel@2x.png -------------------------------------------------------------------------------- /images/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/clock.png -------------------------------------------------------------------------------- /images/clock@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/clock@2x.png -------------------------------------------------------------------------------- /images/cloud-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/cloud-gray.png -------------------------------------------------------------------------------- /images/cloud-gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/cloud-gray@2x.png -------------------------------------------------------------------------------- /images/daemon_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/daemon_down.png -------------------------------------------------------------------------------- /images/daemon_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/daemon_up.png -------------------------------------------------------------------------------- /images/delete-account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/delete-account.png -------------------------------------------------------------------------------- /images/delete-account@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/delete-account@2x.png -------------------------------------------------------------------------------- /images/disk@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/disk@2x.png -------------------------------------------------------------------------------- /images/download-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/download-48.png -------------------------------------------------------------------------------- /images/filebrowser/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/filebrowser/add.png -------------------------------------------------------------------------------- /images/filebrowser/add@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/filebrowser/add@2x.png -------------------------------------------------------------------------------- /images/filebrowser/backward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/filebrowser/backward.png -------------------------------------------------------------------------------- /images/filebrowser/backward@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/filebrowser/backward@2x.png -------------------------------------------------------------------------------- /images/filebrowser/down-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/filebrowser/down-arrow.png -------------------------------------------------------------------------------- /images/filebrowser/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/filebrowser/forward.png -------------------------------------------------------------------------------- /images/filebrowser/forward@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/filebrowser/forward@2x.png -------------------------------------------------------------------------------- /images/filebrowser/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/filebrowser/home.png -------------------------------------------------------------------------------- /images/filebrowser/home@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/filebrowser/home@2x.png -------------------------------------------------------------------------------- /images/filebrowser/locked-by-me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/filebrowser/locked-by-me.png -------------------------------------------------------------------------------- /images/filebrowser/locked-by-me@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/filebrowser/locked-by-me@2x.png -------------------------------------------------------------------------------- /images/filebrowser/locked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/filebrowser/locked.png -------------------------------------------------------------------------------- /images/filebrowser/locked@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/filebrowser/locked@2x.png -------------------------------------------------------------------------------- /images/filebrowser/path-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/filebrowser/path-separator.png -------------------------------------------------------------------------------- /images/filebrowser/path-separator@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/filebrowser/path-separator@2x.png -------------------------------------------------------------------------------- /images/filebrowser/refresh-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/filebrowser/refresh-gray.png -------------------------------------------------------------------------------- /images/filebrowser/refresh-gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/filebrowser/refresh-gray@2x.png -------------------------------------------------------------------------------- /images/filebrowser/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/filebrowser/settings.png -------------------------------------------------------------------------------- /images/filebrowser/settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/filebrowser/settings@2x.png -------------------------------------------------------------------------------- /images/filebrowser/up-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/filebrowser/up-arrow.png -------------------------------------------------------------------------------- /images/files/file_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files/file_audio.png -------------------------------------------------------------------------------- /images/files/file_audio@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files/file_audio@2x.png -------------------------------------------------------------------------------- /images/files/file_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files/file_folder.png -------------------------------------------------------------------------------- /images/files/file_folder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files/file_folder@2x.png -------------------------------------------------------------------------------- /images/files/file_folder_readonly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files/file_folder_readonly.png -------------------------------------------------------------------------------- /images/files/file_folder_readonly@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files/file_folder_readonly@2x.png -------------------------------------------------------------------------------- /images/files/file_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files/file_image.png -------------------------------------------------------------------------------- /images/files/file_image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files/file_image@2x.png -------------------------------------------------------------------------------- /images/files/file_ms_excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files/file_ms_excel.png -------------------------------------------------------------------------------- /images/files/file_ms_excel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files/file_ms_excel@2x.png -------------------------------------------------------------------------------- /images/files/file_ms_ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files/file_ms_ppt.png -------------------------------------------------------------------------------- /images/files/file_ms_ppt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files/file_ms_ppt@2x.png -------------------------------------------------------------------------------- /images/files/file_ms_word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files/file_ms_word.png -------------------------------------------------------------------------------- /images/files/file_ms_word@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files/file_ms_word@2x.png -------------------------------------------------------------------------------- /images/files/file_pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files/file_pdf.png -------------------------------------------------------------------------------- /images/files/file_pdf@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files/file_pdf@2x.png -------------------------------------------------------------------------------- /images/files/file_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files/file_text.png -------------------------------------------------------------------------------- /images/files/file_text@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files/file_text@2x.png -------------------------------------------------------------------------------- /images/files/file_unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files/file_unknown.png -------------------------------------------------------------------------------- /images/files/file_unknown@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files/file_unknown@2x.png -------------------------------------------------------------------------------- /images/files/file_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files/file_video.png -------------------------------------------------------------------------------- /images/files/file_video@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files/file_video@2x.png -------------------------------------------------------------------------------- /images/files/file_zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files/file_zip.png -------------------------------------------------------------------------------- /images/files/file_zip@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files/file_zip@2x.png -------------------------------------------------------------------------------- /images/files_v2/file_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files_v2/file_audio.png -------------------------------------------------------------------------------- /images/files_v2/file_audio@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files_v2/file_audio@2x.png -------------------------------------------------------------------------------- /images/files_v2/file_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files_v2/file_folder.png -------------------------------------------------------------------------------- /images/files_v2/file_folder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files_v2/file_folder@2x.png -------------------------------------------------------------------------------- /images/files_v2/file_folder_readonly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files_v2/file_folder_readonly.png -------------------------------------------------------------------------------- /images/files_v2/file_folder_readonly@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files_v2/file_folder_readonly@2x.png -------------------------------------------------------------------------------- /images/files_v2/file_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files_v2/file_image.png -------------------------------------------------------------------------------- /images/files_v2/file_image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files_v2/file_image@2x.png -------------------------------------------------------------------------------- /images/files_v2/file_ms_excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files_v2/file_ms_excel.png -------------------------------------------------------------------------------- /images/files_v2/file_ms_excel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files_v2/file_ms_excel@2x.png -------------------------------------------------------------------------------- /images/files_v2/file_ms_ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files_v2/file_ms_ppt.png -------------------------------------------------------------------------------- /images/files_v2/file_ms_ppt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files_v2/file_ms_ppt@2x.png -------------------------------------------------------------------------------- /images/files_v2/file_ms_word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files_v2/file_ms_word.png -------------------------------------------------------------------------------- /images/files_v2/file_ms_word@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files_v2/file_ms_word@2x.png -------------------------------------------------------------------------------- /images/files_v2/file_pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files_v2/file_pdf.png -------------------------------------------------------------------------------- /images/files_v2/file_pdf@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files_v2/file_pdf@2x.png -------------------------------------------------------------------------------- /images/files_v2/file_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files_v2/file_text.png -------------------------------------------------------------------------------- /images/files_v2/file_text@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files_v2/file_text@2x.png -------------------------------------------------------------------------------- /images/files_v2/file_unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files_v2/file_unknown.png -------------------------------------------------------------------------------- /images/files_v2/file_unknown@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files_v2/file_unknown@2x.png -------------------------------------------------------------------------------- /images/files_v2/file_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files_v2/file_video.png -------------------------------------------------------------------------------- /images/files_v2/file_video@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files_v2/file_video@2x.png -------------------------------------------------------------------------------- /images/files_v2/file_zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files_v2/file_zip.png -------------------------------------------------------------------------------- /images/files_v2/file_zip@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/files_v2/file_zip@2x.png -------------------------------------------------------------------------------- /images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/folder.png -------------------------------------------------------------------------------- /images/info-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/info-gray.png -------------------------------------------------------------------------------- /images/info-gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/info-gray@2x.png -------------------------------------------------------------------------------- /images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/info.png -------------------------------------------------------------------------------- /images/leave-share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/leave-share.png -------------------------------------------------------------------------------- /images/leave-share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/leave-share@2x.png -------------------------------------------------------------------------------- /images/library-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/library-256.png -------------------------------------------------------------------------------- /images/loading-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/loading-spinner.gif -------------------------------------------------------------------------------- /images/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/logout.png -------------------------------------------------------------------------------- /images/logout@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/logout@2x.png -------------------------------------------------------------------------------- /images/mac/daemon_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/mac/daemon_down.png -------------------------------------------------------------------------------- /images/mac/daemon_down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/mac/daemon_down@2x.png -------------------------------------------------------------------------------- /images/mac/daemon_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/mac/daemon_up.png -------------------------------------------------------------------------------- /images/mac/daemon_up@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/mac/daemon_up@2x.png -------------------------------------------------------------------------------- /images/mac/notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/mac/notification.png -------------------------------------------------------------------------------- /images/mac/notification@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/mac/notification@2x.png -------------------------------------------------------------------------------- /images/mac/seafile_auto_sync_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/mac/seafile_auto_sync_disabled.png -------------------------------------------------------------------------------- /images/mac/seafile_auto_sync_disabled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/mac/seafile_auto_sync_disabled@2x.png -------------------------------------------------------------------------------- /images/mac/seafile_transfer_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/mac/seafile_transfer_1.png -------------------------------------------------------------------------------- /images/mac/seafile_transfer_1_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/mac/seafile_transfer_1_white.png -------------------------------------------------------------------------------- /images/mac/seafile_transfer_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/mac/seafile_transfer_2.png -------------------------------------------------------------------------------- /images/mac/seafile_transfer_2_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/mac/seafile_transfer_2_white.png -------------------------------------------------------------------------------- /images/mac/seafile_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/mac/seafile_warning.png -------------------------------------------------------------------------------- /images/mac/seafile_warning@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/mac/seafile_warning@2x.png -------------------------------------------------------------------------------- /images/main-panel/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/main-panel/download.png -------------------------------------------------------------------------------- /images/main-panel/download@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/main-panel/download@2x.png -------------------------------------------------------------------------------- /images/main-panel/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/main-panel/folder.png -------------------------------------------------------------------------------- /images/main-panel/folder@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/main-panel/folder@2x.png -------------------------------------------------------------------------------- /images/main-panel/library-encrypted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/main-panel/library-encrypted.png -------------------------------------------------------------------------------- /images/main-panel/library-encrypted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/main-panel/library-encrypted@2x.png -------------------------------------------------------------------------------- /images/main-panel/library-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/main-panel/library-normal.png -------------------------------------------------------------------------------- /images/main-panel/library-normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/main-panel/library-normal@2x.png -------------------------------------------------------------------------------- /images/main-panel/library-readonly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/main-panel/library-readonly.png -------------------------------------------------------------------------------- /images/main-panel/library-readonly@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/main-panel/library-readonly@2x.png -------------------------------------------------------------------------------- /images/main-panel/network-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/main-panel/network-error.png -------------------------------------------------------------------------------- /images/main-panel/network-error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/main-panel/network-error@2x.png -------------------------------------------------------------------------------- /images/main-panel/search-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/main-panel/search-background.png -------------------------------------------------------------------------------- /images/main-panel/search-background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/main-panel/search-background@2x.png -------------------------------------------------------------------------------- /images/main-panel/sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/main-panel/sync.png -------------------------------------------------------------------------------- /images/main-panel/sync@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/main-panel/sync@2x.png -------------------------------------------------------------------------------- /images/main-panel/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/main-panel/upload.png -------------------------------------------------------------------------------- /images/main-panel/upload@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/main-panel/upload@2x.png -------------------------------------------------------------------------------- /images/minus-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/minus-gray.png -------------------------------------------------------------------------------- /images/minus-gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/minus-gray@2x.png -------------------------------------------------------------------------------- /images/notification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/notification.png -------------------------------------------------------------------------------- /images/pause-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/pause-gray.png -------------------------------------------------------------------------------- /images/pause-gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/pause-gray@2x.png -------------------------------------------------------------------------------- /images/play-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/play-gray.png -------------------------------------------------------------------------------- /images/play-gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/play-gray@2x.png -------------------------------------------------------------------------------- /images/remove-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/remove-gray.png -------------------------------------------------------------------------------- /images/remove-gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/remove-gray@2x.png -------------------------------------------------------------------------------- /images/remove-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/remove-red.png -------------------------------------------------------------------------------- /images/resync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/resync.png -------------------------------------------------------------------------------- /images/resync@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/resync@2x.png -------------------------------------------------------------------------------- /images/seafile-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/seafile-24.png -------------------------------------------------------------------------------- /images/seafile-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/seafile-32.png -------------------------------------------------------------------------------- /images/seafile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/seafile.png -------------------------------------------------------------------------------- /images/seafile_auto_sync_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/seafile_auto_sync_disabled.png -------------------------------------------------------------------------------- /images/seafile_transfer_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/seafile_transfer_1.png -------------------------------------------------------------------------------- /images/seafile_transfer_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/seafile_transfer_2.png -------------------------------------------------------------------------------- /images/seafile_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/seafile_warning.png -------------------------------------------------------------------------------- /images/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/share.png -------------------------------------------------------------------------------- /images/share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/share@2x.png -------------------------------------------------------------------------------- /images/svg/account.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/svg/account.svg -------------------------------------------------------------------------------- /images/svg/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/svg/arrow.svg -------------------------------------------------------------------------------- /images/svg/caret-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/svg/caret-down.svg -------------------------------------------------------------------------------- /images/svg/caret-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/svg/caret-right.svg -------------------------------------------------------------------------------- /images/svg/caret-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/svg/caret-up.svg -------------------------------------------------------------------------------- /images/svg/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/svg/clock.svg -------------------------------------------------------------------------------- /images/svg/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/svg/close.svg -------------------------------------------------------------------------------- /images/svg/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/svg/cloud.svg -------------------------------------------------------------------------------- /images/svg/disk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/svg/disk.svg -------------------------------------------------------------------------------- /images/svg/download-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/svg/download-alt.svg -------------------------------------------------------------------------------- /images/svg/exclamation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/svg/exclamation.svg -------------------------------------------------------------------------------- /images/svg/folder-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/svg/folder-open.svg -------------------------------------------------------------------------------- /images/svg/info-sign.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/svg/info-sign.svg -------------------------------------------------------------------------------- /images/svg/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/svg/link.svg -------------------------------------------------------------------------------- /images/svg/ok.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/svg/ok.svg -------------------------------------------------------------------------------- /images/svg/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/svg/pause.svg -------------------------------------------------------------------------------- /images/svg/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/svg/play.svg -------------------------------------------------------------------------------- /images/svg/plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/svg/plus.svg -------------------------------------------------------------------------------- /images/svg/question.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/svg/question.svg -------------------------------------------------------------------------------- /images/svg/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/svg/refresh.svg -------------------------------------------------------------------------------- /images/svg/repo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/svg/repo.svg -------------------------------------------------------------------------------- /images/svg/rotate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/svg/rotate.svg -------------------------------------------------------------------------------- /images/svg/share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/svg/share.svg -------------------------------------------------------------------------------- /images/sync/cloud-sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/sync/cloud-sync.png -------------------------------------------------------------------------------- /images/sync/cloud-sync@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/sync/cloud-sync@2x.png -------------------------------------------------------------------------------- /images/sync/cloud-synced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/sync/cloud-synced.png -------------------------------------------------------------------------------- /images/sync/cloud-synced@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/sync/cloud-synced@2x.png -------------------------------------------------------------------------------- /images/sync/cloud-unsynced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/sync/cloud-unsynced.png -------------------------------------------------------------------------------- /images/sync/cloud-unsynced@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/sync/cloud-unsynced@2x.png -------------------------------------------------------------------------------- /images/sync/done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/sync/done.png -------------------------------------------------------------------------------- /images/sync/done@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/sync/done@2x.png -------------------------------------------------------------------------------- /images/sync/exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/sync/exclamation.png -------------------------------------------------------------------------------- /images/sync/minus-sign.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/sync/minus-sign.png -------------------------------------------------------------------------------- /images/sync/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/sync/pause.png -------------------------------------------------------------------------------- /images/sync/pause@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/sync/pause@2x.png -------------------------------------------------------------------------------- /images/sync/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/sync/question.png -------------------------------------------------------------------------------- /images/sync/status-done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/sync/status-done.png -------------------------------------------------------------------------------- /images/sync/status-done@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/sync/status-done@2x.png -------------------------------------------------------------------------------- /images/sync/status-syncing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/sync/status-syncing.png -------------------------------------------------------------------------------- /images/sync/status-syncing@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/sync/status-syncing@2x.png -------------------------------------------------------------------------------- /images/sync/waiting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/sync/waiting.png -------------------------------------------------------------------------------- /images/sync/waiting@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/sync/waiting@2x.png -------------------------------------------------------------------------------- /images/sync_now-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/sync_now-gray.png -------------------------------------------------------------------------------- /images/sync_now-gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/sync_now-gray@2x.png -------------------------------------------------------------------------------- /images/tabs/highlighted/history-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/tabs/highlighted/history-orange.png -------------------------------------------------------------------------------- /images/tabs/highlighted/history-orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/tabs/highlighted/history-orange@2x.png -------------------------------------------------------------------------------- /images/tabs/highlighted/library-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/tabs/highlighted/library-orange.png -------------------------------------------------------------------------------- /images/tabs/highlighted/library-orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/tabs/highlighted/library-orange@2x.png -------------------------------------------------------------------------------- /images/tabs/highlighted/search-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/tabs/highlighted/search-orange.png -------------------------------------------------------------------------------- /images/tabs/highlighted/search-orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/tabs/highlighted/search-orange@2x.png -------------------------------------------------------------------------------- /images/tabs/highlighted/star-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/tabs/highlighted/star-orange.png -------------------------------------------------------------------------------- /images/tabs/highlighted/star-orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/tabs/highlighted/star-orange@2x.png -------------------------------------------------------------------------------- /images/tabs/history-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/tabs/history-normal.png -------------------------------------------------------------------------------- /images/tabs/history-normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/tabs/history-normal@2x.png -------------------------------------------------------------------------------- /images/tabs/library-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/tabs/library-normal.png -------------------------------------------------------------------------------- /images/tabs/library-normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/tabs/library-normal@2x.png -------------------------------------------------------------------------------- /images/tabs/search-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/tabs/search-normal.png -------------------------------------------------------------------------------- /images/tabs/search-normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/tabs/search-normal@2x.png -------------------------------------------------------------------------------- /images/tabs/star-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/tabs/star-normal.png -------------------------------------------------------------------------------- /images/tabs/star-normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/tabs/star-normal@2x.png -------------------------------------------------------------------------------- /images/toolbar/add-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/toolbar/add-gray.png -------------------------------------------------------------------------------- /images/toolbar/add-gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/toolbar/add-gray@2x.png -------------------------------------------------------------------------------- /images/toolbar/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/toolbar/add.png -------------------------------------------------------------------------------- /images/toolbar/add@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/toolbar/add@2x.png -------------------------------------------------------------------------------- /images/toolbar/download-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/toolbar/download-gray.png -------------------------------------------------------------------------------- /images/toolbar/download-gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/toolbar/download-gray@2x.png -------------------------------------------------------------------------------- /images/toolbar/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/toolbar/download.png -------------------------------------------------------------------------------- /images/toolbar/download@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/toolbar/download@2x.png -------------------------------------------------------------------------------- /images/toolbar/file-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/toolbar/file-gray.png -------------------------------------------------------------------------------- /images/toolbar/file-gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/toolbar/file-gray@2x.png -------------------------------------------------------------------------------- /images/toolbar/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/toolbar/file.png -------------------------------------------------------------------------------- /images/toolbar/file@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/toolbar/file@2x.png -------------------------------------------------------------------------------- /images/toolbar/refresh-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/toolbar/refresh-gray.png -------------------------------------------------------------------------------- /images/toolbar/refresh-gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/toolbar/refresh-gray@2x.png -------------------------------------------------------------------------------- /images/toolbar/refresh-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/toolbar/refresh-new.png -------------------------------------------------------------------------------- /images/toolbar/refresh-new@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/toolbar/refresh-new@2x.png -------------------------------------------------------------------------------- /images/toolbar/refresh-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/toolbar/refresh-orange.png -------------------------------------------------------------------------------- /images/toolbar/refresh-orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/toolbar/refresh-orange@2x.png -------------------------------------------------------------------------------- /images/toolbar/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/toolbar/refresh.png -------------------------------------------------------------------------------- /images/toolbar/refresh@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/toolbar/refresh@2x.png -------------------------------------------------------------------------------- /images/toolbar/settings-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/toolbar/settings-orange.png -------------------------------------------------------------------------------- /images/toolbar/settings-orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/toolbar/settings-orange@2x.png -------------------------------------------------------------------------------- /images/toolbar/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/toolbar/settings.png -------------------------------------------------------------------------------- /images/toolbar/settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/toolbar/settings@2x.png -------------------------------------------------------------------------------- /images/toolbar/sorts-orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/toolbar/sorts-orange.png -------------------------------------------------------------------------------- /images/toolbar/sorts-orange@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/toolbar/sorts-orange@2x.png -------------------------------------------------------------------------------- /images/toolbar/sorts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/toolbar/sorts.png -------------------------------------------------------------------------------- /images/toolbar/sorts@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/toolbar/sorts@2x.png -------------------------------------------------------------------------------- /images/win/daemon_down.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/win/daemon_down.ico -------------------------------------------------------------------------------- /images/win/daemon_up.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/win/daemon_up.ico -------------------------------------------------------------------------------- /images/win/notification.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/win/notification.ico -------------------------------------------------------------------------------- /images/win/seafile_auto_sync_disabled.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/win/seafile_auto_sync_disabled.ico -------------------------------------------------------------------------------- /images/win/seafile_transfer_1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/win/seafile_transfer_1.ico -------------------------------------------------------------------------------- /images/win/seafile_transfer_2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/win/seafile_transfer_2.ico -------------------------------------------------------------------------------- /images/win/seafile_warning.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/images/win/seafile_warning.ico -------------------------------------------------------------------------------- /qt-linux.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/qt-linux.css -------------------------------------------------------------------------------- /qt-mac.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/qt-mac.css -------------------------------------------------------------------------------- /qt-win.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/qt-win.css -------------------------------------------------------------------------------- /qt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/qt.css -------------------------------------------------------------------------------- /resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/resource.h -------------------------------------------------------------------------------- /scripts/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/scripts/build.py -------------------------------------------------------------------------------- /scripts/build_breakpad.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/scripts/build_breakpad.sh -------------------------------------------------------------------------------- /scripts/build_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/scripts/build_helper.py -------------------------------------------------------------------------------- /scripts/ci-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/scripts/ci-build.sh -------------------------------------------------------------------------------- /scripts/genapp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/scripts/genapp.sh -------------------------------------------------------------------------------- /scripts/install-deps-linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/scripts/install-deps-linux.sh -------------------------------------------------------------------------------- /scripts/install-deps-osx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/scripts/install-deps-osx.sh -------------------------------------------------------------------------------- /scripts/strip-png.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/scripts/strip-png.sh -------------------------------------------------------------------------------- /scripts/update-i18n.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/scripts/update-i18n.sh -------------------------------------------------------------------------------- /seafile-applet.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/seafile-applet.rc.in -------------------------------------------------------------------------------- /seafile-client.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/seafile-client.qrc -------------------------------------------------------------------------------- /seafile-client.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/seafile-client.rc -------------------------------------------------------------------------------- /seafile-client.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/seafile-client.sln -------------------------------------------------------------------------------- /seafile-client.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/seafile-client.vcxproj -------------------------------------------------------------------------------- /seafile-client.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/seafile-client.vcxproj.filters -------------------------------------------------------------------------------- /seafile.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/seafile.icns -------------------------------------------------------------------------------- /seafile.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/seafile.ico -------------------------------------------------------------------------------- /sparkle-readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/sparkle-readme.md -------------------------------------------------------------------------------- /src/account-info-service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/account-info-service.cpp -------------------------------------------------------------------------------- /src/account-info-service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/account-info-service.h -------------------------------------------------------------------------------- /src/account-mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/account-mgr.cpp -------------------------------------------------------------------------------- /src/account-mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/account-mgr.h -------------------------------------------------------------------------------- /src/account.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/account.cpp -------------------------------------------------------------------------------- /src/account.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/account.h -------------------------------------------------------------------------------- /src/api/api-client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/api/api-client.cpp -------------------------------------------------------------------------------- /src/api/api-client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/api/api-client.h -------------------------------------------------------------------------------- /src/api/api-error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/api/api-error.cpp -------------------------------------------------------------------------------- /src/api/api-error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/api/api-error.h -------------------------------------------------------------------------------- /src/api/api-request.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/api/api-request.cpp -------------------------------------------------------------------------------- /src/api/api-request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/api/api-request.h -------------------------------------------------------------------------------- /src/api/commit-details.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/api/commit-details.cpp -------------------------------------------------------------------------------- /src/api/commit-details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/api/commit-details.h -------------------------------------------------------------------------------- /src/api/contact-share-info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/api/contact-share-info.cpp -------------------------------------------------------------------------------- /src/api/contact-share-info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/api/contact-share-info.h -------------------------------------------------------------------------------- /src/api/event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/api/event.cpp -------------------------------------------------------------------------------- /src/api/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/api/event.h -------------------------------------------------------------------------------- /src/api/requests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/api/requests.cpp -------------------------------------------------------------------------------- /src/api/requests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/api/requests.h -------------------------------------------------------------------------------- /src/api/server-info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/api/server-info.h -------------------------------------------------------------------------------- /src/api/server-repo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/api/server-repo.cpp -------------------------------------------------------------------------------- /src/api/server-repo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/api/server-repo.h -------------------------------------------------------------------------------- /src/api/sso-status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/api/sso-status.h -------------------------------------------------------------------------------- /src/api/starred-file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/api/starred-file.cpp -------------------------------------------------------------------------------- /src/api/starred-file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/api/starred-file.h -------------------------------------------------------------------------------- /src/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/application.cpp -------------------------------------------------------------------------------- /src/application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/application.h -------------------------------------------------------------------------------- /src/auto-login-service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/auto-login-service.cpp -------------------------------------------------------------------------------- /src/auto-login-service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/auto-login-service.h -------------------------------------------------------------------------------- /src/auto-update-service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/auto-update-service.cpp -------------------------------------------------------------------------------- /src/auto-update-service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/auto-update-service.h -------------------------------------------------------------------------------- /src/avatar-service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/avatar-service.cpp -------------------------------------------------------------------------------- /src/avatar-service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/avatar-service.h -------------------------------------------------------------------------------- /src/certs-mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/certs-mgr.cpp -------------------------------------------------------------------------------- /src/certs-mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/certs-mgr.h -------------------------------------------------------------------------------- /src/configurator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/configurator.cpp -------------------------------------------------------------------------------- /src/configurator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/configurator.h -------------------------------------------------------------------------------- /src/crash-handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/crash-handler.cpp -------------------------------------------------------------------------------- /src/crash-handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/crash-handler.h -------------------------------------------------------------------------------- /src/customization-service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/customization-service.cpp -------------------------------------------------------------------------------- /src/customization-service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/customization-service.h -------------------------------------------------------------------------------- /src/daemon-mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/daemon-mgr.cpp -------------------------------------------------------------------------------- /src/daemon-mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/daemon-mgr.h -------------------------------------------------------------------------------- /src/events-service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/events-service.cpp -------------------------------------------------------------------------------- /src/events-service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/events-service.h -------------------------------------------------------------------------------- /src/ext-handler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ext-handler.cpp -------------------------------------------------------------------------------- /src/ext-handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ext-handler.h -------------------------------------------------------------------------------- /src/filebrowser/auto-update-mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/filebrowser/auto-update-mgr.cpp -------------------------------------------------------------------------------- /src/filebrowser/auto-update-mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/filebrowser/auto-update-mgr.h -------------------------------------------------------------------------------- /src/filebrowser/data-cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/filebrowser/data-cache.cpp -------------------------------------------------------------------------------- /src/filebrowser/data-cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/filebrowser/data-cache.h -------------------------------------------------------------------------------- /src/filebrowser/data-mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/filebrowser/data-mgr.cpp -------------------------------------------------------------------------------- /src/filebrowser/data-mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/filebrowser/data-mgr.h -------------------------------------------------------------------------------- /src/filebrowser/file-browser-dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/filebrowser/file-browser-dialog.cpp -------------------------------------------------------------------------------- /src/filebrowser/file-browser-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/filebrowser/file-browser-dialog.h -------------------------------------------------------------------------------- /src/filebrowser/file-browser-manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/filebrowser/file-browser-manager.cpp -------------------------------------------------------------------------------- /src/filebrowser/file-browser-manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/filebrowser/file-browser-manager.h -------------------------------------------------------------------------------- /src/filebrowser/file-browser-requests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/filebrowser/file-browser-requests.cpp -------------------------------------------------------------------------------- /src/filebrowser/file-browser-requests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/filebrowser/file-browser-requests.h -------------------------------------------------------------------------------- /src/filebrowser/file-browser-search-tab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/filebrowser/file-browser-search-tab.cpp -------------------------------------------------------------------------------- /src/filebrowser/file-browser-search-tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/filebrowser/file-browser-search-tab.h -------------------------------------------------------------------------------- /src/filebrowser/file-table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/filebrowser/file-table.cpp -------------------------------------------------------------------------------- /src/filebrowser/file-table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/filebrowser/file-table.h -------------------------------------------------------------------------------- /src/filebrowser/progress-dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/filebrowser/progress-dialog.cpp -------------------------------------------------------------------------------- /src/filebrowser/progress-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/filebrowser/progress-dialog.h -------------------------------------------------------------------------------- /src/filebrowser/reliable-upload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/filebrowser/reliable-upload.cpp -------------------------------------------------------------------------------- /src/filebrowser/reliable-upload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/filebrowser/reliable-upload.h -------------------------------------------------------------------------------- /src/filebrowser/seaf-dirent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/filebrowser/seaf-dirent.cpp -------------------------------------------------------------------------------- /src/filebrowser/seaf-dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/filebrowser/seaf-dirent.h -------------------------------------------------------------------------------- /src/filebrowser/seafilelink-dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/filebrowser/seafilelink-dialog.cpp -------------------------------------------------------------------------------- /src/filebrowser/seafilelink-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/filebrowser/seafilelink-dialog.h -------------------------------------------------------------------------------- /src/filebrowser/sharedlink-dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/filebrowser/sharedlink-dialog.cpp -------------------------------------------------------------------------------- /src/filebrowser/sharedlink-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/filebrowser/sharedlink-dialog.h -------------------------------------------------------------------------------- /src/filebrowser/tasks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/filebrowser/tasks.cpp -------------------------------------------------------------------------------- /src/filebrowser/tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/filebrowser/tasks.h -------------------------------------------------------------------------------- /src/filebrowser/thumbnail-service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/filebrowser/thumbnail-service.cpp -------------------------------------------------------------------------------- /src/filebrowser/thumbnail-service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/filebrowser/thumbnail-service.h -------------------------------------------------------------------------------- /src/filebrowser/transfer-mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/filebrowser/transfer-mgr.cpp -------------------------------------------------------------------------------- /src/filebrowser/transfer-mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/filebrowser/transfer-mgr.h -------------------------------------------------------------------------------- /src/filebrowser/uploadlink-dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/filebrowser/uploadlink-dialog.cpp -------------------------------------------------------------------------------- /src/filebrowser/uploadlink-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/filebrowser/uploadlink-dialog.h -------------------------------------------------------------------------------- /src/finder-sync/finder-sync-host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/finder-sync/finder-sync-host.cpp -------------------------------------------------------------------------------- /src/finder-sync/finder-sync-host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/finder-sync/finder-sync-host.h -------------------------------------------------------------------------------- /src/finder-sync/finder-sync-listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/finder-sync/finder-sync-listener.h -------------------------------------------------------------------------------- /src/finder-sync/finder-sync-listener.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/finder-sync/finder-sync-listener.mm -------------------------------------------------------------------------------- /src/finder-sync/finder-sync.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/finder-sync/finder-sync.cpp -------------------------------------------------------------------------------- /src/finder-sync/finder-sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/finder-sync/finder-sync.h -------------------------------------------------------------------------------- /src/i18n.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/i18n.cpp -------------------------------------------------------------------------------- /src/i18n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/i18n.h -------------------------------------------------------------------------------- /src/log-uploader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/log-uploader.cpp -------------------------------------------------------------------------------- /src/log-uploader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/log-uploader.h -------------------------------------------------------------------------------- /src/mac-sparkle-support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/mac-sparkle-support.h -------------------------------------------------------------------------------- /src/mac-sparkle-support.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/mac-sparkle-support.mm -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/message-poller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/message-poller.cpp -------------------------------------------------------------------------------- /src/message-poller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/message-poller.h -------------------------------------------------------------------------------- /src/network-mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/network-mgr.cpp -------------------------------------------------------------------------------- /src/network-mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/network-mgr.h -------------------------------------------------------------------------------- /src/open-local-helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/open-local-helper.cpp -------------------------------------------------------------------------------- /src/open-local-helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/open-local-helper.h -------------------------------------------------------------------------------- /src/repo-service-helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/repo-service-helper.cpp -------------------------------------------------------------------------------- /src/repo-service-helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/repo-service-helper.h -------------------------------------------------------------------------------- /src/repo-service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/repo-service.cpp -------------------------------------------------------------------------------- /src/repo-service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/repo-service.h -------------------------------------------------------------------------------- /src/rpc/clone-task.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/rpc/clone-task.cpp -------------------------------------------------------------------------------- /src/rpc/clone-task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/rpc/clone-task.h -------------------------------------------------------------------------------- /src/rpc/local-repo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/rpc/local-repo.cpp -------------------------------------------------------------------------------- /src/rpc/local-repo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/rpc/local-repo.h -------------------------------------------------------------------------------- /src/rpc/rpc-client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/rpc/rpc-client.cpp -------------------------------------------------------------------------------- /src/rpc/rpc-client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/rpc/rpc-client.h -------------------------------------------------------------------------------- /src/rpc/rpc-server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/rpc/rpc-server.cpp -------------------------------------------------------------------------------- /src/rpc/rpc-server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/rpc/rpc-server.h -------------------------------------------------------------------------------- /src/rpc/rpc_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/rpc/rpc_table.py -------------------------------------------------------------------------------- /src/rpc/searpc-marshal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/rpc/searpc-marshal.h -------------------------------------------------------------------------------- /src/rpc/searpc-signature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/rpc/searpc-signature.h -------------------------------------------------------------------------------- /src/rpc/sync-error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/rpc/sync-error.cpp -------------------------------------------------------------------------------- /src/rpc/sync-error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/rpc/sync-error.h -------------------------------------------------------------------------------- /src/rpc/update_rpc_sigs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/rpc/update_rpc_sigs.sh -------------------------------------------------------------------------------- /src/seafile-applet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/seafile-applet.cpp -------------------------------------------------------------------------------- /src/seafile-applet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/seafile-applet.h -------------------------------------------------------------------------------- /src/seahub-notifications-monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/seahub-notifications-monitor.cpp -------------------------------------------------------------------------------- /src/seahub-notifications-monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/seahub-notifications-monitor.h -------------------------------------------------------------------------------- /src/server-status-service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/server-status-service.cpp -------------------------------------------------------------------------------- /src/server-status-service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/server-status-service.h -------------------------------------------------------------------------------- /src/settings-mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/settings-mgr.cpp -------------------------------------------------------------------------------- /src/settings-mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/settings-mgr.h -------------------------------------------------------------------------------- /src/shib/shib-helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/shib/shib-helper.h -------------------------------------------------------------------------------- /src/shib/shib-login-dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/shib/shib-login-dialog.cpp -------------------------------------------------------------------------------- /src/shib/shib-login-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/shib/shib-login-dialog.h -------------------------------------------------------------------------------- /src/sync-error-service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/sync-error-service.cpp -------------------------------------------------------------------------------- /src/sync-error-service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/sync-error-service.h -------------------------------------------------------------------------------- /src/traynotificationmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/traynotificationmanager.cpp -------------------------------------------------------------------------------- /src/traynotificationmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/traynotificationmanager.h -------------------------------------------------------------------------------- /src/traynotificationwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/traynotificationwidget.cpp -------------------------------------------------------------------------------- /src/traynotificationwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/traynotificationwidget.h -------------------------------------------------------------------------------- /src/ui/about-dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/about-dialog.cpp -------------------------------------------------------------------------------- /src/ui/about-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/about-dialog.h -------------------------------------------------------------------------------- /src/ui/account-settings-dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/account-settings-dialog.cpp -------------------------------------------------------------------------------- /src/ui/account-settings-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/account-settings-dialog.h -------------------------------------------------------------------------------- /src/ui/account-view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/account-view.cpp -------------------------------------------------------------------------------- /src/ui/account-view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/account-view.h -------------------------------------------------------------------------------- /src/ui/activities-tab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/activities-tab.cpp -------------------------------------------------------------------------------- /src/ui/activities-tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/activities-tab.h -------------------------------------------------------------------------------- /src/ui/check-repo-root-perm-dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/check-repo-root-perm-dialog.cpp -------------------------------------------------------------------------------- /src/ui/check-repo-root-perm-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/check-repo-root-perm-dialog.h -------------------------------------------------------------------------------- /src/ui/clone-tasks-dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/clone-tasks-dialog.cpp -------------------------------------------------------------------------------- /src/ui/clone-tasks-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/clone-tasks-dialog.h -------------------------------------------------------------------------------- /src/ui/clone-tasks-table-model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/clone-tasks-table-model.cpp -------------------------------------------------------------------------------- /src/ui/clone-tasks-table-model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/clone-tasks-table-model.h -------------------------------------------------------------------------------- /src/ui/clone-tasks-table-view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/clone-tasks-table-view.cpp -------------------------------------------------------------------------------- /src/ui/clone-tasks-table-view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/clone-tasks-table-view.h -------------------------------------------------------------------------------- /src/ui/cloud-view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/cloud-view.cpp -------------------------------------------------------------------------------- /src/ui/cloud-view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/cloud-view.h -------------------------------------------------------------------------------- /src/ui/create-repo-dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/create-repo-dialog.cpp -------------------------------------------------------------------------------- /src/ui/create-repo-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/create-repo-dialog.h -------------------------------------------------------------------------------- /src/ui/download-repo-dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/download-repo-dialog.cpp -------------------------------------------------------------------------------- /src/ui/download-repo-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/download-repo-dialog.h -------------------------------------------------------------------------------- /src/ui/event-details-dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/event-details-dialog.cpp -------------------------------------------------------------------------------- /src/ui/event-details-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/event-details-dialog.h -------------------------------------------------------------------------------- /src/ui/event-details-tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/event-details-tree.cpp -------------------------------------------------------------------------------- /src/ui/event-details-tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/event-details-tree.h -------------------------------------------------------------------------------- /src/ui/events-list-view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/events-list-view.cpp -------------------------------------------------------------------------------- /src/ui/events-list-view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/events-list-view.h -------------------------------------------------------------------------------- /src/ui/init-seafile-dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/init-seafile-dialog.cpp -------------------------------------------------------------------------------- /src/ui/init-seafile-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/init-seafile-dialog.h -------------------------------------------------------------------------------- /src/ui/init-vdrive-dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/init-vdrive-dialog.cpp -------------------------------------------------------------------------------- /src/ui/init-vdrive-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/init-vdrive-dialog.h -------------------------------------------------------------------------------- /src/ui/loading-view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/loading-view.cpp -------------------------------------------------------------------------------- /src/ui/loading-view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/loading-view.h -------------------------------------------------------------------------------- /src/ui/login-dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/login-dialog.cpp -------------------------------------------------------------------------------- /src/ui/login-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/login-dialog.h -------------------------------------------------------------------------------- /src/ui/logout-view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/logout-view.cpp -------------------------------------------------------------------------------- /src/ui/logout-view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/logout-view.h -------------------------------------------------------------------------------- /src/ui/main-window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/main-window.cpp -------------------------------------------------------------------------------- /src/ui/main-window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/main-window.h -------------------------------------------------------------------------------- /src/ui/private-share-dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/private-share-dialog.cpp -------------------------------------------------------------------------------- /src/ui/private-share-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/private-share-dialog.h -------------------------------------------------------------------------------- /src/ui/proxy-style.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/proxy-style.cpp -------------------------------------------------------------------------------- /src/ui/proxy-style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/proxy-style.h -------------------------------------------------------------------------------- /src/ui/repo-detail-dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/repo-detail-dialog.cpp -------------------------------------------------------------------------------- /src/ui/repo-detail-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/repo-detail-dialog.h -------------------------------------------------------------------------------- /src/ui/repo-item-delegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/repo-item-delegate.cpp -------------------------------------------------------------------------------- /src/ui/repo-item-delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/repo-item-delegate.h -------------------------------------------------------------------------------- /src/ui/repo-item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/repo-item.cpp -------------------------------------------------------------------------------- /src/ui/repo-item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/repo-item.h -------------------------------------------------------------------------------- /src/ui/repo-tree-model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/repo-tree-model.cpp -------------------------------------------------------------------------------- /src/ui/repo-tree-model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/repo-tree-model.h -------------------------------------------------------------------------------- /src/ui/repo-tree-view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/repo-tree-view.cpp -------------------------------------------------------------------------------- /src/ui/repo-tree-view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/repo-tree-view.h -------------------------------------------------------------------------------- /src/ui/repos-tab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/repos-tab.cpp -------------------------------------------------------------------------------- /src/ui/repos-tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/repos-tab.h -------------------------------------------------------------------------------- /src/ui/seafile-tab-widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/seafile-tab-widget.cpp -------------------------------------------------------------------------------- /src/ui/seafile-tab-widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/seafile-tab-widget.h -------------------------------------------------------------------------------- /src/ui/search-bar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/search-bar.cpp -------------------------------------------------------------------------------- /src/ui/search-bar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/search-bar.h -------------------------------------------------------------------------------- /src/ui/search-tab-items.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/search-tab-items.cpp -------------------------------------------------------------------------------- /src/ui/search-tab-items.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/search-tab-items.h -------------------------------------------------------------------------------- /src/ui/search-tab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/search-tab.cpp -------------------------------------------------------------------------------- /src/ui/search-tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/search-tab.h -------------------------------------------------------------------------------- /src/ui/server-status-dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/server-status-dialog.cpp -------------------------------------------------------------------------------- /src/ui/server-status-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/server-status-dialog.h -------------------------------------------------------------------------------- /src/ui/set-repo-password-dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/set-repo-password-dialog.cpp -------------------------------------------------------------------------------- /src/ui/set-repo-password-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/set-repo-password-dialog.h -------------------------------------------------------------------------------- /src/ui/settings-dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/settings-dialog.cpp -------------------------------------------------------------------------------- /src/ui/settings-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/settings-dialog.h -------------------------------------------------------------------------------- /src/ui/ssl-confirm-dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/ssl-confirm-dialog.cpp -------------------------------------------------------------------------------- /src/ui/ssl-confirm-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/ssl-confirm-dialog.h -------------------------------------------------------------------------------- /src/ui/starred-file-item-delegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/starred-file-item-delegate.cpp -------------------------------------------------------------------------------- /src/ui/starred-file-item-delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/starred-file-item-delegate.h -------------------------------------------------------------------------------- /src/ui/starred-file-item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/starred-file-item.cpp -------------------------------------------------------------------------------- /src/ui/starred-file-item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/starred-file-item.h -------------------------------------------------------------------------------- /src/ui/starred-files-list-model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/starred-files-list-model.cpp -------------------------------------------------------------------------------- /src/ui/starred-files-list-model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/starred-files-list-model.h -------------------------------------------------------------------------------- /src/ui/starred-files-list-view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/starred-files-list-view.cpp -------------------------------------------------------------------------------- /src/ui/starred-files-list-view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/starred-files-list-view.h -------------------------------------------------------------------------------- /src/ui/starred-files-tab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/starred-files-tab.cpp -------------------------------------------------------------------------------- /src/ui/starred-files-tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/starred-files-tab.h -------------------------------------------------------------------------------- /src/ui/sync-errors-dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/sync-errors-dialog.cpp -------------------------------------------------------------------------------- /src/ui/sync-errors-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/sync-errors-dialog.h -------------------------------------------------------------------------------- /src/ui/tab-view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/tab-view.cpp -------------------------------------------------------------------------------- /src/ui/tab-view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/tab-view.h -------------------------------------------------------------------------------- /src/ui/tray-icon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/tray-icon.cpp -------------------------------------------------------------------------------- /src/ui/tray-icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/tray-icon.h -------------------------------------------------------------------------------- /src/ui/two-factor-dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/two-factor-dialog.cpp -------------------------------------------------------------------------------- /src/ui/two-factor-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/two-factor-dialog.h -------------------------------------------------------------------------------- /src/ui/uninstall-helper-dialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/uninstall-helper-dialog.cpp -------------------------------------------------------------------------------- /src/ui/uninstall-helper-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/uninstall-helper-dialog.h -------------------------------------------------------------------------------- /src/ui/user-name-completer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/user-name-completer.cpp -------------------------------------------------------------------------------- /src/ui/user-name-completer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/ui/user-name-completer.h -------------------------------------------------------------------------------- /src/utils/api-utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/utils/api-utils.cpp -------------------------------------------------------------------------------- /src/utils/api-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/utils/api-utils.h -------------------------------------------------------------------------------- /src/utils/file-utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/utils/file-utils.cpp -------------------------------------------------------------------------------- /src/utils/file-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/utils/file-utils.h -------------------------------------------------------------------------------- /src/utils/json-utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/utils/json-utils.cpp -------------------------------------------------------------------------------- /src/utils/json-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/utils/json-utils.h -------------------------------------------------------------------------------- /src/utils/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/utils/log.c -------------------------------------------------------------------------------- /src/utils/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/utils/log.h -------------------------------------------------------------------------------- /src/utils/paint-utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/utils/paint-utils.cpp -------------------------------------------------------------------------------- /src/utils/paint-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/utils/paint-utils.h -------------------------------------------------------------------------------- /src/utils/process-linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/utils/process-linux.cpp -------------------------------------------------------------------------------- /src/utils/process-mac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/utils/process-mac.cpp -------------------------------------------------------------------------------- /src/utils/process-win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/utils/process-win.cpp -------------------------------------------------------------------------------- /src/utils/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/utils/process.h -------------------------------------------------------------------------------- /src/utils/registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/utils/registry.cpp -------------------------------------------------------------------------------- /src/utils/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/utils/registry.h -------------------------------------------------------------------------------- /src/utils/rsa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/utils/rsa.cpp -------------------------------------------------------------------------------- /src/utils/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/utils/rsa.h -------------------------------------------------------------------------------- /src/utils/seafile-error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/utils/seafile-error.cpp -------------------------------------------------------------------------------- /src/utils/seafile-error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/utils/seafile-error.h -------------------------------------------------------------------------------- /src/utils/singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/utils/singleton.h -------------------------------------------------------------------------------- /src/utils/stl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/utils/stl.cpp -------------------------------------------------------------------------------- /src/utils/stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/utils/stl.h -------------------------------------------------------------------------------- /src/utils/translate-commit-desc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/utils/translate-commit-desc.cpp -------------------------------------------------------------------------------- /src/utils/translate-commit-desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/utils/translate-commit-desc.h -------------------------------------------------------------------------------- /src/utils/uninstall-helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/utils/uninstall-helpers.cpp -------------------------------------------------------------------------------- /src/utils/uninstall-helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/utils/uninstall-helpers.h -------------------------------------------------------------------------------- /src/utils/utils-mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/utils/utils-mac.h -------------------------------------------------------------------------------- /src/utils/utils-mac.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/utils/utils-mac.mm -------------------------------------------------------------------------------- /src/utils/utils-win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/utils/utils-win.cpp -------------------------------------------------------------------------------- /src/utils/utils-win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/utils/utils-win.h -------------------------------------------------------------------------------- /src/utils/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/utils/utils.cpp -------------------------------------------------------------------------------- /src/utils/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/src/utils/utils.h -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_file-utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/tests/test_file-utils.cpp -------------------------------------------------------------------------------- /tests/test_file-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/tests/test_file-utils.h -------------------------------------------------------------------------------- /tests/test_server-info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/tests/test_server-info.cpp -------------------------------------------------------------------------------- /tests/test_server-info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/tests/test_server-info.h -------------------------------------------------------------------------------- /tests/test_stl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/tests/test_stl.cpp -------------------------------------------------------------------------------- /tests/test_stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/tests/test_stl.h -------------------------------------------------------------------------------- /tests/test_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/tests/test_utils.cpp -------------------------------------------------------------------------------- /tests/test_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/tests/test_utils.h -------------------------------------------------------------------------------- /third_party/QtAwesome/QtAwesome.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/QtAwesome/QtAwesome.cpp -------------------------------------------------------------------------------- /third_party/QtAwesome/QtAwesome.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/QtAwesome/QtAwesome.h -------------------------------------------------------------------------------- /third_party/QtAwesome/QtAwesome.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/QtAwesome/QtAwesome.qrc -------------------------------------------------------------------------------- /third_party/QtAwesome/fonts/fontawesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/QtAwesome/fonts/fontawesome.ttf -------------------------------------------------------------------------------- /third_party/WinSparkle-0.5.3/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/WinSparkle-0.5.3/AUTHORS -------------------------------------------------------------------------------- /third_party/WinSparkle-0.5.3/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/WinSparkle-0.5.3/COPYING -------------------------------------------------------------------------------- /third_party/WinSparkle-0.5.3/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/WinSparkle-0.5.3/NEWS -------------------------------------------------------------------------------- /third_party/WinSparkle-0.5.3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/WinSparkle-0.5.3/README.md -------------------------------------------------------------------------------- /third_party/WinSparkle-0.5.3/Release/WinSparkle.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/WinSparkle-0.5.3/Release/WinSparkle.dll -------------------------------------------------------------------------------- /third_party/WinSparkle-0.5.3/Release/WinSparkle.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/WinSparkle-0.5.3/Release/WinSparkle.lib -------------------------------------------------------------------------------- /third_party/WinSparkle-0.5.3/Release/WinSparkle.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/WinSparkle-0.5.3/Release/WinSparkle.pdb -------------------------------------------------------------------------------- /third_party/WinSparkle-0.5.3/include/winsparkle-version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/WinSparkle-0.5.3/include/winsparkle-version.h -------------------------------------------------------------------------------- /third_party/WinSparkle-0.5.3/include/winsparkle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/WinSparkle-0.5.3/include/winsparkle.h -------------------------------------------------------------------------------- /third_party/WinSparkle-0.5.3/x64/Release/WinSparkle.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/WinSparkle-0.5.3/x64/Release/WinSparkle.dll -------------------------------------------------------------------------------- /third_party/WinSparkle-0.5.3/x64/Release/WinSparkle.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/WinSparkle-0.5.3/x64/Release/WinSparkle.lib -------------------------------------------------------------------------------- /third_party/WinSparkle-0.5.3/x64/Release/WinSparkle.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/WinSparkle-0.5.3/x64/Release/WinSparkle.pdb -------------------------------------------------------------------------------- /third_party/quazip/JlCompress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/quazip/JlCompress.cpp -------------------------------------------------------------------------------- /third_party/quazip/JlCompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/quazip/JlCompress.h -------------------------------------------------------------------------------- /third_party/quazip/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/quazip/ioapi.h -------------------------------------------------------------------------------- /third_party/quazip/minizip_crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/quazip/minizip_crypt.h -------------------------------------------------------------------------------- /third_party/quazip/qioapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/quazip/qioapi.cpp -------------------------------------------------------------------------------- /third_party/quazip/quaadler32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/quazip/quaadler32.cpp -------------------------------------------------------------------------------- /third_party/quazip/quaadler32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/quazip/quaadler32.h -------------------------------------------------------------------------------- /third_party/quazip/quachecksum32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/quazip/quachecksum32.cpp -------------------------------------------------------------------------------- /third_party/quazip/quachecksum32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/quazip/quachecksum32.h -------------------------------------------------------------------------------- /third_party/quazip/quacrc32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/quazip/quacrc32.cpp -------------------------------------------------------------------------------- /third_party/quazip/quacrc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/quazip/quacrc32.h -------------------------------------------------------------------------------- /third_party/quazip/quagzipfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/quazip/quagzipfile.cpp -------------------------------------------------------------------------------- /third_party/quazip/quagzipfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/quazip/quagzipfile.h -------------------------------------------------------------------------------- /third_party/quazip/quaziodevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/quazip/quaziodevice.cpp -------------------------------------------------------------------------------- /third_party/quazip/quaziodevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/quazip/quaziodevice.h -------------------------------------------------------------------------------- /third_party/quazip/quazip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/quazip/quazip.cpp -------------------------------------------------------------------------------- /third_party/quazip/quazip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/quazip/quazip.h -------------------------------------------------------------------------------- /third_party/quazip/quazip.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/quazip/quazip.sln -------------------------------------------------------------------------------- /third_party/quazip/quazip.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/quazip/quazip.vcxproj -------------------------------------------------------------------------------- /third_party/quazip/quazip.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/quazip/quazip.vcxproj.filters -------------------------------------------------------------------------------- /third_party/quazip/quazip_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/quazip/quazip_global.h -------------------------------------------------------------------------------- /third_party/quazip/quazipdir.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/quazip/quazipdir.cpp -------------------------------------------------------------------------------- /third_party/quazip/quazipdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/quazip/quazipdir.h -------------------------------------------------------------------------------- /third_party/quazip/quazipfile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/quazip/quazipfile.cpp -------------------------------------------------------------------------------- /third_party/quazip/quazipfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/quazip/quazipfile.h -------------------------------------------------------------------------------- /third_party/quazip/quazipfileinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/quazip/quazipfileinfo.cpp -------------------------------------------------------------------------------- /third_party/quazip/quazipfileinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/quazip/quazipfileinfo.h -------------------------------------------------------------------------------- /third_party/quazip/quazipnewinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/quazip/quazipnewinfo.cpp -------------------------------------------------------------------------------- /third_party/quazip/quazipnewinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/quazip/quazipnewinfo.h -------------------------------------------------------------------------------- /third_party/quazip/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/quazip/unzip.c -------------------------------------------------------------------------------- /third_party/quazip/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/quazip/unzip.h -------------------------------------------------------------------------------- /third_party/quazip/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/quazip/vcpkg.json -------------------------------------------------------------------------------- /third_party/quazip/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/quazip/zip.c -------------------------------------------------------------------------------- /third_party/quazip/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/third_party/quazip/zip.h -------------------------------------------------------------------------------- /ui/about-dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/ui/about-dialog.ui -------------------------------------------------------------------------------- /ui/account-settings-dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/ui/account-settings-dialog.ui -------------------------------------------------------------------------------- /ui/account-view.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/ui/account-view.ui -------------------------------------------------------------------------------- /ui/clone-tasks-dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/ui/clone-tasks-dialog.ui -------------------------------------------------------------------------------- /ui/cloud-view.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/ui/cloud-view.ui -------------------------------------------------------------------------------- /ui/create-repo-dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/ui/create-repo-dialog.ui -------------------------------------------------------------------------------- /ui/download-repo-dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/ui/download-repo-dialog.ui -------------------------------------------------------------------------------- /ui/init-seafile-dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/ui/init-seafile-dialog.ui -------------------------------------------------------------------------------- /ui/init-vdrive-dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/ui/init-vdrive-dialog.ui -------------------------------------------------------------------------------- /ui/login-dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/ui/login-dialog.ui -------------------------------------------------------------------------------- /ui/private-share-dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/ui/private-share-dialog.ui -------------------------------------------------------------------------------- /ui/repo-detail-dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/ui/repo-detail-dialog.ui -------------------------------------------------------------------------------- /ui/server-status-dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/ui/server-status-dialog.ui -------------------------------------------------------------------------------- /ui/set-repo-password-dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/ui/set-repo-password-dialog.ui -------------------------------------------------------------------------------- /ui/settings-dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/ui/settings-dialog.ui -------------------------------------------------------------------------------- /ui/ssl-confirm-dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/ui/ssl-confirm-dialog.ui -------------------------------------------------------------------------------- /ui/two-factor-dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/ui/two-factor-dialog.ui -------------------------------------------------------------------------------- /ui/uninstall-helper-dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/ui/uninstall-helper-dialog.ui -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haiwen/seafile-client/HEAD/vcpkg.json --------------------------------------------------------------------------------