diff options
author | 135e2 <[email protected]> | 2022-08-09 01:47:55 +0800 |
---|---|---|
committer | 135e2 <[email protected]> | 2022-08-09 01:53:04 +0800 |
commit | ac01592567d69d857f7481330709690ff2537746 (patch) | |
tree | a5036d7b1834d23590649b15997aceba426c4b68 | |
parent | bb9c5a0bce6c9c5663e1aafcf11d7a02efa898e5 (diff) | |
download | otonashi-ac01592567d69d857f7481330709690ff2537746.tar.gz otonashi-ac01592567d69d857f7481330709690ff2537746.tar.bz2 otonashi-ac01592567d69d857f7481330709690ff2537746.zip |
docs: clearify license and description
-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> |