File tree Expand file tree Collapse file tree 5 files changed +28
-7
lines changed Expand file tree Collapse file tree 5 files changed +28
-7
lines changed Original file line number Diff line number Diff line change 3
3
<h2 align="center">Bad Code Smells</h2>
4
4
<div>
5
5
<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>
7
7
</div>
8
8
</div >
9
9
10
10
# Table of Contents
11
11
12
12
1 . [ What's this?] ( #whats-this )
13
13
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 )
16
16
3 . [ Who is the beneficent?] ( #who-is-the-beneficent )
17
17
- [ New Programmers] ( #new-programmers )
18
18
- [ Developers] ( #developers )
Original file line number Diff line number Diff line change @@ -6,15 +6,28 @@ All notable changes to this project will be documented in this file.
6
6
7
7
---
8
8
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
+
9
22
## [[ ` 1.0.21 ` ]] - 2022-09-02
10
23
11
24
### Typo
12
25
13
- - Added missing double underscore in ` __getitem__ ` in Clever Code
26
+ - Added missing double underscore in ` __getitem__ ` in Clever Code
14
27
15
28
### Fixed
16
29
17
- - Links to "Imperative Loops" article were adjusted
30
+ - Links to "Imperative Loops" article were adjusted
18
31
19
32
20
33
@@ -274,3 +287,4 @@ All notable changes to this project will be documented in this file.
274
287
[ `1.0.19` ] : https://github.com/Luzkan/smells/releases/tag/1.0.19
275
288
[ `1.0.20` ] : https://github.com/Luzkan/smells/releases/tag/1.0.20
276
289
[ `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
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " smells" ,
3
3
"description" : " Code Smells Catalog" ,
4
- "version" : " 1.0.21 " ,
4
+ "version" : " 1.0.22 " ,
5
5
"author" : " Marcel Jerzyk" ,
6
6
"dependencies" : {
7
7
"@emotion/react" : " ^11.8.2" ,
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import AlternateEmailIcon from "@mui/icons-material/AlternateEmail"
7
7
import HelpIcon from "@mui/icons-material/Help"
8
8
import HomeIcon from "@mui/icons-material/Home"
9
9
import MenuBookIcon from "@mui/icons-material/MenuBook"
10
+ import ArticleIcon from "@mui/icons-material/Article"
10
11
import { AppBar , IconButton , Toolbar , Typography } from "@mui/material"
11
12
import createStyles from "@mui/styles/createStyles"
12
13
import makeStyles from "@mui/styles/makeStyles"
@@ -47,6 +48,9 @@ function Header({ ButtonOpenSidebar }: Props): JSX.Element {
47
48
< IconButton href = "https://www.linkedin.com/in/luzkan/" color = "inherit" aria-label = "contact" size = "large" >
48
49
< AlternateEmailIcon />
49
50
</ 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 >
50
54
< IconButton href = "https://github.com/Luzkan/smells/tree/main/docs/paper.pdf" color = "inherit" aria-label = "paper" size = "large" >
51
55
< MenuBookIcon />
52
56
</ IconButton >
Original file line number Diff line number Diff line change @@ -31,7 +31,10 @@ function CatalogFooter() {
31
31
{ " On GitHub " }
32
32
</ Button >
33
33
< 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 " }
35
38
</ Button >
36
39
< Button className = { classes . link } variant = "contained" href = "https://www.linkedin.com/in/luzkan/" >
37
40
{ " Author " }
You canβt perform that action at this time.
0 commit comments