Skip to content

Commit

Permalink
Merge pull request #23 from kcleal/gw_dev
Browse files Browse the repository at this point in the history
v0.9.3
  • Loading branch information
kcleal committed Jan 31, 2024
2 parents 8fa64dc + f2eb45c commit 6dc6063
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 9 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.2
version: 0.9.3

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.2
Version=0.9.3
Type=Application
Terminal=true
Exec=bash -c "/usr/bin/gw"
Expand Down
4 changes: 3 additions & 1 deletion docs/docs/install/Linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ nav_order: 2
For best performance, install GW as a desktop application on (Intel debian systems only), or build from source.
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.2/gw_0.9.2_amd64.deb)

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



GW is also available for Linux x86_64 systems as a command-line tool and can be installed using Conda.
Expand Down
6 changes: 4 additions & 2 deletions docs/docs/install/MacOS.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@ nav_order: 1
For best performance, install GW as a desktop application (Intel or Apple silicone), or build from source. Use one of the
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.2/gw_macos_intel.dmg)
| [GW Apple arm64 mac dmg installer](https://github.com/kcleal/gw/releases/download/v0.9.2/gw-macos-arm.dmg)

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


GW can be copied to your bin directory to make it available as a command-line tool:
```shell
Expand Down
6 changes: 5 additions & 1 deletion docs/docs/install/Windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@ 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.2/gw-windows-installer.vbs)

[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.9.2/gw-windows-installer.vbs)


Run the downloaded visual-basic script by double-clicking, or right-clicking and selecting Run as program.
The script will install GW, add a shortcut to GW in the Start Menu and put GW on your PATH. This means GW
Expand Down
4 changes: 2 additions & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ int main(int argc, char *argv[]) {
static const std::vector<std::string> img_themes = { "igv", "dark", "slate" };
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
argparse::ArgumentParser program("gw", "0.9.2");
// 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");

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.2";
tip = opts.ini_path + " v0.9.3";
}
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 6dc6063

Please sign in to comment.