Skip to content

Commit 05ef7fa

Browse files
committed
fixed all Copyrights
1 parent 8bc5a15 commit 05ef7fa

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ indent_size = 2
2121
[*.md]
2222
trim_trailing_whitespace = false
2323

24-
# Licensed under MIT, (C) 2021 Alicia Sykes <https://aliciasykes.com>
24+
# Licensed under MIT, (C) 2024 Alicia Sykes <https://aliciasykes.com>

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021-2022 Alicia Sykes <https://aliciasykes.com>
3+
Copyright (c) 2021-2024 Alicia Sykes <https://aliciasykes.com>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -771,7 +771,7 @@ A few self-hosted web apps serve a similar purpose to Dashy. If you're looking f
771771
Dashy is Licensed under [MIT X11](https://en.wikipedia.org/wiki/MIT_License)
772772

773773
```
774-
Copyright © 2021-2022 Alicia Sykes <https://aliciasykes.com>
774+
Copyright © 2021-2024 Alicia Sykes <https://aliciasykes.com>
775775

776776
Permission is hereby granted, free of charge, to any person obtaining a copy of this
777777
software and associated documentation files (the "Software"), to deal in the Software

docker/docker-readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ Dashy can also be run on bare metal using Node.js, or deployed to a cloud servic
112112
Dashy is Licensed under [MIT X11](https://en.wikipedia.org/wiki/MIT_License)
113113

114114
```
115-
Copyright © 2021 Alicia Sykes <https://aliciasykes.com>
115+
Copyright © 2024 Alicia Sykes <https://aliciasykes.com>
116116
117117
Permission is hereby granted, free of charge, to any person obtaining a copy of this
118118
software and associated documentation files (the "Software"), to deal in the Software

public/initialization.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!doctype html>
2-
<!-- Dashy: Licensed under MIT, (C) 2021 Alicia Sykes <https://aliciasykes.com> -->
2+
<!-- Dashy: Licensed under MIT, (C) 2024 Alicia Sykes <https://aliciasykes.com> -->
33
<!-- This is the default page, displayed while the app is still building -->
44
<html lang="en">
55
<head>

public/loading-screen.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* Styles applied to index.html for the loading screen, prior to the app being injected */
2-
/* Dashy - Licensed under MIT, (C) Alicia Sykes 2022 */
2+
/* Dashy - Licensed under MIT, (C) Alicia Sykes 2024 */
33

44
body { margin: 0; }
55
#app .loading-placeholder {

src/components/Configuration/AppInfoModal.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<!-- License -->
3131
<h3>{{ $t('app-info.license') }}</h3>
3232
{{ $t('app-info.license-under') }} <a href="https://github.com/Lissy93/dashy/blob/master/LICENSE">MIT X11</a>.
33-
Copyright <a href="https://aliciasykes.com">Alicia Sykes</a> © 2021.<br>
33+
Copyright <a href="https://aliciasykes.com">Alicia Sykes</a> © 2024.<br>
3434
{{ $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>
3535
{{ $t('app-info.list-contributors') }} <a href="https://github.com/Lissy93/dashy/blob/master/docs/credits.md">{{ $t('app-info.list-contributors-link') }}</a>.
3636
<!-- App Version -->

src/directives/ClickOutside.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* A Vue directive to trigger an event when the user
33
* clicks anywhere other than the specified elements
44
* Used to close context menus popup modals and tips
5-
* Dashy: Licensed under MIT - (C) Alicia Sykes 2022
5+
* Dashy: Licensed under MIT - (C) Alicia Sykes 2024
66
*/
77

88
const instances = []; // List of click event instances

src/directives/LongPress.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* A Vue directive to call event when element is long-pressed
33
* Used to open context menus on touch-enabled devices
44
* Inspired by: FeliciousX/vue-directive-long-press
5-
* Dashy: Licensed under MIT - (C) Alicia Sykes 2022
5+
* Dashy: Licensed under MIT - (C) Alicia Sykes 2024
66
*/
77

88
const LONG_PRESS_DEFAULT_DELAY = 750;

src/utils/Search.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Dashy: Licensed under MIT, (C) Alicia Sykes 2021 <https://aliciasykes.com> */
1+
/* Dashy: Licensed under MIT, (C) Alicia Sykes 2024 <https://aliciasykes.com> */
22

33
/* Tile filtering utility */
44
import ErrorHandler from '@/utils/ErrorHandler';

src/views/About.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
<section class="license">
5555
<h2>License</h2>
5656
<code>
57-
Copyright © 2021 Alicia Sykes (https://aliciasykes.com)
57+
Copyright © 2024 Alicia Sykes (https://aliciasykes.com)
5858
</code>
5959
<br><br>
6060
<code>

0 commit comments

Comments
 (0)