mirror of
https://github.com/mumble-voip/mumble.git
synced 2025-10-26 11:19:16 +00:00
Bump version to 1.1.1
git-svn-id: https://mumble.svn.sourceforge.net/svnroot/mumble/trunk@803 05730e5d-ab1b-0410-a4ac-84af385074fa
This commit is contained in:
parent
eb428c3b24
commit
1cb276e2db
@ -6,7 +6,7 @@ The OpenGL overlay works by intercepting the call to switch buffers, and just
|
||||
before the buffer switch we draw our nice GUI.
|
||||
|
||||
To load a game with the overlay enabled, start the game as this:
|
||||
LD_PRELOAD=/path/to/libmumble.so.1.0.0 gamename
|
||||
LD_PRELOAD=/path/to/libmumble.so.1.1.1 gamename
|
||||
|
||||
If you have Mumble installed through the binary packages, this can be done by
|
||||
simply typing:
|
||||
|
||||
8
debian/changelog
vendored
8
debian/changelog
vendored
@ -1,8 +1,14 @@
|
||||
mumble (1.1.1) gutsy; urgency=low
|
||||
|
||||
* Bugfixes
|
||||
|
||||
-- Thorvald Natvig <slicer@sourceforge.net> Sat, 20 Oct 2007 01:00:00 +0200
|
||||
|
||||
mumble (1.1.0) gutsy; urgency=low
|
||||
|
||||
* Multiserver support
|
||||
|
||||
-- Thorvald Natvig <slicer@sourceforge.net> Sat, 19 Oct 2007 14:15:00 +0200
|
||||
-- Thorvald Natvig <slicer@sourceforge.net> Fri, 19 Oct 2007 14:15:00 +0200
|
||||
|
||||
mumble (1.0.0) feisty; urgency=low
|
||||
|
||||
|
||||
4
debian/rules
vendored
4
debian/rules
vendored
@ -30,7 +30,7 @@ configure: configure-stamp
|
||||
configure-stamp:
|
||||
dh_testdir
|
||||
# Add here commands to configure the package.
|
||||
qmake-qt4 DEFINES+=MUMBLE_VERSION="1.1.0" main.pro
|
||||
qmake-qt4 DEFINES+=MUMBLE_VERSION="1.1.1" main.pro
|
||||
|
||||
touch configure-stamp
|
||||
|
||||
@ -89,7 +89,7 @@ install-arch:
|
||||
install -d $(CURDIR)/debian/mumble-server/usr/bin
|
||||
install ./release/mumble $(CURDIR)/debian/mumble/usr/bin
|
||||
install ./scripts/mumble-overlay $(CURDIR)/debian/mumble/usr/bin
|
||||
install ./release/libmumble.so.1.1.0 $(CURDIR)/debian/mumble/usr/lib/
|
||||
install ./release/libmumble.so.1.1.1 $(CURDIR)/debian/mumble/usr/lib/
|
||||
install ./release/murmurd $(CURDIR)/debian/mumble-server/usr/bin
|
||||
|
||||
# install menu entry
|
||||
|
||||
@ -123,11 +123,11 @@ Section "Mumble & Murmur" SecMumble
|
||||
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Mumble" \
|
||||
"Publisher" "Mumble"
|
||||
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Mumble" \
|
||||
"InstallSource" "http://prdownloads.sourceforge.net/mumble/Mumble-1.1.0.exe?download"
|
||||
"InstallSource" "http://prdownloads.sourceforge.net/mumble/Mumble-1.1.1.exe?download"
|
||||
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Mumble" \
|
||||
"URLInfoAbout" "http://mumble.sourceforge.net/"
|
||||
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Mumble" \
|
||||
"DisplayVersion" "1.1.0"
|
||||
"DisplayVersion" "1.1.1"
|
||||
WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Mumble" \
|
||||
"NoModify" 1
|
||||
WriteRegDWORD HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Mumble" \
|
||||
|
||||
@ -5,7 +5,7 @@ TEMPLATE = lib
|
||||
CONFIG -= qt
|
||||
CONFIG += debug_and_release
|
||||
TARGET = mumble
|
||||
VERSION = 1.1.0
|
||||
VERSION = 1.1.1
|
||||
SOURCES = overlay.c
|
||||
LIBS += -lrt -ldl
|
||||
QMAKE_CFLAGS += -fvisibility=hidden
|
||||
|
||||
@ -6,4 +6,4 @@ if [ -f /etc/sysconfig/mumble ]; then
|
||||
. /etc/sysconfig/mumble
|
||||
fi
|
||||
|
||||
LD_PRELOAD="${MUMBLE_OVERLAY_PATH}/libmumble.so.1.1.0 ${LD_PRELOAD}" "${@}"
|
||||
LD_PRELOAD="${MUMBLE_OVERLAY_PATH}/libmumble.so.1.1.1 ${LD_PRELOAD}" "${@}"
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
VERSION = 1.1.0
|
||||
VERSION = 1.1.1
|
||||
DIST = mumble.pro murmur.pro mumble.pri mumble.ico Message.h mumble_plugin.h PacketDataStream.h CryptState.h Timer.h
|
||||
CONFIG += qt thread debug_and_release warn_on
|
||||
!nopch {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user