Skip to content

Commit

Permalink
Updated gtf/gff3 name parsing v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kcleal committed Jul 31, 2024
1 parent 8a2a294 commit ea70fe7
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 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: 1.0.0
version: 1.0.1

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=1.0.0
Version=1.0.1
Type=Application
Terminal=true
Exec=bash -c "/usr/bin/gw"
Expand Down
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ void print_banner() {
}

// note to developer - update version in workflows/main.yml, menu.cpp, term_out.cpp, and deps/gw.desktop, and installers .md in docs
const char GW_VERSION [7] = "1.0.0";
const char GW_VERSION [7] = "1.0.1";


bool str_is_number(const std::string &s) {
Expand Down
2 changes: 1 addition & 1 deletion src/menu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ namespace Menu {

if (opts.control_level.empty()) {
if (opts.menu_table == Themes::MenuTable::MAIN) {
tip = opts.ini_path + " v1.0.0";
tip = opts.ini_path + " v1.0.1";
}
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
2 changes: 1 addition & 1 deletion src/term_out.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1385,7 +1385,7 @@ namespace Term {
}

#if !defined(__EMSCRIPTEN__)
const char* CURRENT_VERSION = "v1.0.0";
const char* CURRENT_VERSION = "v1.0.1";

size_t WriteCallback(void* contents, size_t size, size_t nmemb, void* userp) {
((std::string*)userp)->append((char*)contents, size * nmemb);
Expand Down

0 comments on commit ea70fe7

Please sign in to comment.