Skip to content

Commit f67a003

Browse files
committed
feat: yarn upgrade, dependency upgrades, added opal release notes
1 parent 1834a8b commit f67a003

8 files changed

Lines changed: 6148 additions & 6036 deletions

File tree

.yarn/releases/yarn-3.6.4.cjs

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

.yarn/releases/yarn-4.0.0.cjs

Lines changed: 893 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.6.4.cjs
3+
yarnPath: .yarn/releases/yarn-4.0.0.cjs

package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -17,30 +17,30 @@
1717
"dependencies": {
1818
"@emotion/react": "^11.11.1",
1919
"@emotion/styled": "^11.11.0",
20-
"@mui/icons-material": "^5.14.12",
21-
"@mui/material": "^5.14.12",
20+
"@mui/icons-material": "^5.14.15",
21+
"@mui/material": "^5.14.15",
2222
"axios": "^1.5.1",
23-
"gatsby": "^5.12.5",
23+
"gatsby": "^5.12.8",
2424
"gatsby-plugin-catch-links": "^5.12.0",
25-
"gatsby-plugin-google-gtag": "^5.12.0",
26-
"gatsby-plugin-image": "^3.12.0",
25+
"gatsby-plugin-google-gtag": "^5.12.2",
26+
"gatsby-plugin-image": "^3.12.2",
2727
"gatsby-plugin-react-helmet": "^6.12.0",
2828
"gatsby-plugin-robots-txt": "^1.8.0",
29-
"gatsby-plugin-sharp": "^5.12.0",
30-
"gatsby-plugin-sitemap": "^6.12.0",
31-
"gatsby-remark-images": "^7.12.0",
29+
"gatsby-plugin-sharp": "^5.12.2",
30+
"gatsby-plugin-sitemap": "^6.12.2",
31+
"gatsby-remark-images": "^7.12.2",
3232
"gatsby-source-filesystem": "^5.12.0",
3333
"gatsby-theme-material-ui": "^5.3.0",
34-
"gatsby-transformer-remark": "^6.12.0",
35-
"gatsby-transformer-sharp": "^5.12.0",
34+
"gatsby-transformer-remark": "^6.12.2",
35+
"gatsby-transformer-sharp": "^5.12.2",
3636
"react": "^18.2.0",
3737
"react-dom": "^18.2.0",
3838
"react-helmet": "^6.1.0"
3939
},
4040
"devDependencies": {
41-
"eslint": "^8.51.0",
41+
"eslint": "^8.52.0",
4242
"eslint-config-airbnb": "^19.0.4",
43-
"eslint-plugin-import": "^2.28.1",
43+
"eslint-plugin-import": "^2.29.0",
4444
"eslint-plugin-jsx-a11y": "^6.7.1",
4545
"eslint-plugin-react": "^7.33.2",
4646
"eslint-plugin-react-hooks": "^4.6.0"
@@ -52,5 +52,5 @@
5252
"bugs": {
5353
"url": "https://github.com/CodeDead/codedead.com/issues"
5454
},
55-
"packageManager": "yarn@3.6.4"
55+
"packageManager": "yarn@4.0.0"
5656
}
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
path: "/blog/2023/10/25/opal-1.3.0"
3+
title: "Opal 1.3.0 - Release"
4+
author: "CodeDead"
5+
date: "2023-10-25"
6+
abstract: "Opal v1.3.0 has just been released! We've added a couple of requested features, like the ability to play / pause all..."
7+
categories: "Java, News, Opal"
8+
---
9+
## Information
10+
11+
![Opal](https://i.imgur.com/UAxfclq.png)
12+
13+
Opal v1.3.0 has just been released! We've added a couple of requested features, like the ability to play / pause all sounds with a single button.
14+
In addition, two new sounds have been added.
15+
16+
For a full list of changes, please see the changelog below.
17+
18+
## What's Changed
19+
* Gradle upgrade by @CodeDead in https://github.com/CodeDead/opal/pull/106
20+
* feat: Javafx upgrade, dependency upgrade, Gradle upgrade by @CodeDead in https://github.com/CodeDead/opal/pull/109
21+
* feat: added metronome sounds by @CodeDead in https://github.com/CodeDead/opal/pull/110
22+
* feat: jdk upgrade, replaced deprecated gradle methods, replaced depre… by @CodeDead in https://github.com/CodeDead/opal/pull/112
23+
* feat: added a play / pause shortcut by @CodeDead in https://github.com/CodeDead/opal/pull/113
24+
* feat: dependency upgrades, performance improvement by @CodeDead in https://github.com/CodeDead/opal/pull/114
25+
* Release/v1.3.0 by @CodeDead in https://github.com/CodeDead/opal/pull/115
26+
27+
28+
**Full Changelog**: https://github.com/CodeDead/opal/compare/v1.2.0...v1.3.0
29+
30+
## Download
31+
32+
You can download the latest version of Opal by clicking on the following link:
33+
[Opal](https://codedead.com/software/opal)
34+
35+
## Other
36+
37+
Feel free to [contact us](/contact) if you have any questions or if you need help.

src/pages/software/opal/index.jsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ const OpalPage = () => {
178178
variant="contained"
179179
color="primary"
180180
onClick={() => {
181-
openLink('https://codedead.com/Software/Opal/Opal-1.2.0.msi');
181+
openLink('https://codedead.com/Software/Opal/Opal-1.3.0.msi');
182182
setDonateOpen(true);
183183
}}
184184
>
@@ -190,7 +190,7 @@ const OpalPage = () => {
190190
variant="contained"
191191
color="primary"
192192
onClick={() => {
193-
openLink('https://codedead.com/Software/Opal/Opal-win-portable-1.2.0.zip');
193+
openLink('https://codedead.com/Software/Opal/Opal-win-portable-1.3.0.zip');
194194
setDonateOpen(true);
195195
}}
196196
>
@@ -206,7 +206,7 @@ const OpalPage = () => {
206206
variant="contained"
207207
color="primary"
208208
onClick={() => {
209-
openLink('https://codedead.com/Software/Opal/Opal-1.2.0.dmg');
209+
openLink('https://codedead.com/Software/Opal/Opal-1.3.0.dmg');
210210
setDonateOpen(true);
211211
}}
212212
>
@@ -222,7 +222,7 @@ const OpalPage = () => {
222222
variant="contained"
223223
color="primary"
224224
onClick={() => {
225-
openLink('https://codedead.com/Software/Opal/Opal-x86_64-1.2.0.AppImage');
225+
openLink('https://codedead.com/Software/Opal/Opal-x86_64-1.3.0.AppImage');
226226
setDonateOpen(true);
227227
}}
228228
>

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ const Requirements = () => {
9494
<Button
9595
fullWidth
9696
variant="contained"
97-
href="https://www.virustotal.com/gui/file/718c7db088e4509d7b599b5819012e74f4c5513f6a1edacac89b361f50113167?nocache=1"
97+
href="https://www.virustotal.com/gui/file/b37fc6efb5754aa3dcf287d273d9126e04c3db7946b6c63c1663c4e04355ecf5?nocache=1"
9898
target="_blank"
9999
>
100100
Installer
@@ -103,7 +103,7 @@ const Requirements = () => {
103103
style={{ marginTop: 10 }}
104104
variant="contained"
105105
fullWidth
106-
href="https://www.virustotal.com/gui/file/70c24d16f15253a359dd5484e82d027f21cf1e25f87c53ccf29fd97120ec6b68?nocache=1"
106+
href="https://www.virustotal.com/gui/file/39454e8c0fa64e31d2b862220ceba817d981b67d6b72ac1184fb7538faffcd42?nocache=1"
107107
target="_blank"
108108
>
109109
Portable
@@ -116,7 +116,7 @@ const Requirements = () => {
116116
<Button
117117
fullWidth
118118
variant="contained"
119-
href="https://www.virustotal.com/gui/file/250be03d66ba4588ade51e66033942ca9a54ac71f8b3dda7245932388e0d0492?nocache=1"
119+
href="https://www.virustotal.com/gui/file/1eb5b7c5bb45569794b3fae533400755961e9cd344e47b2d557cdaf64e43918b?nocache=1"
120120
target="_blank"
121121
>
122122
dmg
@@ -129,7 +129,7 @@ const Requirements = () => {
129129
<Button
130130
fullWidth
131131
variant="contained"
132-
href="https://www.virustotal.com/gui/file/72015b4031e34cf47cbce202094f058506025836e1e25c1c2226e58642f77417?nocache=1"
132+
href="https://www.virustotal.com/gui/file/4f5fb19cf085c3f160f373100c89a4ff67dc1bff5b270db852df115b658328ef?nocache=1"
133133
target="_blank"
134134
>
135135
AppImage

0 commit comments

Comments
 (0)