Skip to content

Commit

Permalink
Bumped up version to 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
srazi committed Dec 22, 2016
1 parent 665856e commit 439f5ac
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Saaghar, a Persian poetry software
----------------------------------------------------------------------------------------
**Copyright (C) 2010-2015, Razi Alavizadeh**
**Copyright (C) 2010-2016, Razi Alavizadeh**

Homepage (in English): [http://en.saaghar.pozh.org](http://en.saaghar.pozh.org)

Expand Down Expand Up @@ -59,7 +59,7 @@ Compiling

Current version
----------------------------------------------------------------------------------------
The current version of Saaghar is **2.5.0**. You can download precompiled packages
The current version of Saaghar is **3.0.0**. You can download precompiled packages
and the sources from: [Saaghar's download page](http://pozh.org/saaghar/download).

Development Version
Expand Down
5 changes: 5 additions & 0 deletions src/progressmanager/progressview.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,12 @@ ProgressView::ProgressView(QWidget* parent)
m_layout->setSpacing(0);
m_layout->setSizeConstraint(QLayout::SetFixedSize);
setWindowTitle(tr("Processes"));

#ifdef Q_OS_WIN
setWindowFlags(Qt::SubWindow | Qt::Tool | Qt::CustomizeWindowHint | Qt::FramelessWindowHint);
#else
setWindowFlags(Qt::SubWindow | Qt::Tool | Qt::CustomizeWindowHint | Qt::FramelessWindowHint | Qt::WindowStaysOnTopHint);
#endif

setWindowOpacity(0.75);
}
Expand Down
10 changes: 5 additions & 5 deletions src/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@
#ifndef VERSION_H
#define VERSION_H

#define MAJOR_VERSION 2
#define MINOR_VERSION 5
#define PATCH_VERSION 99
#define MAJOR_VERSION 3
#define MINOR_VERSION 0
#define PATCH_VERSION 0

const QString BUILD_TIME = __DATE__" "__TIME__;
const QString BUILD_TIME = __DATE__ " " __TIME__;
const QString SAAGHAR_VERSION = QString("%1.%2.%3").arg(MAJOR_VERSION).arg(MINOR_VERSION).arg(PATCH_VERSION);

#define CONCAT(...) __VA_ARGS__
Expand All @@ -45,7 +45,7 @@ const QString SAAGHAR_VERSION = QString("%1.%2.%3").arg(MAJOR_VERSION).arg(MINOR
#define VER_COMPANYNAME_STR "Pozh"
#define VER_FILEDESCRIPTION_STR "Saaghar, a Persian Poetry Software"
#define VER_INTERNALNAME_STR "Saaghar"
#define VER_LEGALCOPYRIGHT_STR "Copyright © 2010-2016, S. Razi Alavizadeh"
#define VER_LEGALCOPYRIGHT_STR "Copyright (c) 2010-2017, S. Razi Alavizadeh"
#define VER_LEGALTRADEMARKS1_STR "This program is licensed under GPL v.3"
#define VER_LEGALTRADEMARKS2_STR VER_LEGALTRADEMARKS1_STR
#define VER_ORIGINALFILENAME_STR "Saaghar.exe"
Expand Down

0 comments on commit 439f5ac

Please sign in to comment.