updated version history

pull/95/head
jmoenig 2020-10-21 10:22:33 +02:00
rodzic 8fd44c6fe2
commit 694f50683b
4 zmienionych plików z 6 dodań i 4 usunięć

Wyświetl plik

@ -4,6 +4,7 @@
* **New Features:**
* added "pie chart" option to PLOT command in the frequency distribution analysis library
* added getProjectXML() method to the API
* new noCloud flag that disables cloud access, thanks, Bernat
* **Documentation Updates:**
* API update
* **Notable Fixes:**
@ -14,7 +15,8 @@
### 2020-10-21
* gui: wait until all costumes have loaded before auto-triggering the green-flag event
* gui, objects, store: wait until all sounds have loaded before auto-triggering the green-flag event
* gui, objects, store: wait until all sounds have loaded before auto-triggering the green-flag event
* gui, cloud: added noCloud flag that disables cloud access, thanks, Bernat!
### 2020-10-20
* added "pie chart" option to PLOT command in the frequency distribution analysis library

Wyświetl plik

@ -22,7 +22,7 @@
<script src="src/xml.js?version=2020-04-27"></script>
<script src="src/store.js?version=2020-10-21"></script>
<script src="src/locale.js?version=2020-10-20"></script>
<script src="src/cloud.js?version=2020-05-17"></script>
<script src="src/cloud.js?version=2020-10-21"></script>
<script src="src/api.js?version=2020-10-20"></script>
<script src="src/sha512.js?version=2019-06-27"></script>
<script src="src/FileSaver.min.js?version=2019-06-27"></script>

Wyświetl plik

@ -34,7 +34,7 @@
/*global modules, hex_sha512*/
modules = modules || {};
modules.cloud = '2020-May-17';
modules.cloud = '2020-October-21';
// Global stuff

Wyświetl plik

@ -4285,7 +4285,7 @@ IDE_Morph.prototype.save = function () {
this.source = null;
}
if (this.cloud.disabled) { this.source = 'disk'; }
if (this.cloud.disabled) {this.source = 'disk'; }
if (this.projectName) {
if (this.source === 'disk') {