@rian8337/osu-droid-replay-analyzer 1.0.3 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +5 -5
- package/typings/index.d.ts +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rian8337/osu-droid-replay-analyzer",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "A replay analyzer for analyzing osu!droid replay files.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"osu",
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
"url": "https://github.com/Rian8337/osu-droid-module/issues"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@rian8337/osu-base": "^1.0.
|
|
35
|
-
"@rian8337/osu-difficulty-calculator": "^1.0.
|
|
36
|
-
"@rian8337/osu-rebalance-difficulty-calculator": "^1.0.
|
|
34
|
+
"@rian8337/osu-base": "^1.0.4",
|
|
35
|
+
"@rian8337/osu-difficulty-calculator": "^1.0.4",
|
|
36
|
+
"@rian8337/osu-rebalance-difficulty-calculator": "^1.0.4",
|
|
37
37
|
"java-deserialization": "^0.1.0",
|
|
38
38
|
"unzipper": "^0.10.11"
|
|
39
39
|
},
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"publishConfig": {
|
|
46
46
|
"access": "public"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "31e88dedb78e6b1e0123b67bcc5d4dd31f5dfc60"
|
|
49
49
|
}
|
package/typings/index.d.ts
CHANGED
|
@@ -222,7 +222,9 @@ declare module "@rian8337/osu-droid-replay-analyzer" {
|
|
|
222
222
|
*
|
|
223
223
|
* @param map The beatmap.
|
|
224
224
|
*/
|
|
225
|
-
static isEligibleToDetect(
|
|
225
|
+
static isEligibleToDetect(
|
|
226
|
+
map: DroidStarRating | RebalanceDroidStarRating
|
|
227
|
+
): boolean;
|
|
226
228
|
}
|
|
227
229
|
|
|
228
230
|
//#endregion
|
|
@@ -316,7 +318,6 @@ declare module "@rian8337/osu-droid-replay-analyzer" {
|
|
|
316
318
|
readonly unstableRate: number;
|
|
317
319
|
}
|
|
318
320
|
|
|
319
|
-
|
|
320
321
|
/**
|
|
321
322
|
* Contains information about a replay.
|
|
322
323
|
*/
|