Skip to content

Commit

Permalink
p3x-robot sunday release 2018-5-13 12:27:06
Browse files Browse the repository at this point in the history
  • Loading branch information
p3x-robot committed May 13, 2018
1 parent 40693f0 commit 588e51e
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 20 deletions.
5 changes: 4 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,12 @@
[//]: #@corifeus-header:end

### v1.1.11
### v1.1.12
* in progress

### v1.1.11
* Make to use the tag/branch button like GitHub

### v1.1.10
* total dark/light mode (CodeMirror, diff, Markdown)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"watch": "grunt && concurrently \"webpack --watch\" \"grunt watch:less\""
},
"description": "🤖 P3X Gitlist",
"version": "1.1.11",
"version": "1.1.12",
"main": "index.js",
"repository": "https://github.com/patrikx3/gitlist",
"author": "patrikx3 <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion twig/branch_menu.twig
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<span class="caret"></span>
</button>
<div role="menu" class="dropdown-menu" id="p3x-gitlist-branch-list-dropdown-menu">
<form>
<form class="form-group-sm" style="margin: 5px;">
<input id="p3x-gitlist-branch-list-search" class="form-control" placeholder="Search" autofocus>
</form>

Expand Down
26 changes: 9 additions & 17 deletions twig/commit.twig
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,17 @@

{% include 'breadcrumb.twig' with {breadcrumbs: [{dir: "Commit #{commit.hash}", path:''}]} %}

<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="javascript:;" onclick="document.location.hash='#';">{{ commit.message }}</a>
</div>

<div class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li>
<a href="{{ path('branch', {repo: repo, branch: commit.hash}) }}" title="Browse code at this point in history"><span class="fa fa-list-alt"></span> Browse code</a>
</li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>

<div>
<div style="float: right;">
<a class="btn btn-info" href="{{ path('branch', {repo: repo, branch: commit.hash}) }}" title="Browse code at this point in history"><span class="fa fa-list-alt"></span> Browse code</a>
</div>
<div style="font-size: 175%; padding: 10px; font-weight: bold;">
{{ commit.message }}
</div>
</div>
<div style="height: 10px; clear: both;"></div>
<div class="commit-view">


<div class="commit-body">
{% if commit.body is not empty %}
<p>{{ commit.body | nl2br }}</p>
Expand Down

0 comments on commit 588e51e

Please sign in to comment.