From ed305bf4cf02b3aa9c7562002f814b45e7114550 Mon Sep 17 00:00:00 2001 From: Sam Aaron Date: Wed, 28 Jun 2023 23:19:18 +0100 Subject: [PATCH] Version - start developing v5 Tech Preview 3 --- app/gui/qt/html/doc.html | 2 +- app/gui/qt/html/info.html | 2 +- app/gui/qt/mainwindow.cpp | 2 +- app/server/ruby/lib/sonicpi/runtime.rb | 6 +++--- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/app/gui/qt/html/doc.html b/app/gui/qt/html/doc.html index 69b4068d3c..59a644a9a9 100644 --- a/app/gui/qt/html/doc.html +++ b/app/gui/qt/html/doc.html @@ -15,7 +15,7 @@ code_as :art

-

v5.0.0-tech-preview-2

+

v5.0.0-tech-preview-3

diff --git a/app/gui/qt/html/info.html b/app/gui/qt/html/info.html index 801deacf7d..eb6824585d 100644 --- a/app/gui/qt/html/info.html +++ b/app/gui/qt/html/info.html @@ -29,6 +29,6 @@
-

v5.0.0-tech-preview-2

+

v5.0.0-tech-preview-3

diff --git a/app/gui/qt/mainwindow.cpp b/app/gui/qt/mainwindow.cpp index 5b5f843ff9..c18242c50a 100644 --- a/app/gui/qt/mainwindow.cpp +++ b/app/gui/qt/mainwindow.cpp @@ -132,7 +132,7 @@ MainWindow::MainWindow(QApplication& app, QSplashScreen* splash) show_rec_icon_a = false; restoreDocPane = false; focusMode = false; - version = "5.0-tech-preview-2"; + version = "5.0-tech-preview-3"; latest_version = ""; version_num = 0; latest_version_num = 0; diff --git a/app/server/ruby/lib/sonicpi/runtime.rb b/app/server/ruby/lib/sonicpi/runtime.rb index 6f6287b636..7b3323ed7b 100644 --- a/app/server/ruby/lib/sonicpi/runtime.rb +++ b/app/server/ruby/lib/sonicpi/runtime.rb @@ -1427,12 +1427,12 @@ def initialize(ports, msg_queue, user_methods) @user_methods = user_methods @git_hash = __extract_git_hash - # gh_short = @git_hash ? "-#{@git_hash[0, 7]}" : "" + gh_short = @git_hash ? "- #{@git_hash[0, 7]}" : "" @settings = Config::Settings.new(Paths.system_cache_store_path) # Temporarily fix beta version: - @version = Version.new(5, 0, 0, "Tech Preview 2") - # @version = Version.new(4, 4, 0, gh_short) + @version = Version.new(5, 0, 0, "Tech Preview #{gh_short}") + #@version = Version.new(4, 4, 0) @server_version = __server_version @life_hooks = LifeCycleHooks.new