-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update version to v3.0.0, remove old references to v2
- Loading branch information
Showing
6 changed files
with
45 additions
and
174 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/* | ||
* Here you can write whatever you want! | ||
* Use it to adjust Local Radio to your needs | ||
* | ||
* TO START: RENAME THIS FILE TO custom.js | ||
* | ||
* You can overwrite settings from the config.js file like this: | ||
* g_skinConfig["radius"] = 10000; | ||
* You can enable new maps like this: | ||
* cities = cities.concat(cities_open_spaces); | ||
* (see cities-ets2.js / cities-ats.js file for the maps available) | ||
* You can add new stations like this: | ||
* stations["austria"].push({ | ||
name: "Station name", | ||
logo: "Logo URL", | ||
url: "Stream URL" | ||
}); | ||
* Or you can add them to stations_custom below. stations_custom expects the | ||
* same format as stations, see stations-europe.js or stations-america.js for an example. | ||
*/ | ||
var stations_custom = {}; | ||
|
||
for (var key in stations_custom) { | ||
if(stations_custom.hasOwnProperty(key)){ | ||
if(stations.hasOwnProperty(key)){ | ||
for(var i = 0; i < stations_custom[key].length; i++){ | ||
stations[key].push(stations_custom[key][i]) | ||
} | ||
} else { | ||
stations[key] = stations_custom[key]; | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains 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
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"version": "2.5.0" | ||
"version": "3.0.0" | ||
} |