├── .eslintrc.json ├── .gitignore ├── Credits.html ├── Readme.md ├── add_reg_keys.reg ├── app ├── aboutDialog.html ├── download_manager.js ├── import_webchimera.js ├── index.js ├── mainWindow.html ├── package.json ├── plugin_loader.html └── post_install_win.js ├── auto_updater.json ├── gulpfile.js ├── icon.png ├── package.json ├── remove_reg_keys.reg └── src ├── components ├── Bottom.vue ├── Buffering.vue ├── ButtonWait.vue ├── CircleGraph.vue ├── CurrentProject.vue ├── ListItem.vue ├── LoginModal.vue ├── Modal.vue ├── NewTitleModal.vue ├── PathChooser.vue ├── PluginLoader.vue ├── Popover.vue ├── PreferencesModal.vue ├── ProjectDeletePopover.vue ├── ProjectIcon.vue ├── ProjectItem.vue ├── ProjectList.vue ├── ProjectPropertiesPopover.vue ├── ShiftModal.vue ├── Spinner.vue ├── SubFilter.vue ├── SubList.vue ├── TabItem.vue ├── TabPanel.vue ├── Tabs.vue ├── TimeInput.vue ├── TransInput.vue ├── UpdatePopup.vue ├── UrlPopover.vue ├── VProgress.vue ├── VideoControls.vue ├── VideoView.vue ├── VolumeControl.vue ├── WindowButtons.vue ├── aButton.vue ├── iButton.vue └── range.vue ├── directives ├── Dropdown.js ├── Dropzone.js ├── OpenFile.js ├── Popup.js └── Split.js ├── filters ├── escape.js └── time.js ├── fonts └── photon-entypo.woff ├── img ├── close-white.png ├── close.png ├── file-play.svg ├── file-text2.svg ├── maximize.png ├── minimize.png ├── ring-alt.svg ├── throbber.svg └── unmaximize.png ├── index.js ├── mainWindow.vue ├── mixins └── NonMovable.js ├── services └── native-resource.js ├── store ├── actions │ ├── common.js │ ├── index.js │ ├── ost.js │ ├── player.js │ ├── subfiles.js │ └── ui.js ├── common_mutations.js ├── index.js ├── middlewares.js ├── modules │ ├── ost.js │ ├── player.js │ ├── subfiles.js │ └── ui.js └── mutation-types.js ├── styles ├── buttons.scss ├── containers.scss ├── dialog.scss ├── footer.scss ├── header.scss ├── index.scss ├── list.scss ├── photon │ ├── bars.scss │ ├── base.scss │ ├── button-groups.scss │ ├── buttons.scss │ ├── docs.scss │ ├── forms.scss │ ├── grid.scss │ ├── icons.scss │ ├── images.scss │ ├── lists.scss │ ├── mixins.scss │ ├── navs.scss │ ├── normalize.scss │ ├── photon.scss │ ├── tables.scss │ ├── tabs.scss │ ├── utilities.scss │ └── variables.scss ├── popover.scss ├── project-list.scss ├── tabs.scss ├── trans-input.scss ├── update-popup.scss └── video-view.scss └── utils ├── MainMenu.js ├── SubParserWorker.js ├── debounce.js ├── dialog.js ├── srt.js └── time.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/.gitignore -------------------------------------------------------------------------------- /Credits.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/Credits.html -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/Readme.md -------------------------------------------------------------------------------- /add_reg_keys.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/add_reg_keys.reg -------------------------------------------------------------------------------- /app/aboutDialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/app/aboutDialog.html -------------------------------------------------------------------------------- /app/download_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/app/download_manager.js -------------------------------------------------------------------------------- /app/import_webchimera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/app/import_webchimera.js -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/app/index.js -------------------------------------------------------------------------------- /app/mainWindow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/app/mainWindow.html -------------------------------------------------------------------------------- /app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/app/package.json -------------------------------------------------------------------------------- /app/plugin_loader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/app/plugin_loader.html -------------------------------------------------------------------------------- /app/post_install_win.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/app/post_install_win.js -------------------------------------------------------------------------------- /auto_updater.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/auto_updater.json -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/gulpfile.js -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/icon.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/package.json -------------------------------------------------------------------------------- /remove_reg_keys.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/remove_reg_keys.reg -------------------------------------------------------------------------------- /src/components/Bottom.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/components/Bottom.vue -------------------------------------------------------------------------------- /src/components/Buffering.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/components/Buffering.vue -------------------------------------------------------------------------------- /src/components/ButtonWait.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/components/ButtonWait.vue -------------------------------------------------------------------------------- /src/components/CircleGraph.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/components/CircleGraph.vue -------------------------------------------------------------------------------- /src/components/CurrentProject.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/components/CurrentProject.vue -------------------------------------------------------------------------------- /src/components/ListItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/components/ListItem.vue -------------------------------------------------------------------------------- /src/components/LoginModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/components/LoginModal.vue -------------------------------------------------------------------------------- /src/components/Modal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/components/Modal.vue -------------------------------------------------------------------------------- /src/components/NewTitleModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/components/NewTitleModal.vue -------------------------------------------------------------------------------- /src/components/PathChooser.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/components/PathChooser.vue -------------------------------------------------------------------------------- /src/components/PluginLoader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/components/PluginLoader.vue -------------------------------------------------------------------------------- /src/components/Popover.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/components/Popover.vue -------------------------------------------------------------------------------- /src/components/PreferencesModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/components/PreferencesModal.vue -------------------------------------------------------------------------------- /src/components/ProjectDeletePopover.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/components/ProjectDeletePopover.vue -------------------------------------------------------------------------------- /src/components/ProjectIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/components/ProjectIcon.vue -------------------------------------------------------------------------------- /src/components/ProjectItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/components/ProjectItem.vue -------------------------------------------------------------------------------- /src/components/ProjectList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/components/ProjectList.vue -------------------------------------------------------------------------------- /src/components/ProjectPropertiesPopover.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/components/ProjectPropertiesPopover.vue -------------------------------------------------------------------------------- /src/components/ShiftModal.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/components/ShiftModal.vue -------------------------------------------------------------------------------- /src/components/Spinner.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/components/Spinner.vue -------------------------------------------------------------------------------- /src/components/SubFilter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/components/SubFilter.vue -------------------------------------------------------------------------------- /src/components/SubList.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/components/SubList.vue -------------------------------------------------------------------------------- /src/components/TabItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/components/TabItem.vue -------------------------------------------------------------------------------- /src/components/TabPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/components/TabPanel.vue -------------------------------------------------------------------------------- /src/components/Tabs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/components/Tabs.vue -------------------------------------------------------------------------------- /src/components/TimeInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/components/TimeInput.vue -------------------------------------------------------------------------------- /src/components/TransInput.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/components/TransInput.vue -------------------------------------------------------------------------------- /src/components/UpdatePopup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/components/UpdatePopup.vue -------------------------------------------------------------------------------- /src/components/UrlPopover.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/components/UrlPopover.vue -------------------------------------------------------------------------------- /src/components/VProgress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/components/VProgress.vue -------------------------------------------------------------------------------- /src/components/VideoControls.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/components/VideoControls.vue -------------------------------------------------------------------------------- /src/components/VideoView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/components/VideoView.vue -------------------------------------------------------------------------------- /src/components/VolumeControl.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/components/VolumeControl.vue -------------------------------------------------------------------------------- /src/components/WindowButtons.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/components/WindowButtons.vue -------------------------------------------------------------------------------- /src/components/aButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/components/aButton.vue -------------------------------------------------------------------------------- /src/components/iButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/components/iButton.vue -------------------------------------------------------------------------------- /src/components/range.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/components/range.vue -------------------------------------------------------------------------------- /src/directives/Dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/directives/Dropdown.js -------------------------------------------------------------------------------- /src/directives/Dropzone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/directives/Dropzone.js -------------------------------------------------------------------------------- /src/directives/OpenFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/directives/OpenFile.js -------------------------------------------------------------------------------- /src/directives/Popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/directives/Popup.js -------------------------------------------------------------------------------- /src/directives/Split.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/directives/Split.js -------------------------------------------------------------------------------- /src/filters/escape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/filters/escape.js -------------------------------------------------------------------------------- /src/filters/time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/filters/time.js -------------------------------------------------------------------------------- /src/fonts/photon-entypo.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/fonts/photon-entypo.woff -------------------------------------------------------------------------------- /src/img/close-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/img/close-white.png -------------------------------------------------------------------------------- /src/img/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/img/close.png -------------------------------------------------------------------------------- /src/img/file-play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/img/file-play.svg -------------------------------------------------------------------------------- /src/img/file-text2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/img/file-text2.svg -------------------------------------------------------------------------------- /src/img/maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/img/maximize.png -------------------------------------------------------------------------------- /src/img/minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/img/minimize.png -------------------------------------------------------------------------------- /src/img/ring-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/img/ring-alt.svg -------------------------------------------------------------------------------- /src/img/throbber.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/img/throbber.svg -------------------------------------------------------------------------------- /src/img/unmaximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/img/unmaximize.png -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/index.js -------------------------------------------------------------------------------- /src/mainWindow.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/mainWindow.vue -------------------------------------------------------------------------------- /src/mixins/NonMovable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/mixins/NonMovable.js -------------------------------------------------------------------------------- /src/services/native-resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/services/native-resource.js -------------------------------------------------------------------------------- /src/store/actions/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/store/actions/common.js -------------------------------------------------------------------------------- /src/store/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/store/actions/index.js -------------------------------------------------------------------------------- /src/store/actions/ost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/store/actions/ost.js -------------------------------------------------------------------------------- /src/store/actions/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/store/actions/player.js -------------------------------------------------------------------------------- /src/store/actions/subfiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/store/actions/subfiles.js -------------------------------------------------------------------------------- /src/store/actions/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/store/actions/ui.js -------------------------------------------------------------------------------- /src/store/common_mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/store/common_mutations.js -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/store/index.js -------------------------------------------------------------------------------- /src/store/middlewares.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/store/middlewares.js -------------------------------------------------------------------------------- /src/store/modules/ost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/store/modules/ost.js -------------------------------------------------------------------------------- /src/store/modules/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/store/modules/player.js -------------------------------------------------------------------------------- /src/store/modules/subfiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/store/modules/subfiles.js -------------------------------------------------------------------------------- /src/store/modules/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/store/modules/ui.js -------------------------------------------------------------------------------- /src/store/mutation-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/store/mutation-types.js -------------------------------------------------------------------------------- /src/styles/buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/styles/buttons.scss -------------------------------------------------------------------------------- /src/styles/containers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/styles/containers.scss -------------------------------------------------------------------------------- /src/styles/dialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/styles/dialog.scss -------------------------------------------------------------------------------- /src/styles/footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/styles/footer.scss -------------------------------------------------------------------------------- /src/styles/header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/styles/header.scss -------------------------------------------------------------------------------- /src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/styles/index.scss -------------------------------------------------------------------------------- /src/styles/list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/styles/list.scss -------------------------------------------------------------------------------- /src/styles/photon/bars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/styles/photon/bars.scss -------------------------------------------------------------------------------- /src/styles/photon/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/styles/photon/base.scss -------------------------------------------------------------------------------- /src/styles/photon/button-groups.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/styles/photon/button-groups.scss -------------------------------------------------------------------------------- /src/styles/photon/buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/styles/photon/buttons.scss -------------------------------------------------------------------------------- /src/styles/photon/docs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/styles/photon/docs.scss -------------------------------------------------------------------------------- /src/styles/photon/forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/styles/photon/forms.scss -------------------------------------------------------------------------------- /src/styles/photon/grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/styles/photon/grid.scss -------------------------------------------------------------------------------- /src/styles/photon/icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/styles/photon/icons.scss -------------------------------------------------------------------------------- /src/styles/photon/images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/styles/photon/images.scss -------------------------------------------------------------------------------- /src/styles/photon/lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/styles/photon/lists.scss -------------------------------------------------------------------------------- /src/styles/photon/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/styles/photon/mixins.scss -------------------------------------------------------------------------------- /src/styles/photon/navs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/styles/photon/navs.scss -------------------------------------------------------------------------------- /src/styles/photon/normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/styles/photon/normalize.scss -------------------------------------------------------------------------------- /src/styles/photon/photon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/styles/photon/photon.scss -------------------------------------------------------------------------------- /src/styles/photon/tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/styles/photon/tables.scss -------------------------------------------------------------------------------- /src/styles/photon/tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/styles/photon/tabs.scss -------------------------------------------------------------------------------- /src/styles/photon/utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/styles/photon/utilities.scss -------------------------------------------------------------------------------- /src/styles/photon/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/styles/photon/variables.scss -------------------------------------------------------------------------------- /src/styles/popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/styles/popover.scss -------------------------------------------------------------------------------- /src/styles/project-list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/styles/project-list.scss -------------------------------------------------------------------------------- /src/styles/tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/styles/tabs.scss -------------------------------------------------------------------------------- /src/styles/trans-input.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/styles/trans-input.scss -------------------------------------------------------------------------------- /src/styles/update-popup.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/styles/update-popup.scss -------------------------------------------------------------------------------- /src/styles/video-view.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/styles/video-view.scss -------------------------------------------------------------------------------- /src/utils/MainMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/utils/MainMenu.js -------------------------------------------------------------------------------- /src/utils/SubParserWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/utils/SubParserWorker.js -------------------------------------------------------------------------------- /src/utils/debounce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/utils/debounce.js -------------------------------------------------------------------------------- /src/utils/dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/utils/dialog.js -------------------------------------------------------------------------------- /src/utils/srt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/utils/srt.js -------------------------------------------------------------------------------- /src/utils/time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sunabozu/subordination/HEAD/src/utils/time.js --------------------------------------------------------------------------------