~ubuntu-branches/ubuntu/precise/pingus/precise

« back to all changes in this revision

Viewing changes to doc/config.xml

  • Committer: Bazaar Package Importer
  • Author(s): Cyril Brulebois
  • Date: 2008-02-28 19:44:25 UTC
  • mfrom: (4.1.4 hardy)
  • Revision ID: james.westby@ubuntu.com-20080228194425-e8ilohlijv02kgcf
Tags: 0.7.2-2
* Fix FTBFS with gcc-4.3 by adding the missing include in
  src/input/evdev_device.cpp (Closes: #462238):
   + debian/patches/20_fix_FTBFS_with_gcc-4.3.
* Rename former patch so that the filename reflects the order in which
  the patches are applied:
   - debian/patches/data_dir.patch
   + debian/patches/10_fix_data_directory.
* Bump Standards-Version from 3.7.2 to 3.7.3, no changes needed.
* Add a dh_desktop call in the arch-dep part of debian/rules.
* Adjust the “missing-dep-for-interpreter guile” override since lintian
  now lists an alternative for that dependency.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0"?>
 
2
<pingus-config>
 
3
  <!--
 
4
  Pingus Configuration File
 
5
  ~~~~~~~~~~~~~~~~~~~~~~~~~
 
6
  This is an example config file for pingus, it should be placed in
 
7
  $HOME/.pingus/config. You can use all long options which pingus
 
8
  understands (pingus --help), if the option needs an argument,
 
9
  seperate it with some spaces from the option.
 
10
  -->
 
11
 
 
12
  <screen>
 
13
    <!-- Start the game in fullscreen mode? -->
 
14
    <fullscreen>false</fullscreen>
 
15
    
 
16
    <!-- The resolution to use -->
 
17
    <width>640</width>
 
18
    <height>480</height>
 
19
  </screen>
 
20
 
 
21
  <!-- Should we show the intro -->
 
22
  <show-intro>false</show-intro>
 
23
 
 
24
  <verbose>0</verbose>
 
25
<!--
 
26
  # Should we use a horizontal button panel (buggy)
 
27
  horizontal_button_panel = false;
 
28
-->
 
29
  <!-- Should we scroll if the mouse reached the borders -->
 
30
  <auto-scrolling>true</auto-scrolling>
 
31
 
 
32
  <!-- Load all data on startup -->
 
33
  <preload-data>false</preload-data>
 
34
 
 
35
  <!-- Sound options -->
 
36
  <sound>
 
37
    <music-enabled>true</music-enabled>
 
38
    <sound-enabled>true</sound-enabled>
 
39
    
 
40
    <audio-format>8</audio-format>
 
41
    <audio-rate>15000</audio-rate>
 
42
    <audio-channels>1</audio-channels>
 
43
    <audio-buffers>4096</audio-buffers>
 
44
  </sound>
 
45
</pingus-config>
 
46
 
 
47
<directory name="sound">
 
48
  <entry name="music-enabled" type="int">122</value>
 
49
  <entry name="music-enabled" type="string">Hello World</value>
 
50
</directory>
 
51
 
 
52
<sound>
 
53
  <music-enabled>123</music-enabled>
 
54
  <audio-format>8</audio-format>
 
55
</sound>
 
56
 
 
57
music_enabled = PropManager::get_float("sound/music-enabled");
 
58
 
 
59
<!-- EOF -->
 
60
    
 
 
b'\\ No newline at end of file'