Ubuntu / Linux news and application reviews.

Emesene 2.12.5 Released With Single-Window Mode

emesene

Emesene, a chat application that supports MSN, Gtalk, Facebook chat and Jabber has reached version 2.12.5, getting a tabbed, single-window UI, direct-connect for file transfers and more.

Ubuntu Font Family (W/ Monospace Variant), Emesene 2.11.9, GNOME Shell Mousewheel Zoom [PPA Updates]

Mousewheel Zoom, a Gnome Shell tool that enables a Compiz-like ALT + mousewheel zoom, is now available in a PPA for Ubuntu 11.10 Oneiric Ocelot.

Add the PPA and install GNOME Shell Mousewheel Zoom using the following commands:
sudo add-apt-repository ppa:tobias-quinn/gsmz
sudo apt-get update
sudo apt-get install gnome-shell-mousewheel-zoom

Thanks to Tobias for the tip!




Ubuntu Font Family Monospace

Ubuntu Font Family 0.80 (which includes a monospace variant) is now available in the official Ubuntu 11.10 Oneiric Ocelot repositories. 

To make it easier to install and stay up to date with the latest versions, I've also uploaded the new font version to the WebUpd8 Ubuntu Font Family PPA, for Ubuntu 11.04, 10.10 and 10.04 - add the PPA and install it using the following commands:

Install Emesene 2.11.5 In Ubuntu [Official PPA]

Emesene 2

When Emesene 2 was released, we uploaded it to our Unstable PPA, but Emesene 2 now has its own official PPA which was just updated and it now includes the latest Emesene 2.11.5 (released today).

Emesene 2.11.5 comes with around 100 bug fixes since the previous version, an experimental Qt4 GUI (you need to launch Emesene with "-e main:qt4_main" for this), better support for Adium themes (including emoticon themes and support for MSN group chat), drag and drop support in chat window and Ctrl+Tab support for switching tabs.

Install Emesene 2 Stable (2.11.4) In Ubuntu Via PPA

Emesene2

After a long period of development, Emesene 2 (stable) has finally been released, this being a complete re-write of the initial Emesene in GTK / pygtk.

Starting with version 2, Emesene supports Gtalk and Facebook or any XMPP/Jabber network (along with MSN of course). Other changes in Emesene 2 include: support for adium-like themes, Ubuntu Messaging Menu (and MeMenu integration for Natty) support and lots more.

Also, Emesene 2 uses "papylib" which is also used by Empathy. This brings many advantages like:

Emesene 1.5 With Webcam Support [How To Install It In Ubuntu]

emesene webcam configuration

Emesene is an instant messenger for the WLM (Windows Live Messenger) network which works on both Windows and Linux.

Emesene 1.5 brings a lot of new features and bugfixes, most notable being the webcam (video) support. Changes in 1.5:

* Compatible with the latest Window Live Messenger(tm)
* New plugin set (Plus! colors, Notifications, Mail check, etc.)
* HTTP connection and proxy support
* @msn accounts support
* Better contact list management with Privacy Tab and ability to reject users
* Improved Offline Messaging experience
* Support for msn groups
* No more gui locks
* Experimental webcam support with a configurator
* New layout options and improved usability along with customization
* Tons of new languages supported

To install Emesene 1.5 in Ubuntu:


1. Add the Launchpad PPA repository:
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E2314809
sudo echo "deb http://ppa.launchpad.net/bjfs/ppa/ubuntu jaunty main" | sudo tee -a /etc/apt/sources.list

2. Install Emesene
sudo apt-get update && sudo apt-get install emesene

or if you already have Emesene installed and need to upgrade:
sudo apt-get update && sudo apt-get upgrade

For other Linux distributions, download the source code from HERE.

How to run Emesene as Root

Before you follow any of the below steps, you show know that YOU MUST NOT LOG IN AS ROOT. If you still chose to do so, then read on.

Emesene refuses to start when you are logged in as root. In fact, if you runt it in a terminal, the following text is displayed:
I refuse to run as root

To make Emesene run as root, press Alt + F2 and type:
gksu gedit /usr/share/python-support/emesene/Controller.py

Then search for "I refuse to run as root" in that file. Comment that line, the line before and after it, using the "#" symbol. Like this:


def debug(msg):
'''print a debug message'''
print 'Controller: ' + msg

def main():
#    if os.name == 'posix' and os.getuid() == 0:
#        print "I refuse to run as root"
#        return

try:
path = os.path.dirname(__file__) or sys.path[0]
except NameError:
path = sys.path[0]


[via ubuntu tips]