Kryptone commited on
Commit
086b8c8
·
1 Parent(s): 7348eda

add changelog tab

Browse files
Files changed (1) hide show
  1. app.py +14 -0
app.py CHANGED
@@ -224,4 +224,18 @@ with gr.Blocks(theme='NoCrypt/miku', title="Global Dataset Maker") as app:
224
  [upload],
225
  [gr.Text(label="Result")]
226
  )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
227
  app.launch()
 
224
  [upload],
225
  [gr.Text(label="Result")]
226
  )
227
+ with gr.TabItem("Changelog"):
228
+ gr.HTML("<h1> Current changelog: </h1>")
229
+ gr.Markdown("---")
230
+ gr.Markdown("v0.90a - Fixed bug that if 'show_amount_of_files_and_file_dur' was False, split wav files would not be deleted.")
231
+ gr.Markdown("v0.90 - Added mp3 support for downloading a Youtube video.")
232
+ gr.Markdown("v0.85 - Fixed bug in pitch analyzer if no audio file was given.")
233
+ gr.Markdown("v0.80 - Added new tool: Pitch Analyzer.")
234
+ gr.Markdown("v0.75 - Fixed bug that would cause split wav files to be packaged with the previously split wav files.")
235
+ gr.Markdown("v0.74 - Added new tool: WAV file splitter.")
236
+ gr.Markdown("v0.73 - Added Misc Tools tab and new Sample Rate analyzer tool.")
237
+ gr.Markdown("v0.70 - Fixed bug if no URL was passed or if the URL was invalid.")
238
+ gr.Markdown("v0.65 - Fixed bug if user tried to split an audio file when 'output.wav' didnt exist.")
239
+ gr.Markdown("v0.60 - Initial push to Huggingface Space.")
240
+
241
  app.launch()