Skip to content

Commit 9858380

Browse files
LuzkanGitVersioniser
authored andcommitted
[1.0.22] πŸ“Β²πŸ”¨ Added links to Springer. (#15)
πŸ“ Added missing links in README.md πŸ“ Added link to Springer Paper πŸ”¨ Added link to Springer Paper in footer and header Change: Added link to Springer Paper in footer and header #patch
1 parent 145a554 commit 9858380

File tree

5 files changed

+28
-7
lines changed

5 files changed

+28
-7
lines changed

β€ŽREADME.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@
33
<h2 align="center">Bad Code Smells</h2>
44
<div>
55
<p style="font-style: italic;">A Comprehensive Online Catalog</p>
6-
<strong><a href="https://luzkan.github.io/smells/">Visit the Website</a></strong> Β· <strong><a href="https://github.com/Luzkan/smells/tree/main/docs/paper.pdf">Checkout the Paper</a></strong> Β· <strong><a href="https://github.com/Luzkan/smells/tree/main/docs/thesis.pdf">Checkout the Thesis</a></strong>
6+
<strong><a href="https://luzkan.github.io/smells/">Visit the Website</a></strong> Β· <strong><a href="https://github.com/Luzkan/smells/tree/main/docs/paper.pdf">Preprint</a></strong> Β· <strong><a href="https://link.springer.com/chapter/10.1007/978-3-031-25695-0_24">Springer Paper</a></strong> Β· <strong><a href="https://github.com/Luzkan/smells/tree/main/docs/thesis.pdf">The Thesis</a></strong>
77
</div>
88
</div>
99

1010
# Table of Contents
1111

1212
1. [What's this?](#whats-this)
1313
2. [How can I use this?](#how-can-i-use-this)
14-
- Knowledge Browsing
15-
- Data Extraction
14+
- [Knowledge Browsing](#website)
15+
- [Data Extraction](#data)
1616
3. [Who is the beneficent?](#who-is-the-beneficent)
1717
- [New Programmers](#new-programmers)
1818
- [Developers](#developers)

β€Ždocs/CHANGELOG.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,28 @@ All notable changes to this project will be documented in this file.
66

77
---
88

9+
## [[`1.0.22`]] - 2023-03-28
10+
11+
### Documentation
12+
13+
- Added missing links in README.md
14+
- Added link to Springer Paper
15+
16+
### Changed
17+
18+
- Added link to Springer Paper in footer and header
19+
20+
21+
922
## [[`1.0.21`]] - 2022-09-02
1023

1124
### Typo
1225

13-
- Added missing double underscore in `__getitem__` in Clever Code
26+
- Added missing double underscore in `__getitem__` in Clever Code
1427

1528
### Fixed
1629

17-
- Links to "Imperative Loops" article were adjusted
30+
- Links to "Imperative Loops" article were adjusted
1831

1932

2033

@@ -274,3 +287,4 @@ All notable changes to this project will be documented in this file.
274287
[`1.0.19`]: https://github.com/Luzkan/smells/releases/tag/1.0.19
275288
[`1.0.20`]: https://github.com/Luzkan/smells/releases/tag/1.0.20
276289
[`1.0.21`]: https://github.com/Luzkan/smells/releases/tag/1.0.21
290+
[`1.0.22`]: https://github.com/Luzkan/smells/releases/tag/1.0.22

β€Žpackage.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "smells",
33
"description": "Code Smells Catalog",
4-
"version": "1.0.21",
4+
"version": "1.0.22",
55
"author": "Marcel Jerzyk",
66
"dependencies": {
77
"@emotion/react": "^11.8.2",

β€Žsrc/components/header/index.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import AlternateEmailIcon from "@mui/icons-material/AlternateEmail"
77
import HelpIcon from "@mui/icons-material/Help"
88
import HomeIcon from "@mui/icons-material/Home"
99
import MenuBookIcon from "@mui/icons-material/MenuBook"
10+
import ArticleIcon from "@mui/icons-material/Article"
1011
import { AppBar, IconButton, Toolbar, Typography } from "@mui/material"
1112
import createStyles from "@mui/styles/createStyles"
1213
import makeStyles from "@mui/styles/makeStyles"
@@ -47,6 +48,9 @@ function Header({ ButtonOpenSidebar }: Props): JSX.Element {
4748
<IconButton href="https://www.linkedin.com/in/luzkan/" color="inherit" aria-label="contact" size="large">
4849
<AlternateEmailIcon />
4950
</IconButton>
51+
<IconButton href="https://link.springer.com/chapter/10.1007/978-3-031-25695-0_24" color="inherit" aria-label="paper" size="large">
52+
<ArticleIcon />
53+
</IconButton>
5054
<IconButton href="https://github.com/Luzkan/smells/tree/main/docs/paper.pdf" color="inherit" aria-label="paper" size="large">
5155
<MenuBookIcon />
5256
</IconButton>

β€Žsrc/views/catalog/content/footer/index.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,10 @@ function CatalogFooter() {
3131
{" On GitHub "}
3232
</Button>
3333
<Button className={classes.link} variant="contained" href="https://github.com/Luzkan/smells/tree/main/docs/paper.pdf">
34-
{" Paper "}
34+
{" Preprint "}
35+
</Button>
36+
<Button className={classes.link} variant="contained" href="https://link.springer.com/chapter/10.1007/978-3-031-25695-0_24">
37+
{" Springer Paper "}
3538
</Button>
3639
<Button className={classes.link} variant="contained" href="https://www.linkedin.com/in/luzkan/">
3740
{" Author "}

0 commit comments

Comments
Β (0)