Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Kouremenos <kourem@gmail.com>2005-09-06 15:48:59 +0400
committerNikos Kouremenos <kourem@gmail.com>2005-09-06 15:48:59 +0400
commit94eeb3dc6bed9cfe9e7beff5c920bca92374d157 (patch)
tree1f7cabb7ef705e2fa20a8aefc0f0e62a72716844
parentf305afff4c183eb777678cfdf2288f05b577309a (diff)
say 0.8.2 everywhere
-rw-r--r--Changelog5
-rw-r--r--Makefile2
-rw-r--r--gajim.desktop2
-rw-r--r--gajim.iss2
-rw-r--r--src/common/config.py2
-rw-r--r--src/common/gajim.py2
6 files changed, 10 insertions, 5 deletions
diff --git a/Changelog b/Changelog
index a62f42878..b86767c5e 100644
--- a/Changelog
+++ b/Changelog
@@ -1,3 +1,8 @@
+Gajim 0.8.2 (06 Sep 2005)
+
+ * Fix so Gajim runs in pygtk2.8.x
+ * Other minor fixes
+
Gajim 0.8.1 (02 Sep 2005)
* Systray icon for windows
diff --git a/Makefile b/Makefile
index 2e2327aa5..3db358b01 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-VERSION ?= 0.9
+VERSION ?= 0.8.2
GAJIM_AP = 0 # do we build Autopackage?
diff --git a/gajim.desktop b/gajim.desktop
index 30039f0b2..a7ef6318f 100644
--- a/gajim.desktop
+++ b/gajim.desktop
@@ -3,7 +3,7 @@ Categories=Network;InstantMessaging;Application;GTK;GNOME;
Name=Gajim
GenericName=Jabber IM Client
Comment=A GTK+ Jabber client
-Version=0.8.1
+Version=0.8.2
Encoding=UTF-8
Exec=gajim
Icon=gajim.png
diff --git a/gajim.iss b/gajim.iss
index 9cb914438..bd22980a2 100644
--- a/gajim.iss
+++ b/gajim.iss
@@ -5,7 +5,7 @@
[Setup]
AppName=Gajim
-AppVerName=Gajim version 0.8.1
+AppVerName=Gajim version 0.8.2
DefaultDirName={pf}\Gajim
DefaultGroupName=Gajim
UninstallDisplayIcon={app}\src\Gajim.exe
diff --git a/src/common/config.py b/src/common/config.py
index d407e98a9..0ae5824a1 100644
--- a/src/common/config.py
+++ b/src/common/config.py
@@ -117,7 +117,7 @@ class Config:
'send_on_ctrl_enter': [opt_bool, False], # send on ctrl+enter
'show_roster_on_startup': [opt_bool, True],
'key_up_lines': [opt_int, 25], # how many lines to store for key up
- 'version': [ opt_str, '0.8.1' ],
+ 'version': [ opt_str, '0.8.2' ],
'always_compact_view': [opt_bool, False], # initial compact view state
'search_engine': [opt_str, 'http://www.google.com/search?&q=%s&sourceid=gajim'],
'dictionary_url': [opt_str, 'WIKTIONARY'], # by default use wiktionary
diff --git a/src/common/gajim.py b/src/common/gajim.py
index b967e257b..5888835c1 100644
--- a/src/common/gajim.py
+++ b/src/common/gajim.py
@@ -24,7 +24,7 @@ import mutex
import common.config
import common.logger
-version = '0.8.1'
+version = '0.8.2'
config = common.config.Config()
connections = {}
verbose = False