Skip to main content

Notice

Please note that most of the software linked on this forum is likely to be safe to use. If you are unsure, feel free to ask in the relevant topics, or send a private message to an administrator or moderator. To help curb the problems of false positives, or in the event that you do find actual malware, you can contribute through the article linked here.
Topic: Biography Text, Album Info, Picture. www.last.fm (Read 73346 times) previous topic - next topic - Topic derived from Re: WSH Panel Mod scr...
0 Members and 2 Guests are viewing this topic.

Re: Biography Text, Album Info, Picture. www.last.fm

Reply #100
hi kgena_ua

i don't see any difference between the two versions.
version 2019-11-07 works fine.
i leave this version installed.

Re: Biography Text, Album Info, Picture. www.last.fm

Reply #101
@kgena_ua

hello
i use version 2019-11-07

please do not write the band members in a row but each one in a line

thanks

Re: Biography Text, Album Info, Picture. www.last.fm

Reply #102
hi kgena_ua

i don't see any difference between the two versions.
version 2019-11-07 works fine.
i leave this version installed.

changes on the last.fm website
UR5EQF. Ukraine

 

Re: Biography Text, Album Info, Picture. www.last.fm

Reply #103
Hello i have problem like this when i put Biography .

What should i do?


Re: Biography Text, Album Info, Picture. www.last.fm

Reply #104
hi,

i'm not sure, but i thinks it works only with jscript panel or wsh panel mod.

Re: Biography Text, Album Info, Picture. www.last.fm

Reply #105
Hello i have problem like this when i put Biography .

The script is compatible with jscript panel and wsh panel mod
UR5EQF. Ukraine

Re: Biography Text, Album Info, Picture. www.last.fm

Reply #106
When i put on jscript or wsh panel i have this same error

JScript Panel v2.3.5 (id:1902770)
Błąd kompilacji kodu JavaScript:
Błąd składni
File: <main>
Line: 3, Col: 1
const requiredVersionStr = '1.2.2'; function is_compatible(requiredVersionStr) {const requiredVersion = requiredVersionStr.split('.'), currentVersion = utils.Version.split('.'); if (currentVersion.length > 3) currentVersion.length = 3; for (let i = 0; i < currentVersion.length; ++i) if (currentVersion != requiredVersion) return currentVersion > requiredVersion; return true;} if (!is_compatible(requiredVersionStr)) fb.ShowPopupMessage(`Biography requires v${requiredVersionStr}. Current component version is v${utils.Version}.`);

Re: Biography Text, Album Info, Picture. www.last.fm

Reply #107
works perfect with foo_jscript_panel-v1.3.2.2
later versions of jscript_panel have changed significantly
please search the web for version 1.3.2.2

thx

Re: Biography Text, Album Info, Picture. www.last.fm

Reply #108
Hello to everyone !
I have wsh panel v1.5.6  and i try to manage it  for Biography text, Album info... but always an eror message came up,
I runed also from kgena_ua ''Reply #99 – 2019-11-07 13:00:16''  and i have the same message, you can  look at the file.
If someone have an idea how it can work please let me know.
Thank you!

Re: Biography Text, Album Info, Picture. www.last.fm

Reply #109
@kgena_ua

please include a remap function for album titles as well (analog remap artist)

thanks



Re: Biography Text, Album Info, Picture. www.last.fm

Reply #112
great work !
remap-album function perfect.
small mistake in the context menu "remap artist" the "t" is missing

leave the previous artist-remaps as they are, or rather use the new remap-function-artist to create new ones ?
will the old remap-artist function be abandoned at some point?
can you transfer the existing remap-artists into the new editor automatically?

greetings

Re: Biography Text, Album Info, Picture. www.last.fm

Reply #113
Thanks.

can you transfer the existing remap-artists into the new editor automatically?

the old existing remap-artists data will be lost.
Do not refresh "Properties"
I'll try
UR5EQF. Ukraine

Re: Biography Text, Album Info, Picture. www.last.fm

