- Timestamp:
- Sep 30, 2023, 11:16:00 PM (23 months ago)
- 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 64 64 extern char classDLLPath[CCHMAXPATH]; 65 65 66 int iGenreLast=1 47;66 int iGenreLast=191; 67 67 char *genreList[]={ 68 68 "Blues", "Classic Rock", "Country", "Dance", "Disco", "Funk", … … 91 91 "Christian Gangsta", "Heavy Metal", "Black Metal", "Crossover", "Contemporary C", 92 92 "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" 94 100 }; 95 101 … … 411 417 //We have a major tab so we need a name 412 418 if(!getMessage(pageName, ID_ID3TAGSPAGENAME, sizeof(pageName), queryResModuleHandle(), hwndNotebook)) 413 strcpy(pageName, "~ID3 Tags");419 strcpy(pageName, "~ID3 tag"); 414 420 pageinfo.pszName = pageName; 415 421 //Insert the page into the settings notebook -
branches/v2.9_Lars/mediafolder/c/cddb/pmcddb.cc
r40 r75 110 110 #define QUERYCDDB_VERSION "0.1" 111 111 112 int port=888 ;113 char host[1000]=" uk.freedb.org";112 int port=8880; 113 char host[1000]="gnudb.gnudb.org"; 114 114 char username[1000]={0}; 115 115 char hostname[1000]={0}; … … 211 211 212 212 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; 220 215 } 221 216 else {
Note:
See TracChangeset
for help on using the changeset viewer.