diff --git a/src/components/modals/main/scss/index.scss b/src/components/modals/main/scss/index.scss index 88d56edc..d2bae84b 100644 --- a/src/components/modals/main/scss/index.scss +++ b/src/components/modals/main/scss/index.scss @@ -367,6 +367,12 @@ li { } } +.aboutLogo { + height: 100px; + width: auto; + margin-left: -15px; +} + .MuiFormControl-root { margin-top: 10px !important; } diff --git a/src/components/modals/main/settings/sections/About.jsx b/src/components/modals/main/settings/sections/About.jsx index eb5c91be..f9889ba9 100644 --- a/src/components/modals/main/settings/sections/About.jsx +++ b/src/components/modals/main/settings/sections/About.jsx @@ -4,6 +4,8 @@ import Tooltip from '../../../../helpers/tooltip/Tooltip'; import EmailIcon from '@material-ui/icons/Email'; import TwitterIcon from '@material-ui/icons/Twitter'; import ForumIcon from '@material-ui/icons/Forum'; +import InstagramIcon from '@material-ui/icons/Instagram'; +import FacebookIcon from '@material-ui/icons/Facebook'; const other_contributors = require('../../../../../modules/other_contributors.json'); @@ -84,23 +86,24 @@ export default class About extends React.PureComponent { return ( <>
{this.language.copyright} 2018-{new Date().getFullYear()} Mue Tab (BSD-3 License)
{this.language.version.title} {window.constants.VERSION} ({this.state.update})
GitHub Sponsors • Ko-Fi • Patreon
Pexels ({this.language.resources_used.bg_images})
-Unsplash ({this.language.resources_used.bg_images})
-Google ({this.language.resources_used.pin_icon})
-Undraw ({this.language.resources_used.welcome_img})
+Pexels, Unsplash ({this.language.resources_used.bg_images})
+Google Fonts ({this.language.resources_used.pin_icon})
+Undraw ({this.language.resources_used.welcome_img})
{this.state.loading}
diff --git a/src/components/widgets/background/PhotoInformation.jsx b/src/components/widgets/background/PhotoInformation.jsx index 4ff3a74b..0ce7e725 100644 --- a/src/components/widgets/background/PhotoInformation.jsx +++ b/src/components/widgets/background/PhotoInformation.jsx @@ -37,11 +37,11 @@ export default function PhotoInformation(props) { // unsplash and pexels credit if (props.info.photographerURL && props.info.photographerURL !== '' && !props.info.offline && props.api) { - photo = {language.credit}; - if (props.api === 'unsplash') { + photo = {language.credit}; credit = <>{photographer} {language.unsplash}>; } else { + photo = {language.credit}; credit = <>{photographer} {language.pexels}>; } } diff --git a/src/modules/constants.js b/src/modules/constants.js index 938dc79c..090fedbf 100644 --- a/src/modules/constants.js +++ b/src/modules/constants.js @@ -11,4 +11,4 @@ export const FEEDBACK_FORM = 'https://api.formcake.com/api/form/349b56cb-7e2b-40 export const DDG_PROXY = 'https://external-content.duckduckgo.com/iu/?u='; export const OFFLINE_IMAGES = 20; export const BETA_VERSION = false; -export const VERSION = '5.0.0'; +export const VERSION = '5.0.1';