Reply #114
Do not refresh "Properties"

1. Open script "Biography..." by pressing "Comfigure..."
2. Paste at the end of the script:
Code: [Select]
// transfer_data script
var remap_data = window.GetProperty(" remap artist", "ALLMAN BROTHERS BAND:THE ALLMAN BROTHERS BAND;");
transfer_data(remap_file_path("artist"));

function transfer_data(path) {
    var tmp_arr = [];
    tmp_arr = remap_data.split(/[:;]/g);

    try {
        remap_file = fso.OpenTextFile(path, 8);
        if (tmp_arr.length){
            remap_file.WriteLine(tmp_arr.join("\r\n"));
        }
        remap_file.Close();
    } catch(e) {};
}
3. Press "Apply"
4. Check file ... /tmp_Biography/_download/remap_artist.txt
5. If the transfer completed successfully, delete "transfer_data script"
5. Press "Apply".
UR5EQF. Ukraine

Re: Biography Text, Album Info, Picture. www.last.fm

Reply #115
has worked perfectly

thank you very much

Re: Biography Text, Album Info, Picture. www.last.fm

Reply #116
@kgena_ua

error at remap-album (maybe at remap-artist too)

example:
"Dark Side Of The Moon (Experince Edition)" is remaped to "Dark Side Of The Moon"
remap is ok; the correct entry is displayed.

original album "Dark Side Of The Moon" is not remaped. in remap_album.txt however "Dark Side Of The Moon" (as remaped entry) is found and now the following entry is taken as "remap". but this is the next album to be remaped. in my case "Live At Montreux 1991 (Collectors' Edition)

only the 1st entry may be searched for when comparing (never the 2nd entry)

extract from my remap_album.txt (sorry, can't upload a picture)
Dark Side Of The Moon (Experince Edition)
Dark Side Of The Moon
Live At Montreux 1991 (Collectors' Edition)
Live At Montreux 1991

please correct - thanks




Re: Biography Text, Album Info, Picture. www.last.fm

Reply #117
suggestion:
make it single-lined again, with ":" as the separator (as the old way of remap-artist but with txt-file)
i think this will do best

thanks

Re: Biography Text, Album Info, Picture. www.last.fm

Reply #118
remap album name

better you take "::" (2 x colon) as separator
I saw that there are many albums that have ":" in them.
For example: Stay With Me: Faces Anthology

please transfer the previous data automatically into the new format

thanks

Re: Biography Text, Album Info, Picture. www.last.fm

Reply #119
better you take "::" (2 x colon) as separator
I saw that there are many albums that have ":" in them.
For example: Stay With Me: Faces Anthology
You're right
UR5EQF. Ukraine

Re: Biography Text, Album Info, Picture. www.last.fm

Reply #120
Quote
make it single-lined again, with ":" as the separator (as the old way of remap-artist but with txt-file)
i think this will do best

"Biography, albums, title, similar artist info.www.last.fm."
version "10062020"

"*" as the separator
UR5EQF. Ukraine

Re: Biography Text, Album Info, Picture. www.last.fm

Reply #121
the previous remaps (artist + album) were set to "*" (everything ok), but the remap name is not searched for. the search is for the original artist/album name. only if you do a manual remap, it works correctly.
please correct this - thanks

Re: Biography Text, Album Info, Picture. www.last.fm

Reply #122
Hello,

thank you very much for this script. Would it be possible to disable some features? I'm interested in the (automatic) artist image download only. Or is there a separate script for this case?

Thank you in advance.

Re: Biography Text, Album Info, Picture. www.last.fm

Reply #123
hello kgena_ua

it is possible that you include the artist-name in the album-remap so that if you have several identical album-names, the correct album will be displayed.
if the artist has already been remapped, the remapped artist-name should be used.

if possible, please sort history, artist and album.txt.

thanks

Re: Biography Text, Album Info, Picture. www.last.fm

Reply #124
hello kgena_ua

what do you think about adapting your script for spider monkey panel ?