-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpatchNotes.html
More file actions
57 lines (49 loc) · 1.98 KB
/
Copy pathpatchNotes.html
File metadata and controls
57 lines (49 loc) · 1.98 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
<!DOCTYPE HTML>
<html>
<head>
<meta charset = "utf-8" name="viewport" content="width=device-width, initial-scale=1">
<title>Patch Notes</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/jquery-ui.css">
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<div class="container">
<body>
<div class="col-md-12">
<h1>Patch Notes</h1>
<span class="alert-link"><a href="./index.html">Go back to App</a></span>
</div>
<div class="col-md-12">
<h2>Update 0.2.0</h2>
<ul>
<li>
Added app defaults page so that the user can now change and save
the app's default bread count multiples in the event of a sudden change
</li>
</ul>
</div>
<div class="col-md-12">
<h2>Update 0.1.10</h2>
<ul>
<li>Patch notes page is now mobile friendly</li>
</ul>
</div>
<div class="col-md-12">
<h2>Update 0.1.9</h2>
<ul>
<li>Subway wheat and white bread boxes contain 80 pieces of bread now instead of 70</li>
</ul>
</div>
<div class="col-md-12">
<h2>Update 0.1.8</h2>
<ul>
<li>Purely aesthetic changes. Wrapped entire application in bootstrap container. Changed app's font to boostrap's defaults. Also using boostrap's default button classes for the menu buttons</li>
</ul>
</div>
</body>
</div>
</html>