diff options
-rw-r--r-- | COPYING | 14 | ||||
-rw-r--r-- | README.md | 6 | ||||
-rw-r--r-- | package.json | 11 | ||||
-rw-r--r-- | src/components/SettingsPage.vue | 7 |
4 files changed, 37 insertions, 1 deletions
@@ -0,0 +1,14 @@ + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
+ Version 2, December 2004
+
+ Copyright (C) 2004 Sam Hocevar <[email protected]>
+
+ Everyone is permitted to copy and distribute verbatim or modified
+ copies of this license document, and changing it is allowed as long
+ as the name is changed.
+
+ DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+ 0. You just DO WHAT THE FUCK YOU WANT TO.
+
@@ -1,5 +1,11 @@ # otonashi +Otonashi is a simple, easy-to-use classboard app, built with Vue 3, Vuetify and ❤️. +This project is libre, and licensed under WTFPLv2, as published by San Hocevar on December 2004. +See the COPYING file for more details. + +> Note: Otonashi can be combined with [lively](https://github.com/rocksdanister/lively) for better experience + ## Project setup ``` npm install diff --git a/package.json b/package.json index 588d777..e1f9a9b 100644 --- a/package.json +++ b/package.json @@ -50,5 +50,16 @@ "last 2 versions", "not dead", "not ie 11" + ], + "description": "A simple, easy-to-use classboard app", + "repository": { + "type": "git", + "url": "https://git.135e2.tk/135e2/otonashi.git" + }, + "author": "135e2", + "license": "WTFPL", + "keywords": [ + "vue", + "classboard" ] } diff --git a/src/components/SettingsPage.vue b/src/components/SettingsPage.vue index 9bea340..cc00f93 100644 --- a/src/components/SettingsPage.vue +++ b/src/components/SettingsPage.vue @@ -53,7 +53,12 @@ </v-window-item> <v-window-item :value="4"> <v-card-text> - <span class="text-h2">Card</span> + <span class="text-h6" + >Otonashi is a simple, easy-to-use classboard app, built by 135e2 + with Vue 3, Vuetify and ❤️.<br /><br />This project is libre, and + licensed under WTFPLv2, as published by San Hocevar on December + 2004. See the COPYING file for more details.</span + > </v-card-text> </v-window-item> </v-window> |