Instiki 0.16.5
Update to Rails 2.3.2 (the stable Rails 2.3 release). Add audio/speex support Update CHANGELOG Bump version number
This commit is contained in:
parent
801d307405
commit
e2ccdfd812
264 changed files with 4850 additions and 1906 deletions
|
@ -57,6 +57,7 @@ class ApplicationController < ActionController::Base
|
|||
'.mov' => 'video/quicktime',
|
||||
'.mp3' => 'audio/mpeg',
|
||||
'.mp4' => 'video/mp4',
|
||||
'.spx' => 'audio/speex',
|
||||
'.txt' => 'text/plain',
|
||||
'.tex' => 'text/plain',
|
||||
'.wav' => 'audio/x-wav',
|
||||
|
@ -72,6 +73,7 @@ class ApplicationController < ActionController::Base
|
|||
'audio/mpeg' => 'inline',
|
||||
'audio/x-wav' => 'inline',
|
||||
'audio/x-aiff' => 'inline',
|
||||
'audio/speex' => 'inline',
|
||||
'audio/ogg' => 'inline',
|
||||
'video/ogg' => 'inline',
|
||||
'video/mp4' => 'inline',
|
||||
|
@ -260,7 +262,7 @@ module Instiki
|
|||
module VERSION #:nodoc:
|
||||
MAJOR = 0
|
||||
MINOR = 16
|
||||
TINY = 4
|
||||
TINY = 5
|
||||
SUFFIX = '(MML+)'
|
||||
PRERELEASE = false
|
||||
if PRERELEASE
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue