Showing 3 changed files with 19 additions and 20 deletions
+16 -17
CHANGES
... ...
@@ -1,4 +1,4 @@
1
-2.3 ()
1
+2.3 (2016-08-06)
2 2
   - Sorry, I found critical database specification mistake.
3 3
     I must fix pull_request and pull_request_message table.
4 4
     All your pull requests is removed. Please create Pull request again by the following command.
... ...
@@ -7,11 +7,10 @@
7 7
   
8 8
   - support markdown table
9 9
   - support markdown foo_bar_baz
10
-  
10
+  - support issue system
11 11
 2.2.1 (2016-06-14)
12 12
   - fix _search page error bug.
13 13
 2.2 (2016-06-04)
14
->>>>>>> master
15 14
   - add command line merging interface to pull request page
16 15
   - add createing patch feture to pull request page
17 16
 2.1 (2016-05-31)
... ...
@@ -33,13 +32,13 @@
33 32
   - add user update page.
34 33
   - fix bug that repository with read can't be created when git global user name and email.
35 34
   - drop cygwin support.
36
-1.12 (7 Feb 2016)
35
+1.12 (2016-02-07)
37 36
   - Catch up latest Github design.
38 37
   - Fix bug that relative image path in README.md and blob html.
39
-1.11 (7 Nov 2015)
38
+1.11 (2015-11-07)
40 39
   - support relative path in README.md and blob html.
41 40
   - support git version 2
42
-1.10 (27 Jun 2015)
41
+1.10 (2015-07-27)
43 42
   - add show_ignore_space_change_link option to show --ignore-space-change page easily
44 43
   - add --ignore-space-change feature in diff page by using w= query string
45 44
     for example, http://some.com/kimoto/gitprep_t/commit/3cf14ade5e28ee0cd83b9a3b1e1c332aed66df53?w=
... ...
@@ -48,20 +47,20 @@
48 47
     you need to change CGI script path, path/gitprep.cgi to path/gitprep/gitprep/cgi
49 48
   - remove setup.php
50 49
   
51
-1.9.2 (18 Nov 2014)
50
+1.9.2 (2014-11-18)
52 51
   - fix atom feed entry url bug
53 52
 1.9.1
54 53
   - fix atom feed bug
55
-1.9 (11 Nov 2014)
54
+1.9 (2014-11-11)
56 55
   - add ssh_rep_url_base to cnahge or hide ssh URL user directory
57 56
   - add atom feed of commits page
58 57
     for example, http://somehost.com/kimoto/gitprep_t/commits/master.atom
59
-1.8 (6 Jun 2014)
58
+1.8 (2014-07-06)
60 59
   - support publick key authentication
61
-1.7 (26 Apr 2014)
60
+1.7 (2014-04-26)
62 61
   - allow . as project name.
63 62
   - add respository and user search page
64
-1.6 (3 Apr 2014)
63
+1.6 (2014-04-03)
65 64
   - fix bug that can't create collaborator more than one.
66 65
   - support time zone.
67 66
   - change markdown parser from Text::Markdown::Discount to Text::Markdown::Hoedown
... ...
@@ -70,22 +69,22 @@
70 69
     code
71 70
     ```
72 71
   - add encoding_suspects to support multiple encoding in blob, commit diff, and blame.
73
-1.5 (26 Feb 2014)
72
+1.5 (2014-02-26)
74 73
   - fix bug that git clone via http failed.
75 74
   - show readme file in sub directory.
76
-1.4 (26 Nov 2013)
75
+1.4 (2013-11-26)
77 76
   - fix markdown bugs (*em*, _em_)
78 77
   - default readme file is changed. README is changed to README.md
79 78
   - add private repository and collaborator feature
80
-1.3 (9 Oct 2013)
79
+1.3 (2013-10-09)
81 80
   - add README.md support
82 81
   - add submodule support
83 82
   - add Smart HTTP and basic authentication support
84 83
   - add Markdown format in normal file
85
-1.2 (23 Aug 2013)
84
+1.2 (2013-08-23)
86 85
   - add blame page
87 86
   - add blanch import feature
88
-1.1 (30 Jun 2013)
87
+1.1 (2013-06-30)
89 88
   - add import_rep script to import repositories.
90
-1.0 (12 Jun 2013)
89
+1.0 (2013-06-12 )
91 90
   - first major release
+1 -1
lib/Gitprep.pm
... ...
@@ -17,7 +17,7 @@ use Time::Moment;
17 17
   eval {require Digest::SHA; import Digest::SHA qw(sha1 sha1_hex)};
18 18
 }
19 19
 
20
-our $VERSION = 'v2.2.1';
20
+our $VERSION = 'v2.3';
21 21
 
22 22
 has 'dbi';
23 23
 has 'git';
+2 -2
templates/include/footer.html.ep
... ...
@@ -1,8 +1,8 @@
1 1
 <div class="footer">
2 2
   <div class="container">
3 3
     <div>
4
-      <a href="https://github.com/yuki-kimoto/gitprep">Gitprep</a>
5
-      <span>Version <%= $Gitprep::VERSION %> (build on <a href="https://github.com/kraih/mojo">Mojolicious</a>)</span>
4
+      <div style="font-size:120%;"><a href="https://github.com/yuki-kimoto/gitprep">Gitprep</a> Version <%= $Gitprep::VERSION %></div>
5
+      <div style="font-size:95%">build on <a href="https://github.com/kraih/mojo">Mojolicious</a></div>
6 6
     </div>
7 7
 
8 8
     % if (app->mode eq 'development') {