Fediverse search system

Fediver

beta version

【Note】の検索結果


うーーーーん!リリースノートのこれそゆことね!

Note: 「自動でもっと見る」オプションは無効になっています
「自動でもっと見る」を有効にしていても自動でもっと見るされない場所がある · Issue #16229 · misskey-dev/misskey |
https://github.com/misskey-dev/misskey/issues/16229


[Auto Note]:Updated
Fetch URL:
https://github.com/misskey-dev/misskey
Commit: 598641de to 73419e8a
[skip ci] Update CHANGELOG.md (prepend template)
Release: 2025.7.0


[Auto Note]:Updated
Fetch URL:
https://github.com/misskey-dev/misskey
Commit: fbd6b67f to 598641de
Bump version to 2025.7.0-rc.1
New Crowdin updates (#16274)
enhance(frontend): disable InfiniteScroll to improve stability
remove unused code


[Auto Note]:Updated
Fetch URL:
https://github.com/misskey-dev/misskey
Commit: e5c2be15 to fbd6b67f
Bump version to 2025.7.0-rc.0


[Auto Note]:Updated
Fetch URL:
https://github.com/misskey-dev/misskey
Commit: 1b791258 to e5c2be15
fix(deps): Node.jsの最小バージョンを引き上げ (#16296)


[Auto Note]:Updated
Fetch URL:
https://github.com/misskey-dev/misskey
Commit: e1834bea to 1b791258
fix(deps): update [frontend] update dependencies (#16202)
fix(deps): update [root] update dependencies (#16200)
chore(deps): update [misskey-js] update dependencies (#16199)


[Auto Note]:Updated
Fetch URL:
https://github.com/misskey-dev/misskey
Commit: ad7bf096 to e1834bea
Bump version to 2025.7.0-beta.2
Migration cleanup (#16288)


[Auto Note]:Updated
Fetch URL:
https://github.com/misskey-dev/misskey
Commit: f954b1e2 to ad7bf096
enhance(backend): usernameに対してもprohibitedWordsForNameOfUserを適用 (#16282)
Don't remove notes when reply / renote is removed (#16287)


なんでnote.text以外のところでエラー出るんだ?
バグか?


こんな感じでPlugin:register_note_post_interruptor(fn)試してみたけど投稿ボタン押すとInvalid Paramって出てくる
どうなっとんねん

/// @ 0.12.4
### {
    name: "test"
    version: "0.1.0"
    author: "@jj1guj"
    description: "test"
}

Plugin:register_note_post_interruptor(@(note) {
  
  // ノートの中身を書き換える
  note.text = note.text.replace('リンゴ', 'バナナ')

  return note
})


とりあえず投稿フォーム上で​:youtube:の追跡クエリを削除するプラグインできた
nyayzeみたいにノートするときに勝手に削除してくれるようにしたいが方法がわからん

/// @ 0.12.4
### {
  name: "YouTube Link Cleaner"
  version: "0.1.0"
  author: "@jj1guj"
  description: "投稿時に YouTube URL の追跡クエリ (?si など) を削除します"
}

@is_youtube(u) {
  (u.index_of("youtu.be") != -1) || (u.index_of("youtube.com") != -1)  // true/false
}

@cleanUrl(u) {
  if (is_youtube(u)) {
    u.split("?")[0]    // 「?」より前だけ残す
  } else {
    u
  }
}

Plugin:register_post_form_action('YouTube Link Cleaner', @(note, rewrite) {
  if (note.text == null) {
    return note
  }

  let parts = note.text.split(" ")
  var out = ""

  // 公式構文: for (let 変数, 回数)
  for (let i, parts.len) {
    parts[i] = cleanUrl(parts[i])
    out = `{out} {cleanUrl(parts[i])}`
  }
  	

  rewrite('text', out)
})


[Auto Note]:Updated
Fetch URL:
https://github.com/misskey-dev/misskey
Commit: c165749a to f954b1e2
Bump version to 2025.7.0-beta.1
enhance: ウォーターマーク機能をロールで制御可能に
New Crowdin updates (#16258)
fix: unable to horizontally scroll when pull to refresh is enabled (#16273)


体調崩してる時、家で退屈してたからnoteに今まで読んだ本の一部を紹介する記事書いたらいいね的なボタンを何人か押してくれたみたいでちょっと嬉しい


[Auto Note]:Updated
Fetch URL:
https://github.com/misskey-dev/misskey
Commit: 89ed8be8 to c165749a
chore(frontend): fix type errors


[Auto Note]:Updated
Fetch URL:
https://github.com/misskey-dev/misskey
Commit: 9dddc847 to 89ed8be8
fix(frontend): MkRange/MkSelectでdisabledが効かなくなっている問題を修正 (#16263)
refactor(frontend): Formまわりの型強化 (#16260)
Merge branch 'develop' of
https://github.com/misskey-dev/misskey into develop
chore(frontend): tweak selector to improve rendering performance


[Auto Note]:Updated
Fetch URL:
https://github.com/misskey-dev/misskey
Commit: 004cfd5e to 9dddc847
refactor(frontend): menuの型定義の可読性向上 (#16261)



[Auto Note]:Updated
Fetch URL:
https://github.com/misskey-dev/misskey
Commit: 8430256f to e6ec15e3
feat: 特定のドライブファイルを添付しているチャットメッセージを一覧できるように



[Auto Note]:Updated
Fetch URL:
https://github.com/misskey-dev/misskey
Commit: cc4cdd1e to abde1597
enhance(backend): Add display name to email (#16256)
fix type errors