1
0
mirror of https://github.com/clementine-player/Clementine synced 2024-12-22 15:58:45 +01:00
Commit Graph

320 Commits

Author SHA1 Message Date
Marcus Müller
2a14ec9d4d Lyrics Providers: Remove unreachable ones
This was determined programmatically by means of trying to do a simple
HTTP request to / of any of the URLs given:

```python
from lxml import etree
from urllib import parse
import requests
doc = etree.parse("ultimate_providers.xml")
root = doc.getroot()
for provider in root:
    parsed_url = parse.urlparse(provider.get("url"))
    url = f"{parsed_url.scheme}://{parsed_url.netloc}/"
    try:
        requests.head(url, timeout=5)
    except Exception as e:
        print(parsed_url.netloc)
```

Note that these were also removed from songinfoview as present, and from
outgoingdatacreator. The two lists there were found to be inconsistent,
but this isn't subject of this PR.

Signed-off-by: Marcus Müller <marcus_clementine@baseband.digital>
2023-09-12 13:33:01 +01:00
Jim Broadus
73c0af1977 Remove expired Equifax CA root
The Equifax certificate expired in 2018, so any certificate that was
signed by that CA should also be expired.
2021-04-21 10:24:53 +01:00
Fabio Bas
e7768948e0 Initial radio-browser.info support 2021-03-16 11:03:00 +00:00
Matthieu Bruel
114802a0ca Adding links to new remote in network remote settings 2020-12-17 12:23:30 +00:00
dmdmdm
183a3f9c72 Replaced the heart icon with a star for local files 2020-08-25 21:51:03 +01:00
dmdmdm
c60c523185 Replaced the heart icon with a star for local files 2020-08-25 21:51:03 +01:00
Mattias Andersson
ebf9ebf080 Show only a basic tooltip in the system tray
For environments that implements the D-Bus
http://www.freedesktop.org/wiki/Specifications/StatusNotifierItem/StatusNotifierItem
specification HTML is not supported in the tool tip title. (It is
supported in the tool tip subtitle but this field is not set by
QSystemTrayIcon.)

