1
0
mirror of https://github.com/clementine-player/Clementine synced 2025-02-02 20:36:44 +01:00

8265 Commits

Author SHA1 Message Date
Clementine Buildbot
7607ddcb96 Automatic merge of translations from Transifex 2024-05-12 02:33:06 +00:00
Clementine Buildbot
e249911937 Automatic merge of translations from Transifex 2024-05-05 02:32:03 +00:00
Clementine Buildbot
4ae57a4b5d Automatic merge of translations from Transifex 2024-05-03 02:32:14 +00:00
Clementine Buildbot
2f3464403b Automatic merge of translations from Transifex 2024-04-25 02:31:15 +00:00
Clementine Buildbot
f76dbffa6b Automatic merge of translations from Transifex 2024-03-24 02:30:19 +00:00
Clementine Buildbot
fbb266adc2 Automatic merge of translations from Transifex 2024-03-15 02:29:14 +00:00
Clementine Buildbot
9638ac70b3 Automatic merge of translations from Transifex 2024-03-13 02:29:55 +00:00
Clementine Buildbot
c93b4e1149 Automatic merge of translations from Transifex 2024-02-27 02:27:58 +00:00
Clementine Buildbot
d014a315c9 Automatic merge of translations from Transifex 2024-02-23 02:28:36 +00:00
Isaiah W
df4181940d oops (:
this is what I meant lol
2024-02-08 14:04:03 +00:00
Isaiah W
ebe3c45476 Fix Instructions™
uses all of your cores if you have more than 8, or doesn't try to use more than you have if you have less (:
2024-02-08 14:04:03 +00:00
Clementine Buildbot
634910238d Automatic merge of translations from Transifex 2024-01-03 02:31:14 +00:00
Clementine Buildbot
62ed69fa3d Automatic merge of translations from Transifex 2023-12-19 02:32:39 +00:00
Clementine Buildbot
dd0a94e8a6 Automatic merge of translations from Transifex 2023-12-09 02:30:35 +00:00
Clementine Buildbot
1566148c50 Automatic merge of translations from Transifex 2023-11-29 02:32:39 +00:00
Clementine Buildbot
98a520552b Automatic merge of translations from Transifex 2023-11-26 02:32:33 +00:00
Clementine Buildbot
5968648aa1 Automatic merge of translations from Transifex 2023-11-01 02:31:10 +00:00
Clementine Buildbot
f3ddd7eee4 Automatic merge of translations from Transifex 2023-10-22 02:30:09 +00:00
Clementine Buildbot
19b44fb831 Automatic merge of translations from Transifex 2023-10-16 02:30:12 +00:00
Robert-André Mauchin
994d16effa Fix missing QTSINGLECOREAPPLICATION_LIBRARIES
In f3837f95db61a8d79c40c8da8467c7e502fc2156, QTSINGLECOREAPPLICATION_LIBRARIES was mistakenly removed, which prevents building with USE_SYSTEM_QTSINGLEAPPLICATION enabled.
2023-10-15 13:40:14 +01:00
xoza
4768cb9efb Skip subsonic multi-genre tags 2023-10-12 12:27:43 +01:00
Clementine Buildbot
7b678f26e0 Automatic merge of translations from Transifex 1.4.0rc1-901-g7b678f26e 2023-10-02 02:29:29 +00:00
Marcus Müller
3f572a4139 RPM & CI: Build rpm packages against native qtsingleapplication
Signed-off-by: Marcus Müller <marcus_clementine@baseband.digital>
1.4.0rc1-900-g3f572a413
2023-09-20 17:52:55 +01:00
Marcus Müller
f3837f95db CMake: Re-enable usability of system QtSingleApplication
This seem to have gone broken over time.
As far as I can tell, upstream QtSingleApplication works fine!

Signed-off-by: Marcus Müller <marcus_clementine@baseband.digital>
2023-09-20 17:52:55 +01:00
Marcus Müller
6820a0a58d 3rdparty: remove unused libmygpo-qt
The -qt5 library is still there, and seems to be used.

Signed-off-by: Marcus Müller <marcus_clementine@baseband.digital>
1.4.0rc1-898-g6820a0a58
2023-09-17 16:41:15 +01:00
Marcus Müller
cfcddf7c0f src: remove unused variable
Signed-off-by: Marcus Müller <marcus_clementine@baseband.digital>
1.4.0rc1-897-gcfcddf7c0
2023-09-17 12:43:13 +01:00
Marcus Müller
98e24f626b library: use boolean, not bitwise, operator on bools
Signed-off-by: Marcus Müller <marcus_clementine@baseband.digital>
2023-09-17 12:43:13 +01:00
Marcus Müller
8e47ab59e5 internet services: consistently use 'override'
Signed-off-by: Marcus Müller <marcus_clementine@baseband.digital>
2023-09-17 12:43:13 +01:00
Marcus Müller
63208b4e1f core/organisefmt: use same visibility for fwd decl as in def
Signed-off-by: Marcus Müller <marcus_clementine@baseband.digital>
2023-09-17 12:43:13 +01:00
Marcus Müller
20773dee29 CMake: Check for minimum version before setting the project name
Signed-off-by: Marcus Müller <marcus_clementine@baseband.digital>
2023-09-17 12:43:13 +01:00
John Maguire
c2a5b9b07e Remove Kinetic build 1.4.0rc1-892-gc2a5b9b07 2023-09-14 14:51:42 +01:00
Quentin Snow
de7455eebd Adjusted MainWindow::TrackSkipped to only count song skips if listened to for 5 seconds. 2023-09-13 11:53:37 +01:00
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
Clementine Buildbot
86e81cea05 Automatic merge of translations from Transifex 1.4.0rc1-889-g86e81cea0 2023-08-26 02:27:18 +00:00
Clementine Buildbot
10570316dd Automatic merge of translations from Transifex 1.4.0rc1-888-g10570316d 2023-07-22 02:34:48 +00:00
Clementine Buildbot
ad8fd81ba9 Automatic merge of translations from Transifex 1.4.0rc1-887-gad8fd81ba 2023-07-18 02:50:36 +00:00
Clementine Buildbot
6ff5768634 Automatic merge of translations from Transifex 1.4.0rc1-886-g6ff576863 2023-07-15 02:51:38 +00:00
Clementine Buildbot
08bfb88912 Automatic merge of translations from Transifex 1.4.0rc1-885-g08bfb8891 2023-07-14 02:50:44 +00:00
Clementine Buildbot
d3108b32e8 Automatic merge of translations from Transifex 1.4.0rc1-884-gd3108b32e 2023-07-13 02:50:56 +00:00
Clementine Buildbot
0701bef103 Automatic merge of translations from Transifex 1.4.0rc1-883-g0701bef10 2023-07-12 02:49:20 +00:00
Clementine Buildbot
bf4ac0cb46 Automatic merge of translations from Transifex 1.4.0rc1-882-gbf4ac0cb4 2023-07-11 02:44:50 +00:00
John Maguire
baf05335f9 Only push translations from master 1.4.0rc1-881-gbaf05335f 2023-07-11 01:22:17 +01:00
John Maguire
d21e9697d0 Disable mac builds temporarily 1.4.0rc1-880-gd21e9697d 2023-07-10 23:42:29 +01:00
John Maguire
ab057f8275 Migrate tx pull to new CLI 2023-07-10 20:52:39 +01:00
John Maguire
58325e45a7 Migrate tx push to new CLI 2023-07-10 20:52:29 +01:00
John Maguire
1d0cbc0ebb Remove support for Debian Stretch 2023-07-10 19:25:22 +01:00
Clementine Buildbot
c83a0ac25f Automatic merge of translations from Transifex 2023-07-10 17:53:14 +00:00
John Maguire
351a5e2547 Build for Fedora 38 1.4.0rc1-875-g351a5e254 2023-04-07 11:59:53 +01:00
John Maguire
8773e8fe0a Bump runner for translations 1.4.0rc1-874-g8773e8fe0 2023-04-07 11:59:45 +01:00
Clementine Buildbot
3471134d52 Automatic merge of translations from Transifex 1.4.0rc1-873-g3471134d5 2023-02-10 03:06:03 +00:00