From 5040853444f26b6a810276b365b106dceebc954c Mon Sep 17 00:00:00 2001 From: pit-ray Date: Mon, 20 May 2024 22:20:38 +0900 Subject: [PATCH] update version --- CMakeLists.txt | 2 +- README.md | 8 ++++---- docs/_config.yml | 10 +++++----- src/core/entry.cpp | 8 +++++--- src/core/version.hpp | 2 +- 5 files changed, 16 insertions(+), 14 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 941e5145..56f9e6ec 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.6.0) project(win-vind VERSION 5.13.0) -set(INTERNAL_VERSION ${PROJECT_VERSION}.1) +set(INTERNAL_VERSION ${PROJECT_VERSION}.0) if(NOT CMAKE_BUILD_TYPE) set(CMAKE_BUILD_TYPE Debug) diff --git a/README.md b/README.md index ad0f8174..f2ba5256 100644 --- a/README.md +++ b/README.md @@ -64,12 +64,12 @@ $ scoop install win-vind ``` ### Executable Installer -- [win-vind_5.12.0_32bit_installer.zip](https://github.com/pit-ray/win-vind/releases/download/v5.12.0/win-vind_5.12.0_32bit_installer.zip) -- [win-vind_5.12.0_64bit_installer.zip](https://github.com/pit-ray/win-vind/releases/download/v5.12.0/win-vind_5.12.0_64bit_installer.zip) +- [win-vind_5.13.0_32bit_installer.zip](https://github.com/pit-ray/win-vind/releases/download/v5.13.0/win-vind_5.13.0_32bit_installer.zip) +- [win-vind_5.13.0_64bit_installer.zip](https://github.com/pit-ray/win-vind/releases/download/v5.13.0/win-vind_5.13.0_64bit_installer.zip) ### Portable Zip -- [win-vind_5.12.0_32bit_portable.zip](https://github.com/pit-ray/win-vind/releases/download/v5.12.0/win-vind_5.12.0_32bit_portable.zip) -- [win-vind_5.12.0_64bit_portable.zip](https://github.com/pit-ray/win-vind/releases/download/v5.12.0/win-vind_5.12.0_64bit_portable.zip) +- [win-vind_5.13.0_32bit_portable.zip](https://github.com/pit-ray/win-vind/releases/download/v5.13.0/win-vind_5.13.0_32bit_portable.zip) +- [win-vind_5.13.0_64bit_portable.zip](https://github.com/pit-ray/win-vind/releases/download/v5.13.0/win-vind_5.13.0_64bit_portable.zip) ## Usage diff --git a/docs/_config.yml b/docs/_config.yml index bf1b0a83..fff7c569 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -13,7 +13,7 @@ translations: # label: 日本語 project: - version: 5.12.0 + version: 5.13.0 download_url: downloads download_text: Download @@ -43,10 +43,10 @@ links: icon: comments url: https://github.com/pit-ray/win-vind/discussions -dl_ins_32: https://github.com/pit-ray/win-vind/releases/download/v5.12.0/win-vind_5.12.0_32bit_installer.zip -dl_zip_32: https://github.com/pit-ray/win-vind/releases/download/v5.12.0/win-vind_5.12.0_32bit_portable.zip -dl_ins_64: https://github.com/pit-ray/win-vind/releases/download/v5.12.0/win-vind_5.12.0_64bit_installer.zip -dl_zip_64: https://github.com/pit-ray/win-vind/releases/download/v5.12.0/win-vind_5.12.0_64bit_portable.zip +dl_ins_32: https://github.com/pit-ray/win-vind/releases/download/v5.13.0/win-vind_5.13.0_32bit_installer.zip +dl_zip_32: https://github.com/pit-ray/win-vind/releases/download/v5.13.0/win-vind_5.13.0_32bit_portable.zip +dl_ins_64: https://github.com/pit-ray/win-vind/releases/download/v5.13.0/win-vind_5.13.0_64bit_installer.zip +dl_zip_64: https://github.com/pit-ray/win-vind/releases/download/v5.13.0/win-vind_5.13.0_64bit_portable.zip ui: mode: 'light' # 'auto', 'dark', 'light' diff --git a/src/core/entry.cpp b/src/core/entry.cpp index a5444dd4..435035b0 100644 --- a/src/core/entry.cpp +++ b/src/core/entry.cpp @@ -374,9 +374,11 @@ namespace vind CmdUnit::SPtr input ; std::uint16_t count = 0 ; if(!ihub.pull_input(input, count)) { - if(count > 0) { - opt::VCmdLine::reset() ; - opt::VCmdLine::print(opt::StaticMessage(std::to_string(count))) ; + if(settable.get("showcmd").get()) { + if(count > 0) { + opt::VCmdLine::reset() ; + opt::VCmdLine::print(opt::StaticMessage(std::to_string(count))) ; + } } continue ; } diff --git a/src/core/version.hpp b/src/core/version.hpp index c95a7939..b63522c3 100644 --- a/src/core/version.hpp +++ b/src/core/version.hpp @@ -1,6 +1,6 @@ #ifndef _VERSION_HPP #define _VERSION_HPP -#define WIN_VIND_VERSION "5.13.0.1" +#define WIN_VIND_VERSION "5.13.0.0" #endif