mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-05-15 07:19:58 -05:00
Some checks are pending
Build Desktop / Configure (push) Waiting to run
Build Desktop / ${{matrix.distro}} ${{matrix.version}} (Debian, DEB, 12) (push) Blocked by required conditions
Build Desktop / ${{matrix.distro}} ${{matrix.version}} (Debian, DEB, skip, 11) (push) Blocked by required conditions
Build Desktop / ${{matrix.distro}} ${{matrix.version}} (Fedora, RPM, 41) (push) Blocked by required conditions
Build Desktop / ${{matrix.distro}} ${{matrix.version}} (Fedora, RPM, skip, 40) (push) Blocked by required conditions
Build Desktop / ${{matrix.distro}} ${{matrix.version}} (Ubuntu, DEB, 24.04) (push) Blocked by required conditions
Build Desktop / ${{matrix.distro}} ${{matrix.version}} (Ubuntu, DEB, skip, 20.04) (push) Blocked by required conditions
Build Desktop / ${{matrix.distro}} ${{matrix.version}} (Ubuntu, DEB, skip, 22.04) (push) Blocked by required conditions
Build Desktop / ${{matrix.distro}} ${{matrix.version}} (yes, Arch, skip) (push) Blocked by required conditions
Build Desktop / macOS ${{matrix.target}}${{ matrix.soc == 'Intel' && ' Intel' || '' }}${{ matrix.type == 'Debug' && ' Debug' || '' }} (3, 1, macos-14, Apple, 14, Release, 15.4) (push) Blocked by required conditions
Build Desktop / macOS ${{matrix.target}}${{ matrix.soc == 'Intel' && ' Intel' || '' }}${{ matrix.type == 'Debug' && ' Debug' || '' }} (3, 1, macos-15, Apple, 15, Release, 16.2) (push) Blocked by required conditions
Build Desktop / macOS ${{matrix.target}}${{ matrix.soc == 'Intel' && ' Intel' || '' }}${{ matrix.type == 'Debug' && ' Debug' || '' }} (3, macos-15, Apple, 15, Debug, 16.2) (push) Blocked by required conditions
Build Desktop / macOS ${{matrix.target}}${{ matrix.soc == 'Intel' && ' Intel' || '' }}${{ matrix.type == 'Debug' && ' Debug' || '' }} (4, 1, macos-13, Intel, 13, Release, 14.3.1) (push) Blocked by required conditions
Build Desktop / Windows ${{matrix.target}} (msvc2019_64, 5.15.*, 7) (push) Blocked by required conditions
Build Desktop / Windows ${{matrix.target}} (msvc2019_64, qtimageformats qtmultimedia qtwebsockets, 6.6.*, 10) (push) Blocked by required conditions
32 lines
894 B
Protocol Buffer
32 lines
894 B
Protocol Buffer
syntax = "proto2";
|
|
message ServerInfo_User {
|
|
enum UserLevelFlag {
|
|
IsNothing = 0;
|
|
IsUser = 1;
|
|
IsRegistered = 2;
|
|
IsModerator = 4;
|
|
IsAdmin = 8;
|
|
IsJudge = 16;
|
|
};
|
|
message PawnColorsOverride {
|
|
optional string left_side = 1;
|
|
optional string right_side = 2;
|
|
};
|
|
|
|
optional string name = 1;
|
|
optional uint32 user_level = 2;
|
|
optional string address = 3;
|
|
optional string real_name = 4;
|
|
// gender = 5; // obsolete
|
|
optional string country = 6;
|
|
optional bytes avatar_bmp = 7;
|
|
optional sint32 id = 8 [default = -1];
|
|
optional sint32 server_id = 9 [default = -1];
|
|
optional uint64 session_id = 10;
|
|
optional uint64 accountage_secs = 11;
|
|
optional string email = 12;
|
|
optional string clientid = 13;
|
|
optional string privlevel = 14;
|
|
optional PawnColorsOverride pawn_colors = 15;
|
|
}
|