Moving Settings.js to settings.json

This commit is contained in:
Tim Mickel 2016-01-22 15:02:19 -05:00
parent 4525954f43
commit efb7d3f226
2 changed files with 26 additions and 26 deletions

View file

@ -1,26 +0,0 @@
window.Settings = {
edition: 'free',
scratchJrVersion: 'iOSv01',
useStoryStarters: false,
shareEnabled: true,
defaultSprite: 'Star.svg',
spriteOutlineColor: 'white',
stageColor: '#F5F2F7',
textSpriteFont: 'Helvetica',
blockArgFont: 'Verdana',
paletteBalloonFont: 'Roboto',
categoryStartColor: '#FFE75A',
categoryMotionColor: '#4B8CC2',
categoryLooksColor: '#CD7CD1',
categorySoundColor: '#48CC7E',
categoryFlowColor: '#FFBE57',
categoryStopColor: '#D62222',
paletteBlockShadowOpacity: 0.8,
autoSaveInterval: 30 * 1000,
defaultLocale: 'en',
defaultLocaleShort: 'en',
supportedLocales: {
'English': 'en',
'Español': 'es'
}
};

View file

@ -0,0 +1,26 @@
{
"edition": "free",
"scratchJrVersion": "iOSv01",
"useStoryStarters": false,
"shareEnabled": true,
"defaultSprite": "Star.svg",
"spriteOutlineColor": "white",
"stageColor": "#F5F2F7",
"textSpriteFont": "Helvetica",
"blockArgFont": "Verdana",
"paletteBalloonFont": "Roboto",
"categoryStartColor": "#FFE75A",
"categoryMotionColor": "#4B8CC2",
"categoryLooksColor": "#CD7CD1",
"categorySoundColor": "#48CC7E",
"categoryFlowColor": "#FFBE57",
"categoryStopColor": "#D62222",
"paletteBlockShadowOpacity": 0.8,
"autoSaveInterval": 30000,
"defaultLocale": "en",
"defaultLocaleShort": "en",
"supportedLocales": {
"English": "en",
"Español": "es"
}
}