- I've got both album and artist dialog's running. Album dialog i.e. https://github.com/rahul-raturi/picard/tree/embed_search_(release), is based on rebase of track dialog. There are some commits in this tree that affect the track dialog, like renaming some methods and variables, and moving common code to methods etc. I've not pushed them to track dialog's PR, because they won't make much sense there and would only complicate the PR imo. The artist dialog (https://github.com/rahul-raturi/picard/tree/embed_search_(artist)) is based on rebase of album dialog.
- There's
cover-art-archiveelement in a release lookups, but not in searches. I'm thinking of downloading only 250*250 px covers for displaying them in album dialog, dis regarding user's cover preferences. For this purpose, I guesscover-art-archiveelement would be required. Is there a way to get it in a search xml? - Have a look at artist dialog. It doesn't seems much useful to me presently. I mean, in website, there's a way to look at the artist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SRCS = $(wildcard *.cpp) | |
| OBJS = $(SRCS:%.cpp=%.o) | |
| DEPS = $(SRCS:%.cpp=%.d) | |
| SYSTEMC = /usr/local/systemc230 | |
| CXX = g++ | |
| CXXFLAGS = -Wall -ansi -g -O0 -Di386 | |
| INCLUDES = -I $(SYSTEMC)/include |