diff --git a/README.md b/README.md index a731c0c..8c1709f 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ This program uses the Web Audio API. A browser supporting this API is therefore ## About -* Version: 1.2.1 (7/18/2019) +* Version: 1.2.1.1 (7/22/2019) * Made in France by Eliastik - [eliastiksofts.com](http://eliastiksofts.com) - Contact : [eliastiksofts.com/contact](http://eliastiksofts.com/contact) * License: GNU GPLv3 (see the LICENCE.txt file) @@ -32,6 +32,9 @@ This program uses the Web Audio API. A browser supporting this API is therefore ## Changelog +* Version 1.2.1.1 (7/22/2019): + - Fixed the Vocoder filter that was not working due to a small error, others fixes. + * Version 1.2.1 (7/18/2019): - Bug fixes and compatibility fixes with Microsoft Edge and Safari. @@ -78,7 +81,7 @@ Ce programme utilise la Web Audio API. Un navigateur supportant cette API est do ## À propos du programme -* Version du programme : 1.2.1 (18/07/2019) +* Version du programme : 1.2.1.1 (22/07/2019) * Made in France by Eliastik - [eliastiksofts.com](http://eliastiksofts.com) - Contact : [eliastiksofts.com/contact](http://eliastiksofts.com/contact) * Licence : GNU GPLv3 (voir le fichier LICENCE.txt) @@ -97,6 +100,9 @@ Ce programme utilise la Web Audio API. Un navigateur supportant cette API est do ## Journal des changements +* Version 1.2.1.1 (22/07/2019) : + - Réparation du filtre Vocoder qui ne fonctionnait plus suite à une petite erreur, autres corrections. + * Version 1.2.1 (18/07/2019) : - Corrections de bugs et correction de la compatibilité avec Microsoft Edge et Safari. diff --git a/assets/css/main.css b/assets/css/main.css index c677931..bb78def 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -96,6 +96,9 @@ img { .mmt { margin-top: 8px; } +.nmb { + margin-bottom: 0; +} .ml { margin-left: 22px; } @@ -205,3 +208,11 @@ label { .disabled-button-wrapper { cursor: not-allowed; } +.btn-responsive { + max-width: 100% !important; + overflow: hidden !important; + white-space: normal; +} +#bottomPage { + margin-top: 16px; +} diff --git a/assets/js/main.js b/assets/js/main.js index 4035e8f..0916c33 100755 --- a/assets/js/main.js +++ b/assets/js/main.js @@ -33,8 +33,8 @@ compaModeStopSave = function() { return false }; // Settings var filesDownloadName = "simple_voice_changer"; var audioArray = ["assets/sounds/impulse_response.wav", "assets/sounds/modulator.mp3"]; // audio to be loaded when launching the app -var app_version = "1.2.1"; -var app_version_date = "07/18/2019"; +var app_version = "1.2.1.1"; +var app_version_date = "07/22/2019"; var updater_uri = "https://www.eliastiksofts.com/simple-voice-changer/update.php" // End of the settings @@ -1004,6 +1004,8 @@ function launchPause() { if(!compaAudioAPI) { audioBufferPlay.pause(); checkButtonPlayAudioBuffer(); + } else { + launchStop(); } } @@ -1397,6 +1399,7 @@ function init(func) { document.getElementById("version").innerHTML = app_version; document.getElementById("appVersion").innerHTML = app_version; document.getElementById("appUpdateDate").innerHTML = app_version_date; + checkUpdate(); initAudioAPI(); preloadAudios(audioArray, function(result) { @@ -1492,8 +1495,6 @@ function updateCallback(data) { } } -checkUpdate(); - // Localization function listTranslations(languages) { if(languages != null) { diff --git a/index.html b/index.html index d684e64..1f56db4 100644 --- a/index.html +++ b/index.html @@ -81,7 +81,7 @@
By Eliastik – Télécharger le projet – Fichier Lisez-moi – Dépôt Github – Voir les navigateurs compatibles
-Version –
+By Eliastik – Télécharger le projet – Fichier Lisez-moi – Dépôt Github – Voir les navigateurs compatibles
+Version –
+