Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"@emotion/styled": "^11.3.0",
"@mui/icons-material": "^5.0.1",
"@mui/material": "^5.0.2",
"axios": "^0.21.4",
"axios": "^0.22.0",
"gatsby": "^3.14.1",
"gatsby-plugin-catch-links": "^3.14.0",
"gatsby-plugin-google-gtag": "^3.14.0",
Expand Down
Binary file added src/images/Opal/Opal.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/images/Opal/opal_settings.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/images/Opal/opal_timer.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
29 changes: 29 additions & 0 deletions src/markdown/blog/2021/10/03/opal-1.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
path: "/blog/2021/10/03/opal-1.0"
title: "Opal 1.0 - Release"
author: "CodeDead"
date: "2021-10-03"
abstract: "It's been a while since we released something new, but after lots of testing and development cycles, please welcome Opal into our software catalog..."
categories: "Java, News"
---
## Information

![Opal](https://i.imgur.com/tNBWTPS.png)

It's been a while since we released something new, but after lots of testing and development cycles, please welcome Opal into our software catalog!

Opal is an application that is written in Java and uses JavaFX to display the user-interface and it is designed to play relaxing music for Windows, Linux and macOS users.
For the initial release, you have access to 14 sounds, that you can play for however long you like.

As always, Opal is a free and open-source application; meaning you don't have to pay us a single cent to download, run and use Opal.

We hope you enjoy using Opal!

## Download

You can download the latest version of Opal by clicking on the following link:
[Opal](https://codedead.com/software/opal)

## Other

Feel free to [contact us](/contact) if you have any questions or if you need help.
16 changes: 8 additions & 8 deletions src/pages/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ const Home = () => {
gatsbyImageData(layout: FULL_WIDTH)
}
},
pkfinder: file(relativePath: { eq: "PK Finder/pkfinder.png" }) {
opal: file(relativePath: { eq: "Opal/Opal.png" }) {
childImageSharp {
gatsbyImageData(layout: FULL_WIDTH)
}
}
}
}`);

const [, dispatch] = useContext(MainContext);
Expand Down Expand Up @@ -145,15 +145,15 @@ const Home = () => {
<Grid item xs={12} md={12} lg={12}>
<Card>
<CardActionArea
onClick={() => navigate('/software/pk-finder')}
onClick={() => navigate('/software/opal')}
>
<CardContent>
<Grid container spacing={2}>
<Grid item xs={12} md={6} lg={6}>
<Link to="/software/pk-finder">
<Link to="/software/opal">
<GatsbyImage
image={{
...data.pkfinder.childImageSharp.gatsbyImageData,
...data.opal.childImageSharp.gatsbyImageData,
aspectRatio: 21 / 9,
}}
alt="PK Finder"
Expand All @@ -163,11 +163,11 @@ const Home = () => {

<Grid item xs={12} md={6} lg={6}>
<Typography variant="h6" color="textPrimary" paragraph>
PK Finder
Opal
</Typography>
<Typography color="textSecondary" paragraph>
Easily recover your Windows Product Key with PK Finder. As soon as you open
PK Finder, you’ll be able to view your product key.
A free and open source music player that will help you relax. Opal has
14 sounds available that will help you relax. It runs on Windows and Linux.
</Typography>
</Grid>
</Grid>
Expand Down
53 changes: 36 additions & 17 deletions src/pages/software/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,11 @@ const Software = () => {
gatsbyImageData(layout: CONSTRAINED, height: 160)
}
},
opal: file(relativePath: { eq: "Opal/Opal.png" }) {
childImageSharp {
gatsbyImageData(layout: CONSTRAINED, height: 160)
}
},
egld: file(relativePath: { eq: "Elrond/egld.png" }) {
childImageSharp {
gatsbyImageData(layout: CONSTRAINED, height: 160)
Expand Down Expand Up @@ -123,6 +128,12 @@ const Software = () => {
description: 'A simple and easy to use price calculator for Elrond (EGLD).',
tags: ['egld', 'elrond', 'currency', 'Crypto'],
image: imageData.egld.childImageSharp.gatsbyImageData,
}, {
name: 'Opal',
url: '/software/opal',
description: 'Opal is a free and open source music player that will help you relax. It runs on Windows and Linux.',
tags: ['Opal', 'music', 'relax', 'sound', 'relaxation', 'relaxing', 'linux'],
image: imageData.opal.childImageSharp.gatsbyImageData,
}];

useEffect(() => {
Expand Down Expand Up @@ -191,7 +202,7 @@ const Software = () => {

{/* eslint-disable-next-line no-nested-ternary */}
{searchResult && searchResult.length > 0 ? (
<Grid container spacing={2}>
<Grid container spacing={2} style={{ marginTop: 10 }}>
{searchResult}
</Grid>
) : searchValue && searchValue.length > 0 ? (
Expand Down Expand Up @@ -228,6 +239,14 @@ const Software = () => {
image={applications.filter((item) => item.name === 'Advanced PassGen')[0].image}
/>
</Grid>
<Grid item xs={12} md={3} lg={4}>
<Application
name={applications.filter((item) => item.name === 'Advanced PortChecker')[0].name}
description={applications.filter((item) => item.name === 'Advanced PortChecker')[0].description}
url={applications.filter((item) => item.name === 'Advanced PortChecker')[0].url}
image={applications.filter((item) => item.name === 'Advanced PortChecker')[0].image}
/>
</Grid>
</Grid>
)}

Expand Down Expand Up @@ -270,6 +289,14 @@ const Software = () => {
image={applications.filter((item) => item.name === 'PK Finder')[0].image}
/>
</Grid>
<Grid item xs={12} md={3} lg={4}>
<Application
name={applications.filter((item) => item.name === 'DeadLock')[0].name}
description={applications.filter((item) => item.name === 'DeadLock')[0].description}
url={applications.filter((item) => item.name === 'DeadLock')[0].url}
image={applications.filter((item) => item.name === 'DeadLock')[0].image}
/>
</Grid>
</Grid>
)}

Expand All @@ -294,18 +321,18 @@ const Software = () => {
<Grid container spacing={2} style={{ marginTop: 10 }}>
<Grid item xs={12} md={3} lg={4}>
<Application
name={applications.filter((item) => item.name === 'Advanced PortChecker')[0].name}
description={applications.filter((item) => item.name === 'Advanced PortChecker')[0].description}
url={applications.filter((item) => item.name === 'Advanced PortChecker')[0].url}
image={applications.filter((item) => item.name === 'Advanced PortChecker')[0].image}
name={applications.filter((item) => item.name === 'Opal')[0].name}
description={applications.filter((item) => item.name === 'Opal')[0].description}
url={applications.filter((item) => item.name === 'Opal')[0].url}
image={applications.filter((item) => item.name === 'Opal')[0].image}
/>
</Grid>
<Grid item xs={12} md={3} lg={4}>
<Application
name={applications.filter((item) => item.name === 'DeadLock')[0].name}
description={applications.filter((item) => item.name === 'DeadLock')[0].description}
url={applications.filter((item) => item.name === 'DeadLock')[0].url}
image={applications.filter((item) => item.name === 'DeadLock')[0].image}
name={applications.filter((item) => item.name === 'AniView')[0].name}
description={applications.filter((item) => item.name === 'AniView')[0].description}
url={applications.filter((item) => item.name === 'AniView')[0].url}
image={applications.filter((item) => item.name === 'AniView')[0].image}
/>
</Grid>
<Grid item xs={12} md={3} lg={4}>
Expand All @@ -316,14 +343,6 @@ const Software = () => {
image={applications.filter((item) => item.name === 'DeadPix')[0].image}
/>
</Grid>
<Grid item xs={12} md={3} lg={4}>
<Application
name={applications.filter((item) => item.name === 'AniView')[0].name}
description={applications.filter((item) => item.name === 'AniView')[0].description}
url={applications.filter((item) => item.name === 'AniView')[0].url}
image={applications.filter((item) => item.name === 'AniView')[0].image}
/>
</Grid>
<Grid item xs={12} md={3} lg={4}>
<Application
name={applications.filter((item) => item.name === 'EGLD Price Calculator')[0].name}
Expand Down
Loading