You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support for warning for infinite loop, localized errors for new generic HTTP code based errors, bug fix in main window and IntelliSense compatibility
"Create Music with AI" is made StreamContent instead of GenerateContent to apply infinite loop warning, localized errors are extended for new generic HTTP code based errors, the bug in "Use keyboard as piano" that still causes to play notes even when "Use keyboard as piano" is disabled is fixed and methods are made IntelliSense compatible.
Logger.Log($"Rewind to saved version - BPM: {Variables.bpm}, Alt Notes: {Variables.alternatingNoteLength}",Logger.LogTypes.Info);
4798
+
Logger.Log($"Rewind to saved version - BPM: {Variables.bpm}, Alt Notes: {Variables.alternatingNoteLength}, Note Silence Ratio: {Variables.noteSilenceRatio}, Time Signature: {Variables.timeSignature}, Octave: {Variables.octave}",Logger.LogTypes.Info);
Logger.Log($"Values restored: BPM={bpmValue}, Alt Notes={alternatingNoteLength}",Logger.LogTypes.Info);
5938
+
Logger.Log($"Values restored: BPM={bpmValue}, Alt Notes={alternatingNoteLength}, Time Sig={timeSignature}, Silence Ratio={noteSilenceRatio}",Logger.LogTypes.Info);
0 commit comments