Merge branch 'fix--dirs-lowecased' into 'master'

fix: lowercased

See merge request srgooglo/comty-development!4
This commit is contained in:
srgooglo 2020-09-05 01:42:57 -05:00
commit ae74b15c21
120 changed files with 17 additions and 10 deletions

View File

@ -1,5 +1,4 @@
import { defineConfig } from 'umi';
import slash from 'slash';
const { resolve, join } = require('path');

0
.vscode/launch.json vendored Normal file → Executable file
View File

0
README.md Normal file → Executable file
View File

0
config/app_keys.js Normal file → Executable file
View File

0
config/endpoints.js Normal file → Executable file
View File

0
config/index.js Normal file → Executable file
View File

0
electron-builder.yml Normal file → Executable file
View File

0
globals/links.js Normal file → Executable file
View File

0
globals/sidebar_menu.js Normal file → Executable file
View File

0
globals/theme_settings.js Normal file → Executable file
View File

0
main/configs/config.js Normal file → Executable file
View File

0
main/icon.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 44 KiB

After

Width:  |  Height:  |  Size: 44 KiB

0
main/index.js Normal file → Executable file
View File

0
main/statics/loading.css Normal file → Executable file
View File

0
main/statics/loading.html Normal file → Executable file
View File

0
main/statics/loading_dev.html Normal file → Executable file
View File

0
out/fonts/OpenSans-Bold-webfont.eot Normal file → Executable file
View File

0
out/fonts/OpenSans-Bold-webfont.svg Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 116 KiB

After

Width:  |  Height:  |  Size: 116 KiB

0
out/fonts/OpenSans-Bold-webfont.woff Normal file → Executable file
View File

0
out/fonts/OpenSans-BoldItalic-webfont.eot Normal file → Executable file
View File

0
out/fonts/OpenSans-BoldItalic-webfont.svg Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 118 KiB

After

Width:  |  Height:  |  Size: 118 KiB

0
out/fonts/OpenSans-BoldItalic-webfont.woff Normal file → Executable file
View File

0
out/fonts/OpenSans-Italic-webfont.eot Normal file → Executable file
View File

0
out/fonts/OpenSans-Italic-webfont.svg Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 120 KiB

After

Width:  |  Height:  |  Size: 120 KiB

0
out/fonts/OpenSans-Italic-webfont.woff Normal file → Executable file
View File

0
out/fonts/OpenSans-Light-webfont.eot Normal file → Executable file
View File

0
out/fonts/OpenSans-Light-webfont.svg Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 114 KiB

After

Width:  |  Height:  |  Size: 114 KiB

0
out/fonts/OpenSans-Light-webfont.woff Normal file → Executable file
View File

0
out/fonts/OpenSans-LightItalic-webfont.eot Normal file → Executable file
View File

0
out/fonts/OpenSans-LightItalic-webfont.svg Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 120 KiB

After

Width:  |  Height:  |  Size: 120 KiB

0
out/fonts/OpenSans-LightItalic-webfont.woff Normal file → Executable file
View File

0
out/fonts/OpenSans-Regular-webfont.eot Normal file → Executable file
View File

0
out/fonts/OpenSans-Regular-webfont.svg Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 117 KiB

After

Width:  |  Height:  |  Size: 117 KiB

0
out/fonts/OpenSans-Regular-webfont.woff Normal file → Executable file
View File

0
out/global.html Normal file → Executable file
View File

0
out/index.html Normal file → Executable file
View File

0
out/index.js.html Normal file → Executable file
View File

0
out/scripts/linenumber.js Normal file → Executable file
View File

0
out/scripts/prettify/Apache-License-2.0.txt Normal file → Executable file
View File

0
out/scripts/prettify/lang-css.js Normal file → Executable file
View File

0
out/scripts/prettify/prettify.js Normal file → Executable file
View File

0
out/styles/jsdoc-default.css Normal file → Executable file
View File

0
out/styles/prettify-jsdoc.css Normal file → Executable file
View File

0
out/styles/prettify-tomorrow.css Normal file → Executable file
View File

View File

