Version 

<style> 
.version {
	height: 25px;
    width: 200px;
    border-radius: 5px;
    border: 1px solid #ddd;
}
</style>
<select class="version" id="version" onchange="showContent()">
	<option value="6.1.0">6.1.0</option>
    <option value="6.0.0">6.0.0</option>
</select>
<script> 
function showContent() {
	var dropdown = document.getElementById("version"); 
	var tabs = document.getElementsByClassName("rwui_tab_content");
	for (var i = 0; i < tabs.length; i++) {
		if (tabs[i].getAttribute("data-name") == dropdown.value) {
			tabs[i].style.display = "";
		}
		else {
			tabs[i].style.display = "none";
		}
	}
}
</script>



Release Date: TBD

Enhancements

You will now get prompted if you are using the wrong MBS version for Snapshot. 






Release Date: March 19, 2021

New Features

Access Snapshot through a user interface with the Core application.


Schedule a backup and restore through a user interface.


MBS 3.0 will be used to properly run backup and restore.


Backup estimation is available to preview how many records will be back up.


Sortable columns will be provided for the list of backup. 


Select an application in Snapshot to choose which tables you want to backup. 





<script>
	var tabs = document.getElementsByClassName("rwui_tab_content");
	for (var i = 0; i < tabs.length; i++) {
		if (tabs[i].getAttribute("data-name") == "6.1.0") {
			tabs[i].style.display = "";
		}
		else {
			tabs[i].style.display = "none";
		}
	}
</script>