diff --git a/README.md b/README.md index 97be9991..803d76e6 100644 --- a/README.md +++ b/README.md @@ -51,6 +51,14 @@ I try to do what I can, but if you found the app helpful, or you're in a better #### https://www.buymeacoffee.com/AmruthPillai +### Changelog + +#### 17th July 2020 + +- Some Bugfixes +- Added Kannaded Translation +- Update to v2.0.0 + ### Appreciation Thank you to everyone who made this project possible, including the many users who voiced their opinions, created issues and PRs to the original Reactive Resume project, and helped me along the way to make this a reality. diff --git a/firebase.json b/firebase.json index 3207ddc6..4b2cb1ae 100644 --- a/firebase.json +++ b/firebase.json @@ -40,15 +40,6 @@ "value": "cache-control: public, max-age=86400, must-revalidate" } ] - }, - { - "source": "page-data/**", - "headers": [ - { - "key": "cache-control", - "value": "cache-control: public, max-age=86400, must-revalidate" - } - ] } ] } diff --git a/gatsby-config.js b/gatsby-config.js index 84672dab..a38b8ce7 100644 --- a/gatsby-config.js +++ b/gatsby-config.js @@ -5,6 +5,7 @@ module.exports = { title: 'Reactive Resume', siteUrl: 'https://rxresu.me', description: 'A free and open source resume builder.', + version: '2.0.0', }, plugins: [ 'gatsby-plugin-react-helmet', diff --git a/src/components/builder/center/Artboard.module.css b/src/components/builder/center/Artboard.module.css index d6516ac7..045ab997 100644 --- a/src/components/builder/center/Artboard.module.css +++ b/src/components/builder/center/Artboard.module.css @@ -5,7 +5,7 @@ zoom: 0.5; overflow: scroll; box-shadow: var(--shadow); - @apply my-16 rounded; + @apply my-16 bg-white rounded; } } diff --git a/src/components/builder/right/sections/About.js b/src/components/builder/right/sections/About.js index 796f565f..78ce9102 100644 --- a/src/components/builder/right/sections/About.js +++ b/src/components/builder/right/sections/About.js @@ -2,6 +2,7 @@ import React, { memo } from 'react'; import { FaCoffee, FaBug, FaExternalLinkAlt } from 'react-icons/fa'; import { MdCode } from 'react-icons/md'; import { Trans, useTranslation } from 'react-i18next'; +import { useStaticQuery, graphql } from 'gatsby'; import Button from '../../../shared/Button'; import Heading from '../../../shared/Heading'; import styles from './About.module.css'; @@ -9,6 +10,16 @@ import styles from './About.module.css'; const About = ({ id }) => { const { t } = useTranslation(); + const { site } = useStaticQuery(graphql` + query { + site { + siteMetadata { + version + } + } + } + `); + return (
@@ -79,13 +90,15 @@ const About = ({ id }) => { -
+
A B + + v{site.siteMetadata.version}
); diff --git a/src/components/builder/right/sections/Settings.js b/src/components/builder/right/sections/Settings.js index 1bfe4d5e..bf18ae3b 100644 --- a/src/components/builder/right/sections/Settings.js +++ b/src/components/builder/right/sections/Settings.js @@ -80,7 +80,7 @@ const Settings = ({ id }) => { A