File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
rust/hedgewars-server/src Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11+ features
22* bugfixes
3- ==================== 1.0.1 -dev =====================
3+ ==================== 1.1.0 -dev =====================
44Gameplay:
55 + Minigun push is now much stronger
66 + Easier to push hogs around with blowtorch
Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ QString RoomsListModel::protoToVersion(const QString & proto)
127127 case 57 : return " 0.9.25" ;
128128 case 58 : return " 1.0.0-dev" ;
129129 case 59 : return " 1.0.0" ;
130- case 60 : return " 1.0.1 -dev" ;
130+ case 60 : return " 1.1.0 -dev" ;
131131 default : return " Unknown" ;
132132 }
133133}
Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ protoNumber2ver v = Map.findWithDefault "Unknown" v vermap
124124 , (57 , " 0.9.25" )
125125 , (58 , " 1.0.0-dev" )
126126 , (59 , " 1.0.0" )
127- , (60 , " 1.0.1 -dev" )
127+ , (60 , " 1.1.0 -dev" )
128128 ]
129129
130130askFromConsole :: B. ByteString -> IO B. ByteString
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ pub fn protocol_version_string(protocol_number: u16) -> &'static str {
6666 57 => "0.9.25" ,
6767 58 => "1.0.0-dev" ,
6868 59 => "1.0.0" ,
69- 60 => "1.0.1 -dev" ,
69+ 60 => "1.1.0 -dev" ,
7070 _ => "Unknown" ,
7171 }
7272}
You can’t perform that action at this time.
0 commit comments