Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(frontend): 未読の通知があるときにfaviconに点をつけて目立たせることができるように #13970

Draft
wants to merge 50 commits into
base: develop
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
e3ff6e4
added notification dot and it seems to work well
ChaoticLeah Mar 15, 2024
4e27d09
made notification dot appear if you load the page and there are alrea…
ChaoticLeah Mar 16, 2024
3753fae
added setting
ChaoticLeah Mar 16, 2024
d84505c
made methods private
ChaoticLeah Mar 16, 2024
612e05d
fixed some of the issues with it
ChaoticLeah Mar 19, 2024
e04320c
Moved class to seperate file and fixed some ts warnings
ChaoticLeah Apr 2, 2024
024c77b
moved setting toggle under notifications category
ChaoticLeah Apr 2, 2024
1f8c5b5
removed use of settimeout
ChaoticLeah May 2, 2024
cebde05
fixes
ChaoticLeah May 2, 2024
77a6ea0
did thread fixes
ChaoticLeah May 3, 2024
fc15b38
fixed querySelector that would grab favicon
ChaoticLeah May 3, 2024
5a3391a
potential firefox fix
ChaoticLeah May 3, 2024
9a89ebc
fixing a buch of comments
ChaoticLeah May 6, 2024
9abf062
changed grabbing theme color for dot to match the other things in thi…
ChaoticLeah May 6, 2024
28e03d0
fix translation
kakkokari-gtyih Jun 12, 2024
ae0139a
Update Changelog
kakkokari-gtyih Jun 12, 2024
c51a41c
refactor
kakkokari-gtyih Jun 12, 2024
b866690
faviconのドット有無切替をChannelの更新処理時に行うように
kakkokari-gtyih Jun 12, 2024
4adb09d
Update Changelog
kakkokari-gtyih Jun 12, 2024
d8c20fc
:art:
kakkokari-gtyih Jun 12, 2024
81c04db
remove unused imports
kakkokari-gtyih Jun 12, 2024
4b90e0d
fix
kakkokari-gtyih Jun 12, 2024
0077c61
spdx
kakkokari-gtyih Jun 12, 2024
16daf75
設定スイッチが2箇所あるのを修正
kakkokari-gtyih Jun 12, 2024
087b8a2
tweak
kakkokari-gtyih Jun 12, 2024
d59e6b2
ドットをいいかんじにする
kakkokari-gtyih Jun 12, 2024
a62820b
remove comment
kakkokari-gtyih Jun 12, 2024
c65b1b8
:v:
kakkokari-gtyih Jun 12, 2024
c1d7ec8
FavIcon → favicon
kakkokari-gtyih Jun 13, 2024
e732eb1
make it default on
kakkokari-gtyih Jun 13, 2024
057c52d
Merge branch 'develop' into feat-13604
kakkokari-gtyih Jun 13, 2024
d1b9272
Merge branch 'develop' into feat-13604
kakkokari-gtyih Jun 15, 2024
2dd03b5
Merge branch 'develop' into feat-13604
kakkokari-gtyih Jun 15, 2024
9b4e522
refactor
kakkokari-gtyih Jun 15, 2024
dfcda6d
Merge branch 'develop' into feat-13604
kakkokari-gtyih Jun 15, 2024
9af3204
Update preferences-backups.vue
kakkokari-gtyih Jun 18, 2024
2761f62
Update favicon-dot.ts
kakkokari-gtyih Jun 18, 2024
95ddf52
アイコン画像に関する注意書きを追加
kakkokari-gtyih Jun 18, 2024
5d081cc
Merge branch 'feat-13604' of https://github.com/kakkokari-gtyih/missk…
kakkokari-gtyih Jun 18, 2024
4234a7b
typo
kakkokari-gtyih Jun 18, 2024
971b115
Merge branch 'develop' into feat-13604
kakkokari-gtyih Jun 22, 2024
a433cb9
faviconのドット色を別途設定できるように
kakkokari-gtyih Jun 22, 2024
67443dc
Merge branch 'feat-13604' of https://github.com/kakkokari-gtyih/missk…
kakkokari-gtyih Jun 22, 2024
b517d3f
エラーハンドリング
kakkokari-gtyih Jun 22, 2024
bbda7be
Merge branch 'develop' into feat-13604
kakkokari-gtyih Jun 22, 2024
fe1de07
fix lint
kakkokari-gtyih Jun 22, 2024
8b6761f
Merge branch 'develop' into feat-13604
kakkokari-gtyih Jul 16, 2024
86fffa9
Merge branch 'develop' into feat-13604
kakkokari-gtyih Jul 30, 2024
5b82f9a
表記揺れを統一
kakkokari-gtyih Jul 30, 2024
e74ef82
use static color settings
kakkokari-gtyih Jul 30, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
spdx
  • Loading branch information
kakkokari-gtyih committed Jun 12, 2024
commit 0077c611467c580b52ebc9599b98095eb1abcc7c
5 changes: 5 additions & 0 deletions packages/frontend/src/scripts/favicon-dot.ts
kakkokari-gtyih marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/*
* SPDX-FileCopyrightText: syuilo and misskey-project
* SPDX-License-Identifier: AGPL-3.0-only
*/

import tinycolor from 'tinycolor2';

class FavIconDot {
Expand Down
Loading