Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -933,6 +933,7 @@ Defines types of rooms peers may connect to
| ROOM_TYPE_UNSPECIFIED | 0 | |
| ROOM_TYPE_FULL_FEATURE | 1 | |
| ROOM_TYPE_AUDIO_ONLY | 2 | |
| ROOM_TYPE_BROADCASTER | 3 | |



Expand Down
1 change: 1 addition & 0 deletions fishjam/peer_notifications.proto
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ message PeerMessage {
ROOM_TYPE_UNSPECIFIED = 0;
ROOM_TYPE_FULL_FEATURE = 1;
ROOM_TYPE_AUDIO_ONLY = 2;
ROOM_TYPE_BROADCASTER = 3;
}

// Response sent by FJ, confirming successful authentication
Expand Down
1 change: 1 addition & 0 deletions fishjam_protos/lib/fishjam/peer_notifications.pb.ex
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ defmodule Fishjam.PeerMessage.RoomType do
field :ROOM_TYPE_UNSPECIFIED, 0
field :ROOM_TYPE_FULL_FEATURE, 1
field :ROOM_TYPE_AUDIO_ONLY, 2
field :ROOM_TYPE_BROADCASTER, 3
end

defmodule Fishjam.PeerMessage.Authenticated do
Expand Down
2 changes: 1 addition & 1 deletion fishjam_protos/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defmodule FishjamProtos.MixProject do

defp deps do
[
{:protobuf, "~> 0.14.0"}
{:protobuf, "~> 0.14.1"}
]
end
end
Loading