-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupdates.html
More file actions
63 lines (57 loc) · 2.3 KB
/
updates.html
File metadata and controls
63 lines (57 loc) · 2.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Updates</title>
<link rel="stylesheet" href="updates.css">
</head>
<body>
<div class="container">
<h1>Updates</h1>
<div class="tab-container">
<button class="tab-button active" data-tab="release-notes">Release Notes</button>
<button class="tab-button" data-tab="roadmap">Roadmap</button>
</div>
<div id="release-notes" class="tab-content active">
<div class="release">
<h2>r1.2</h2>
<ul>
<li>New Prisma Approvers tool</li>
</ul>
</div>
<div class="release">
<h2>r1.1</h2>
<ul>
<li>Navigation improvements</li>
<li>D number open tool</li>
<li>Prisma logo replaced in UI to signify extension is enabled</li>
</ul>
</div>
<div class="release">
<h2>r1</h2>
<ul>
<li>Initial release</li>
</ul>
</div>
</div>
<div id="roadmap" class="tab-content">
<h2>Roadmap</h2>
<ul>
<li>Integrate reminders based on senior Prisma users feedback</li>
<li>Counter for how long the loading wheel has appeared on your screen, with averages of per day and per week, month</li>
<li>Stats of use of Prisma alongside the above</li>
<li>Preventing wrongful setup of certain elements of Campaigns, Placements and Packages</li>
<li>Log campaigns by client for easy searching</li>
<li>Remove and automate certain supplier drop-downs (e.g., ad serving)</li>
<li>'Recently approved' badge for timesheet approvals</li>
<li>Further efficiency automation gains</li>
</ul>
</div>
<div class="feedback">
<a href="https://teams.microsoft.com/l/chat/0/0?users=harry.barnes@essencemediacom.com&topicname=Chat" target="_blank">Have an idea? Let the chef know here!</a>
</div>
</div>
<script src="updates.js"></script>
</body>
</html>