From 92e7ef3c33145635f3d0b8d7c92d02ecf9a47b3f Mon Sep 17 00:00:00 2001 From: basketballsmash-yt <80083028+basketballsmash-yt@users.noreply.github.com> Date: Mon, 13 Dec 2021 00:55:28 +0900 Subject: [PATCH] Add v0.5.2.1 changelog in JP README.md (#105) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Delete README.old.md Deleted old version of README, there's already a new version * Delete Readme.txt This guide is outdated, there's README.md already * Update README.md Edited for grammar and added credits down below * Update CLang_en.cs Fixed grammar * Update CLang_jp.cs Fixed grammar * Update README.md Fix grammar on my side * Update CLang_jp.cs Fixed mistake on my side when fetching upstream * Update README.md * Update README.md * Update README.md Just a test commit * Update CLang_jp.cs stopping at 34, will do afterwards * Update CLang_jp.cs next 56 * Update CLang_jp.cs removed unfinished 56 * Update CLang_jp.cs Did until 99, continue on this.iKeyAssignTaikoLRed = new CItemBase( "LeftRed", "左側の面へのキーの割り当てを設\n定します。", "Drums key assign:\nTo assign key/pads for LeftRed\n button."); this.list項目リスト.Add(this.iKeyAssignTaikoLRed); line 931 of cactconfiglist.cs * Update CLang_jp.cs Finished 10000 to 10014, done. Will add dictionary later. * Update DictionnaryIndexes.md until 40 * Update DictionnaryIndexes.md next start off from 74 * Update DictionnaryIndexes.md next is 91 * Update DictionnaryIndexes.md Finally done * Update DictionnaryIndexes.md Changed * Update README.md Deleted the already done to do * Update README.md added tower floors crash faq * Update CStage結果.cs remove block of legacy code * Update CSong管理.cs Removed 2 old code * Update README.md Added @s for funnym0th and touhourenren * Revert "Update CSong管理.cs" This reverts commit d3db881b93a0d8702f95459618be4f152f89a011. didnt need edit * Revert "Update CStage結果.cs" This reverts commit 4a77eaa12cbef84bec78a2616e2b0844f6946e00. didnt need edit * Update README.md del touhourenren * Update CLang_jp.cs debug info * Update README.md Replaced Meowgister Youtube to Github following the format of other credits, and added Meowgister Twitter handle * Create README-EN.md Translation to English * Update README.md * Update README-EN.md * Update README-EN.md * Update CStrジャンルtoNum.cs game variety to game music * Update README.md * Update CStrジャンルtoNum.cs --- README.md | 13 +++ TJAPlayer3/Songs/CStrジャンルtoNum.cs | 122 +++++++++++++------------- 2 files changed, 74 insertions(+), 61 deletions(-) diff --git a/README.md b/README.md index 1dc16327..0b10059b 100644 --- a/README.md +++ b/README.md @@ -134,6 +134,19 @@ SlimDXを改めてダウンロードしてください:https://code.google.com ## 更新記録 +
+ v0.5.2.1 + + - バグ修正 + + - オート用のAIレベルを追加 + + - グローバルオフセットを追加 + + - AUTO ROLLをロールスピードに置き換え + +
+
v0.5.2 diff --git a/TJAPlayer3/Songs/CStrジャンルtoNum.cs b/TJAPlayer3/Songs/CStrジャンルtoNum.cs index db4b8828..9dcf7d69 100644 --- a/TJAPlayer3/Songs/CStrジャンルtoNum.cs +++ b/TJAPlayer3/Songs/CStrジャンルtoNum.cs @@ -1,62 +1,62 @@ -namespace TJAPlayer3 -{ - internal static class CStrジャンルtoNum - { - internal static int ForAC8_14( string strジャンル ) - { - switch( strジャンル ) - { - case "アニメ": - return 0; - case "ポップス": - return 1; - case "ゲームミュージック": - return 2; - case "ナムコオリジナル": - return 3; - case "クラシック": - return 4; - case "どうよう": - return 5; - case "バラエティ": - return 6; - case "ボーカロイド": - case "VOCALOID": - return 7; - default: - return 8; - } - } - - internal static int ForAC15(string strジャンル) - { - switch (strジャンル) - { - case "ポップス": - case "J-POP": - case "POPS": - case "JPOP": - return 0; - case "アニメ": - return 1; - case "ボーカロイド": - case "VOCALOID": - return 2; - case "キッズ": - case "どうよう": - return 3; - case "バラエティ": - return 4; - case "クラシック": - return 5; +namespace TJAPlayer3 +{ + internal static class CStrジャンルtoNum + { + internal static int ForAC8_14( string strジャンル ) + { + switch( strジャンル ) + { + case "アニメ": + return 0; + case "ポップス": + return 1; + case "ゲームミュージック": + return 2; + case "ナムコオリジナル": + return 3; + case "クラシック": + return 4; + case "どうよう": + return 5; + case "バラエティ": + return 6; + case "ボーカロイド": + case "VOCALOID": + return 7; + default: + return 8; + } + } + + internal static int ForAC15(string strジャンル) + { + switch (strジャンル) + { + case "ポップス": + case "J-POP": + case "POPS": + case "JPOP": + return 0; + case "アニメ": + return 1; + case "ボーカロイド": + case "VOCALOID": + return 2; + case "キッズ": + case "どうよう": + return 3; + case "バラエティ": + return 4; + case "クラシック": + return 5; case "ゲームバラエティ": - case "ゲームミュージック": - return 6; - case "ナムコオリジナル": - return 7; - default: - return 8; - } - } - } -} \ No newline at end of file + case "ゲームミュージック": + return 6; + case "ナムコオリジナル": + return 7; + default: + return 8; + } + } + } +}