Check-in [a88fe29963]
Overview
| Comment: | Fix help.chm lookup and default Windows paths. |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
a88fe2996319f45a284887fc2cdef207 |
| User & Date: | mario on 2016-12-01 13:19:05 |
| Other Links: | manifest | tags |
Context
|
2016-12-02
| ||
| 20:36 | Fixed VLC default path (Oliver), added quoting regexp. check-in: 1874107bb9 user: mario tags: trunk | |
|
2016-12-01
| ||
| 13:19 | Fix help.chm lookup and default Windows paths. check-in: a88fe29963 user: mario tags: trunk | |
| 13:18 | Minor changes to winstaller script and default package content. check-in: 078495e7da user: mario tags: trunk | |
Changes
Modified action.py from [ecd56b9293] to [21a471fadf].
| ︙ | |||
144 145 146 147 148 149 150 | 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 | - + |
log.EXEC(cmd)
os.system(cmd)
except:
log.ERR("Command not found:", cmd)
# Open help browser, chm, or streamtuner2 pages
def help(*args):
|
| ︙ |
Modified config.py from [5e8b20930b] to [2f5daeee00].
| ︙ | |||
178 179 180 181 182 183 184 | 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 | - + - - - + + + |
for bin in players[typ]:
if find_executable(bin.split()[0]):
return bin
return default
# Windows look for c:/program files/*/*.exe
def find_player_win(self, typ="audio", default="wmplayer %asx", append=""):
|
| ︙ |