Changeset 75 for branches


Ignore:
Timestamp:
Sep 30, 2023, 11:16:00 PM (23 months ago)
Author:
erdmann
Message:

pick up changes from trunk

Location:
branches/v2.9_Lars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/v2.9_Lars

  • branches/v2.9_Lars/classes/c/c_audio/cwmp3.c

    r74 r75  
    6464extern char classDLLPath[CCHMAXPATH];
    6565
    66 int iGenreLast=147;
     66int iGenreLast=191;
    6767char *genreList[]={
    6868        "Blues", "Classic Rock", "Country", "Dance", "Disco", "Funk",
     
    9191        "Christian Gangsta", "Heavy Metal", "Black Metal", "Crossover", "Contemporary C",
    9292        "Christian Rock", "Merengue", "Salsa", "Thrash Metal", "Anime", "JPop",
    93         "SynthPop",
     93        "SynthPop", "Christmas", "Art rock", "Baroque", "Bhangra", "Big beat", "Breakbeat",
     94        "Chillout", "Downtempo", "Dub", "EBM", "Eclectic", "Electro", "Electroclash", "Emo",
     95        "Experimental", "Garage", "Global", "IDM", "Illbient", "Industro-Goth", "Jam Band",
     96        "Krautrock", "Leftfield", "Lounge", "Math rock", "New romantic", "Nu-breakz", "Post-punk",
     97        "Post-rock", "Psytrance", "Shoegaze", "Space rock", "Trop rock", "World music", "Neoclassical",
     98        "Audiobook", "Audio theatre", "Neue Deutsche Welle", "Podcast", "Indie-rock", "G-Funk",
     99        "Dubstep", "Garage rock", "Psybient"
    94100};
    95101
     
    411417  //We have a major tab so we need a name
    412418  if(!getMessage(pageName, ID_ID3TAGSPAGENAME, sizeof(pageName),  queryResModuleHandle(), hwndNotebook))
    413     strcpy(pageName, "~ID3 Tags");
     419    strcpy(pageName, "~ID3 tag");
    414420  pageinfo.pszName = pageName;
    415421  //Insert the page into the settings notebook
  • branches/v2.9_Lars/mediafolder/c/cddb/pmcddb.cc

    r40 r75  
    110110#define QUERYCDDB_VERSION "0.1"
    111111
    112 int port=888;
    113 char host[1000]="uk.freedb.org";
     112int port=8880;
     113char host[1000]="gnudb.gnudb.org";
    114114char username[1000]={0};
    115115char hostname[1000]={0};
     
    211211
    212212    if(NUMSERVERS==0) {
    213       strncpy(cddbServer[0],"de.freedb.org:888",sizeof(cddbServer[0]));
    214       strncpy(cddbServer[1],"at.freedb.org:888",sizeof(cddbServer[0]));
    215       strncpy(cddbServer[2],"ca.freedb.org:888",sizeof(cddbServer[0]));
    216       strncpy(cddbServer[3],"uk.freedb.org:888",sizeof(cddbServer[0]));
    217       strncpy(cddbServer[4],"freedb.freedb.org:888",sizeof(cddbServer[0]));
    218       strncpy(cddbServer[5],"cz.freedb.org:888",sizeof(cddbServer[0]));
    219       NUMSERVERS=6;
     213      strncpy(cddbServer[0],"gnudb.gnudb.org:8880",sizeof(cddbServer[0]));
     214      NUMSERVERS=1;
    220215    }
    221216    else {
Note: See TracChangeset for help on using the changeset viewer.