See the discussion in #6733 for more info.
2020-07-08 17:24:42 +01:00
Jim Broadus
536f345268 database: Add ftsyear to jamendo.songs_fts
A previous change added ftsyear to all songs_fts tables, but the base jamendo
schema, which is used when recreating the database, was not updated. This
resulted in thousands of sql errors when reloading the catalog.
2020-06-05 10:26:26 +01:00
dmdmdm
949c20abdf Compress PNGs (second attempt) 2020-05-21 21:45:04 +01:00
dmdmdm
7caf200efa Added CBC Podcasts 2020-05-21 02:04:08 +01:00
John Maguire
cb6cd7c485 Merge remote-tracking branch 'origin/master' into qt5 2019-10-04 16:51:43 +01:00
luz.paz
fb93ae4b02 Fix misc. source comment typos
Typos found via `codespell`
2019-08-21 23:43:16 -04:00
Jonas Kvinge
d8788d6a0d Update qt5 branch 2019-01-27 01:00:36 +01:00
aqua36
c4d6424e96 ultimate_providers.xml: now handles colon correctly for genius.com (#6269) 2019-01-24 12:00:46 +00:00
Jonas Kvinge
d5eb07c6f0 Remove echonest (#6263) 2019-01-21 21:39:10 +00:00
Dmitriy Bogdanov
a82cc2f8a6 Update lyrics.com lyrics provider
* Fix "not found" detection.
* Also exclude footer.
2019-01-21 09:02:58 +00:00
Jonas Kvinge
159d3c6ba6 Merge remote-tracking branch 'upstream/master' into qt5-update 2018-10-01 22:54:05 +02:00
Jonas Kvinge
758be9d6db Add missing ftsyear in device schema 2018-10-01 01:37:58 -07:00
Jonas Kvinge
a5e8eba91c Merge remote-tracking branch 'upstream/master' into qt5-update 2018-06-29 02:38:19 +02:00
aqua36
6f3032a1ec add genius.com as lyrics provider (#6073) 2018-06-04 09:55:09 +01:00
Chocobozzz
70f68b1926
Merge remote-tracking branch 'upstream/master' into qt5 2018-02-01 09:50:42 +01:00
Jacob Henner
203ec76973 Add contextual searches to playlists, library and global search. (#5649)
* Closes #5567: Contextual album/artist search in library search, global search, and playlists.

* Change artist/album search to 'search for this' in globalsearch

* Change artist/album search to 'search for this' in library

* Applying patch from @Fat-Zer to allow search incl year

* Re-adding missing schema definition
2017-08-09 14:12:36 +01:00
John Maguire
d8135a96d0 Update letras lyrics site
Fixes #5802
2017-08-07 17:43:33 +01:00
ZedPea
19b51111f8 Update lyrics.wikia parsing (#5773) 2017-06-27 16:00:54 +10:00
Chocobozzz
0aa3405274 Merge remote-tracking branch 'upstream/master' into qt5 2016-05-09 12:46:08 +02:00
Dmitriy Bogdanov
7e9f9802b0 Update AZLyrics parsing rule 2016-04-09 13:55:44 +01:00
John Maguire
9291f09b1b Merge branch 'master' into PanderMusubi-master 2016-04-06 15:43:32 +01:00
Chocobozzz
4898d20ce2 Merge remote-tracking branch 'upstream/master' into qt5 2016-03-28 11:38:22 +02:00
Chocobozzz
e6e189967d Merge remote-tracking branch 'upstream/master' into qt5 2016-02-29 18:03:02 +01:00
Eduard Braun
3ce3dd884e Make repeat/shuffle icons a bit darker
With the previous icons there was almost no difference between enabled/disabled states in the UI
2016-02-21 03:27:17 +01:00
Pander
dc534bbcef Added support for Intergalactic FM 2016-02-05 19:29:43 +01:00
Eduard Braun
1b4f2dacb6 Synchronize width of start/pause icons on playlist tabs to prevent "jumping" content 2015-12-19 19:44:22 +01:00
Chocobozzz
ff7026c9fe Merge remote-tracking branch 'upstream/master' into qt5 2015-12-13 20:05:12 +01:00
narunlifescience
84a52893b4 restore resized star on/off png from #5089 2015-12-09 04:12:54 -06:00
Arnaud Bienner
64c184c2f5 Revert "use same colors for tiny-pause & tiny start icons as that of star icons"
This reverts commit aa813fa372.
2015-12-09 09:44:25 +01:00
narunlifescience
bc680f2755 compress svg icons 2015-12-01 00:51:31 -06:00
narunlifescience
aa813fa372 use same colors for tiny-pause & tiny start icons as that of star icons 2015-12-01 00:41:36 -06:00
narunlifescience
0ad40780ea Add bollywoodlyrics.com as lyrics provider for bollywood songs
Add hindilyrics.net
2015-11-15 20:30:57 -06:00
narunlifescience
5f580f1dd9 add volume icon label to background stream settings page 2015-11-12 03:16:00 -06:00
narunlifescience
2b5ad90ea8 fix rating half star issue 2015-10-26 06:21:04 -06:00
John Maguire
3f9d7b0c43 pngcrush all pngs 2015-10-14 13:58:39 +01:00
narunlifescience
dd953fd86c check custom icon location, then system theme & then fallback theme
icons added & replaced
2015-10-13 22:35:49 -05:00
Eduard Braun
12ac4ae063 Add Musixmatch as lyrics provider 2015-09-21 22:17:32 +02:00
Chocobozzz
631a6cdabd Merge branch 'master' into qt5 2015-09-16 17:40:54 +02:00
David Sansome
1e7242afa5 Remove Radio GFM since it's no longer running 2015-09-16 22:37:01 +10:00
John Maguire
8757cb36c6 Merge pull request #5035 from narunlifescience/master
Volume pixmap render on the fly using system theme
2015-09-16 12:18:56 +01:00
narunlifescience
aaec092454 Volume Pixmap render
volume pixmap
2015-09-14 06:50:46 -05:00
obscenelysad
048ee427be Update ultimate_providers.xml
Tekstowo.pl offers lyric in original track language and polish translation. I just added polish translation as another provider based on tekstowo.pl
2015-08-30 04:33:20 +02:00
cako
3b73103d2f Fixed #4091 - Reverted letras.mus.br to utf-8 2015-08-01 15:13:28 +01:00
John Maguire
e94ec8d119 Add Equifax root cert after Apple removed it.
Fixes #4942
2015-07-07 19:15:23 +01:00