Skip to content

Commit

Permalink
chore: version 7.12.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Bionus committed May 14, 2024
2 parents b61de7e + 6e4fc0c commit 9295754
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 3 deletions.
13 changes: 13 additions & 0 deletions docs/blog/posts/2024-05-14-grabber-7-12-2-released.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
date: 2024-05-14 20:15:00 +2:00
categories: [Release]
authors: [Bionus]
---


# Grabber 7.12.2 released

Grabber 7.12.2 has been released.

The list of changes and download links can be found on GitHub:
<https://github.com/Bionus/imgbrd-grabber/releases/tag/v7.12.2>
2 changes: 1 addition & 1 deletion scripts/windows-setup/setup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#endif

#ifndef MyAppVersion
# define MyAppVersion "7.12.1"
# define MyAppVersion "7.12.2"
#endif

#define PlatformNamePrefix ""
Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ endif()
set(QT_SILENCE_MISSING_DEPENDENCY_TARGET_WARNING ON)

if((NOT DEFINED VERSION) OR ((DEFINED NIGHTLY) AND (NIGHTLY MATCHES "1")))
set(VERSION "7.12.1")
set(VERSION "7.12.2")
else()
string(REGEX REPLACE "^v" "" VERSION "${VERSION}")
endif()
Expand Down
1 change: 1 addition & 0 deletions src/dist/linux/org.bionus.Grabber.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
<url type="contribute">https://github.com/Bionus/imgbrd-grabber/blob/master/CONTRIBUTING.md</url>

<releases>
<release version="7.12.2" date="2024-05-14" />
<release version="7.12.1" date="2024-05-12" />
<release version="7.12.0" date="2024-05-12" />
<release version="7.11.2" date="2023-07-23" />
Expand Down
2 changes: 1 addition & 1 deletion src/gui/src/main-window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ void MainWindow::addSearchTab(SearchTab *w, bool background, bool save, SearchTa
auto *closeTab = new QPushButton(QIcon(":/images/close.png"), "", this);
closeTab->setFlat(true);
closeTab->resize(QSize(8, 8));
connect(closeTab, &QPushButton::clicked, w, &SearchTab::deleteLater);
connect(closeTab, &QPushButton::clicked, w, &SearchTab::close);
ui->tabWidget->findChild<QTabBar*>()->setTabButton(index, QTabBar::RightSide, closeTab);

if (!background) {
Expand Down

0 comments on commit 9295754

Please sign in to comment.