-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpatchnotes.html
More file actions
79 lines (78 loc) · 3.6 KB
/
Copy pathpatchnotes.html
File metadata and controls
79 lines (78 loc) · 3.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-7Y0G336T6Q"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-7Y0G336T6Q');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Patch Notes</title>
<link rel="stylesheet" href="patchnotes_styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<header>
<h1>Patch Notes</h1>
</header>
<div class="main-content">
<div class="patchnote">
<h2>Version 1.5</h2>
<p class="date">2024-08-02</p>
<ul>
<li>
노드에 마우스 커서 올려놓으면 해당 노드 및 이웃 하이라이트
</li>
</ul>
</div>
<div class="patchnote">
<h2>Version 1.4</h2>
<p class="date">2024-07-05</p>
<ul>
<li>Sample Data 1 수정 및 새로운 Sample Data 2종 추가</li>
<li>각 Sample Data에 대한 설명 추가</li>
</ul>
</div>
<div class="patchnote">
<h2>Version 1.3</h2>
<p class="date">2024-07-03</p>
<ul>
<li>Table Data 입력 후 csv 형태로 다운로드 받는 기능 추가</li>
<li>그래프 그린 후에 전체화면으로 볼 수 있는 기능 추가</li>
<li>Table Data 입력, CSV 파일 업로드하여 그린 그래프를 png 파일 형태로 다운로드 받는 기능 추가</li>
</ul>
</div>
<div class="patchnote">
<h2>Version 1.0</h2>
<p class="date">2024-06-27</p>
<ul>
<li>Graph Visualizer 오픈</li>
<li>사회관계망 데이터 시각화 및 분석할 수 있는 기능: 그래프 제작, 집단 찾기, 중심성 계산 및 정렬 기능</li>
<li>관계망 그래프는 직접 데이터를 웹 상에 입력하거나, CSV 파일을 업로드하거나, 웹에 탑재된 예시 데이터를 불러와 제작할 수 있음</li>
</ul>
</div>
<!-- 추가 패치 노트 섹션 -->
</div>
<footer>
<div class="footer-left">
<p>Ver 1.4</p>
<p>For Feedback : <a href="mailto:eduwang1010.dev@gmail.com">eduwang1010.dev@gmail.com</a></p>
</div>
<div class="footer-right">
<p>Made by Hyowon Wang</p>
<p>with <a target="_blank" href="https://graphology.github.io/">graphology</a> + <a target="_blank" href="https://www.sigmajs.org/">sigma.js</a></p>
</div>
</footer>
</div>
</body>
</html>