Skip to content

Commit db7b74b

Browse files
authored
Prepared alert for v1.3
1 parent c8183fd commit db7b74b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

home.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ function getCookie(name) {
44
if (parts.length === 2) return parts.pop().split(';').shift();
55
}
66
function checkversion() {
7-
if (getCookie('ScratchToolsVersion') !== '1.2') {
8-
document.cookie = "ScratchToolsVersion=1.2; expires=Thu, 18 Dec 9999 12:00:00 UTC; path=/";
7+
if (getCookie('ScratchToolsVersion') !== '1.3') {
8+
document.cookie = "ScratchToolsVersion=1.3; expires=Thu, 18 Dec 9999 12:00:00 UTC; path=/";
99
createExplanation()
1010
}
1111
}
@@ -41,13 +41,13 @@ el4.textContent = 'GitHub Repository'
4141
parentstuff.appendChild(element)
4242
parentstuff.prepend(el3)
4343
var h1 = document.createElement('h1')
44-
h1.textContent = 'Welcome to ScratchTools'
44+
h1.textContent = "What's New in ScratchTools"
4545
element.appendChild(el)
4646
element.appendChild(h1)
4747
var stuff = document.createElement('br')
4848
element.appendChild(stuff)
4949
var el2 = document.createElement('p')
50-
el2.textContent = 'This is v1.2 of ScratchTools! There is a lot to discover, check out the GitHub for more!'
50+
el2.textContent = 'This is v1.3 of ScratchTools! This new version mainly fixes bugs with the feature that replaces project links in profile comments with the name of the project!'
5151
el2.style.color = 'black'
5252
el2.style.padding = '20px'
5353
element.appendChild(el2)

0 commit comments

Comments
 (0)