Merge branch 'master' of https://github.com/syuilo/misskey
This commit is contained in:
		
						commit
						e922d8904c
					
				
					 4 changed files with 6 additions and 75 deletions
				
			
		| 
						 | 
				
			
			@ -1,69 +0,0 @@
 | 
			
		|||
<img src="https://github.com/syuilo/misskey/blob/b3f42e62af698a67c2250533c437569559f1fdf9/src/himasaku/resources/himasaku.png?raw=true" align="right" width="320px"/>
 | 
			
		||||
 | 
			
		||||
[](https://misskey.xyz/)
 | 
			
		||||
================================================================
 | 
			
		||||
 | 
			
		||||
[![][travis-badge]][travis-link]
 | 
			
		||||
[![][dependencies-badge]][dependencies-link]
 | 
			
		||||
[](http://makeapullrequest.com) [](https://greenkeeper.io/)
 | 
			
		||||
 | 
			
		||||
[Misskey](https://misskey.xyz) is an **advanced**, **redefined**, and ultimately **sophisticated** microblogging platform.
 | 
			
		||||
 | 
			
		||||
<a href="https://www.patreon.com/syuilo"><img src="https://c5.patreon.com/external/logo/become_a_patron_button@2x.png" alt="Become a Patron!" width="160" /></a>
 | 
			
		||||
 | 
			
		||||

 | 
			
		||||
 | 
			
		||||
:sparkles: Features
 | 
			
		||||
----------------------------------------------------------------
 | 
			
		||||
* Rich text contents
 | 
			
		||||
* Reactions
 | 
			
		||||
* User lists
 | 
			
		||||
* Customizable column view (called MisskeyDeck)
 | 
			
		||||
  * and widgets!
 | 
			
		||||
* Private messages
 | 
			
		||||
* ActivityPub support
 | 
			
		||||
 | 
			
		||||
and more! You can see it with your own eyes at [misskey.xyz](https://misskey.xyz).
 | 
			
		||||
 | 
			
		||||
:package: Create your instance
 | 
			
		||||
----------------------------------------------------------------
 | 
			
		||||
If you want to run your own instance of Misskey,
 | 
			
		||||
please see [Setup and installation guide](./docs/setup.en.md).
 | 
			
		||||
 | 
			
		||||
:wrench: Contribute
 | 
			
		||||
----------------------------------------------------------------
 | 
			
		||||
**[PR](https://github.com/syuilo/misskey/pulls)s welcome!**
 | 
			
		||||
 | 
			
		||||
If you want to...
 | 
			
		||||
* i18n ... please see [Translation guide](./docs/translate.en.md).
 | 
			
		||||
* l10n ... please visit https://crowdin.com/project/misskey
 | 
			
		||||
 | 
			
		||||
:heart: Backers & Sponsors
 | 
			
		||||
----------------------------------------------------------------
 | 
			
		||||
<!-- __PATREON__ -->
 | 
			
		||||
 | 
			
		||||
:four_leaf_clover: Copyright
 | 
			
		||||
----------------------------------------------------------------
 | 
			
		||||
> Copyright (c) 2014-2018 syuilo
 | 
			
		||||
 | 
			
		||||
Misskey is an open-source software licensed under the [GNU AGPLv3](LICENSE).
 | 
			
		||||
 | 
			
		||||
[![][agpl-3.0-badge]][AGPL-3.0]
 | 
			
		||||
 | 
			
		||||
[agpl-3.0]:           https://www.gnu.org/licenses/agpl-3.0.en.html
 | 
			
		||||
[agpl-3.0-badge]:     https://img.shields.io/badge/license-AGPL--3.0-444444.svg?style=flat-square
 | 
			
		||||
[travis-link]:        https://travis-ci.org/syuilo/misskey
 | 
			
		||||
[travis-badge]:       http://img.shields.io/travis/syuilo/misskey/master.svg?style=flat-square
 | 
			
		||||
[dependencies-link]:  https://david-dm.org/syuilo/misskey
 | 
			
		||||
[dependencies-badge]: https://img.shields.io/david/syuilo/misskey.svg?style=flat-square
 | 
			
		||||
 | 
			
		||||
[backer-url]: #backers
 | 
			
		||||
[backer-badge]: https://opencollective.com/misskey/backers/badge.svg
 | 
			
		||||
[backers-image]: https://opencollective.com/misskey/backers.svg
 | 
			
		||||
[sponsor-url]: #sponsors
 | 
			
		||||
[sponsor-badge]: https://opencollective.com/misskey/sponsors/badge.svg
 | 
			
		||||
[sponsors-image]: https://opencollective.com/misskey/sponsors.svg
 | 
			
		||||
[support-url]: https://opencollective.com/misskey#support
 | 
			
		||||
 | 
			
		||||
[syuilo-link]:      https://syuilo.com
 | 
			
		||||
[syuilo-icon]:      https://avatars2.githubusercontent.com/u/4439005?v=3&s=70
 | 
			
		||||
| 
						 | 
				
			
			@ -1,4 +1,4 @@
 | 
			
		|||
const kaos = [
 | 
			
		||||
const faces = [
 | 
			
		||||
	'(=^・・^=)',
 | 
			
		||||
	'v(\'ω\')v',
 | 
			
		||||
	'🐡( \'-\' 🐡 )フグパンチ!!!!',
 | 
			
		||||
| 
						 | 
				
			
			@ -7,4 +7,4 @@ const kaos = [
 | 
			
		|||
	'(Δ・x・Δ)'
 | 
			
		||||
];
 | 
			
		||||
 | 
			
		||||
export default () => kaos[Math.floor(Math.random() * kaos.length)];
 | 
			
		||||
export default () => faces[Math.floor(Math.random() * faces.length)];
 | 
			
		||||
| 
						 | 
				
			
			@ -58,7 +58,7 @@
 | 
			
		|||
import Vue from 'vue';
 | 
			
		||||
import insertTextAtCursor from 'insert-text-at-cursor';
 | 
			
		||||
import * as XDraggable from 'vuedraggable';
 | 
			
		||||
import getKao from '../../../common/scripts/get-kao';
 | 
			
		||||
import getFace from '../../../common/scripts/get-face';
 | 
			
		||||
import MkVisibilityChooser from '../../../common/views/components/visibility-chooser.vue';
 | 
			
		||||
import parse from '../../../../../mfm/parse';
 | 
			
		||||
import { host } from '../../../config';
 | 
			
		||||
| 
						 | 
				
			
			@ -421,7 +421,7 @@ export default Vue.extend({
 | 
			
		|||
		},
 | 
			
		||||
 | 
			
		||||
		kao() {
 | 
			
		||||
			this.text += getKao();
 | 
			
		||||
			this.text += getFace();
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
});
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -56,7 +56,7 @@ import Vue from 'vue';
 | 
			
		|||
import insertTextAtCursor from 'insert-text-at-cursor';
 | 
			
		||||
import * as XDraggable from 'vuedraggable';
 | 
			
		||||
import MkVisibilityChooser from '../../../common/views/components/visibility-chooser.vue';
 | 
			
		||||
import getKao from '../../../common/scripts/get-kao';
 | 
			
		||||
import getFace from '../../../common/scripts/get-face';
 | 
			
		||||
import parse from '../../../../../mfm/parse';
 | 
			
		||||
import { host } from '../../../config';
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -313,7 +313,7 @@ export default Vue.extend({
 | 
			
		|||
		},
 | 
			
		||||
 | 
			
		||||
		kao() {
 | 
			
		||||
			this.text += getKao();
 | 
			
		||||
			this.text += getFace();
 | 
			
		||||
		}
 | 
			
		||||
	}
 | 
			
		||||
});
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue