Skip to content

Commit

Permalink
Merge pull request #2 from feasterjon/1.0.1
Browse files Browse the repository at this point in the history
v1.0.1
  • Loading branch information
feasterjon authored Mar 26, 2024
2 parents 8ce2e93 + d7896c7 commit c55a0aa
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 10 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@

- In Progress

## 1.0.1 - 2024-03-26

### Changed

- Replaced System theme icon "computer-desktop" with "circle-half-stroke"

## 1.0.0 - 2024-03-22

- Initial Release
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rpncalc",
"version": "1.0.0",
"version": "1.0.1",
"private": true,
"homepage": "http://feasterjon.github.io/rpncalc/",
"dependencies": {
Expand Down
12 changes: 6 additions & 6 deletions src/components/Elements/Icon/Icon.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ export function Icon({ id, styles = 'h-6 w-6' }) {
<path strokeLinecap="round" strokeLinejoin="round" d="m4.5 15.75 7.5-7.5 7.5 7.5" />
</svg>
)
case 'circle-half-stroke':
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24" strokeWidth={1.5} className={styles}>
<path d="m 12,2.82353 c -5.06235,0 -9.17647,4.11412 -9.17647,9.17647 0,5.062351 4.11412,9.176471 9.17647,9.176471 5.06235,0 9.17647,-4.11412 9.17647,-9.176471 0,-5.06235 -4.11412,-9.17647 -9.17647,-9.17647 z m 0,16.823531 V 4.35294 c 4.21353,0 7.64706,3.43353 7.64706,7.64706 0,4.213531 -3.43353,7.647061 -7.64706,7.647061 z" />
</svg>
)
case 'clipboard':
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" strokeWidth={1.5} stroke="currentColor" className={styles}>
Expand All @@ -36,12 +42,6 @@ export function Icon({ id, styles = 'h-6 w-6' }) {
<path strokeLinecap="round" strokeLinejoin="round" d="M12 6v6h4.5m4.5 0a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z" />
</svg>
)
case 'computer-desktop':
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" strokeWidth={1.5} stroke="currentColor" className={styles}>
<path strokeLinecap="round" strokeLinejoin="round" d="M9 17.25v1.007a3 3 0 0 1-.879 2.122L7.5 21h9l-.621-.621A3 3 0 0 1 15 18.257V17.25m6-12V15a2.25 2.25 0 0 1-2.25 2.25H5.25A2.25 2.25 0 0 1 3 15V5.25m18 0A2.25 2.25 0 0 0 18.75 3H5.25A2.25 2.25 0 0 0 3 5.25m18 0V12a2.25 2.25 0 0 1-2.25 2.25H5.25A2.25 2.25 0 0 1 3 12V5.25" />
</svg>
)
case 'corner-down-left':
return (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" strokeWidth={3} stroke="currentColor" strokeLinecap="round" strokeLinejoin="round" className={styles}>
Expand Down
2 changes: 1 addition & 1 deletion src/config/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ export const CONFIG = {
},
themes: [
{
icon: 'computer-desktop',
icon: 'circle-half-stroke',
id: 1,
label: 'System',
name: "os-default"
Expand Down

0 comments on commit c55a0aa

Please sign in to comment.