Skip to content

Releases: hatopopvr/scoresaber-enhanced-bl-replays

v0.4.0

18 Mar 07:20
Compare
Choose a tag to compare

このアップデートでは、以下の新機能を追加しました。

新機能 / New Features

クリップボードコピー機能:曲名、Mapper名、難易度、ACC、PP、リプレイリンクなどのスコア情報を素早くコピーして共有できるようになりました。このコピーされる情報のフォーマットはカスタマイズ可能で、自分の好みに合わせて情報表示を調整できます。
Clipboard Copy Functionality: You can now quickly copy and share score information such as song name, mapper name, difficulty, ACC, PP, and replay link. The format of this copied information is customizable, allowing you to adjust the display of information to suit your preferences.

image_004

クリップボードコピー形式のカスタマイズ方法 / How to Customize the Clipboard Copy Format:

クリップボードコピー形式をカスタマイズしたい方は、スクリプトのソースコード内の形式設定を直接編集してください。特定の詳細を強調したり、不要な情報を省略するなどの調整が可能です。詳細な手順や例については、スクリプト内のコメントを参照してください。
If you want to customize the format for clipboard copying, directly edit the format settings in the script's source code. This allows for adjustments such as emphasizing specific details or omitting unnecessary information. For detailed steps and examples, refer to the comments within the script.

// Format for clipboard copying
/*
    ---List of available variables---
    songName: Name of the song.
    mapperName: Name of the song's mapper (creator).
    difficulty: String representing the song's difficulty (e.g., Easy, Normal, Hard, Expert, ExpertPlus).
    stars: Difficulty rating on ScoreSaber (e.g., "7.12★").
    accuracy: Percentage of accuracy for the play.
    performancePoints: Performance Points (PP) on ScoreSaber.
    replayLink: Link to the replay (data from BeatLeader).
    fcAcc: Percentage of accuracy at Full Combo (data from BeatLeader).
    accLeft: Accuracy with the left hand (data from BeatLeader).
    accRight: Accuracy with the right hand (data from BeatLeader).
    pauses: Number of pauses during the play (data from BeatLeader).
    totalMisses: Total number of Misses and Bad Cuts.
    previousMisses: Total number of Misses and Bad Cuts before the score update (data from BeatLeader).
*/
const defaultCopyFormats = {
  ranked: `Song: {songName} | {difficulty} | {stars}
Mapper: {mapperName}
Acc: {accuracy} (FC:{fcAcc}%)
L|R: {accLeft} | {accRight}
PP: {performancePoints}
Miss: {totalMisses} {previousMisses} | Pauses: {pauses}
Replay: {replayLink}`,
  unranked: `Song: {songName} | {difficulty}
Mapper: {mapperName}
Acc: {accuracy} (FC:{fcAcc}%)
L|R: {accLeft} | {accRight}
Miss: {totalMisses} {previousMisses} | Pauses: {pauses}
Replay: {replayLink}`
};

最新版のスクリプトを取得する / Get the latest version of the script here
※ 導入にあたっての注記はREADMEを参照願います。
  Please refer to the README for notes on installation.

このスクリプトをより良くするためのご意見や提案があれば、お気軽にご連絡ください。
If you have any suggestions or feedback on how to improve this script, please feel free to contact us.

Full Changelog: v0.3.1...v0.4.0

v0.3.1

18 Sep 11:01
Compare
Choose a tag to compare

v0.3.0

18 Jul 08:27
Compare
Choose a tag to compare

新機能と改良 / New Features and Improvements

このリリースでは、以下の新機能と改良を行いました:
In this release, we added the following new features and improvements:

  • 表示制御ボタンの追加: これにより、表示項目をカスタマイズできるようになりました。
    Added Display Control Button: With this, users can now customize the display items.

  • カバー画像へのBL-Replay Linkの追加: 各曲のカバー画像に直接BL-Replayへのリンクを設置しました。これにより、リプレイボタンを表示不要にしました。
    Added BL-Replay Link to Cover Images: We have placed a direct link to BL-Replay on each song's cover image. This allows users to replay more easily.

image_003

最新版のスクリプトを取得する / Get the latest version of the script here
※ 導入にあたっての注記はREADMEを参照願います。
  Please refer to the README for notes on installation.

v0.2.0

30 Jun 17:35
Compare
Choose a tag to compare

新機能

BeatLeaderから取得したデータを基に以下の情報を表示します:

  • 左手と右手それぞれの精度 ( AccLeftとAccRight)
  • スコアの改善値 (ScoreImprovement)

image_002

最新版のスクリプトを取得する
※導入にあたっての注記はREADMEを参考願います。

v0.1.4

30 Jun 17:06
Compare
Choose a tag to compare

最初のリリース

  • BL Replayリンクの追加
  • BLスコアデータの一部キャッシュの追加

image_001

最新版のスクリプトを取得する