Skip to content

Commit 35b54c3

Browse files
committed
Release v0.3.0 LETSGO
1 parent c03ddb0 commit 35b54c3

6 files changed

Lines changed: 7 additions & 6 deletions

File tree

.github/workflows/cmake.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ jobs:
5959
zip \
6060
fuse \
6161
libx11-dev \
62+
libxcb1-dev \
6263
libglfw3-dev \
6364
libtesseract-dev \
6465
libcurl4-openssl-dev \

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
zip \
6161
fuse \
6262
libx11-dev \
63-
libxcb-dev \
63+
libxcb1-dev \
6464
libglfw3-dev \
6565
libtesseract-dev \
6666
libcurl4-openssl-dev \

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.15)
22

3-
project(oshot VERSION 0.2.3 LANGUAGES C CXX)
3+
project(oshot VERSION 0.3.0 LANGUAGES C CXX)
44

55
set(CMAKE_CXX_STANDARD 20)
66
set(CMAKE_CXX_STANDARD_REQUIRED ON)

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ endif
6262

6363
NAME = oshot
6464
TARGET ?= $(NAME)
65-
OLDVERSION = 0.2.2
66-
VERSION = 0.2.3
65+
OLDVERSION = 0.2.3
66+
VERSION = 0.3.0
6767
SRC = $(wildcard src/*.cpp)
6868
OBJ = $(SRC:.cpp=.o)
6969
LDFLAGS += -L$(BUILDDIR) $(LTO_FLAGS)

compile_flags.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
-Wextra
55
-Wpedantic
66
-std=c++20
7-
-DVERSION="0.2.3"
7+
-DVERSION="0.3.0"
88
-DDEBUG=1
99
-DWINDOWS_CMD=1
1010
-DENABLE_PORTALS=1

src/screenshot_tool.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -680,7 +680,7 @@ void ScreenshotTool::DrawOcrTools()
680680
ImGui::PopStyleColor();
681681
}
682682
ImGui::SameLine();
683-
HelpMarker("Path to the OCR models (.traineddata). Supports drag-and-drop too");
683+
HelpMarker("Full-Path to the OCR models (.traineddata). Supports drag-and-drop too");
684684

685685
if (!invalid_path)
686686
{

0 commit comments

Comments
 (0)