-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathroadmap.html
More file actions
101 lines (90 loc) · 3.07 KB
/
Copy pathroadmap.html
File metadata and controls
101 lines (90 loc) · 3.07 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Project Roadmap: The Banker</title>
<script type="module" src="./scripts/consent.js"></script>
<link rel="icon" href="./resources/favicon.png" type="image/png">
<style>
body {
font-family: system-ui, sans-serif;
line-height: 1.6;
max-width: 800px;
margin: 2rem auto;
padding: 0 1rem;
background: #f9f9f9;
color: #333;
}
h1 {
text-align: center;
}
h3 {
text-align: center;
margin-top: -30px;
color: #555;
}
ul {
list-style: none;
padding: 0;
}
li {
background: #fff;
margin: 0.5rem 0;
padding: 1rem;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.done {
border-left: 6px solid #28a745;
}
.in-progress {
border-left: 6px solid #f0ad4e;
}
.todo {
border-left: 6px solid #6c757d;
}
</style>
</head>
<body>
<h1>🗺️ Project Roadmap</h1>
<h3>The Banker</h3>
<p>This is the current roadmap for <strong>The Banker</strong>.
This may be migrated to GitHub issues eventually...</p>
<ul>
<li class="done">✅ Withdrawals</li>
<li class="done">✅ Deposits</li>
<li class="done">✅ Reject Customers</li>
<li class="done">✅ Transfer Box Sound Effects</li>
<li class="done">✅ Cash Drawer</li>
<li class="done">✅ Statistics</li>
<li class="in-progress">🟨 Bug Fixes</li>
<li class="in-progress">🟨 Additional Sound effects (pick up, drop, rotate, flip)</li>
<li class="todo">⬜ Change Requests (split 100s into 50s, etc.)</li>
<li class="todo">⬜ Receipts (for deposits)</li>
<li class="todo">⬜ Account Bookkeeping (Open/Close Accounts - validate withdrawal amounts)</li>
<li class="todo">⬜ Bill Conditions (Folded corners, miscolored, ripped, wrinkled)</li>
<li class="todo">⬜ Bill Counter (Machine for automating counting)</li>
<li class="todo">⬜ Loans</li>
<li class="todo">⬜ Loan Negotiations</li>
<li class="todo">⬜ Loan Repayments</li>
<li class="todo">⬜ Savings Account Interest</li>
<li class="todo">⬜ Coins</li>
<li class="todo">⬜ Other currencies (EURO, YEN, GBP, SEK, PLZ, RUB)</li>
<li class="todo">⬜ Currency Exchange Requests</li>
<li class="todo">⬜ Gold</li>
<li class="todo">⬜ Bundling of Bills</li>
<li class="todo">⬜ Stacking of Coins</li>
<li class="todo">⬜ Consistent scaling of objects globally</li>
<li class="todo">⬜ Mobile Support</li>
<li class="todo">⬜ Inflation</li>
<li class="todo">⬜ Financial Report</li>
<li class="todo">⬜ Stakeholders & Dividends</li>
<li class="todo">⬜ Day & Night cycles</li>
<li class="todo">⬜ Game Over conditions</li>
</ul>
<p><strong>Do you have other ideas?</strong> - Suggest them <a
href="https://github.com/Chrimle/The-Banker/issues/new/choose" target="_blank"
title="Open a GitHub Issue">here</a>!</p>
</body>
</html>