/usr/share/torchat/version.py is in torchat 0.9.9.553-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | NAME = "TorChat"
VERSION_MAJOR = "0.9.9"
VERSION_SVN = 553
EXPERIMENTAL = False
# here used to be code that scanned the .svn dirs for the revision
# number, generated a cache file if no svn was found, etc.
# now I'm on git and for simplicity just manually increment
# VERSION_SVN after each official release.
VERSION = VERSION_MAJOR + "." + str(VERSION_SVN)
VERSION_ONLY = VERSION
if EXPERIMENTAL:
VERSION += "-experimental"
|