Skip to content

Commit 8fcfd21

Browse files
committed
Yarn upgrade, dependency upgrades, added deadhash release notes
1 parent c522784 commit 8fcfd21

File tree

10 files changed

+1874
-1874
lines changed

10 files changed

+1874
-1874
lines changed

.yarn/releases/yarn-3.2.1.cjs

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

.yarn/releases/yarn-3.2.2.cjs

Lines changed: 783 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.1.cjs
3+
yarnPath: .yarn/releases/yarn-3.2.2.cjs

package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -17,30 +17,30 @@
1717
"@emotion/react": "^11.9.3",
1818
"@emotion/styled": "^11.9.3",
1919
"@mui/icons-material": "^5.8.4",
20-
"@mui/material": "^5.8.7",
20+
"@mui/material": "^5.9.1",
2121
"axios": "^0.27.2",
22-
"gatsby": "^4.17.2",
23-
"gatsby-plugin-catch-links": "^4.17.0",
24-
"gatsby-plugin-google-gtag": "^4.17.0",
25-
"gatsby-plugin-image": "^2.17.0",
26-
"gatsby-plugin-react-helmet": "^5.17.0",
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",
2727
"gatsby-plugin-robots-txt": "^1.7.1",
28-
"gatsby-plugin-sharp": "^4.17.0",
29-
"gatsby-plugin-sitemap": "^5.17.0",
30-
"gatsby-remark-images": "^6.17.0",
31-
"gatsby-source-filesystem": "^4.17.0",
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",
3232
"gatsby-theme-material-ui": "^5.2.0",
33-
"gatsby-transformer-remark": "^5.17.0",
34-
"gatsby-transformer-sharp": "^4.17.0",
33+
"gatsby-transformer-remark": "^5.19.0",
34+
"gatsby-transformer-sharp": "^4.19.0",
3535
"react": "^18.2.0",
3636
"react-dom": "^18.2.0",
3737
"react-helmet": "^6.1.0"
3838
},
3939
"devDependencies": {
40-
"eslint": "^8.19.0",
40+
"eslint": "^8.20.0",
4141
"eslint-config-airbnb": "^19.0.4",
4242
"eslint-plugin-import": "^2.26.0",
43-
"eslint-plugin-jsx-a11y": "^6.6.0",
43+
"eslint-plugin-jsx-a11y": "^6.6.1",
4444
"eslint-plugin-react": "^7.30.1",
4545
"eslint-plugin-react-hooks": "^4.6.0"
4646
},
@@ -51,5 +51,5 @@
5151
"bugs": {
5252
"url": "https://github.com/CodeDead/codedead.com/issues"
5353
},
54-
"packageManager": "[email protected].1"
54+
"packageManager": "[email protected].2"
5555
}

src/components/NavigationDrawer/index.jsx

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React, { useContext } from 'react';
22
import Drawer from '@mui/material/Drawer';
33
import List from '@mui/material/List';
4-
import ListItem from '@mui/material/ListItem';
4+
import ListItemButton from '@mui/material/ListItemButton';
55
import ListItemIcon from '@mui/material/ListItemIcon';
66
import ListItemText from '@mui/material/ListItemText';
77
import { useTheme } from '@mui/material/styles';
@@ -15,8 +15,8 @@ import AttachMoneyIcon from '@mui/icons-material/AttachMoney';
1515
import AnnouncementIcon from '@mui/icons-material/Announcement';
1616
import InfoIcon from '@mui/icons-material/Info';
1717
import EmailIcon from '@mui/icons-material/Email';
18+
import Box from '@mui/material/Box';
1819
import { navigate } from 'gatsby';
19-
import { Box } from '@mui/material';
2020
import { MainContext } from '../../contexts/MainContextProvider';
2121

