Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

how to recognize the QGIS version from the GUI #48092

Open
pigreco opened this issue Apr 5, 2022 · 6 comments
Open

how to recognize the QGIS version from the GUI #48092

pigreco opened this issue Apr 5, 2022 · 6 comments
Labels
Feature Request GUI/UX Related to QGIS application GUI or User Experience

Comments

@pigreco
Copy link
Contributor

pigreco commented Apr 5, 2022

Feature description

how to recognize the QGIS version from the GUI ???

I use OSGeo4W64 v2 and have installed three versions of QGIS:

  1. QGIS 3.22.5 LTR
  2. QGIS 3.24.1
  3. QGIS dev

how to understand from the GUI which version I am using?
for the dev, it's easy, a code appears at the top left, but for 3.22 or 3.24 it's impossible to distinguish them.

image

Therefore, I ask you to add, as for the dev, the version number used in the other in the GUI - QGIS 3.22.5-2

image

Even in the windows taskbar, the icons are all the same, it is impossible to recognize the version

image

Additional context

No response

@pigreco pigreco added GUI/UX Related to QGIS application GUI or User Experience Feature Request labels Apr 5, 2022
@ValPinnaSardinia
Copy link
Contributor

I agree with and support the request. It would be very useful.
Also, just to integrate it, I add that it is possible to get the QGIS version on the GUI title bar with a simple python startup file saved in the folder ...\AppData\Roaming\QGIS\QGIS3\

from qgis.utils import iface
from qgis.core import QgsExpressionContextUtils

def customize():
    version = QgsExpressionContextUtils.globalScope().variable('qgis_version')
    title = iface.mainWindow().windowTitle()
    iface.mainWindow().setWindowTitle('{} | {}'.format(title,version))

iface.initializationCompleted.connect(customize)

@ar-siddiqui
Copy link

I face similar issues when using different QGIS profiles, something like a different taskbar icon for each profile would be a very nice feature, like how it is done in the Chrome browser.

@nyalldawson
Copy link
Collaborator

This is a wontfix in my opinion -- the version numbers were removed by design. See 490f5f0

A plugin would be the ideal way to address this need.

@uclaros
Copy link
Contributor

uclaros commented Apr 7, 2022

Slight tongue-in-cheek, you can recognize the QGIS version from the GUI by going to help > about

@esnyder-rve
Copy link
Contributor

Maybe leave the regular release the same, but for the LTR release, have "Project Name - QGIS LTR"

@YoannQDQ
Copy link
Contributor

YoannQDQ commented Mar 15, 2023

I developed a small plugin that allows to customize the title bar with the version (name or number), profile name, commit sha, etc. You could check it out. https://plugins.qgis.org/plugins/custom_titlebar/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Feature Request GUI/UX Related to QGIS application GUI or User Experience
Projects
None yet
Development

No branches or pull requests

7 participants