Skip to content

Commit

Permalink
Gw v0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kcleal committed Jul 8, 2024
1 parent 9a3c3e0 commit d4f52d6
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
pull_request:

env:
version: 0.9.3
version: 0.10.0

jobs:
mingw:
Expand Down
2 changes: 1 addition & 1 deletion deps/gw.desktop
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[Desktop Entry]
Encoding=UTF-8
Version=0.9.3
Version=0.10.0
Type=Application
Terminal=true
Exec=bash -c "/usr/bin/gw"
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/install/Linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ For best performance, install GW as a desktop application on (Intel debian syste
Use the installer below, or head over to the GitHub [Releases page](https://github.com/kcleal/gw/releases).


[GW Intel x86_64 debian installer](https://github.com/kcleal/gw/releases/download/v0.9.3/gw_0.9.3_amd64.deb)
[GW Intel x86_64 debian installer](https://github.com/kcleal/gw/releases/download/v0.10.0/gw_0.10.0_amd64.deb)



Expand Down
2 changes: 1 addition & 1 deletion docs/docs/install/MacOS.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ For best performance, install GW as a desktop application (Intel or Apple silico
installers below, or head over to the GitHub [Releases page](https://github.com/kcleal/gw/releases).


[GW Intel x86_64 mac dmg installer](https://github.com/kcleal/gw/releases/download/v0.9.3/gw_macos_intel.dmg)
[GW Intel x86_64 mac dmg installer](https://github.com/kcleal/gw/releases/download/v0.10.0/gw_macos_intel.dmg)

[GW Apple arm64 mac dmg installer](https://github.com/kcleal/gw/releases/download/v0.9.3/gw-macos-arm.dmg)

Expand Down
2 changes: 1 addition & 1 deletion docs/docs/install/Windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Follow the installation instructions on the website to set up MSYS2 on your Wind
Download the GW installer script below:


[GW Intel x86_64 Windows installer](https://github.com/kcleal/gw/releases/download/v0.9.3/gw-windows-installer.vbs)
[GW Intel x86_64 Windows installer](https://github.com/kcleal/gw/releases/download/v0.10.0/gw-windows-installer.vbs)


Run the downloaded visual-basic script by double-clicking, or right-clicking and selecting Run as program.
Expand Down
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ int main(int argc, char *argv[]) {
static const std::vector<std::string> links = { "none", "sv", "all" };

// note to developer - update version in workflows/main.yml, menu.cpp and deps/gw.desktop, and installers .md in docs
argparse::ArgumentParser program("gw", "0.9.3");
argparse::ArgumentParser program("gw", "0.10.0");

program.add_argument("genome")
.default_value(std::string{""}).append()
Expand Down
2 changes: 1 addition & 1 deletion src/menu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ namespace Menu {
std::string tip;
if (opts.control_level.empty()) {
if (opts.menu_table == Themes::MenuTable::MAIN) {
tip = opts.ini_path + " v0.9.3";
tip = opts.ini_path + " v0.10.0";
}
else if (opts.menu_table == Themes::MenuTable::GENOMES) { tip = "Use ENTER key to select genome, or RIGHT_ARROW key to edit path"; }
else if (opts.menu_table == Themes::MenuTable::SHIFT_KEYMAP) { tip = "Change characters selected when using shift+key"; }
Expand Down

0 comments on commit d4f52d6

Please sign in to comment.