@sdetweil said in unexpected token error:
javascript is very accepting of TOO MANY commas…
That’s right about JavaScript. But trailing commas are a syntax error in JSON files.
@sdetweil said in unexpected token error:
javascript is very accepting of TOO MANY commas…
That’s right about JavaScript. But trailing commas are a syntax error in JSON files.
There is a comma to much at the end of the keywords array: "Forecast",
@JohnGalt Thanks for pointing this out. I have corrected it (it’s only in the first list now) :-)
@jclarke54 Nice! 👏
Don’t forget to add it to the module list 🙂
I have tried to find all modules that use the OpenWeather API. Here is the result:
These modules allow you to set the API version via parameter. This means that deactivating version 2.5 should not a problem for them. Users who used the API 2.5 have to get a new API key and change the parameter in the config.
apiVersion: "3.0"
apiVersion: "3.0"
apiVersion: "3.0"
apiVersion: "3.0"
apiVersion: "3.0"
endpoint: "https://api.openweathermap.org/data/3.0/onecall"
weatherAPIVersion: "3.0"
apiVersion: "3.0"
apiVersion: "3.0"
apiVersion: "3.0"
apiVersion: "3.0"
apiVersion: "3.0"
apiBase: "http://api.openweathermap.org/data/3.0/onecall?"
Version 2.5 was previously hard-coded for these modules. Now it is 3.0. Previous users must generate a new API key.
Version 2.5 is hard-coded in these modules. This means that the modules will no longer function after API version 2.5 is switched off.
These modules are not yet marked as outdated, so I have created PRs for them.
These modules are marked as abandoned, so I have not created PRs for them. If anyone uses one of these modules: Use another module or fork the module and maintain it.
@bachoo786 said in MP3 Player:
I am tyring to modify this mp3 player module: https://github.com/justjim1220/MMM-MP3Player
Maybe use this newer fork as base: https://github.com/x3mEr/MMM-MP3Player
@jcgrim13 I recommend to open an issue in the module’s repository. Maybe the author will notice that.
@jcgrim13 Check that your password and augustID are correct.
@luisestrada How did you run the update? git pull && npm run install-mm
like in the docs?