Check-in [3b7a4ff895]
Overview
Comment: | Separate statusbar timer-reset from text/progressbar setter. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
3b7a4ff895b794a70d2f1de5a3f90bcf |
User & Date: | mario on 2015-05-01 22:41:31 |
Other Links: | manifest | tags |
Context
2015-05-01
| ||
22:52 | Remove contrib/bieber joke example. check-in: c854934751 user: mario tags: trunk | |
22:41 | Separate statusbar timer-reset from text/progressbar setter. check-in: 3b7a4ff895 user: mario tags: trunk | |
02:16 | Use empty stub {} dict in place of state.json contents on fresh init. check-in: 3d6205d2d3 user: mario tags: trunk | |
Changes
Modified Makefile from [fb00faeb9d] to [e1a4d7c25a].
1 2 3 4 5 6 7 8 9 10 11 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | - - + + | # Requires # ยท http://fossil.include-once.org/versionnum/ # ยท http://fossil.include-once.org/xpm/ SHELL := /bin/bash #(for brace expansion) NAME := streamtuner2 VERSION := $(shell version get:plugin st2.py || echo 2.1dev) DEST := /usr/share/streamtuner2 INST := install -m 644 PACK := xpm DEPS := -n $(NAME) -d python -d python-pyquery -d python-gtk2 -d python-requests -d python-keybinder |
︙ | |||
37 38 39 40 41 42 43 | 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | - + - + - + - + - + | clean: rm *.pyc */*.pyc rm -r __pycache__ */__pycache__ #-- bundles xpm: deb pyz tar rpm exe deb: |
︙ |
Modified PKG-INFO from [9170d518b1] to [09ee67ca0a].
1 2 | 1 2 3 4 5 6 7 8 9 10 11 12 | - + | Metadata-Version: 1.0 Name: streamtuner2 |
Modified channels/internet_radio.py from [738c122eb2] to [8ca19cbde4].
︙ | |||
77 78 79 80 81 82 83 | 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 | - + | "/" + ("page"+str(page) if page>1 else "") ) ) # Is there a next page? if str(page+1) not in rx_pages.findall(html[-1]): break |
︙ |
Modified st2.py from [a4ef7a55bf] to [49404ca98a].
︙ | |||
354 355 356 357 358 359 360 | 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 | - + - - - - + + - - + + - + - - + + + - - - + - | def switch_notebook_tabs_position(self, w, pos): self.notebook_channels.set_tab_pos(pos); |
︙ |