File: NEWS

package info (click to toggle)
mygpoclient 1.10-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 348 kB
  • sloc: python: 2,073; makefile: 39
file content (36 lines) | stat: -rw-r--r-- 1,216 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
Sun, 25 Apr 2010 23:51:38 +0200
-------------------------------

You can use the "require_version" function in mygpoclient to require a minimum
version of the mygpoclient library. The "require_version" function has been
added in version 1.3, so you have to check (e.g. with hasattr) if mygpoclient
has got a "require_version" attribute. You can then do the version check like
this:

if not hasattr(mygpoclient, 'require_version') or \
        not mygpoclient.require_version('1.3'):
    # Show error message and tell user to upgrade to version 1.3

Fri, 23 Apr 2010 17:43:03 +0200
-------------------------------

The parameter signature for the EpisodeAction constructor has been updated.
It now contains not only the optional "position" argument, but two new
arguments as well. The order of these parameters is:

  started
  position
  total

If one of "started" or "total" is set, "position" becomes mandatory. This
means that the following combinations are now possible:

  None
  position
  position and started
  position and total
  position and started and total

Also, the format has been changed. Instead of having a "HH:MM:SS" timestamp
format, we now only accept integer values (the number of seconds).