mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-27 17:13:54 -07:00
[UserListDelegate] Consider providerId (#7018)
Co-authored-by: Lukas Brübach <lukas.bruebach@bdosecurity.de>
This commit is contained in:
parent
2914874720
commit
6dc974a05d
19 changed files with 211 additions and 53 deletions
|
|
@ -116,8 +116,9 @@ message Command_AddCardArtRule {
|
|||
}
|
||||
|
||||
optional string card_name = 1;
|
||||
optional string mode = 2; // "ALLOW" or "DENY"
|
||||
optional string reason = 3;
|
||||
optional string card_provider_id = 2;
|
||||
optional string mode = 3; // "ALLOW" or "DENY"
|
||||
optional string reason = 4;
|
||||
}
|
||||
|
||||
message Command_RemoveCardArtRule {
|
||||
|
|
@ -126,6 +127,7 @@ message Command_RemoveCardArtRule {
|
|||
}
|
||||
|
||||
optional string card_name = 1;
|
||||
optional string card_provider_id = 2;
|
||||
}
|
||||
|
||||
message Command_ListCardArtRules {
|
||||
|
|
|
|||
|
|
@ -3,8 +3,9 @@ import "response.proto";
|
|||
|
||||
message Response_CardArtRuleEntry {
|
||||
optional string card_name = 1;
|
||||
optional string mode = 2;
|
||||
optional string reason = 3;
|
||||
optional string card_provider_id = 2;
|
||||
optional string mode = 3;
|
||||
optional string reason = 4;
|
||||
}
|
||||
|
||||
message Response_ListCardArtRules {
|
||||
|
|
|
|||
|
|
@ -15,10 +15,11 @@ message ServerInfo_User {
|
|||
};
|
||||
message CardArtParams {
|
||||
optional string card_name = 1;
|
||||
optional double margin_pct_l = 2 [default = 0.33];
|
||||
optional double margin_pct_r = 3 [default = 0.02];
|
||||
optional double vertical_offset = 4 [default = 0.35];
|
||||
optional double zoom = 5 [default = 1.0];
|
||||
optional string card_provider_id = 2;
|
||||
optional double margin_pct_l = 3 [default = 0.33];
|
||||
optional double margin_pct_r = 4 [default = 0.02];
|
||||
optional double vertical_offset = 5 [default = 0.35];
|
||||
optional double zoom = 6 [default = 1.0];
|
||||
};
|
||||
|
||||
optional string name = 1;
|
||||
|
|
|
|||
|
|
@ -212,8 +212,9 @@ message Command_SetCardArtParams {
|
|||
optional Command_SetCardArtParams ext = 1025;
|
||||
}
|
||||
optional string card_name = 1;
|
||||
optional double margin_pct_l = 2;
|
||||
optional double margin_pct_r = 3;
|
||||
optional double vertical_offset = 4;
|
||||
optional double zoom = 5;
|
||||
optional string card_provider_id = 2;
|
||||
optional double margin_pct_l = 3;
|
||||
optional double margin_pct_r = 4;
|
||||
optional double vertical_offset = 5;
|
||||
optional double zoom = 6;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue