Skip to content

Commit

Permalink
Version - start developing v5 Tech Preview 3
Browse files Browse the repository at this point in the history
  • Loading branch information
samaaron committed Jun 28, 2023
1 parent 8bb5a6e commit ed305bf
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app/gui/qt/html/doc.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
code_as <span class="highlight">:art</span></pre>
</p>

<p class="version">v5.0.0-tech-preview-2</p>
<p class="version">v5.0.0-tech-preview-3</p>

</center>

Expand Down
2 changes: 1 addition & 1 deletion app/gui/qt/html/info.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@

<br/>

<p class="version">v5.0.0-tech-preview-2</p>
<p class="version">v5.0.0-tech-preview-3</p>
</center>
</body>
2 changes: 1 addition & 1 deletion app/gui/qt/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
6 changes: 3 additions & 3 deletions app/server/ruby/lib/sonicpi/runtime.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ed305bf

Please sign in to comment.