Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
38c6af1
Tidy up and slightly extend logging messages
Nov 7, 2011
12c8d3b
minor: add some method doc
Nov 7, 2011
26d6e82
rename m_channel_name to m_parent_channel_name for clarity
Nov 7, 2011
ff82059
Increase information in log messages for debugging purposes
Nov 9, 2011
caef752
correct/improve some of the previous logging messages
Nov 10, 2011
ce25537
factor: reduce some unnecessary copy & paste, adjust some log messages
Nov 10, 2011
3941efa
Get rid of unnecessary existence check before calling Dictionary.Remo…
Nov 10, 2011
eed5b8a
Provide a little more detail as to which scene the event came from wh…
Nov 10, 2011
e9f38f5
Get Whisper to compile with OpenSim master (0.7.3-dev, commit 4567555…
Dec 5, 2011
b68eeaa
Move prebuild.xml so that we can build the module simply by cloning t…
Jun 27, 2014
abcbe91
To get monodevelop (and probably vs) to resolve third party DLL refer…
Jun 27, 2014
3488360
Remove comments about original source location. This isn't helpful w…
Jun 27, 2014
2940b80
Revert "To get monodevelop (and probably vs) to resolve third party D…
Jun 27, 2014
6dc1be6
Print out full error stack traces to the log
Jun 27, 2014
9131977
Replace bin/Whisper.dll with the whisper I just built
Jun 27, 2014
687b3b2
Add actual module build reference to README, and section for installi…
Jun 27, 2014
26354fc
minor: on "mumble report" console command also show number of connect…
Jun 27, 2014
83fa853
minor: Add console commands to Mumble category
Jun 27, 2014
a4e435d
Update Whisper.dll to last commit
Jun 27, 2014
2808290
minor: Convert readme to markdown format
Jun 27, 2014
f817891
Update README to reflect that this has been working for OpenSimulator…
Jun 27, 2014
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
22 changes: 0 additions & 22 deletions README

This file was deleted.

56 changes: 56 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
#Whisper OpenSim Voice Module#

For detailed documentation please check [CONFIG].

#Building#

To use Whisper, one has to

1. Build and/or install the OpenSimulator module.
2. Build and/or install the Murmur viewer executable (which currently replaces SLVoice.exe in the viewer)
3. Run a murmur server to route voice data between viewers after channels have been established via the
OpenSimulator module.

For detailed instructions on 2 and 3, please see [CONFIG]. Here, we will describe the process of building and
configuring the OpenSimulator module in a bit more detail.

##Building the OpenSimulator module##

1. Copy this directory to $OPENSIM_BASE/addon-modules/Whisper
2. Follow the instructions at [MODULE BUILD] to build the module. This will copy the generated DLL automatically
into your $OPENSIM_BASE/bin directory.

##Installing the OpenSimulator module##

Alternatively, you can install the prebuilt bin/Whisper.dll into $OPENSIM_BASE/bin. This was built under
Mono but should work on other systems. You will also need to copy over bin/Ice.dll and bin/Glacier2.dll if you
are going to use the Glacier option.

## Configuring the module##

1. Copy the contents of the OpenSim.ini.include file into your OpenSim.ini

#References#

[CONFIG] - doc/Whisper_Murmur_Config.pdf
[MODULE BUILD] - http://opensimulator.org/wiki/IRegionModule#Building_Region_Modules

#Release Notes#

##Development##
- updated to compile from OpenSim 0.7.3 to 0.8 and current OpenSimulator dev code.

##0.2.0##
- updated to compile for OpenSim 0.7.1+ (thanks to Justin)
- grid support (thanks Snoopy)
- glacier2 support (thanks Brian)

##0.1.0##
- initial version
- for OpenSim standalone configuration

#Credits#
* Volker Gaessler (vcomm.ch)
* Snoopy Pfeffer (dreamlandmetaverse.com)
* Justin Clark-Casey (justincc.org)
* Brian Becker
2 changes: 0 additions & 2 deletions Whisper/Modules/Murmur.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@
// Ice version 3.3.1
// Generated from file `Murmur.ice'

/// Original source at https://github.com/vgaessler/whisper_server

#if __MonoCS__

using _System = System;
Expand Down
Loading