@ -22,7 +22,7 @@
"scripts": {
"start": "umi dev",
"postinstall": "electron-builder install-app-deps",
"electronDev": "concurrently \"electron --enable-transparent-visuals .\" \"umi dev\"",
"electronDev": "concurrently \"electron .\" \"umi dev\"",
"build": "npm run build:main && npm run build:renderer",
"build:main": "ESLINT=none roadhog build",
"build:renderer": "ESLINT=none umi build",

0
public/favicon.png Normal file → Executable file
View File

Before

Width:  |  Height:  |  Size: 6.5 KiB

After

Width:  |  Height:  |  Size: 6.5 KiB

0
src/components/About/index.js Normal file → Executable file
View File

0
src/components/About/index.less Normal file → Executable file
View File

0
src/components/Icons/custom.js Normal file → Executable file
View File

0
src/components/Icons/index.js Normal file → Executable file
View File

2
src/components/Layout/ControlBar/index.js Normal file → Executable file
View File

@ -16,7 +16,7 @@ const animationStyles = {
},
}
export const control = {
export const ControlController = {
set: (e) => {
if (!window.ControlComponent.state.active) {
window.ControlComponent.setState({ fadein: true })

0
src/components/Layout/ControlBar/index.less Normal file → Executable file
View File

View File

View File

View File

View File

View File

View File

View File

0
src/components/Layout/Overlay/components/index.js Normal file → Executable file
View File

View File

@ -3,7 +3,7 @@ import * as antd from 'antd'
import * as Icons from 'components/Icons'
import styles from '../../index.less'
import classnames from 'classnames'
import { Swapper } from '../../index.tsx'
import { Swapper } from '../../index.js'
export interface overlay_primary_props {
y?: number;

View File

0
src/components/Layout/Overlay/index.less Normal file → Executable file
View File

0
src/components/Layout/Overlay/reducers.js Normal file → Executable file
View File

0
src/components/Layout/Sider/default/index.js Normal file → Executable file
View File

0
src/components/Layout/Sider/default/index.less Normal file → Executable file
View File

0
src/components/Layout/Sider/mobile/index.js Normal file → Executable file
View File

0
src/components/Layout/Sider/mobile/index.less Normal file → Executable file
View File

0
src/components/Layout/WindowNavbar/index.js Normal file → Executable file
View File

0
src/components/Layout/WindowNavbar/index.less Normal file → Executable file
View File

View File

@ -1,6 +1,6 @@
import Sider from './Sider'
import Control from './ControlBar'
import Overlay from './Overlay/index.tsx'
import WindowNavbar from './WindowNavbar/index.js'
import Overlay from './Overlay'
import WindowNavbar from './WindowNavbar'
export { Sider, Control, Overlay, WindowNavbar }

0
src/components/Page/Page.less Normal file → Executable file
View File

0
src/components/Page/index.js Normal file → Executable file
View File

0
src/core/cores/index.js Normal file → Executable file
View File

2
src/core/cores/interface_helper/index.js Normal file → Executable file
View File

@ -14,7 +14,7 @@
*/
// Reducers & helpers
import { Swapper } from 'components/layout/Overlay/index.tsx'
import { Swapper } from 'components/Layout/Overlay'
import { useSelector } from 'umi';
import { connect } from 'dva';

0
src/core/cores/router/index.js Normal file → Executable file
View File

0
src/core/cores/session/index.js Normal file → Executable file
View File

0
src/core/cores/user/index.js Normal file → Executable file
View File

8
src/core/index.js Normal file → Executable file
View File

@ -28,6 +28,14 @@ export const app_info = {
layout: platform.layout
};
export function isOs(os){
if(process){
return process.platform === os? true : false
}else{
return false
}
}
export function imageToBase64(img, callback){
const reader = new FileReader()
reader.addEventListener('load', () => callback(reader.result))

0
src/core/libs/errorhandler/index.js Normal file → Executable file
View File

0
src/core/libs/index.js Normal file → Executable file
View File

0
src/core/libs/interface/export_data/index.tsx Normal file → Executable file
View File

0
src/core/libs/interface/index.js Normal file → Executable file
View File

0
src/core/libs/interface/modals/modals.js Normal file → Executable file
View File

0
src/core/libs/interface/modals/modals.less Normal file → Executable file
View File

0
src/core/libs/interface/notify/index.js Normal file → Executable file
View File

0
src/core/libs/settings/index.js Normal file → Executable file
View File

0
src/core/libs/style/index.js Normal file → Executable file
View File

0
src/core/libs/v3_model/index.js Normal file → Executable file
View File

0
src/core/libs/verbosity/index.js Normal file → Executable file
View File

0
src/layouts/PublicLayout.less Normal file → Executable file
View File

0
src/pages/debug/antd.js Normal file → Executable file
View File

0
src/pages/debug/api.js Normal file → Executable file
View File

0
src/pages/debug/api.less Normal file → Executable file
View File

0
src/pages/debug/core.js Normal file → Executable file
View File

0
src/pages/debug/index.js Normal file → Executable file
View File

0
src/pages/debug/index.less Normal file → Executable file
View File

0
src/pages/debug/theme.js Normal file → Executable file
View File

0
src/pages/explore/index.js Normal file → Executable file
View File

Some files were not shown because too many files have changed in this diff Show More