Browse Source

Releasing v2.0beta3; I feel more testing needs to be done before final. If you want to help, test and tell me stuff works.

Natenom/support-murmur-13-1446181288462 v2.0beta3
Michael Ziegler 14 years ago
parent
commit
a725a1e3e3
  1. 9
      CHANGELOG
  2. 2
      pyweb/mumble/forms.py
  3. 1
      pyweb/mumble/templates/mumble/mumble.html

9
CHANGELOG

@ -2,6 +2,15 @@
Mumble-Django changelog
=======================
Version 2.0beta3, 7 Mar 2010:
------------------------------
* Fix the channel viewer crashing when PIL doesn't recognize the image format
of one user's Texture.
* Disable the Texture stuff for Murmur 1.2.2, as its implementation is buggy.
* Add a French translation.
* Update Italian translation.
* Add banning users.
Version 2.0beta2, 5 Mar 2010:
------------------------------
* Drop "NOT NULL" constraint on the port column during the database transition.

2
pyweb/mumble/forms.py

@ -312,6 +312,6 @@ class MumbleKickForm( Form ):
class MumbleTextureForm( Form ):
""" The form used to upload a new image to be set as texture. """
texturefile = forms.ImageField();
texturefile = forms.ImageField( label=_("User Texture") );

1
pyweb/mumble/templates/mumble/mumble.html

@ -31,6 +31,7 @@
<li>{% trans "Website" %}: {{ DBaseObject.url|urlize }}</li>
{% endif %}
<li>{% trans "Server version" %}: {{ DBaseObject.version.0 }}.{{ DBaseObject.version.1 }}.{{ DBaseObject.version.2 }}</li>
<li><a href="{% url mumble.views.mobile_show DBaseObject.id %}">{% trans "Minimal view" %}</a></li>
</ul>
<fieldset>
<legend>{% trans "Welcome message" %}</legend>

Loading…
Cancel
Save