mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2025-12-30 06:31:42 -08:00
* new protos * implement commands on server * add buttons * icons * run formatter * Message on get replay code failure * Add new commands to switch statement * Better failure messages * Fix permission check query * Change hash method * Prevent adding duplicate replays * Clean up TabReplay ui * Copy over replay name * base64 encode the hash * Shorten hash * Better failure messages * change icon back to search icon * check hash before checking if user already has access * update share icon * Update label text
10 lines
220 B
Protocol Buffer
10 lines
220 B
Protocol Buffer
syntax = "proto2";
|
|
import "session_commands.proto";
|
|
|
|
message Command_ReplayGetCode {
|
|
extend SessionCommand {
|
|
optional Command_ReplayGetCode ext = 1104;
|
|
}
|
|
optional sint32 game_id = 1 [default = -1];
|
|
}
|