Skip to content

Commit 5f55f42

Browse files
authored
Merge pull request #20 from CodeDead/release/v1.0.4
Release/v1.0.4
2 parents 8fcfd21 + 6bd1cf7 commit 5f55f42

File tree

43 files changed

+4170
-5487
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+4170
-5487
lines changed

.yarn/releases/yarn-3.2.2.cjs

Lines changed: 0 additions & 783 deletions
This file was deleted.

.yarn/releases/yarn-3.3.1.cjs

Lines changed: 823 additions & 0 deletions
Large diffs are not rendered by default.

.yarnrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
nodeLinker: node-modules
22

3-
yarnPath: .yarn/releases/yarn-3.2.2.cjs
3+
yarnPath: .yarn/releases/yarn-3.3.1.cjs

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ yarn build
2525

2626
This website is maintained by [CodeDead](https://codedead.com).
2727

28-
Copyright © 2022 CodeDead
28+
Copyright © 2023 CodeDead

gatsby-config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ const path = require('path');
77

88
module.exports = {
99
polyfill: false,
10+
trailingSlash: 'ignore',
1011
siteMetadata: {
1112
title: 'CodeDead',
1213
description: 'Solving problems using code',
@@ -35,6 +36,8 @@ module.exports = {
3536
{
3637
resolve: 'gatsby-transformer-remark',
3738
options: {
39+
footnotes: true,
40+
gfm: true,
3841
plugins: [
3942
{
4043
resolve: 'gatsby-remark-images',

package.json

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "codedead.com",
33
"private": true,
44
"description": "CodeDead Website",
5-
"version": "1.0.3",
5+
"version": "1.0.4",
66
"license": "0BSD",
77
"scripts": {
88
"build": "gatsby build",
@@ -14,34 +14,34 @@
1414
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
1515
},
1616
"dependencies": {
17-
"@emotion/react": "^11.9.3",
18-
"@emotion/styled": "^11.9.3",
19-
"@mui/icons-material": "^5.8.4",
20-
"@mui/material": "^5.9.1",
21-
"axios": "^0.27.2",
22-
"gatsby": "^4.19.2",
23-
"gatsby-plugin-catch-links": "^4.19.0",
24-
"gatsby-plugin-google-gtag": "^4.19.0",
25-
"gatsby-plugin-image": "^2.19.0",
26-
"gatsby-plugin-react-helmet": "^5.19.0",
27-
"gatsby-plugin-robots-txt": "^1.7.1",
28-
"gatsby-plugin-sharp": "^4.19.0",
29-
"gatsby-plugin-sitemap": "^5.19.0",
30-
"gatsby-remark-images": "^6.19.0",
31-
"gatsby-source-filesystem": "^4.19.0",
32-
"gatsby-theme-material-ui": "^5.2.0",
33-
"gatsby-transformer-remark": "^5.19.0",
34-
"gatsby-transformer-sharp": "^4.19.0",
17+
"@emotion/react": "^11.10.5",
18+
"@emotion/styled": "^11.10.5",
19+
"@mui/icons-material": "^5.11.0",
20+
"@mui/material": "^5.11.7",
21+
"axios": "^1.2.6",
22+
"gatsby": "^5.5.0",
23+
"gatsby-plugin-catch-links": "^5.5.0",
24+
"gatsby-plugin-google-gtag": "^5.5.0",
25+
"gatsby-plugin-image": "^3.5.0",
26+
"gatsby-plugin-react-helmet": "^6.5.0",
27+
"gatsby-plugin-robots-txt": "^1.8.0",
28+
"gatsby-plugin-sharp": "^5.5.0",
29+
"gatsby-plugin-sitemap": "^6.5.0",
30+
"gatsby-remark-images": "^7.5.0",
31+
"gatsby-source-filesystem": "^5.5.0",
32+
"gatsby-theme-material-ui": "^5.3.0",
33+
"gatsby-transformer-remark": "^6.5.0",
34+
"gatsby-transformer-sharp": "^5.5.0",
3535
"react": "^18.2.0",
3636
"react-dom": "^18.2.0",
3737
"react-helmet": "^6.1.0"
3838
},
3939
"devDependencies": {
40-
"eslint": "^8.20.0",
40+
"eslint": "^8.33.0",
4141
"eslint-config-airbnb": "^19.0.4",
42-
"eslint-plugin-import": "^2.26.0",
43-
"eslint-plugin-jsx-a11y": "^6.6.1",
44-
"eslint-plugin-react": "^7.30.1",
42+
"eslint-plugin-import": "^2.27.5",
43+
"eslint-plugin-jsx-a11y": "^6.7.1",
44+
"eslint-plugin-react": "^7.32.2",
4545
"eslint-plugin-react-hooks": "^4.6.0"
4646
},
4747
"repository": {
@@ -51,5 +51,5 @@
5151
"bugs": {
5252
"url": "https://github.com/CodeDead/codedead.com/issues"
5353
},
54-
"packageManager": "yarn@3.2.2"
54+
"packageManager": "yarn@3.3.1"
5555
}

src/components/AlertDialog/index.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import React, { useState } from 'react';
22
import DialogTitle from '@mui/material/DialogTitle';
33
import DialogContent from '@mui/material/DialogContent';
4-
import DialogContentText from '@mui/material/DialogContentText';
54
import DialogActions from '@mui/material/DialogActions';
65
import Button from '@mui/material/Button';
76
import Dialog from '@mui/material/Dialog';

src/images/Advanced PassGen/ap.png

29.8 KB
Loading
27.5 KB
Loading
34.6 KB
Loading

0 commit comments

Comments
 (0)