~ubuntu-branches/ubuntu/quantal/xscreensaver/quantal

« back to all changes in this revision

Viewing changes to hacks/config/goop.xml

  • Committer: Bazaar Package Importer
  • Author(s): Ted Gould
  • Date: 2008-08-28 16:15:25 UTC
  • mfrom: (1.1.6 upstream) (2.1.3 lenny)
  • Revision ID: james.westby@ubuntu.com-20080828161525-mxga521aoezxjq8h
Tags: 5.07-0ubuntu1
* Upgrade upstream version
* debian/control: Remove suggest xdaliclock as it is no longer
  included
* Remove 10_jwz-screensaver-randr-patch-3.patch as it has been merged
  upstream.
* Add 24_hacks_xsublim_enable.patch as it seems that xsublim was dropped
  from the build files.  There is nothing in the Changelog about it
  so I believe it was accidental.
* Updating the .desktop files from the XML files using gnome-screensaver's
  utility to do so.  Lots of text updates.  Also:
    * Added: abstractile.desktop
    * Added: cwaves.desktop
    * Added: m6502.desktop
    * Added: skytentacles.desktop
    * Removed: xteevee.desktop
* xscreensaver-gl-extra.files: Added skytentacles
* xscreensaver-data-extra.files: Added abstractile, cwaves and m6502
* xscreensaver-data.files: Remove partial abstractile, m6502 and cwaves

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 
5
5
  <command arg="-root"/>
6
6
 
7
 
  <number id="delay" type="slider" arg="-delay %"
8
 
          _label="Speed" _low-label="Slow" _high-label="Fast"
9
 
          low="0" high="20000" default="12000"
10
 
          convert="invert"/>
11
 
 
12
 
  <number id="count" type="spinbutton" arg="-count %"
13
 
          _label="Blob Count" low="0" high="100" default="12"/>
14
 
 
15
 
  <select id="mode">
16
 
    <option id="transparent" _label="Transparent Blobs"/>
17
 
    <option id="opaque"      _label="Opaque Blobs" arg-set="-mode opaque"/>
18
 
    <option id="xor"         _label="XOR Blobs"    arg-set="-mode xor"/>
19
 
  </select>
20
 
 
21
 
  <select id="color-mode">
22
 
    <option id="additive" _label="Additive Colors (reflected light)"/>
23
 
    <option id="subtractive" _label="Subtractive Colors (transmitted light)"
24
 
            arg-set="-subtractive"/>
25
 
  </select>
26
 
 
27
 
  <number id="torque" type="slider" arg="-torque %"
28
 
          _label="Rotational Speed" _low-label="Slow" _high-label="Fast"
29
 
          low="0.0002" high="0.0500" default="0.0075"/>
30
 
 
31
 
  <number id="elasticity" type="slider" arg="-elasticity %"
32
 
          _label="Elasticity" _low-label="Low" _high-label="High"
33
 
          low="0.1" high="5.0" default="0.9"/>
34
 
 
35
 
  <number id="maxv" type="slider" arg="-max-velocity %"
36
 
          _label="Speed Limit" _low-label="Slow" _high-label="Fast"
37
 
          low="0.1" high="3.0" default="0.5"/>
 
7
  <hgroup>
 
8
   <vgroup>
 
9
    <number id="delay" type="slider" arg="-delay %"
 
10
            _label="Frame rate" _low-label="Low" _high-label="High"
 
11
            low="0" high="100000" default="12000"
 
12
            convert="invert"/>
 
13
 
 
14
    <number id="torque" type="slider" arg="-torque %"
 
15
            _label="Speed" _low-label="Slow" _high-label="Fast"
 
16
            low="0.0002" high="0.0500" default="0.0075"/>
 
17
 
 
18
    <number id="count" type="slider" arg="-planes %"
 
19
            _label="Blobs" _low-label="Few" _high-label="Many"
 
20
            low="1" high="50" default="12"/>
 
21
 
 
22
   </vgroup>
 
23
   <vgroup>
 
24
    <number id="elasticity" type="slider" arg="-elasticity %"
 
25
            _label="Elasticity" _low-label="Low" _high-label="High"
 
26
            low="0.1" high="5.0" default="0.9"/>
 
27
 
 
28
    <number id="maxv" type="slider" arg="-max-velocity %"
 
29
            _label="Speed limit" _low-label="Low" _high-label="High"
 
30
            low="0.1" high="3.0" default="0.5"/>
 
31
 
 
32
    <boolean id="showfps" _label="Show frame rate" arg-set="-fps"/>
 
33
 
 
34
   </vgroup>
 
35
  </hgroup>
 
36
 
 
37
  <hgroup>
 
38
    <select id="mode">
 
39
      <option id="transparent" _label="Transparent blobs"/>
 
40
      <option id="opaque"      _label="Opaque blobs" arg-set="-mode opaque"/>
 
41
      <option id="xor"         _label="XOR blobs"    arg-set="-mode xor"/>
 
42
    </select>
 
43
 
 
44
    <select id="color-mode">
 
45
      <option id="additive" _label="Additive colors (reflected light)"/>
 
46
      <option id="subtractive" _label="Subtractive colors (transmitted light)"
 
47
              arg-set="-subtractive"/>
 
48
    </select>
 
49
  </hgroup>
38
50
 
39
51
  <_description>
40
52
This draws set of animating, transparent, amoeba-like blobs.  The blobs
41
53
change shape as they wander around the screen, and they are translucent,
42
54
so you can see the lower blobs through the higher ones, and when one
43
55
passes over another, their colors merge.  I got the idea for this from
44
 
a cool mouse pad I have, which achieves the same kind of effect in real
 
56
a mouse pad I had once, which achieved the same kind of effect in real
45
57
life by having several layers of plastic with colored oil between them.
46
58
 
47
59
Written by Jamie Zawinski; 1997.