├── .env.dev ├── .env.production ├── .eslintrc.js ├── .github └── workflows │ ├── build_new_lang.yml │ ├── ci.yml │ ├── node-prerelease.js.yml │ └── push_test_server.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CasaOS-UI.code-workspace ├── README.md ├── babel.config.js ├── eslint.config.mjs ├── jsconfig.json ├── message_bus.build.js ├── mock └── meta_data.js ├── package.json ├── pnpm-lock.yaml ├── prettier.config.cjs ├── public ├── browserconfig.xml ├── css │ ├── animate.min.css │ └── custom.css ├── default-avatar.svg ├── favicon.ico ├── favicon.svg ├── img │ ├── CasaConnect.svg │ ├── Files.svg │ ├── driver │ │ ├── Dropbox.svg │ │ ├── GoogleDrive.svg │ │ └── OneDrive.svg │ ├── icon │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── mstile-150x150.png │ │ └── safari-pinned-tab.svg │ └── wallpaper │ │ ├── wallpaper01.jpg │ │ └── wallpaper02.jpg ├── index.html ├── js │ └── custom.js ├── robots.txt ├── site.webmanifest └── ui │ └── img │ ├── wallpaper01.jpg │ └── wallpaper02.jpg ├── register-ui-events.sh ├── src ├── App.vue ├── assets │ ├── ani │ │ ├── creating.json │ │ ├── done.json │ │ ├── loading.json │ │ ├── rocket-launching.json │ │ └── sync.json │ ├── background │ │ ├── blank.png │ │ ├── default_wallpaper.jpg │ │ ├── preview-widget.svg │ │ ├── wallpaper01.jpg │ │ └── wallpaper02.jpg │ ├── fonts │ │ └── britti-sans-regular.woff │ ├── img │ │ ├── account │ │ │ └── default-avatar.svg │ │ ├── app │ │ │ ├── add_button.svg │ │ │ ├── appstore.svg │ │ │ ├── default.svg │ │ │ ├── files.svg │ │ │ ├── sk_icon.svg │ │ │ └── swiper_placeholder.png │ │ ├── common-icons │ │ │ ├── danger.svg │ │ │ ├── files.svg │ │ │ ├── success.svg │ │ │ └── warning.svg │ │ ├── drop │ │ │ ├── Laptop.svg │ │ │ ├── PC.svg │ │ │ ├── add_btn.svg │ │ │ ├── desktop_offline.svg │ │ │ ├── desktop_online.svg │ │ │ ├── drop_icon.svg │ │ │ ├── iPad.svg │ │ │ ├── iPhone.svg │ │ │ ├── iPhone_offline.svg │ │ │ ├── iPhone_online.svg │ │ │ ├── mobile_online.svg │ │ │ ├── notebook_offline.svg │ │ │ ├── notebook_online.svg │ │ │ ├── self.svg │ │ │ ├── tablet_offline.svg │ │ │ └── tablet_online.svg │ │ ├── filebrowser │ │ │ ├── android-package-archive.svg │ │ │ ├── application-apk.svg │ │ │ ├── application-certificate.svg │ │ │ ├── application-dicom.svg │ │ │ ├── application-epub+zip.svg │ │ │ ├── application-illustrator.svg │ │ │ ├── application-json.svg │ │ │ ├── application-msonenote.svg │ │ │ ├── application-msoutlook.svg │ │ │ ├── application-msword-template.svg │ │ │ ├── application-octet-stream.svg │ │ │ ├── application-ogg.svg │ │ │ ├── application-pdf.svg │ │ │ ├── application-pgp-signature.svg │ │ │ ├── application-pgp.svg │ │ │ ├── application-photoshop.svg │ │ │ ├── application-postscript.svg │ │ │ ├── application-rss_xml.svg │ │ │ ├── application-sql.svg │ │ │ ├── application-vnd.appimage.svg │ │ │ ├── application-vnd.flatpak.ref.svg │ │ │ ├── application-vnd.flatpak.svg │ │ │ ├── application-vnd.iccprofile.svg │ │ │ ├── application-vnd.kde.bluedevil-sendfile.svg │ │ │ ├── application-vnd.ms-access.svg │ │ │ ├── application-vnd.ms-cab-compressed.svg │ │ │ ├── application-vnd.ms-excel.svg │ │ │ ├── application-vnd.ms-excel.template.macroenabled.12.svg │ │ │ ├── application-vnd.ms-htmlhelp.svg │ │ │ ├── application-vnd.ms-infopath.svg │ │ │ ├── application-vnd.ms-powerpoint.svg │ │ │ ├── application-vnd.ms-powerpoint.template.macroenabled.12.svg │ │ │ ├── application-vnd.ms-publisher.svg │ │ │ ├── application-vnd.ms-word.svg │ │ │ ├── application-vnd.oasis.opendocument.chart.svg │ │ │ ├── application-vnd.oasis.opendocument.formula-template.svg │ │ │ ├── application-vnd.oasis.opendocument.formula.svg │ │ │ ├── application-vnd.oasis.opendocument.presentation-template.svg │ │ │ ├── application-vnd.oasis.opendocument.spreadsheet-template.svg │ │ │ ├── application-vnd.oasis.opendocument.text-template.svg │ │ │ ├── application-vnd.oasis.opendocument.web-template.svg │ │ │ ├── application-vnd.snap.svg │ │ │ ├── application-vnd.visio.svg │ │ │ ├── application-x-ace.svg │ │ │ ├── application-x-addon.svg │ │ │ ├── application-x-apple.svg │ │ │ ├── application-x-ar.svg │ │ │ ├── application-x-arc.svg │ │ │ ├── application-x-archive.svg │ │ │ ├── application-x-arj.svg │ │ │ ├── application-x-bittorrent.svg │ │ │ ├── application-x-blender.svg │ │ │ ├── application-x-bzdvi.svg │ │ │ ├── application-x-bzip-compressed-tar.svg │ │ │ ├── application-x-bzip.svg │ │ │ ├── application-x-cd-image.svg │ │ │ ├── application-x-chm.svg │ │ │ ├── application-x-clementine.svg │ │ │ ├── application-x-compressed-tar.svg │ │ │ ├── application-x-deb.svg │ │ │ ├── application-x-designer.svg │ │ │ ├── application-x-executable.svg │ │ │ ├── application-x-fictionbook+xml.svg │ │ │ ├── application-x-firmware.svg │ │ │ ├── application-x-flash-video.svg │ │ │ ├── application-x-gzip.svg │ │ │ ├── application-x-gzpostscript.svg │ │ │ ├── application-x-java-archive.svg │ │ │ ├── application-x-java.svg │ │ │ ├── application-x-kdenlivetitle.svg │ │ │ ├── application-x-kexi-connectiondata.svg │ │ │ ├── application-x-kexiproject-shortcut.svg │ │ │ ├── application-x-kplato.svg │ │ │ ├── application-x-kvtml.svg │ │ │ ├── application-x-labplot2.svg │ │ │ ├── application-x-lzma-compressed-tar.svg │ │ │ ├── application-x-lzop.svg │ │ │ ├── application-x-macbinary.svg │ │ │ ├── application-x-marble.svg │ │ │ ├── application-x-mobipocket-ebook.svg │ │ │ ├── application-x-model.svg │ │ │ ├── application-x-ms-dos-executable.svg │ │ │ ├── application-x-ms-shortcut.svg │ │ │ ├── application-x-object.svg │ │ │ ├── application-x-osm+xml.svg │ │ │ ├── application-x-partial-download.svg │ │ │ ├── application-x-pem-key.svg │ │ │ ├── application-x-perl.svg │ │ │ ├── application-x-plasma.svg │ │ │ ├── application-x-rar.svg │ │ │ ├── application-x-remote-connection.svg │ │ │ ├── application-x-root.svg │ │ │ ├── application-x-rpm.svg │ │ │ ├── application-x-ruby.svg │ │ │ ├── application-x-sharedlib.svg │ │ │ ├── application-x-shellscript.svg │ │ │ ├── application-x-skg.svg │ │ │ ├── application-x-skgc.svg │ │ │ ├── application-x-smb-workgroup.svg │ │ │ ├── application-x-sogouskin.svg │ │ │ ├── application-x-srt.svg │ │ │ ├── application-x-subrip.svg │ │ │ ├── application-x-tar.svg │ │ │ ├── application-x-tarz.svg │ │ │ ├── application-x-theme.svg │ │ │ ├── application-x-trash.svg │ │ │ ├── application-x-tzo.svg │ │ │ ├── application-x-wine-extension-cpl.svg │ │ │ ├── application-x-wine-extension-skb.svg │ │ │ ├── application-x-wine-extension-skp.svg │ │ │ ├── application-x-yaml.svg │ │ │ ├── application-x-zip.svg │ │ │ ├── application-xmind.svg │ │ │ ├── audio-midi.svg │ │ │ ├── audio-x-generic.svg │ │ │ ├── audio-x-mp3-playlist.svg │ │ │ ├── extension.svg │ │ │ ├── folder-application.svg │ │ │ ├── folder-default.svg │ │ │ ├── folder-documents.svg │ │ │ ├── folder-download.svg │ │ │ ├── folder-hdd.svg │ │ │ ├── folder-open.svg │ │ │ ├── folder-pictures.svg │ │ │ ├── folder-root.svg │ │ │ ├── folder-usb.svg │ │ │ ├── folder-video.svg │ │ │ ├── folder.png │ │ │ ├── font-x-generic.svg │ │ │ ├── image-svg+xml.svg │ │ │ ├── image-vnd.dgn.svg │ │ │ ├── image-vnd.djvu.svg │ │ │ ├── image-vnd.dwg.svg │ │ │ ├── image-x-compressed-xcf.svg │ │ │ ├── image-x-generic.svg │ │ │ ├── inode-symlink.svg │ │ │ ├── libreoffice-oasis-database.svg │ │ │ ├── libreoffice-oasis-drawing.svg │ │ │ ├── libreoffice-oasis-formula.svg │ │ │ ├── libreoffice-oasis-master-document.svg │ │ │ ├── libreoffice-oasis-presentation.svg │ │ │ ├── libreoffice-oasis-spreadsheet.svg │ │ │ ├── libreoffice-oasis-text.svg │ │ │ ├── libreoffice-oasis-web.svg │ │ │ ├── message-news.svg │ │ │ ├── message-partial.svg │ │ │ ├── message-rfc822.svg │ │ │ ├── newFile.svg │ │ │ ├── newFolder.svg │ │ │ ├── office-contact.svg │ │ │ ├── package-x-generic.svg │ │ │ ├── stock_addressbook.svg │ │ │ ├── text-css.svg │ │ │ ├── text-dockerfile.svg │ │ │ ├── text-html.svg │ │ │ ├── text-less.svg │ │ │ ├── text-markdown.svg │ │ │ ├── text-richtext.svg │ │ │ ├── text-rust.svg │ │ │ ├── text-vnd.trolltech.linguist.svg │ │ │ ├── text-wiki.svg │ │ │ ├── text-x-adasrc.svg │ │ │ ├── text-x-apport.svg │ │ │ ├── text-x-authors.svg │ │ │ ├── text-x-c++hdr.svg │ │ │ ├── text-x-c.svg │ │ │ ├── text-x-changelog.svg │ │ │ ├── text-x-chdr.svg │ │ │ ├── text-x-cmake.svg │ │ │ ├── text-x-cobol.svg │ │ │ ├── text-x-copying.svg │ │ │ ├── text-x-cpp.svg │ │ │ ├── text-x-csharp.svg │ │ │ ├── text-x-fortran.svg │ │ │ ├── text-x-generic.svg │ │ │ ├── text-x-gettext-translation.svg │ │ │ ├── text-x-go.svg │ │ │ ├── text-x-haskell.svg │ │ │ ├── text-x-hex.svg │ │ │ ├── text-x-install.svg │ │ │ ├── text-x-java.svg │ │ │ ├── text-x-javascript.svg │ │ │ ├── text-x-kotlin.svg │ │ │ ├── text-x-kvt.svg │ │ │ ├── text-x-lua.svg │ │ │ ├── text-x-pascal.svg │ │ │ ├── text-x-patch.svg │ │ │ ├── text-x-php.svg │ │ │ ├── text-x-po.svg │ │ │ ├── text-x-preview.svg │ │ │ ├── text-x-python.svg │ │ │ ├── text-x-qml.svg │ │ │ ├── text-x-r.svg │ │ │ ├── text-x-readme.svg │ │ │ ├── text-x-rpm-spec.svg │ │ │ ├── text-x-ruby.svg │ │ │ ├── text-x-sass.svg │ │ │ ├── text-x-scala.svg │ │ │ ├── text-x-script.svg │ │ │ ├── text-x-sql.svg │ │ │ ├── text-x-tcl.svg │ │ │ ├── text-x-tex.svg │ │ │ ├── text-x-typescript.svg │ │ │ ├── text-x-vala.svg │ │ │ ├── text-xml.svg │ │ │ ├── unknown.svg │ │ │ ├── upfile.svg │ │ │ ├── upfolder.svg │ │ │ ├── video-x-generic.svg │ │ │ ├── virtualbox-hdd.svg │ │ │ ├── virtualbox-ova.svg │ │ │ ├── virtualbox-ovf.svg │ │ │ ├── virtualbox-vbox-extpack.svg │ │ │ ├── virtualbox-vbox.svg │ │ │ ├── virtualbox-vdi.svg │ │ │ ├── virtualbox-vhd.svg │ │ │ ├── virtualbox-vmdk.svg │ │ │ ├── x-content-software.svg │ │ │ ├── x-kde-nsplugin-generated.svg │ │ │ ├── x-media-podcast.svg │ │ │ ├── x-office-calendar.svg │ │ │ ├── x-office-document.svg │ │ │ ├── x-office-presentation.svg │ │ │ ├── x-office-spreadsheet.svg │ │ │ └── xfile.png │ │ ├── learn │ │ │ ├── diskLearnMore-1.svg │ │ │ ├── diskLearnMore-2.svg │ │ │ └── diskLearnMore-3.svg │ │ ├── loading │ │ │ ├── waiting-white.svg │ │ │ └── waiting.svg │ │ ├── logo │ │ │ ├── casa-dark.svg │ │ │ ├── casa-white.svg │ │ │ ├── logo.png │ │ │ └── logo.svg │ │ ├── power │ │ │ ├── loading.svg │ │ │ ├── waiting-white.svg │ │ │ └── waiting.svg │ │ ├── sad.svg │ │ ├── share │ │ │ ├── folder-publicshare.svg │ │ │ └── share-empty.svg │ │ ├── smart │ │ │ └── smart_icon.svg │ │ ├── social │ │ │ └── share_img.png │ │ ├── storage │ │ │ ├── USB.png │ │ │ ├── USB.svg │ │ │ ├── disk.png │ │ │ ├── storage.png │ │ │ └── storage.svg │ │ ├── syncthing │ │ │ └── sync.svg │ │ └── widgets │ │ │ ├── gradient.png │ │ │ ├── swiper-left.svg │ │ │ └── swiper-right.svg │ ├── lang │ │ ├── ar_SA.json │ │ ├── be_BY.json │ │ ├── bg_BG.json │ │ ├── ca_ES.json │ │ ├── cs_CZ.json │ │ ├── de_DE.json │ │ ├── el_GR.json │ │ ├── en_US.json │ │ ├── es_ES.json │ │ ├── fr_FR.json │ │ ├── hr_HR.json │ │ ├── hu_HU.json │ │ ├── id_ID.json │ │ ├── index.js │ │ ├── it_IT.json │ │ ├── ja_JP.json │ │ ├── ko_KR.json │ │ ├── nl_NL.json │ │ ├── no_NO.json │ │ ├── pl_PL.json │ │ ├── pt_BR.json │ │ ├── pt_PT.json │ │ ├── ro_RO.json │ │ ├── ru_RU.json │ │ ├── sk_SK.json │ │ ├── sl_SI.json │ │ ├── sv_SE.json │ │ ├── tr_TR.json │ │ ├── uk_UA.json │ │ ├── vi_VN.json │ │ ├── zh_CN.json │ │ └── zh_TW.json │ └── scss │ │ ├── app.scss │ │ ├── common │ │ ├── _animate.scss │ │ ├── _avatar.scss │ │ ├── _buttons.scss │ │ ├── _card.scss │ │ ├── _color.scss │ │ ├── _dropdown.scss │ │ ├── _font.scss │ │ ├── _icon.scss │ │ ├── _images.scss │ │ ├── _modal.scss │ │ ├── _others.scss │ │ ├── _root.scss │ │ ├── _scrollbars.scss │ │ ├── _sections.scss │ │ ├── _size.scss │ │ ├── _snackbar.scss │ │ ├── _spacing.scss │ │ ├── _tabs.scss │ │ ├── _title.scss │ │ ├── _toast.scss │ │ ├── _variables.scss │ │ └── _widgets.scss │ │ └── components │ │ └── _filebrowser.scss ├── components │ ├── Apps │ │ ├── AddNewButtonCard.vue │ │ ├── AppCard.vue │ │ ├── AppCardSkeleton.vue │ │ ├── AppDetailInfo.vue │ │ ├── AppPanel.vue │ │ ├── AppSection.vue │ │ ├── AppSectionTitleTip.vue │ │ ├── AppSideBar.vue │ │ ├── AppStoreSourceManagement.vue │ │ ├── AppTerminalPanel.vue │ │ ├── AppsInstallationLocation.vue │ │ ├── ComposeConfig.vue │ │ ├── Dropdown.vue │ │ ├── ExternalLinkPanel.vue │ │ ├── TipEditorModal.vue │ │ └── progress.js │ ├── BrandBar.vue │ ├── ContactBar.vue │ ├── CoreService.vue │ ├── SearchBar.vue │ ├── SideBar.vue │ ├── Storage │ │ ├── DiskLearnMore.vue │ │ ├── DriveItem.vue │ │ ├── MergeStorages.vue │ │ ├── StorageCombination.vue │ │ ├── StorageItem.vue │ │ └── StorageManagerPanel.vue │ ├── TopBar.vue │ ├── account │ │ └── AccountPanel.vue │ ├── basicComponents │ │ └── tooltip │ │ │ └── tooltip.vue │ ├── feedback │ │ └── FeedbackPanel.vue │ ├── fileList │ │ ├── CreatePanel.vue │ │ ├── FilePanel.vue │ │ └── ListItem.vue │ ├── filebrowser │ │ ├── FilePanel.vue │ │ ├── components │ │ │ ├── ActionButton.vue │ │ │ ├── ContextMenu.vue │ │ │ ├── EmptyHolder.vue │ │ │ ├── ErrorHolder.vue │ │ │ ├── FileBreadcrumb.vue │ │ │ ├── GirdView.vue │ │ │ ├── GlobalActionButton.vue │ │ │ ├── IconContainer.vue │ │ │ ├── ListIconContainer.vue │ │ │ ├── ListView.vue │ │ │ ├── MountActionButton.vue │ │ │ ├── OperationStatusBar.vue │ │ │ ├── OperationStatusItem.vue │ │ │ ├── OperationToolbar.vue │ │ │ └── SidebarMenuButton.vue │ │ ├── drop │ │ │ ├── DropAddButton.vue │ │ │ ├── DropBg.vue │ │ │ ├── DropCenterIcon.vue │ │ │ ├── DropContextMenu.vue │ │ │ ├── DropEntryButton.vue │ │ │ ├── DropItem.vue │ │ │ ├── DropPage.vue │ │ │ └── Network.js │ │ ├── modals │ │ │ ├── DetailModal.vue │ │ │ ├── NewFileModal.vue │ │ │ ├── NewFolderModal.vue │ │ │ ├── NewNetworkStorage.vue │ │ │ └── RenameModal.vue │ │ ├── shared │ │ │ ├── ActionButton.vue │ │ │ ├── ContextMenu.vue │ │ │ ├── EmptyHolder.vue │ │ │ ├── SelectShareModal.vue │ │ │ ├── ShareDetial.vue │ │ │ ├── ShareEntryButton.vue │ │ │ ├── ShareListPage.vue │ │ │ └── ShareListView.vue │ │ ├── sidebar │ │ │ ├── MountList.vue │ │ │ ├── SideBar.vue │ │ │ ├── TreeList.vue │ │ │ └── TreeListItem.vue │ │ ├── uploader │ │ │ ├── common │ │ │ │ ├── file-events.js │ │ │ │ ├── mixins.js │ │ │ │ └── utils.js │ │ │ └── components │ │ │ │ ├── btn.vue │ │ │ │ ├── drop.vue │ │ │ │ ├── file.vue │ │ │ │ ├── files.vue │ │ │ │ ├── list.vue │ │ │ │ ├── unsupport.vue │ │ │ │ └── uploader.vue │ │ └── viewers │ │ │ ├── CodeEditor.vue │ │ │ ├── DocViewer.vue │ │ │ ├── ExcelViewer.vue │ │ │ ├── ImageViewer.vue │ │ │ ├── MarkdownEditor.vue │ │ │ ├── PdfViewer.vue │ │ │ └── VideoPlayer.vue │ ├── forms │ │ ├── CommandsInput.vue │ │ ├── EnvInputGroup.vue │ │ ├── IconInput.vue │ │ ├── ImportPanel.vue │ │ ├── InputGroup.vue │ │ ├── Ports.vue │ │ └── VolumesInputGroup.vue │ ├── logsAndTerminal │ │ ├── LogsCard.vue │ │ ├── TerminalCard.vue │ │ └── TerminalPanel.vue │ ├── noticBlock │ │ └── noticeBlock.vue │ ├── settings │ │ ├── PortPanel.vue │ │ ├── UpdateCompleteModal.vue │ │ └── UpdateModal.vue │ ├── share │ │ └── ShareModal.vue │ ├── smartHome │ │ └── SmartBlock.vue │ ├── syncthing │ │ └── SyncBlock.vue │ ├── wallpaper │ │ ├── CasaWallpaper.vue │ │ ├── ContextMenu.vue │ │ └── WallpaperModal.vue │ └── widgets │ │ ├── RadialBar.vue │ │ └── Settings.vue ├── events │ ├── events.js │ ├── index.js │ └── message_bus.js ├── main.js ├── mixins │ ├── IconContainerMixin.js │ ├── ListViewMixin.js │ ├── app │ │ ├── Business_LinkApp.js │ │ ├── Business_OpenThirdApp.js │ │ └── Business_ShowNewAppTag.js │ ├── base │ │ └── common-i18n.js │ ├── file_utils.js │ ├── file_utils.spec.js │ └── mixin.js ├── plugins │ ├── i18n.js │ └── vee-validate.js ├── router │ ├── index.js │ └── route.js ├── service │ ├── api.js │ ├── appCategories.js │ ├── apps.js │ ├── batch.js │ ├── cloud.js │ ├── container.js │ ├── disks.js │ ├── driver.js │ ├── file.js │ ├── folder.js │ ├── image.js │ ├── index.js │ ├── local_storage.js │ ├── port.js │ ├── samba.js │ ├── service.js │ ├── storage.js │ ├── sys.js │ └── users.js ├── store │ ├── actions.js │ ├── getters.js │ ├── index.js │ ├── mutations.js │ └── state.js ├── views │ ├── AppLauncherCheck.vue │ ├── Home.vue │ ├── Login.vue │ └── Welcome.vue └── widgets │ ├── Clock.vue │ ├── Cpu.vue │ ├── Disks.vue │ └── Network.vue ├── stylelint.config.js ├── vitest.config.js └── vue.config.js /.env.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/.env.dev -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- 1 | // .env.production 2 | NODE_ENV=prod -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/build_new_lang.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/.github/workflows/build_new_lang.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/node-prerelease.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/.github/workflows/node-prerelease.js.yml -------------------------------------------------------------------------------- /.github/workflows/push_test_server.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/.github/workflows/push_test_server.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /CasaOS-UI.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/CasaOS-UI.code-workspace -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/babel.config.js -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/jsconfig.json -------------------------------------------------------------------------------- /message_bus.build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/message_bus.build.js -------------------------------------------------------------------------------- /mock/meta_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/mock/meta_data.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /prettier.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/prettier.config.cjs -------------------------------------------------------------------------------- /public/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/public/browserconfig.xml -------------------------------------------------------------------------------- /public/css/animate.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/public/css/animate.min.css -------------------------------------------------------------------------------- /public/css/custom.css: -------------------------------------------------------------------------------- 1 | /* Add your custom css style here */ -------------------------------------------------------------------------------- /public/default-avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/public/default-avatar.svg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/img/CasaConnect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/public/img/CasaConnect.svg -------------------------------------------------------------------------------- /public/img/Files.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/public/img/Files.svg -------------------------------------------------------------------------------- /public/img/driver/Dropbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/public/img/driver/Dropbox.svg -------------------------------------------------------------------------------- /public/img/driver/GoogleDrive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/public/img/driver/GoogleDrive.svg -------------------------------------------------------------------------------- /public/img/driver/OneDrive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/public/img/driver/OneDrive.svg -------------------------------------------------------------------------------- /public/img/icon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/public/img/icon/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/img/icon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/public/img/icon/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/img/icon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/public/img/icon/apple-touch-icon.png -------------------------------------------------------------------------------- /public/img/icon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/public/img/icon/favicon-16x16.png -------------------------------------------------------------------------------- /public/img/icon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/public/img/icon/favicon-32x32.png -------------------------------------------------------------------------------- /public/img/icon/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/public/img/icon/mstile-150x150.png -------------------------------------------------------------------------------- /public/img/icon/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/public/img/icon/safari-pinned-tab.svg -------------------------------------------------------------------------------- /public/img/wallpaper/wallpaper01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/public/img/wallpaper/wallpaper01.jpg -------------------------------------------------------------------------------- /public/img/wallpaper/wallpaper02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/public/img/wallpaper/wallpaper02.jpg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/public/index.html -------------------------------------------------------------------------------- /public/js/custom.js: -------------------------------------------------------------------------------- 1 | // Add your custom scripts here -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /public/ui/img/wallpaper01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/public/ui/img/wallpaper01.jpg -------------------------------------------------------------------------------- /public/ui/img/wallpaper02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/public/ui/img/wallpaper02.jpg -------------------------------------------------------------------------------- /register-ui-events.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/register-ui-events.sh -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/ani/creating.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/ani/creating.json -------------------------------------------------------------------------------- /src/assets/ani/done.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/ani/done.json -------------------------------------------------------------------------------- /src/assets/ani/loading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/ani/loading.json -------------------------------------------------------------------------------- /src/assets/ani/rocket-launching.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/ani/rocket-launching.json -------------------------------------------------------------------------------- /src/assets/ani/sync.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/ani/sync.json -------------------------------------------------------------------------------- /src/assets/background/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/background/blank.png -------------------------------------------------------------------------------- /src/assets/background/default_wallpaper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/background/default_wallpaper.jpg -------------------------------------------------------------------------------- /src/assets/background/preview-widget.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/background/preview-widget.svg -------------------------------------------------------------------------------- /src/assets/background/wallpaper01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/background/wallpaper01.jpg -------------------------------------------------------------------------------- /src/assets/background/wallpaper02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/background/wallpaper02.jpg -------------------------------------------------------------------------------- /src/assets/fonts/britti-sans-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/fonts/britti-sans-regular.woff -------------------------------------------------------------------------------- /src/assets/img/account/default-avatar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/account/default-avatar.svg -------------------------------------------------------------------------------- /src/assets/img/app/add_button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/app/add_button.svg -------------------------------------------------------------------------------- /src/assets/img/app/appstore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/app/appstore.svg -------------------------------------------------------------------------------- /src/assets/img/app/default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/app/default.svg -------------------------------------------------------------------------------- /src/assets/img/app/files.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/app/files.svg -------------------------------------------------------------------------------- /src/assets/img/app/sk_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/app/sk_icon.svg -------------------------------------------------------------------------------- /src/assets/img/app/swiper_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/app/swiper_placeholder.png -------------------------------------------------------------------------------- /src/assets/img/common-icons/danger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/common-icons/danger.svg -------------------------------------------------------------------------------- /src/assets/img/common-icons/files.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/common-icons/files.svg -------------------------------------------------------------------------------- /src/assets/img/common-icons/success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/common-icons/success.svg -------------------------------------------------------------------------------- /src/assets/img/common-icons/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/common-icons/warning.svg -------------------------------------------------------------------------------- /src/assets/img/drop/Laptop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/drop/Laptop.svg -------------------------------------------------------------------------------- /src/assets/img/drop/PC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/drop/PC.svg -------------------------------------------------------------------------------- /src/assets/img/drop/add_btn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/drop/add_btn.svg -------------------------------------------------------------------------------- /src/assets/img/drop/desktop_offline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/drop/desktop_offline.svg -------------------------------------------------------------------------------- /src/assets/img/drop/desktop_online.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/drop/desktop_online.svg -------------------------------------------------------------------------------- /src/assets/img/drop/drop_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/drop/drop_icon.svg -------------------------------------------------------------------------------- /src/assets/img/drop/iPad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/drop/iPad.svg -------------------------------------------------------------------------------- /src/assets/img/drop/iPhone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/drop/iPhone.svg -------------------------------------------------------------------------------- /src/assets/img/drop/iPhone_offline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/drop/iPhone_offline.svg -------------------------------------------------------------------------------- /src/assets/img/drop/iPhone_online.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/drop/iPhone_online.svg -------------------------------------------------------------------------------- /src/assets/img/drop/mobile_online.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/drop/mobile_online.svg -------------------------------------------------------------------------------- /src/assets/img/drop/notebook_offline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/drop/notebook_offline.svg -------------------------------------------------------------------------------- /src/assets/img/drop/notebook_online.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/drop/notebook_online.svg -------------------------------------------------------------------------------- /src/assets/img/drop/self.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/drop/self.svg -------------------------------------------------------------------------------- /src/assets/img/drop/tablet_offline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/drop/tablet_offline.svg -------------------------------------------------------------------------------- /src/assets/img/drop/tablet_online.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/drop/tablet_online.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/android-package-archive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/android-package-archive.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-apk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-apk.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-certificate.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-certificate.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-dicom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-dicom.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-epub+zip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-epub+zip.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-illustrator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-illustrator.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-json.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-json.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-msonenote.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-msonenote.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-msoutlook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-msoutlook.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-msword-template.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-msword-template.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-octet-stream.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-octet-stream.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-ogg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-ogg.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-pdf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-pdf.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-pgp-signature.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-pgp-signature.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-pgp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-pgp.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-photoshop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-photoshop.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-postscript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-postscript.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-rss_xml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-rss_xml.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-sql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-sql.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-vnd.appimage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-vnd.appimage.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-vnd.flatpak.ref.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-vnd.flatpak.ref.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-vnd.flatpak.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-vnd.flatpak.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-vnd.iccprofile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-vnd.iccprofile.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-vnd.kde.bluedevil-sendfile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-vnd.kde.bluedevil-sendfile.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-vnd.ms-access.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-vnd.ms-access.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-vnd.ms-cab-compressed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-vnd.ms-cab-compressed.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-vnd.ms-excel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-vnd.ms-excel.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-vnd.ms-excel.template.macroenabled.12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-vnd.ms-excel.template.macroenabled.12.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-vnd.ms-htmlhelp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-vnd.ms-htmlhelp.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-vnd.ms-infopath.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-vnd.ms-infopath.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-vnd.ms-powerpoint.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-vnd.ms-powerpoint.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-vnd.ms-powerpoint.template.macroenabled.12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-vnd.ms-powerpoint.template.macroenabled.12.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-vnd.ms-publisher.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-vnd.ms-publisher.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-vnd.ms-word.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-vnd.ms-word.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-vnd.oasis.opendocument.chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-vnd.oasis.opendocument.chart.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-vnd.oasis.opendocument.formula-template.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-vnd.oasis.opendocument.formula-template.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-vnd.oasis.opendocument.formula.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-vnd.oasis.opendocument.formula.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-vnd.oasis.opendocument.presentation-template.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-vnd.oasis.opendocument.presentation-template.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-vnd.oasis.opendocument.spreadsheet-template.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-vnd.oasis.opendocument.spreadsheet-template.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-vnd.oasis.opendocument.text-template.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-vnd.oasis.opendocument.text-template.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-vnd.oasis.opendocument.web-template.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-vnd.oasis.opendocument.web-template.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-vnd.snap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-vnd.snap.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-vnd.visio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-vnd.visio.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-ace.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-ace.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-addon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-addon.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-apple.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-ar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-ar.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-arc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-arc.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-archive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-archive.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-arj.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-arj.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-bittorrent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-bittorrent.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-blender.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-blender.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-bzdvi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-bzdvi.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-bzip-compressed-tar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-bzip-compressed-tar.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-bzip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-bzip.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-cd-image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-cd-image.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-chm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-chm.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-clementine.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-clementine.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-compressed-tar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-compressed-tar.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-deb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-deb.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-designer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-designer.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-executable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-executable.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-fictionbook+xml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-fictionbook+xml.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-firmware.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-firmware.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-flash-video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-flash-video.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-gzip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-gzip.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-gzpostscript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-gzpostscript.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-java-archive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-java-archive.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-java.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-kdenlivetitle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-kdenlivetitle.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-kexi-connectiondata.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-kexi-connectiondata.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-kexiproject-shortcut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-kexiproject-shortcut.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-kplato.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-kplato.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-kvtml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-kvtml.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-labplot2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-labplot2.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-lzma-compressed-tar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-lzma-compressed-tar.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-lzop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-lzop.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-macbinary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-macbinary.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-marble.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-marble.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-mobipocket-ebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-mobipocket-ebook.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-model.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-model.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-ms-dos-executable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-ms-dos-executable.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-ms-shortcut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-ms-shortcut.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-object.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-object.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-osm+xml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-osm+xml.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-partial-download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-partial-download.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-pem-key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-pem-key.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-perl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-perl.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-plasma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-plasma.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-rar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-rar.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-remote-connection.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-remote-connection.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-root.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-root.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-rpm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-rpm.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-ruby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-ruby.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-sharedlib.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-sharedlib.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-shellscript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-shellscript.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-skg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-skg.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-skgc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-skgc.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-smb-workgroup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-smb-workgroup.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-sogouskin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-sogouskin.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-srt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-srt.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-subrip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-subrip.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-tar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-tar.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-tarz.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-tarz.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-theme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-theme.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-trash.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-tzo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-tzo.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-wine-extension-cpl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-wine-extension-cpl.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-wine-extension-skb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-wine-extension-skb.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-wine-extension-skp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-wine-extension-skp.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-yaml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-yaml.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-x-zip.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-x-zip.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/application-xmind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/application-xmind.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/audio-midi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/audio-midi.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/audio-x-generic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/audio-x-generic.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/audio-x-mp3-playlist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/audio-x-mp3-playlist.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/extension.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/extension.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/folder-application.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/folder-application.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/folder-default.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/folder-default.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/folder-documents.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/folder-documents.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/folder-download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/folder-download.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/folder-hdd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/folder-hdd.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/folder-open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/folder-open.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/folder-pictures.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/folder-pictures.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/folder-root.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/folder-root.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/folder-usb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/folder-usb.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/folder-video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/folder-video.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/folder.png -------------------------------------------------------------------------------- /src/assets/img/filebrowser/font-x-generic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/font-x-generic.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/image-svg+xml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/image-svg+xml.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/image-vnd.dgn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/image-vnd.dgn.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/image-vnd.djvu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/image-vnd.djvu.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/image-vnd.dwg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/image-vnd.dwg.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/image-x-compressed-xcf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/image-x-compressed-xcf.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/image-x-generic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/image-x-generic.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/inode-symlink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/inode-symlink.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/libreoffice-oasis-database.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/libreoffice-oasis-database.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/libreoffice-oasis-drawing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/libreoffice-oasis-drawing.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/libreoffice-oasis-formula.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/libreoffice-oasis-formula.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/libreoffice-oasis-master-document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/libreoffice-oasis-master-document.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/libreoffice-oasis-presentation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/libreoffice-oasis-presentation.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/libreoffice-oasis-spreadsheet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/libreoffice-oasis-spreadsheet.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/libreoffice-oasis-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/libreoffice-oasis-text.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/libreoffice-oasis-web.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/libreoffice-oasis-web.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/message-news.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/message-news.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/message-partial.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/message-partial.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/message-rfc822.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/message-rfc822.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/newFile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/newFile.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/newFolder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/newFolder.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/office-contact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/office-contact.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/package-x-generic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/package-x-generic.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/stock_addressbook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/stock_addressbook.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-css.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-css.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-dockerfile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-dockerfile.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-html.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-html.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-less.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-less.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-markdown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-markdown.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-richtext.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-richtext.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-rust.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-rust.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-vnd.trolltech.linguist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-vnd.trolltech.linguist.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-wiki.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-wiki.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-adasrc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-adasrc.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-apport.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-apport.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-authors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-authors.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-c++hdr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-c++hdr.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-c.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-changelog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-changelog.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-chdr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-chdr.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-cmake.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-cmake.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-cobol.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-cobol.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-copying.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-copying.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-cpp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-cpp.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-csharp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-csharp.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-fortran.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-fortran.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-generic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-generic.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-gettext-translation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-gettext-translation.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-go.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-go.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-haskell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-haskell.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-hex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-hex.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-install.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-install.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-java.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-java.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-javascript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-javascript.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-kotlin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-kotlin.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-kvt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-kvt.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-lua.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-lua.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-pascal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-pascal.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-patch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-patch.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-php.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-php.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-po.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-po.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-preview.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-preview.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-python.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-python.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-qml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-qml.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-r.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-r.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-readme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-readme.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-rpm-spec.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-rpm-spec.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-ruby.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-ruby.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-sass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-sass.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-scala.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-scala.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-script.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-script.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-sql.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-sql.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-tcl.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-tcl.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-tex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-tex.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-typescript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-typescript.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-x-vala.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-x-vala.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/text-xml.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/text-xml.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/unknown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/unknown.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/upfile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/upfile.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/upfolder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/upfolder.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/video-x-generic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/video-x-generic.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/virtualbox-hdd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/virtualbox-hdd.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/virtualbox-ova.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/virtualbox-ova.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/virtualbox-ovf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/virtualbox-ovf.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/virtualbox-vbox-extpack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/virtualbox-vbox-extpack.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/virtualbox-vbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/virtualbox-vbox.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/virtualbox-vdi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/virtualbox-vdi.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/virtualbox-vhd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/virtualbox-vhd.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/virtualbox-vmdk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/virtualbox-vmdk.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/x-content-software.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/x-content-software.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/x-kde-nsplugin-generated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/x-kde-nsplugin-generated.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/x-media-podcast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/x-media-podcast.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/x-office-calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/x-office-calendar.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/x-office-document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/x-office-document.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/x-office-presentation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/x-office-presentation.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/x-office-spreadsheet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/x-office-spreadsheet.svg -------------------------------------------------------------------------------- /src/assets/img/filebrowser/xfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/filebrowser/xfile.png -------------------------------------------------------------------------------- /src/assets/img/learn/diskLearnMore-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/learn/diskLearnMore-1.svg -------------------------------------------------------------------------------- /src/assets/img/learn/diskLearnMore-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/learn/diskLearnMore-2.svg -------------------------------------------------------------------------------- /src/assets/img/learn/diskLearnMore-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/learn/diskLearnMore-3.svg -------------------------------------------------------------------------------- /src/assets/img/loading/waiting-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/loading/waiting-white.svg -------------------------------------------------------------------------------- /src/assets/img/loading/waiting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/loading/waiting.svg -------------------------------------------------------------------------------- /src/assets/img/logo/casa-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/logo/casa-dark.svg -------------------------------------------------------------------------------- /src/assets/img/logo/casa-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/logo/casa-white.svg -------------------------------------------------------------------------------- /src/assets/img/logo/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/logo/logo.png -------------------------------------------------------------------------------- /src/assets/img/logo/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/logo/logo.svg -------------------------------------------------------------------------------- /src/assets/img/power/loading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/power/loading.svg -------------------------------------------------------------------------------- /src/assets/img/power/waiting-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/power/waiting-white.svg -------------------------------------------------------------------------------- /src/assets/img/power/waiting.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/power/waiting.svg -------------------------------------------------------------------------------- /src/assets/img/sad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/sad.svg -------------------------------------------------------------------------------- /src/assets/img/share/folder-publicshare.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/share/folder-publicshare.svg -------------------------------------------------------------------------------- /src/assets/img/share/share-empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/share/share-empty.svg -------------------------------------------------------------------------------- /src/assets/img/smart/smart_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/smart/smart_icon.svg -------------------------------------------------------------------------------- /src/assets/img/social/share_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/social/share_img.png -------------------------------------------------------------------------------- /src/assets/img/storage/USB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/storage/USB.png -------------------------------------------------------------------------------- /src/assets/img/storage/USB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/storage/USB.svg -------------------------------------------------------------------------------- /src/assets/img/storage/disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/storage/disk.png -------------------------------------------------------------------------------- /src/assets/img/storage/storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/storage/storage.png -------------------------------------------------------------------------------- /src/assets/img/storage/storage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/storage/storage.svg -------------------------------------------------------------------------------- /src/assets/img/syncthing/sync.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/syncthing/sync.svg -------------------------------------------------------------------------------- /src/assets/img/widgets/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/widgets/gradient.png -------------------------------------------------------------------------------- /src/assets/img/widgets/swiper-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/widgets/swiper-left.svg -------------------------------------------------------------------------------- /src/assets/img/widgets/swiper-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/img/widgets/swiper-right.svg -------------------------------------------------------------------------------- /src/assets/lang/ar_SA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/lang/ar_SA.json -------------------------------------------------------------------------------- /src/assets/lang/be_BY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/lang/be_BY.json -------------------------------------------------------------------------------- /src/assets/lang/bg_BG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/lang/bg_BG.json -------------------------------------------------------------------------------- /src/assets/lang/ca_ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/lang/ca_ES.json -------------------------------------------------------------------------------- /src/assets/lang/cs_CZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/lang/cs_CZ.json -------------------------------------------------------------------------------- /src/assets/lang/de_DE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/lang/de_DE.json -------------------------------------------------------------------------------- /src/assets/lang/el_GR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/lang/el_GR.json -------------------------------------------------------------------------------- /src/assets/lang/en_US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/lang/en_US.json -------------------------------------------------------------------------------- /src/assets/lang/es_ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/lang/es_ES.json -------------------------------------------------------------------------------- /src/assets/lang/fr_FR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/lang/fr_FR.json -------------------------------------------------------------------------------- /src/assets/lang/hr_HR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/lang/hr_HR.json -------------------------------------------------------------------------------- /src/assets/lang/hu_HU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/lang/hu_HU.json -------------------------------------------------------------------------------- /src/assets/lang/id_ID.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/lang/id_ID.json -------------------------------------------------------------------------------- /src/assets/lang/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/lang/index.js -------------------------------------------------------------------------------- /src/assets/lang/it_IT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/lang/it_IT.json -------------------------------------------------------------------------------- /src/assets/lang/ja_JP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/lang/ja_JP.json -------------------------------------------------------------------------------- /src/assets/lang/ko_KR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/lang/ko_KR.json -------------------------------------------------------------------------------- /src/assets/lang/nl_NL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/lang/nl_NL.json -------------------------------------------------------------------------------- /src/assets/lang/no_NO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/lang/no_NO.json -------------------------------------------------------------------------------- /src/assets/lang/pl_PL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/lang/pl_PL.json -------------------------------------------------------------------------------- /src/assets/lang/pt_BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/lang/pt_BR.json -------------------------------------------------------------------------------- /src/assets/lang/pt_PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/lang/pt_PT.json -------------------------------------------------------------------------------- /src/assets/lang/ro_RO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/lang/ro_RO.json -------------------------------------------------------------------------------- /src/assets/lang/ru_RU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/lang/ru_RU.json -------------------------------------------------------------------------------- /src/assets/lang/sk_SK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/lang/sk_SK.json -------------------------------------------------------------------------------- /src/assets/lang/sl_SI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/lang/sl_SI.json -------------------------------------------------------------------------------- /src/assets/lang/sv_SE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/lang/sv_SE.json -------------------------------------------------------------------------------- /src/assets/lang/tr_TR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/lang/tr_TR.json -------------------------------------------------------------------------------- /src/assets/lang/uk_UA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/lang/uk_UA.json -------------------------------------------------------------------------------- /src/assets/lang/vi_VN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/lang/vi_VN.json -------------------------------------------------------------------------------- /src/assets/lang/zh_CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/lang/zh_CN.json -------------------------------------------------------------------------------- /src/assets/lang/zh_TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/lang/zh_TW.json -------------------------------------------------------------------------------- /src/assets/scss/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/scss/app.scss -------------------------------------------------------------------------------- /src/assets/scss/common/_animate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/scss/common/_animate.scss -------------------------------------------------------------------------------- /src/assets/scss/common/_avatar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/scss/common/_avatar.scss -------------------------------------------------------------------------------- /src/assets/scss/common/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/scss/common/_buttons.scss -------------------------------------------------------------------------------- /src/assets/scss/common/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/scss/common/_card.scss -------------------------------------------------------------------------------- /src/assets/scss/common/_color.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/scss/common/_color.scss -------------------------------------------------------------------------------- /src/assets/scss/common/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/scss/common/_dropdown.scss -------------------------------------------------------------------------------- /src/assets/scss/common/_font.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/scss/common/_font.scss -------------------------------------------------------------------------------- /src/assets/scss/common/_icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/scss/common/_icon.scss -------------------------------------------------------------------------------- /src/assets/scss/common/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/scss/common/_images.scss -------------------------------------------------------------------------------- /src/assets/scss/common/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/scss/common/_modal.scss -------------------------------------------------------------------------------- /src/assets/scss/common/_others.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/scss/common/_others.scss -------------------------------------------------------------------------------- /src/assets/scss/common/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/scss/common/_root.scss -------------------------------------------------------------------------------- /src/assets/scss/common/_scrollbars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/scss/common/_scrollbars.scss -------------------------------------------------------------------------------- /src/assets/scss/common/_sections.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/scss/common/_sections.scss -------------------------------------------------------------------------------- /src/assets/scss/common/_size.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/scss/common/_size.scss -------------------------------------------------------------------------------- /src/assets/scss/common/_snackbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/scss/common/_snackbar.scss -------------------------------------------------------------------------------- /src/assets/scss/common/_spacing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/scss/common/_spacing.scss -------------------------------------------------------------------------------- /src/assets/scss/common/_tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/scss/common/_tabs.scss -------------------------------------------------------------------------------- /src/assets/scss/common/_title.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/scss/common/_title.scss -------------------------------------------------------------------------------- /src/assets/scss/common/_toast.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/scss/common/_toast.scss -------------------------------------------------------------------------------- /src/assets/scss/common/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/scss/common/_variables.scss -------------------------------------------------------------------------------- /src/assets/scss/common/_widgets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/scss/common/_widgets.scss -------------------------------------------------------------------------------- /src/assets/scss/components/_filebrowser.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/assets/scss/components/_filebrowser.scss -------------------------------------------------------------------------------- /src/components/Apps/AddNewButtonCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/Apps/AddNewButtonCard.vue -------------------------------------------------------------------------------- /src/components/Apps/AppCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/Apps/AppCard.vue -------------------------------------------------------------------------------- /src/components/Apps/AppCardSkeleton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/Apps/AppCardSkeleton.vue -------------------------------------------------------------------------------- /src/components/Apps/AppDetailInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/Apps/AppDetailInfo.vue -------------------------------------------------------------------------------- /src/components/Apps/AppPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/Apps/AppPanel.vue -------------------------------------------------------------------------------- /src/components/Apps/AppSection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/Apps/AppSection.vue -------------------------------------------------------------------------------- /src/components/Apps/AppSectionTitleTip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/Apps/AppSectionTitleTip.vue -------------------------------------------------------------------------------- /src/components/Apps/AppSideBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/Apps/AppSideBar.vue -------------------------------------------------------------------------------- /src/components/Apps/AppStoreSourceManagement.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/Apps/AppStoreSourceManagement.vue -------------------------------------------------------------------------------- /src/components/Apps/AppTerminalPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/Apps/AppTerminalPanel.vue -------------------------------------------------------------------------------- /src/components/Apps/AppsInstallationLocation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/Apps/AppsInstallationLocation.vue -------------------------------------------------------------------------------- /src/components/Apps/ComposeConfig.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/Apps/ComposeConfig.vue -------------------------------------------------------------------------------- /src/components/Apps/Dropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/Apps/Dropdown.vue -------------------------------------------------------------------------------- /src/components/Apps/ExternalLinkPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/Apps/ExternalLinkPanel.vue -------------------------------------------------------------------------------- /src/components/Apps/TipEditorModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/Apps/TipEditorModal.vue -------------------------------------------------------------------------------- /src/components/Apps/progress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/Apps/progress.js -------------------------------------------------------------------------------- /src/components/BrandBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/BrandBar.vue -------------------------------------------------------------------------------- /src/components/ContactBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/ContactBar.vue -------------------------------------------------------------------------------- /src/components/CoreService.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/CoreService.vue -------------------------------------------------------------------------------- /src/components/SearchBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/SearchBar.vue -------------------------------------------------------------------------------- /src/components/SideBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/SideBar.vue -------------------------------------------------------------------------------- /src/components/Storage/DiskLearnMore.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/Storage/DiskLearnMore.vue -------------------------------------------------------------------------------- /src/components/Storage/DriveItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/Storage/DriveItem.vue -------------------------------------------------------------------------------- /src/components/Storage/MergeStorages.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/Storage/MergeStorages.vue -------------------------------------------------------------------------------- /src/components/Storage/StorageCombination.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/Storage/StorageCombination.vue -------------------------------------------------------------------------------- /src/components/Storage/StorageItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/Storage/StorageItem.vue -------------------------------------------------------------------------------- /src/components/Storage/StorageManagerPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/Storage/StorageManagerPanel.vue -------------------------------------------------------------------------------- /src/components/TopBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/TopBar.vue -------------------------------------------------------------------------------- /src/components/account/AccountPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/account/AccountPanel.vue -------------------------------------------------------------------------------- /src/components/basicComponents/tooltip/tooltip.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/basicComponents/tooltip/tooltip.vue -------------------------------------------------------------------------------- /src/components/feedback/FeedbackPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/feedback/FeedbackPanel.vue -------------------------------------------------------------------------------- /src/components/fileList/CreatePanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/fileList/CreatePanel.vue -------------------------------------------------------------------------------- /src/components/fileList/FilePanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/fileList/FilePanel.vue -------------------------------------------------------------------------------- /src/components/fileList/ListItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/fileList/ListItem.vue -------------------------------------------------------------------------------- /src/components/filebrowser/FilePanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/FilePanel.vue -------------------------------------------------------------------------------- /src/components/filebrowser/components/ActionButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/components/ActionButton.vue -------------------------------------------------------------------------------- /src/components/filebrowser/components/ContextMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/components/ContextMenu.vue -------------------------------------------------------------------------------- /src/components/filebrowser/components/EmptyHolder.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/components/EmptyHolder.vue -------------------------------------------------------------------------------- /src/components/filebrowser/components/ErrorHolder.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/components/ErrorHolder.vue -------------------------------------------------------------------------------- /src/components/filebrowser/components/FileBreadcrumb.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/components/FileBreadcrumb.vue -------------------------------------------------------------------------------- /src/components/filebrowser/components/GirdView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/components/GirdView.vue -------------------------------------------------------------------------------- /src/components/filebrowser/components/GlobalActionButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/components/GlobalActionButton.vue -------------------------------------------------------------------------------- /src/components/filebrowser/components/IconContainer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/components/IconContainer.vue -------------------------------------------------------------------------------- /src/components/filebrowser/components/ListIconContainer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/components/ListIconContainer.vue -------------------------------------------------------------------------------- /src/components/filebrowser/components/ListView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/components/ListView.vue -------------------------------------------------------------------------------- /src/components/filebrowser/components/MountActionButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/components/MountActionButton.vue -------------------------------------------------------------------------------- /src/components/filebrowser/components/OperationStatusBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/components/OperationStatusBar.vue -------------------------------------------------------------------------------- /src/components/filebrowser/components/OperationStatusItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/components/OperationStatusItem.vue -------------------------------------------------------------------------------- /src/components/filebrowser/components/OperationToolbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/components/OperationToolbar.vue -------------------------------------------------------------------------------- /src/components/filebrowser/components/SidebarMenuButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/components/SidebarMenuButton.vue -------------------------------------------------------------------------------- /src/components/filebrowser/drop/DropAddButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/drop/DropAddButton.vue -------------------------------------------------------------------------------- /src/components/filebrowser/drop/DropBg.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/drop/DropBg.vue -------------------------------------------------------------------------------- /src/components/filebrowser/drop/DropCenterIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/drop/DropCenterIcon.vue -------------------------------------------------------------------------------- /src/components/filebrowser/drop/DropContextMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/drop/DropContextMenu.vue -------------------------------------------------------------------------------- /src/components/filebrowser/drop/DropEntryButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/drop/DropEntryButton.vue -------------------------------------------------------------------------------- /src/components/filebrowser/drop/DropItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/drop/DropItem.vue -------------------------------------------------------------------------------- /src/components/filebrowser/drop/DropPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/drop/DropPage.vue -------------------------------------------------------------------------------- /src/components/filebrowser/drop/Network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/drop/Network.js -------------------------------------------------------------------------------- /src/components/filebrowser/modals/DetailModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/modals/DetailModal.vue -------------------------------------------------------------------------------- /src/components/filebrowser/modals/NewFileModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/modals/NewFileModal.vue -------------------------------------------------------------------------------- /src/components/filebrowser/modals/NewFolderModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/modals/NewFolderModal.vue -------------------------------------------------------------------------------- /src/components/filebrowser/modals/NewNetworkStorage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/modals/NewNetworkStorage.vue -------------------------------------------------------------------------------- /src/components/filebrowser/modals/RenameModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/modals/RenameModal.vue -------------------------------------------------------------------------------- /src/components/filebrowser/shared/ActionButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/shared/ActionButton.vue -------------------------------------------------------------------------------- /src/components/filebrowser/shared/ContextMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/shared/ContextMenu.vue -------------------------------------------------------------------------------- /src/components/filebrowser/shared/EmptyHolder.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/shared/EmptyHolder.vue -------------------------------------------------------------------------------- /src/components/filebrowser/shared/SelectShareModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/shared/SelectShareModal.vue -------------------------------------------------------------------------------- /src/components/filebrowser/shared/ShareDetial.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/shared/ShareDetial.vue -------------------------------------------------------------------------------- /src/components/filebrowser/shared/ShareEntryButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/shared/ShareEntryButton.vue -------------------------------------------------------------------------------- /src/components/filebrowser/shared/ShareListPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/shared/ShareListPage.vue -------------------------------------------------------------------------------- /src/components/filebrowser/shared/ShareListView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/shared/ShareListView.vue -------------------------------------------------------------------------------- /src/components/filebrowser/sidebar/MountList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/sidebar/MountList.vue -------------------------------------------------------------------------------- /src/components/filebrowser/sidebar/SideBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/sidebar/SideBar.vue -------------------------------------------------------------------------------- /src/components/filebrowser/sidebar/TreeList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/sidebar/TreeList.vue -------------------------------------------------------------------------------- /src/components/filebrowser/sidebar/TreeListItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/sidebar/TreeListItem.vue -------------------------------------------------------------------------------- /src/components/filebrowser/uploader/common/file-events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/uploader/common/file-events.js -------------------------------------------------------------------------------- /src/components/filebrowser/uploader/common/mixins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/uploader/common/mixins.js -------------------------------------------------------------------------------- /src/components/filebrowser/uploader/common/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/uploader/common/utils.js -------------------------------------------------------------------------------- /src/components/filebrowser/uploader/components/btn.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/uploader/components/btn.vue -------------------------------------------------------------------------------- /src/components/filebrowser/uploader/components/drop.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/uploader/components/drop.vue -------------------------------------------------------------------------------- /src/components/filebrowser/uploader/components/file.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/uploader/components/file.vue -------------------------------------------------------------------------------- /src/components/filebrowser/uploader/components/files.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/uploader/components/files.vue -------------------------------------------------------------------------------- /src/components/filebrowser/uploader/components/list.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/uploader/components/list.vue -------------------------------------------------------------------------------- /src/components/filebrowser/uploader/components/unsupport.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/uploader/components/unsupport.vue -------------------------------------------------------------------------------- /src/components/filebrowser/uploader/components/uploader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/uploader/components/uploader.vue -------------------------------------------------------------------------------- /src/components/filebrowser/viewers/CodeEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/viewers/CodeEditor.vue -------------------------------------------------------------------------------- /src/components/filebrowser/viewers/DocViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/viewers/DocViewer.vue -------------------------------------------------------------------------------- /src/components/filebrowser/viewers/ExcelViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/viewers/ExcelViewer.vue -------------------------------------------------------------------------------- /src/components/filebrowser/viewers/ImageViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/viewers/ImageViewer.vue -------------------------------------------------------------------------------- /src/components/filebrowser/viewers/MarkdownEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/viewers/MarkdownEditor.vue -------------------------------------------------------------------------------- /src/components/filebrowser/viewers/PdfViewer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/viewers/PdfViewer.vue -------------------------------------------------------------------------------- /src/components/filebrowser/viewers/VideoPlayer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/filebrowser/viewers/VideoPlayer.vue -------------------------------------------------------------------------------- /src/components/forms/CommandsInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/forms/CommandsInput.vue -------------------------------------------------------------------------------- /src/components/forms/EnvInputGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/forms/EnvInputGroup.vue -------------------------------------------------------------------------------- /src/components/forms/IconInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/forms/IconInput.vue -------------------------------------------------------------------------------- /src/components/forms/ImportPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/forms/ImportPanel.vue -------------------------------------------------------------------------------- /src/components/forms/InputGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/forms/InputGroup.vue -------------------------------------------------------------------------------- /src/components/forms/Ports.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/forms/Ports.vue -------------------------------------------------------------------------------- /src/components/forms/VolumesInputGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/forms/VolumesInputGroup.vue -------------------------------------------------------------------------------- /src/components/logsAndTerminal/LogsCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/logsAndTerminal/LogsCard.vue -------------------------------------------------------------------------------- /src/components/logsAndTerminal/TerminalCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/logsAndTerminal/TerminalCard.vue -------------------------------------------------------------------------------- /src/components/logsAndTerminal/TerminalPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/logsAndTerminal/TerminalPanel.vue -------------------------------------------------------------------------------- /src/components/noticBlock/noticeBlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/noticBlock/noticeBlock.vue -------------------------------------------------------------------------------- /src/components/settings/PortPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/settings/PortPanel.vue -------------------------------------------------------------------------------- /src/components/settings/UpdateCompleteModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/settings/UpdateCompleteModal.vue -------------------------------------------------------------------------------- /src/components/settings/UpdateModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/settings/UpdateModal.vue -------------------------------------------------------------------------------- /src/components/share/ShareModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/share/ShareModal.vue -------------------------------------------------------------------------------- /src/components/smartHome/SmartBlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/smartHome/SmartBlock.vue -------------------------------------------------------------------------------- /src/components/syncthing/SyncBlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/syncthing/SyncBlock.vue -------------------------------------------------------------------------------- /src/components/wallpaper/CasaWallpaper.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/wallpaper/CasaWallpaper.vue -------------------------------------------------------------------------------- /src/components/wallpaper/ContextMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/wallpaper/ContextMenu.vue -------------------------------------------------------------------------------- /src/components/wallpaper/WallpaperModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/wallpaper/WallpaperModal.vue -------------------------------------------------------------------------------- /src/components/widgets/RadialBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/widgets/RadialBar.vue -------------------------------------------------------------------------------- /src/components/widgets/Settings.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/components/widgets/Settings.vue -------------------------------------------------------------------------------- /src/events/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/events/events.js -------------------------------------------------------------------------------- /src/events/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/events/index.js -------------------------------------------------------------------------------- /src/events/message_bus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/events/message_bus.js -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/main.js -------------------------------------------------------------------------------- /src/mixins/IconContainerMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/mixins/IconContainerMixin.js -------------------------------------------------------------------------------- /src/mixins/ListViewMixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/mixins/ListViewMixin.js -------------------------------------------------------------------------------- /src/mixins/app/Business_LinkApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/mixins/app/Business_LinkApp.js -------------------------------------------------------------------------------- /src/mixins/app/Business_OpenThirdApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/mixins/app/Business_OpenThirdApp.js -------------------------------------------------------------------------------- /src/mixins/app/Business_ShowNewAppTag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/mixins/app/Business_ShowNewAppTag.js -------------------------------------------------------------------------------- /src/mixins/base/common-i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/mixins/base/common-i18n.js -------------------------------------------------------------------------------- /src/mixins/file_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/mixins/file_utils.js -------------------------------------------------------------------------------- /src/mixins/file_utils.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/mixins/file_utils.spec.js -------------------------------------------------------------------------------- /src/mixins/mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/mixins/mixin.js -------------------------------------------------------------------------------- /src/plugins/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/plugins/i18n.js -------------------------------------------------------------------------------- /src/plugins/vee-validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/plugins/vee-validate.js -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/router/index.js -------------------------------------------------------------------------------- /src/router/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/router/route.js -------------------------------------------------------------------------------- /src/service/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/service/api.js -------------------------------------------------------------------------------- /src/service/appCategories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/service/appCategories.js -------------------------------------------------------------------------------- /src/service/apps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/service/apps.js -------------------------------------------------------------------------------- /src/service/batch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/service/batch.js -------------------------------------------------------------------------------- /src/service/cloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/service/cloud.js -------------------------------------------------------------------------------- /src/service/container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/service/container.js -------------------------------------------------------------------------------- /src/service/disks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/service/disks.js -------------------------------------------------------------------------------- /src/service/driver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/service/driver.js -------------------------------------------------------------------------------- /src/service/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/service/file.js -------------------------------------------------------------------------------- /src/service/folder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/service/folder.js -------------------------------------------------------------------------------- /src/service/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/service/image.js -------------------------------------------------------------------------------- /src/service/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/service/index.js -------------------------------------------------------------------------------- /src/service/local_storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/service/local_storage.js -------------------------------------------------------------------------------- /src/service/port.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/service/port.js -------------------------------------------------------------------------------- /src/service/samba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/service/samba.js -------------------------------------------------------------------------------- /src/service/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/service/service.js -------------------------------------------------------------------------------- /src/service/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/service/storage.js -------------------------------------------------------------------------------- /src/service/sys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/service/sys.js -------------------------------------------------------------------------------- /src/service/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/service/users.js -------------------------------------------------------------------------------- /src/store/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/store/actions.js -------------------------------------------------------------------------------- /src/store/getters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/store/getters.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/store/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/store/mutations.js -------------------------------------------------------------------------------- /src/store/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/store/state.js -------------------------------------------------------------------------------- /src/views/AppLauncherCheck.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/views/AppLauncherCheck.vue -------------------------------------------------------------------------------- /src/views/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/views/Home.vue -------------------------------------------------------------------------------- /src/views/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/views/Login.vue -------------------------------------------------------------------------------- /src/views/Welcome.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/views/Welcome.vue -------------------------------------------------------------------------------- /src/widgets/Clock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/widgets/Clock.vue -------------------------------------------------------------------------------- /src/widgets/Cpu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/widgets/Cpu.vue -------------------------------------------------------------------------------- /src/widgets/Disks.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/widgets/Disks.vue -------------------------------------------------------------------------------- /src/widgets/Network.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/src/widgets/Network.vue -------------------------------------------------------------------------------- /stylelint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/stylelint.config.js -------------------------------------------------------------------------------- /vitest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/vitest.config.js -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceWhaleTech/CasaOS-UI/HEAD/vue.config.js --------------------------------------------------------------------------------