AboutThisComputer

Revision 4 as of 2007-10-31 22:38:43

Clear message

Please check the status of this specification in Launchpad before editing it. If it is Approved, contact the Assignee or another knowledgeable person before making changes.

Summary

Redesign the current "About Ubuntu" menu option such that it contains useful information such as the Ubuntu derivative name, version number, basic information about the system. This should be visually attractive, and could be an ideal place for easter eggs.

Release Note

This section should include a paragraph describing the end-user impact of this change. It is meant to be included in the release notes of the first release in which it is implemented. (Not all of these will actually be included in the release notes, at the release manager's discretion; but writing them is a useful exercise.)

It is mandatory.

Rationale

An about dialog is needed to describe the version of Ubuntu being used or derivatives. It should also contain basic information on the user's machine

Use Cases

Someone asks you:

  • What version of Ubuntu are you running?
  • What kind of computer do you have? (not in this order)
    • Hard drive size (where '/' is)
    • Graphics card
    • Network card
    • CPU
    • RAM
  • Version of GNOME

Want to get more information about Ubuntu

Assumptions

Design

Notes:

  • Remove "About Ubuntu" and "About GNOME" -- replace with "About Your Computer"

Implementation

About Your Computer (about-window) is a Python script that determines if you are running Gnome or KDE, and then picks the relevant toolkit to display the window.

We query follow information:

  • CPU type and speed, using /proc/cpuinfo
  • RAM, using /proc/meminfo, or "free"
  • Hard disk size (use the disk / hangs off), using HAL via DBUS
  • Graphics card, also using HAL via DBUS
  • Network card, also using HAL via DBUS
  • Version of Ubuntu, using lsb-release.
  • Version of desktop environment -- this is a can of worms, but we are limiting ourselves to querying the version of GNOME, KDE or XFCE. If we find none of them, then do not display anything.
  • Version of the Linux kernel, using uname -r

Once we have all of this information, we use Glade or whatever it is PyQT uses to layout a dialog box. A title bar of About Your Computer, a large SVG of a computer on the left hand size, and the information laid out in two sections, the first being:

CPU: <CPU type> <CPU speed> Memory: <RAM information> Hard disk size: <Hard disk information> Graphics card: <Graphics card information> Network card: <Network card information>

The second section is:

<icon grabbed from the icon theme> Ubuntu <Ubuntu version> (Only displayed if gnome-session exists) <gnome icon> Gnome <Gnome version> (Only displayed if kded exists) <KDE icon> KDE <KDE version> (Only displayed if xfce-session exists) <XFCE icon> XCFE <XCFE version> <tux icon> Linux <kernel version>

A Close button on the bottom right of the window.

All text should be able to be drag and dropped as one large block into IRC, a bug report or a forum post.

UI Changes

  • New Dialog
    • Grabs icon from icon them "start-here"
    • Looks for system information from a file set by meta packages
    • Has dragable text to e-mail/IRC/forum/etc

Code Changes

Code changes should include an overview of what needs to change, and in some cases even the specific details.

Migration

An "About Your Computer" item on the System menu will replace About Ubuntu, and About Gnome.

Test/Demo Plan

Outstanding Issues

How do we show the Ubuntu philosphy and other such things like the current dialog box does?

See Also


CategorySpec