2222
const NavigationDrawer = ({ open, onClose }) => {
@@ -61,48 +61,48 @@ const NavigationDrawer = ({ open, onClose }) => {
6161
>
6262
<Divider />
6363
<List>
64-
<ListItem button onClick={() => navigate('/')} selected={pageIndex === 0}>
64+
<ListItemButton onClick={() => navigate('/')} selected={pageIndex === 0}>
6565
<ListItemIcon><HomeIcon /></ListItemIcon>
6666
<ListItemText>
6767
Home
6868
</ListItemText>
69-
</ListItem>
69+
</ListItemButton>
7070
</List>
7171
<Divider />
7272
<List>
73-
<ListItem button onClick={() => navigate('/software')} selected={pageIndex === 1}>
73+
<ListItemButton onClick={() => navigate('/software')} selected={pageIndex === 1}>
7474
<ListItemIcon><BuildIcon /></ListItemIcon>
7575
<ListItemText>Software</ListItemText>
76-
</ListItem>
76+
</ListItemButton>
7777
</List>
7878
<Divider />
7979
<List>
80-
<ListItem button onClick={() => navigate('/blog')} selected={pageIndex === 2}>
80+
<ListItemButton onClick={() => navigate('/blog')} selected={pageIndex === 2}>
8181
<ListItemIcon><AnnouncementIcon /></ListItemIcon>
8282
<ListItemText>Blog</ListItemText>
83-
</ListItem>
83+
</ListItemButton>
8484
</List>
8585
<Divider />
8686
<List>
87-
<ListItem button onClick={() => navigate('/donate')} selected={pageIndex === 3}>
87+
<ListItemButton onClick={() => navigate('/donate')} selected={pageIndex === 3}>
8888
<ListItemIcon><AttachMoneyIcon /></ListItemIcon>
8989
<ListItemText>Donate</ListItemText>
90-
</ListItem>
91-
<ListItem button onClick={() => navigate('/about')} selected={pageIndex === 4}>
90+
</ListItemButton>
91+
<ListItemButton onClick={() => navigate('/about')} selected={pageIndex === 4}>
9292
<ListItemIcon><InfoIcon /></ListItemIcon>
9393
<ListItemText>About</ListItemText>
94-
</ListItem>
95-
<ListItem button onClick={() => navigate('/privacy')} selected={pageIndex === 5}>
94+
</ListItemButton>
95+
<ListItemButton onClick={() => navigate('/privacy')} selected={pageIndex === 5}>
9696
<ListItemIcon><VisibilityIcon /></ListItemIcon>
9797
<ListItemText>Privacy</ListItemText>
98-
</ListItem>
98+
</ListItemButton>
9999
</List>
100100
<Divider />
101101
<List>
102-
<ListItem button onClick={() => navigate('/contact')} selected={pageIndex === 6}>
102+
<ListItemButton onClick={() => navigate('/contact')} selected={pageIndex === 6}>
103103
<ListItemIcon><EmailIcon /></ListItemIcon>
104104
<ListItemText>Contact</ListItemText>
105-
</ListItem>
105+
</ListItemButton>
106106
</List>
107107
</Box>
108108
</Drawer>
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
path: "/blog/2022/07/23/deadhash-2.2.3"
3+
title: "DeadHash 2.2.3 - Release"
4+
author: "CodeDead"
5+
date: "2022-07-23"
6+
abstract: "DeadHash 2.2.3 has just been released. This release is a maintenance release that contains some bugfixes and optimizations..."
7+
categories: "JavaScript, News"
8+
---
9+
## Information
10+
11+
DeadHash 2.2.3 has just been released. This release is a maintenance release that contains some bugfixes and optimizations.
12+
13+
For a full list of changes, please take a look at the changelog below.
14+
15+
## Changelog
16+
17+
* Yarn upgrade, dependency upgrades by @CodeDead in https://github.com/CodeDead/DeadHash-js/pull/60
18+
* Hotfix/dependencies by @CodeDead in https://github.com/CodeDead/DeadHash-js/pull/61
19+
* Dependency upgrades, Yarn upgrade, removed home page, changed default… by @CodeDead in https://github.com/CodeDead/DeadHash-js/pull/62
20+
* Release/v2.2.3 by @CodeDead in https://github.com/CodeDead/DeadHash-js/pull/63
21+
22+
23+
**Full Changelog**: https://github.com/CodeDead/DeadHash-js/compare/v2.2.2...v2.2.3
24+
25+
## Download
26+
27+
You can download the latest version of DeadHash by clicking on the following link:
28+
[DeadHash](https://codedead.com/software/deadhash)
29+
30+
## Other
31+
32+
Feel free to [contact us](/contact) if you have any questions or if you need help.

src/pages/index.jsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,14 +160,13 @@ const Home = () => {
160160
/>
161161
</Link>
162162
</Grid>
163-
164163
<Grid item xs={12} md={6} lg={6}>
165164
<Typography variant="h6" color="textPrimary" paragraph>
166165
Opal
167166
</Typography>
168167
<Typography color="textSecondary" paragraph>
169168
A free and open source music player that will help you relax. Opal has
170-
17 sounds available that will help you relax. It runs on Windows and Linux.
169+
20+ sounds available that will help you relax. It runs on Windows and Linux.
171170
</Typography>
172171
</Grid>
173172
</Grid>

src/pages/software/deadhash/index.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ const DeadHashPage = () => {
174174
style={{ width: '100%' }}
175175
variant="contained"
176176
color="primary"
177-
href="https://codedead.com/Software/DeadHash/DeadHash%20Setup%202.2.2.exe"
177+
href="https://codedead.com/Software/DeadHash/DeadHash%20Setup%202.2.3.exe"
178178
>
179179
Installer
180180
</Button>
@@ -185,7 +185,7 @@ const DeadHashPage = () => {
185185
}}
186186
variant="contained"
187187
color="primary"
188-
href="https://codedead.com/Software/DeadHash/DeadHash%202.2.2.exe"
188+
href="https://codedead.com/Software/DeadHash/DeadHash%202.2.3.exe"
189189
>
190190
Portable
191191
</Button>
@@ -198,7 +198,7 @@ const DeadHashPage = () => {
198198
style={{ width: '100%' }}
199199
variant="contained"
200200
color="primary"
201-
href="https://codedead.com/Software/DeadHash/DeadHash-2.2.2.AppImage"
201+
href="https://codedead.com/Software/DeadHash/DeadHash-2.2.3.AppImage"
202202
>
203203
AppImage
204204
</Button>

src/pages/software/deadhash/requirements/index.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ const Requirements = () => {
9797
style={{ width: '100%' }}
9898
variant="contained"
9999
color="primary"
100-
href="https://www.virustotal.com/gui/file/7ab206eaf0e81cdcd36ed0230363f1f562219b56d6278f622635aebbaad9c445?nocache=1"
100+
href="https://www.virustotal.com/gui/file/f827527afe4c398518404ac782b3038aa7721642272d298a9e4f8b23f586d5d0?nocache=1"
101101
target="_blank"
102102
>
103103
Installer
@@ -106,7 +106,7 @@ const Requirements = () => {
106106
style={{ width: '100%', marginTop: 10 }}
107107
variant="contained"
108108
color="primary"
109-
href="https://www.virustotal.com/gui/file/97cc1c469dcf1924e7e8f53c0e3d552219673befef64f102a072b04523ded07d?nocache=1"
109+
href="https://www.virustotal.com/gui/file/7699b53825075198bd440eeb771a71aede2cb837874a08f97788831e84389369?nocache=1"
110110
target="_blank"
111111
>
112112
Portable
@@ -120,7 +120,7 @@ const Requirements = () => {
120120
style={{ width: '100%' }}
121121
variant="contained"
122122
color="primary"
123-
href="https://www.virustotal.com/gui/file/55da6a548f2696270c489c6e15fbe504571a0117c66392f695d2263ccadaa6d3?nocache=1"
123+
href="https://www.virustotal.com/gui/file/d4080228e08a727d2145d443aec8b339b7f2088e35844f15690f3bc7714eea4e?nocache=1"
124124
target="_blank"
125125
>
126126
AppImage

0 commit comments

Comments
 (0)