Update Changelog | Add translations
This commit is contained in:
		
							parent
							
								
									11ed2d1444
								
							
						
					
					
						commit
						ddfebf8b41
					
				|  | @ -1,11 +1,14 @@ | ||||||
| # Changelog | # Changelog | ||||||
| 
 | 
 | ||||||
| ## [0.4.1] It seems some Soundbars don't like music | ## [0.4.1] Media Mystique: The Great Data Disappearing Act! | ||||||
| 
 | 
 | ||||||
| ### Fixed | ### Fixed | ||||||
| 
 | 
 | ||||||
| - As it seems that some soundbars don't have the 'audioTrackData' attribute | - Made media data (*track title*, *artist*, *length*) optional to acoomodate soundbars that don't provide this information (🥲) | ||||||
|   the update process now, only tries to look at the data if it is existing. | 
 | ||||||
|  | ### Added | ||||||
|  | 
 | ||||||
|  | - Add translations for the english translation file | ||||||
| 
 | 
 | ||||||
| ## [0.4.0] Started with an "ick", but is now packed with new features 💪 | ## [0.4.0] Started with an "ick", but is now packed with new features 💪 | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
|  | @ -1,18 +1,18 @@ | ||||||
| { | { | ||||||
|     "config":{ |     "config": { | ||||||
|         "step":{ |         "step": { | ||||||
|             "user":{ |             "user": { | ||||||
|                 "data": { |                 "data": { | ||||||
|                     "api_key": "SmartThings API Token", |                     "api_key": "SmartThings API Token", | ||||||
|                     "device_id": "Device ID", |                     "device_id": "Device ID", | ||||||
|                     "device_name":"Device Name", |                     "device_name": "Device Name", | ||||||
|                     "device_volume": "Max Volume (int)" |                     "device_volume": "Max Volume (int)" | ||||||
|                 }, |                 }, | ||||||
|                 "description": "Please enter your credentials.", |                 "description": "Please enter your credentials.", | ||||||
|                 "title": "Authentication" |                 "title": "Authentication" | ||||||
|             }, |             }, | ||||||
|             "device":{ |             "device": { | ||||||
|                 "data" : { |                 "data": { | ||||||
|                     "settings_advanced_audio": "Enable 'Advanced Audio switches' capabilities (NightMode, BassMode, VoiceEnhancer)", |                     "settings_advanced_audio": "Enable 'Advanced Audio switches' capabilities (NightMode, BassMode, VoiceEnhancer)", | ||||||
|                     "settings_eq": "Enable 'EQ selector' capabilities", |                     "settings_eq": "Enable 'EQ selector' capabilities", | ||||||
|                     "settings_soundmode": "Enable 'Soundmode selector' capabilities", |                     "settings_soundmode": "Enable 'Soundmode selector' capabilities", | ||||||
|  | @ -21,8 +21,8 @@ | ||||||
|                 "description": "Some soundbars have a different featureset than others. Please the features supported by your soundbar (visible in the SmartThings App).", |                 "description": "Some soundbars have a different featureset than others. Please the features supported by your soundbar (visible in the SmartThings App).", | ||||||
|                 "title": "Device Settings" |                 "title": "Device Settings" | ||||||
|             }, |             }, | ||||||
|             "reconfigure_confirm":{ |             "reconfigure_confirm": { | ||||||
|                 "data" : { |                 "data": { | ||||||
|                     "settings_advanced_audio": "Enable 'Advanced Audio switches' capabilities (NightMode, BassMode, VoiceEnhancer)", |                     "settings_advanced_audio": "Enable 'Advanced Audio switches' capabilities (NightMode, BassMode, VoiceEnhancer)", | ||||||
|                     "settings_eq": "Enable 'EQ selector' capabilities", |                     "settings_eq": "Enable 'EQ selector' capabilities", | ||||||
|                     "settings_soundmode": "Enable 'Soundmode selector' capabilities", |                     "settings_soundmode": "Enable 'Soundmode selector' capabilities", | ||||||
|  | @ -59,5 +59,79 @@ | ||||||
|                 "Front": "Front" |                 "Front": "Front" | ||||||
|             } |             } | ||||||
|         } |         } | ||||||
|  |     }, | ||||||
|  |     "services": { | ||||||
|  |         "select_soundmode": { | ||||||
|  |             "name": "Select Sound Mode", | ||||||
|  |             "description": "Choose between 'Standard', 'Surround', 'Game', and 'Adaptive Sound'." | ||||||
|  |         }, | ||||||
|  |         "set_woofer_level": { | ||||||
|  |             "name": "Set Subwoofer Level", | ||||||
|  |             "description": "Change the volume of your subwoofer.", | ||||||
|  |             "fields": { | ||||||
|  |                 "level": { | ||||||
|  |                     "name": "Volume Level", | ||||||
|  |                     "description": "Subwoofer level, from -12 to +6" | ||||||
|  |                 } | ||||||
|  |             } | ||||||
|  |         }, | ||||||
|  |         "set_night_mode": { | ||||||
|  |             "name": "Set Night Mode", | ||||||
|  |             "description": "Turn 'Night Mode' on/off.", | ||||||
|  |             "fields": { | ||||||
|  |                 "enabled": { | ||||||
|  |                     "name": "On/Off", | ||||||
|  |                     "description": "See name." | ||||||
|  |                 } | ||||||
|  |             } | ||||||
|  |         }, | ||||||
|  |         "set_bass_enhancer": { | ||||||
|  |             "name": "Set Bass Mode", | ||||||
|  |             "description": "Turn 'Bass Mode' on/off.", | ||||||
|  |             "fields": { | ||||||
|  |                 "enabled": { | ||||||
|  |                     "name": "On/Off", | ||||||
|  |                     "description": "See name." | ||||||
|  |                 } | ||||||
|  |             } | ||||||
|  |         }, | ||||||
|  |         "set_voice_enhancer": { | ||||||
|  |             "name": "Set Voice Enhancer", | ||||||
|  |             "description": "Turn 'Voice Enhancer' on/off.", | ||||||
|  |             "fields": { | ||||||
|  |                 "enabled": { | ||||||
|  |                     "name": "On/Off", | ||||||
|  |                     "description": "See name." | ||||||
|  |                 } | ||||||
|  |             } | ||||||
|  |         }, | ||||||
|  |         "set_speaker_level": { | ||||||
|  |             "name": "Change Speaker Level", | ||||||
|  |             "description": "Change the volume of individual speakers." | ||||||
|  |         }, | ||||||
|  |         "set_rear_speaker_mode": { | ||||||
|  |             "name": "Set Rear Speaker Mode", | ||||||
|  |             "description": "Use your rear speakers as 'Front' or 'Rear' speakers." | ||||||
|  |         }, | ||||||
|  |         "set_active_voice_amplifier": { | ||||||
|  |             "name": "Set Voice Amplifier", | ||||||
|  |             "description": "Turn 'Voice Amplifier' on/off.", | ||||||
|  |             "fields": { | ||||||
|  |                 "enabled": { | ||||||
|  |                     "name": "On/Off", | ||||||
|  |                     "description": "See name." | ||||||
|  |                 } | ||||||
|  |             } | ||||||
|  |         }, | ||||||
|  |         "set_space_fit_sound": { | ||||||
|  |             "name": "Set SpaceFitSound", | ||||||
|  |             "description": "Turn 'SpaceFitSound' on/off.", | ||||||
|  |             "fields": { | ||||||
|  |                 "enabled": { | ||||||
|  |                     "name": "On/Off", | ||||||
|  |                     "description": "See name." | ||||||
|  |                 } | ||||||
|  |             } | ||||||
|  |         } | ||||||
|     } |     } | ||||||
| } | } | ||||||
		Loading…
	
		Reference in New Issue