Show
Ignore:
Timestamp:
04/29/08 08:29:27 (16 years ago)
Author:
ppalmers
Message:

some small cosmetic fixes

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/libffado/support/mixer/ffadomixer.in

    r1062 r1070  
    323323    if mw.count() > 0: 
    324324        mw.show() 
    325  
    326325        QObject.connect(app,SIGNAL("lastWindowClosed()"),app,SLOT("quit()")) 
    327326 
  • trunk/libffado/support/mixer/ffado_regdialog.ui

    r1060 r1070  
    11<!DOCTYPE UI><UI version="3.3" stdsetdef="1"> 
    22<class>ffadoRegDialogUI</class> 
     3<comment>Copyright (C) 2005-2008 by Pieter Palmers 
     4   
     5  This file is part of FFADO 
     6  FFADO = Free Firewire (pro-)audio drivers for linux 
     7   
     8  FFADO is based upon FreeBoB. 
     9   
     10  This program is free software: you can redistribute it and/or modify 
     11  it under the terms of the GNU General Public License as published by 
     12  the Free Software Foundation, either version 2 of the License, or 
     13  (at your option) version 3 of the License. 
     14   
     15  This program is distributed in the hope that it will be useful, 
     16  but WITHOUT ANY WARRANTY; without even the implied warranty of 
     17  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
     18  GNU General Public License for more details. 
     19</comment> 
    320<widget class="QDialog"> 
    421    <property name="name"> 
     
    3148            <string>You are running this version of FFADO for the first time with this device. 
    3249 
    33 In order to collect decent usage statistics we would like to send some information about your system to ffado.org. We need usage statistics to convince vendors that Linux does matter
     50In order to collect usage statistics we would like to send some information about your system to ffado.org. It is very important for us to have good usage statistics. This to convince vendors that Linux users do exist. This is where you as a user can help
    3451 
    35 This information is intended only for usage monitoring. The only personal information sent is an optional email address. The source code for the registration process can be found in "ffado_registration.py".</string> 
     52The information collected is intended only for usage monitoring. The email address is optional, and will be used for FFADO related announcements only. If you provide one, please provide a valid one.</string> 
    3653        </property> 
    3754        <property name="alignment"> 
  • trunk/libffado/support/mixer/ffado_registration.py

    r1060 r1070  
    1414                       vendor_string, 
    1515                       model_string): 
    16         self.ffado_version = ffado_version 
    17         #import pdb;pdb.set_trace() 
     16        # only use the section before the SVN mark 
     17        # we don't need to keep track of all SVN version changes 
     18        self.ffado_version = ffado_version.split('-')[0] 
    1819        self.guid = guid 
    1920        self.vendor_id = vendor_id 
     
    2526        self.parser = ConfigParser.SafeConfigParser() 
    2627        self.parser.read(self.config_filename) 
    27         self.section_name = "%s:%X" % (ffado_version, guid) 
     28        self.section_name = "%s:%X" % (self.ffado_version, self.guid) 
    2829        self.email = "(optional)" 
    2930        if self.parser.has_section("history") \