Changeset 1070
- Timestamp:
- 04/29/08 08:29:27 (15 years ago)
- Files:
-
- trunk/libffado/SConstruct (modified) (2 diffs)
- trunk/libffado/support/mixer/ffadomixer.in (modified) (1 diff)
- trunk/libffado/support/mixer/ffado_regdialog.ui (modified) (2 diffs)
- trunk/libffado/support/mixer/ffado_registration.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/libffado/SConstruct
r1069 r1070 25 25 26 26 FFADO_API_VERSION="8" 27 FFADO_VERSION="1.999.2 0"27 FFADO_VERSION="1.999.21" 28 28 29 29 import os … … 63 63 PathOption( "SHAREDIR", "Overwrite the directory where misc shared files are installed to.", "$PREFIX/share/libffado", PathOption.PathAccept ), 64 64 BoolOption( "ENABLE_BEBOB", "Enable/Disable the bebob part.", True ), 65 BoolOption( "ENABLE_FIREWORKS", "Enable/Disable the ECHO Audio FireWorks avcpart.", True ),66 BoolOption( "ENABLE_MOTU", "Enable/Disable the M otupart.", True ),65 BoolOption( "ENABLE_FIREWORKS", "Enable/Disable the ECHO Audio FireWorks AV/C part.", True ), 66 BoolOption( "ENABLE_MOTU", "Enable/Disable the MOTU part.", True ), 67 67 BoolOption( "ENABLE_DICE", "Enable/Disable the DICE part.", False ), 68 68 BoolOption( "ENABLE_METRIC_HALO", "Enable/Disable the Metric Halo part.", False ), trunk/libffado/support/mixer/ffadomixer.in
r1062 r1070 323 323 if mw.count() > 0: 324 324 mw.show() 325 326 325 QObject.connect(app,SIGNAL("lastWindowClosed()"),app,SLOT("quit()")) 327 326 trunk/libffado/support/mixer/ffado_regdialog.ui
r1060 r1070 1 1 <!DOCTYPE UI><UI version="3.3" stdsetdef="1"> 2 2 <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> 3 20 <widget class="QDialog"> 4 21 <property name="name"> … … 31 48 <string>You are running this version of FFADO for the first time with this device. 32 49 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.50 In 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. 34 51 35 Th is 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>52 The 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> 36 53 </property> 37 54 <property name="alignment"> trunk/libffado/support/mixer/ffado_registration.py
r1060 r1070 14 14 vendor_string, 15 15 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] 18 19 self.guid = guid 19 20 self.vendor_id = vendor_id … … 25 26 self.parser = ConfigParser.SafeConfigParser() 26 27 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) 28 29 self.email = "(optional)" 29 30 if self.parser.has_section("history") \