Update version strings and adjust 'Welcome' text

This commit is contained in:
Fred Boniface 2024-02-05 21:30:06 +00:00
parent 9cd082193b
commit 476b5e45c3
3 changed files with 7 additions and 6 deletions

View File

@ -1,6 +1,6 @@
{
"name": "owlboard-svelte",
"version": "0.0.1",
"version": "2024.2.1",
"private": true,
"scripts": {
"dev": "vite dev",

View File

@ -20,10 +20,11 @@
}
const pageText: string[] = [
'<h3>A small Update</h3>' +
"<p>There is a new Facebook Support page <a href='https://www.facebook.com/owlboard.support'>'OwlBoard Support'</a></p>" +
'<p>You can use it to ask for help and give suggestions</p>' +
'<p>Help links have been updated.</p>'
'<h3>A new way to find PIS Codes</h3>' +
"<p>You can now use a headcode to find a PIS code where there is only a partial match</p>" +
'<p>For now, you can see a PIS code where you need to skip some stops at the start,</p>' +
'<p>soon, you will be able to find PIS codes where you need to skip stops at the end.</p>' +
'<p>Check out our <a href="https://www.facebook.com/owlboard.support">Facebook page</a> for a video-guide</p>',
];
</script>

View File

@ -1,3 +1,3 @@
export const version: string = '2024.1.1';
export const version: string = '2024.2.1';
export const versionTag: string = '';
export const showWelcome: boolean = true;