bump akatsuki-pp
This commit is contained in:
Generated
+3
-3
@@ -4,12 +4,12 @@ version = 3
|
||||
|
||||
[[package]]
|
||||
name = "akatsuki-pp"
|
||||
version = "0.9.6"
|
||||
source = "git+https://github.com/osuAkatsuki/akatsuki-pp-rs?rev=5c97207f25cf9fd07252dca1ba68d785e2147ce1#5c97207f25cf9fd07252dca1ba68d785e2147ce1"
|
||||
version = "0.9.9"
|
||||
source = "git+https://github.com/osuAkatsuki/akatsuki-pp-rs?rev=55cc1f2729988614c0760907e726a8bbae2a8bce#55cc1f2729988614c0760907e726a8bbae2a8bce"
|
||||
|
||||
[[package]]
|
||||
name = "akatsuki-pp-py"
|
||||
version = "1.0.1"
|
||||
version = "1.0.3"
|
||||
dependencies = [
|
||||
"akatsuki-pp",
|
||||
"pyo3",
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "akatsuki-pp-py"
|
||||
version = "1.0.2"
|
||||
version = "1.0.3"
|
||||
description = "osu! difficulty and pp calculation for all modes"
|
||||
authors = ["Max Ohn <ohn.m@hotmail.de>", "tsunyoku <tsunyoku@gmail.com>"]
|
||||
license = "MIT"
|
||||
@@ -12,7 +12,7 @@ crate-type = ["cdylib"]
|
||||
|
||||
[dependencies]
|
||||
pyo3 = { version = "0.17", features = ["extension-module", "macros"] }
|
||||
akatsuki-pp = { git = "https://github.com/osuAkatsuki/akatsuki-pp-rs", rev = "d6b4cbb90d12e06fa7b9405d87b9922e08522775" }
|
||||
akatsuki-pp = { git = "https://github.com/osuAkatsuki/akatsuki-pp-rs", rev = "55cc1f2729988614c0760907e726a8bbae2a8bce" }
|
||||
|
||||
[profile.release]
|
||||
lto = "fat"
|
||||
|
||||
+1
-1
@@ -4,7 +4,7 @@ build-backend = "maturin"
|
||||
|
||||
[project]
|
||||
name = "akatsuki-pp-py"
|
||||
version = "1.0.2"
|
||||
version = "1.0.3"
|
||||
requires-python = ">=3.7"
|
||||
description = "osu! difficulty and pp calculation for all modes"
|
||||
classifiers = [
|
||||
|
||||
@@ -268,6 +268,8 @@ impl PyCalculator {
|
||||
n_spinners: attrs.difficulty.n_spinners,
|
||||
stars: attrs.difficulty.stars,
|
||||
max_combo: attrs.difficulty.max_combo,
|
||||
aim_difficult_strain_count: 0.0,
|
||||
speed_difficult_strain_count: 0.0,
|
||||
},
|
||||
pp: attrs.pp,
|
||||
pp_acc: attrs.pp_acc,
|
||||
|
||||
+7
-1
@@ -1,10 +1,10 @@
|
||||
use std::fmt::{Debug, Display, Formatter, Result as FmtResult};
|
||||
|
||||
use pyo3::{pyclass, pymethods};
|
||||
use akatsuki_pp::{
|
||||
catch::CatchDifficultyAttributes, mania::ManiaDifficultyAttributes,
|
||||
osu::OsuDifficultyAttributes, taiko::TaikoDifficultyAttributes, DifficultyAttributes,
|
||||
};
|
||||
use pyo3::{pyclass, pymethods};
|
||||
|
||||
#[pyclass(name = "DifficultyAttributes")]
|
||||
#[derive(Clone, Debug)]
|
||||
@@ -91,6 +91,8 @@ impl Debug for BorrowedDifficultyAttributes<'_> {
|
||||
n_spinners,
|
||||
stars,
|
||||
max_combo,
|
||||
aim_difficult_strain_count,
|
||||
speed_difficult_strain_count,
|
||||
} = attrs;
|
||||
|
||||
debug.field("mode", &0_u8);
|
||||
@@ -109,6 +111,8 @@ impl Debug for BorrowedDifficultyAttributes<'_> {
|
||||
n_spinners,
|
||||
stars,
|
||||
max_combo,
|
||||
aim_difficult_strain_count,
|
||||
speed_difficult_strain_count,
|
||||
}
|
||||
}
|
||||
Self::Taiko(attrs) => {
|
||||
@@ -230,4 +234,6 @@ getters! {
|
||||
n_tiny_droplets as usize: (Catch),
|
||||
ar as f64: (Osu, Catch),
|
||||
hit_window as f64: (Taiko, Mania),
|
||||
aim_difficult_strain_count as f64: (Osu),
|
||||
speed_difficult_strain_count as f64: (Osu),
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user