Compare commits

..

4 Commits

Author SHA1 Message Date
syuilo
48dc56e834 10.64.2 2018-12-17 17:27:07 +09:00
Acid Chicken (硫酸鶏)
2c33bd6e31 Update README.md [AUTOGEN] (#3641) 2018-12-17 17:26:02 +09:00
syuilo
b6524616bc Clean up 2018-12-17 17:21:45 +09:00
syuilo
7e2b70f912 [Client] UIの動きを減らすオプションが一部のアニメーションに適用されなかったのを修正
Resolve #3632
2018-12-17 17:21:36 +09:00
5 changed files with 12 additions and 8 deletions

View File

@@ -1,6 +1,10 @@
ChangeLog
=========
10.64.2
-------
* UIの動きを減らすオプションが一部のアニメーションに適用されなかったのを修正
10.64.1
-------
* レートリミットの調整

View File

@@ -86,7 +86,7 @@ Please see [Contribution guide](./CONTRIBUTING.md).
<td><a href="https://www.patreon.com/user?u=13376668">Arctic</a></td>
<td><a href="https://www.patreon.com/negao">negao</a></td>
<td><a href="https://www.patreon.com/user?u=12913507">Melilot</a></td>
<td><a href="https://www.patreon.com/AxellaMC">Xeltica</a></td>
<td><a href="https://www.patreon.com/Xeltica">Xeltica</a></td>
<td><a href="https://www.patreon.com/user?u=3384329">べすれい</a></td>
<td><a href="https://www.patreon.com/gutfuckllc">gutfuckllc</a></td>
<td><a href="https://www.patreon.com/mydarkstar">mydarkstar</a></td>
@@ -118,7 +118,7 @@ Please see [Contribution guide](./CONTRIBUTING.md).
<td><a href="https://www.patreon.com/user?u=12531784">Takashi Shibuya</a></td>
</tr></table>
**Last updated:** Sun, 16 Dec 2018 13:46:05 UTC
**Last updated:** Sun, 16 Dec 2018 18:32:06 UTC
<!-- PATREON_END -->
:four_leaf_clover: Copyright

View File

@@ -1,8 +1,8 @@
{
"name": "misskey",
"author": "syuilo <i@syuilo.com>",
"version": "10.64.1",
"clientVersion": "2.0.12792",
"version": "10.64.2",
"clientVersion": "2.0.12796",
"codename": "nighthike",
"main": "./built/index.js",
"private": true,

View File

@@ -67,6 +67,8 @@ export default Vue.extend({
});
},
anime(reaction: string) {
if (this.$store.state.device.reduceMotion) return;
this.$nextTick(() => {
const rect = this.$refs[reaction].$el.getBoundingClientRect();

View File

@@ -2,6 +2,8 @@ import Particle from '../components/particle.vue';
export default {
bind(el, binding, vn) {
if (vn.context.$store.state.device.reduceMotion) return;
el.addEventListener('click', () => {
const rect = el.getBoundingClientRect();
@@ -18,9 +20,5 @@ export default {
document.body.appendChild(particle.$el);
});
},
unbind(el, binding, vn) {
}
};