Show More
@@ -3,7 +3,8 b'' | |||||
3 | Changelog |
|
3 | Changelog | |
4 | ========= |
|
4 | ========= | |
5 |
|
5 | |||
6 | 1.2.0 (**2011-XX-XX**) |
|
6 | ||
|
7 | 1.3.0 (**XXXX-XX-XX**) | |||
7 | ====================== |
|
8 | ====================== | |
8 |
|
9 | |||
9 | :status: in-progress |
|
10 | :status: in-progress | |
@@ -12,6 +13,18 b' 1.2.0 (**2011-XX-XX**)' | |||||
12 | news |
|
13 | news | |
13 | ---- |
|
14 | ---- | |
14 |
|
15 | |||
|
16 | fixes | |||
|
17 | ----- | |||
|
18 | ||||
|
19 | ||||
|
20 | ||||
|
21 | ||||
|
22 | 1.2.0 (**2011-10-07**) | |||
|
23 | ====================== | |||
|
24 | ||||
|
25 | news | |||
|
26 | ---- | |||
|
27 | ||||
15 | - implemented #47 repository groups |
|
28 | - implemented #47 repository groups | |
16 | - implemented #89 Can setup google analytics code from settings menu |
|
29 | - implemented #89 Can setup google analytics code from settings menu | |
17 | - implemented #91 added nicer looking archive urls with more download options |
|
30 | - implemented #91 added nicer looking archive urls with more download options |
@@ -25,9 +25,9 b'' | |||||
25 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
25 | # along with this program. If not, see <http://www.gnu.org/licenses/>. | |
26 | import platform |
|
26 | import platform | |
27 |
|
27 | |||
28 |
VERSION = (1, |
|
28 | VERSION = (1, 3, 0, 'beta') | |
29 | __version__ = '.'.join((str(each) for each in VERSION[:4])) |
|
29 | __version__ = '.'.join((str(each) for each in VERSION[:4])) | |
30 |
__dbversion__ = |
|
30 | __dbversion__ = 4 #defines current db version for migrations | |
31 | __platform__ = platform.system() |
|
31 | __platform__ = platform.system() | |
32 | __license__ = 'GPLv3' |
|
32 | __license__ = 'GPLv3' | |
33 |
|
33 |
General Comments 0
You need to be logged in to leave comments.
Login now