mirror of https://github.com/Lissy93/dashy.git
🔀 Merge pull request #1473 from CrazyWolf13/fix_copyright_year
updated copyright years
This commit is contained in:
commit
8d8583fc10
|
@ -21,4 +21,4 @@ indent_size = 2
|
|||
[*.md]
|
||||
trim_trailing_whitespace = false
|
||||
|
||||
# Licensed under MIT, (C) 2021 Alicia Sykes <https://aliciasykes.com>
|
||||
# Licensed under MIT, (C) 2024 Alicia Sykes <https://aliciasykes.com>
|
2
LICENSE
2
LICENSE
|
@ -1,6 +1,6 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2021-2022 Alicia Sykes <https://aliciasykes.com>
|
||||
Copyright (c) 2021-2024 Alicia Sykes <https://aliciasykes.com>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
|
|
@ -771,7 +771,7 @@ A few self-hosted web apps serve a similar purpose to Dashy. If you're looking f
|
|||
Dashy is Licensed under [MIT X11](https://en.wikipedia.org/wiki/MIT_License)
|
||||
|
||||
```
|
||||
Copyright © 2021-2022 Alicia Sykes <https://aliciasykes.com>
|
||||
Copyright © 2021-2024 Alicia Sykes <https://aliciasykes.com>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this
|
||||
software and associated documentation files (the "Software"), to deal in the Software
|
||||
|
|
|
@ -112,7 +112,7 @@ Dashy can also be run on bare metal using Node.js, or deployed to a cloud servic
|
|||
Dashy is Licensed under [MIT X11](https://en.wikipedia.org/wiki/MIT_License)
|
||||
|
||||
```
|
||||
Copyright © 2021 Alicia Sykes <https://aliciasykes.com>
|
||||
Copyright © 2024 Alicia Sykes <https://aliciasykes.com>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this
|
||||
software and associated documentation files (the "Software"), to deal in the Software
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<!doctype html>
|
||||
<!-- Dashy: Licensed under MIT, (C) 2021 Alicia Sykes <https://aliciasykes.com> -->
|
||||
<!-- Dashy: Licensed under MIT, (C) 2024 Alicia Sykes <https://aliciasykes.com> -->
|
||||
<!-- This is the default page, displayed while the app is still building -->
|
||||
<html lang="en">
|
||||
<head>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/* Styles applied to index.html for the loading screen, prior to the app being injected */
|
||||
/* Dashy - Licensed under MIT, (C) Alicia Sykes 2022 */
|
||||
/* Dashy - Licensed under MIT, (C) Alicia Sykes 2024 */
|
||||
|
||||
body { margin: 0; }
|
||||
#app .loading-placeholder {
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
<!-- License -->
|
||||
<h3>{{ $t('app-info.license') }}</h3>
|
||||
{{ $t('app-info.license-under') }} <a href="https://github.com/Lissy93/dashy/blob/master/LICENSE">MIT X11</a>.
|
||||
Copyright <a href="https://aliciasykes.com">Alicia Sykes</a> © 2021.<br>
|
||||
Copyright <a href="https://aliciasykes.com">Alicia Sykes</a> © {{new Date().getFullYear()}}.<br>
|
||||
{{ $t('app-info.licence-third-party') }} <a href="https://github.com/Lissy93/dashy/blob/master/.github/LEGAL.md">{{ $t('app-info.licence-third-party-link') }}</a>.<br>
|
||||
{{ $t('app-info.list-contributors') }} <a href="https://github.com/Lissy93/dashy/blob/master/docs/credits.md">{{ $t('app-info.list-contributors-link') }}</a>.
|
||||
<!-- App Version -->
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* A Vue directive to trigger an event when the user
|
||||
* clicks anywhere other than the specified elements
|
||||
* Used to close context menus popup modals and tips
|
||||
* Dashy: Licensed under MIT - (C) Alicia Sykes 2022
|
||||
* Dashy: Licensed under MIT - (C) Alicia Sykes 2024
|
||||
*/
|
||||
|
||||
const instances = []; // List of click event instances
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* A Vue directive to call event when element is long-pressed
|
||||
* Used to open context menus on touch-enabled devices
|
||||
* Inspired by: FeliciousX/vue-directive-long-press
|
||||
* Dashy: Licensed under MIT - (C) Alicia Sykes 2022
|
||||
* Dashy: Licensed under MIT - (C) Alicia Sykes 2024
|
||||
*/
|
||||
|
||||
const LONG_PRESS_DEFAULT_DELAY = 750;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* Dashy: Licensed under MIT, (C) Alicia Sykes 2021 <https://aliciasykes.com> */
|
||||
/* Dashy: Licensed under MIT, (C) Alicia Sykes 2024 <https://aliciasykes.com> */
|
||||
|
||||
/* Tile filtering utility */
|
||||
import ErrorHandler from '@/utils/ErrorHandler';
|
||||
|
|
|
@ -54,7 +54,7 @@
|
|||
<section class="license">
|
||||
<h2>License</h2>
|
||||
<code>
|
||||
Copyright © 2021 Alicia Sykes (https://aliciasykes.com)
|
||||
Copyright © {{new Date().getFullYear()}} Alicia Sykes (https://aliciasykes.com)
|
||||
</code>
|
||||
<br><br>
|
||||
<code>
|
||||
|
|
Loading…
Reference in New Issue