Skip to content

Commit 780bf7a

Browse files
committed
Merge pull request #26 from gary-kim/enh/22/add-disclaimer
Add No Warranty Disclaimer
2 parents 5b4c480 + 3b7a364 commit 780bf7a

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313

1414
SAS PES is an extension using the WebExtension standard for use by **Singapore American School students only**. The extension provides various enhancements when using Powerschool at SAS.
1515

16+
Regardless of what the extension calculates, teachers are able to override the final grade. **DO NOT RELY ON THE DATA FROM THIS EXTENSION**
17+
1618
<p align="center">
1719
<img src="https://cdn.ydgkim.com/gschool/saspes/img1.png" height="250">
1820
</p>
@@ -70,6 +72,6 @@ Refer to the [libraries.txt](/libraries.txt).
7072

7173
Copyright &copy; 2018-2019 Gary Kim &lt;<[email protected]>&gt;
7274

73-
Source code licensed under AGPL-3.0-only
75+
Source code licensed under [AGPL-3.0-only](LICENSE)
7476

7577
The logo and name are not licensed for use, modification, or distribution.

src/js/components/ExtensionInfo.vue

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
<p style="font-size: 1.5em;">
3232
Version: {{ version }}
3333
</p>
34+
<p><b>Do not rely</b> on the data provided by SAS PES.</p>
3435
<p>
3536
<a
3637
class="saspes-link"
@@ -50,6 +51,12 @@
5051
target="_blank"
5152
@click="link_analytics"
5253
>Source Code</a> |
54+
<a
55+
class="saspes-link"
56+
href="https://github.com/gary-kim/saspes/blob/master/LICENSE"
57+
target="_blank"
58+
@click="link_analytics"
59+
>License (AGPL-3.0-only)</a> |
5360
<a
5461
id="login-extension-settings"
5562
href="#"
@@ -96,10 +103,13 @@ export default {
96103
color: #444444;
97104
}
98105
.saspes-content {
99-
padding: 20px;
106+
padding: 10px 20px 15px 20px;
100107
}
101108
.saspes-logo {
102109
height: 2em;
103110
padding-right: 0.7em;
104111
}
112+
b {
113+
margin: initial !important;
114+
}
105115
</style>

0 commit comments

Comments
 (0)