Skip to content
This repository was archived by the owner on May 14, 2024. It is now read-only.

Commit fb37688

Browse files
author
kernel
committed
Fix 'ssh info' & 'welcome' html pages texts.
1 parent afca1c6 commit fb37688

File tree

5 files changed

+16
-9
lines changed

5 files changed

+16
-9
lines changed

Gitty/DARepoCtrl.m

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
#import "DAReposListCtrl.h"
1818

19-
2019
static NSString *MasterBranchName = @"master";
2120

2221
static NSString *DiffSegue = @"DiffSegue";

Gitty/DAReposListCtrl.m

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,14 @@ @interface DAReposListCtrl ()
1515

1616
@implementation DAReposListCtrl
1717

18+
- (BOOL)prefersStatusBarHidden {
19+
return NO;
20+
}
21+
22+
- (UIStatusBarStyle)preferredStatusBarStyle {
23+
return UIStatusBarStyleLightContent;
24+
}
25+
1826
- (void)viewDidLoad {
1927
[super viewDidLoad];
2028

Gitty/en.lproj/MainStoryboard.storyboard

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -258,9 +258,9 @@
258258
<color key="backgroundColor" red="0.90196078430000004" green="0.90196078430000004" blue="0.90196078430000004" alpha="1" colorSpace="calibratedRGB"/>
259259
<constraints>
260260
<constraint firstAttribute="trailing" secondItem="BEU-y7-wg9" secondAttribute="trailing" id="Akx-nd-gqi"/>
261-
<constraint firstAttribute="bottom" secondItem="BEU-y7-wg9" secondAttribute="bottom" id="RpA-Jv-RsR"/>
261+
<constraint firstItem="BEU-y7-wg9" firstAttribute="top" secondItem="4ff-iA-Sct" secondAttribute="top" id="iw2-Lf-pcE"/>
262+
<constraint firstItem="GN4-pu-90K" firstAttribute="top" secondItem="BEU-y7-wg9" secondAttribute="bottom" id="qVZ-gf-7NA"/>
262263
<constraint firstItem="BEU-y7-wg9" firstAttribute="leading" secondItem="4ff-iA-Sct" secondAttribute="leading" id="xhH-CD-LZe"/>
263-
<constraint firstItem="BEU-y7-wg9" firstAttribute="top" secondItem="4ff-iA-Sct" secondAttribute="top" id="xpR-o6-cch"/>
264264
</constraints>
265265
</view>
266266
<navigationItem key="navigationItem" title="Diff" id="WDB-7T-fRo"/>
@@ -915,7 +915,7 @@ yet.</string>
915915
<objects>
916916
<navigationController id="xze-n8-Hho" customClass="NavViewCtrl" sceneMemberID="viewController">
917917
<toolbarItems/>
918-
<navigationBar key="navigationBar" contentMode="scaleToFill" id="7xi-s5-GSX">
918+
<navigationBar key="navigationBar" contentMode="scaleToFill" barStyle="black" id="7xi-s5-GSX">
919919
<rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
920920
<autoresizingMask key="autoresizingMask"/>
921921
<color key="barTintColor" white="0.0" alpha="1" colorSpace="calibratedWhite"/>

Res/Html/Guides/Feedback.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,11 @@
6666
<div class="container">
6767
<!--<h1></h1>-->
6868

69-
<p>GitUp is a small tool that helps you stay in-sync with the projects you develop.</p>
70-
<p>It is aimed to be your tiny tool that is available anytime, anywhere. Especially in remote environments e.g. while heading to an office in public transport or hanging around with no dev-box available.</p>
71-
<p>Futhermore it introduces features that are not generally supported by standart git cli like 'Daily StandUp filter' that groups commits by Authors and by Branches.</p>
69+
<p><b>GitUp</b> is a small tool that helps you stay in-sync with the projects you develop.</p>
70+
<p>It is aimed to be tiny tool that is available anytime and anywhere.
71+
<p>GitUp it introduces features that are not generally supported by standart git cli like 'Daily StandUp filter' that groups commits <b>by Authors</b> and <b>by Branches</b> for easier analyzation of latest code changes.</p>
7272

73-
<p>If you like what GitUp does for you support its development by mentioning <a href="https://twitter.com/Git_Up">#GitUp</a> in a tweet and rating app in the <a href="https://itunes.apple.com/us/app/gitup/id680153559?ls=1&mt=8">AppStore</a>.</p>
73+
<p>If you like what GitUp does for you support its development by mentioning <a href="https://twitter.com/Git_Up">#GitUp</a> in a tweet or rating app in the <a href="https://itunes.apple.com/us/app/gitup/id680153559?ls=1&mt=8">AppStore</a>.</p>
7474

7575
<p style="color:rgb(255,51,51); text-align:right"><i>Thank you for using GitUp.</i></p>
7676

Res/Html/Guides/SSH-Howto.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ <h1 style="color:#666">Connecting to private repos via SSH</h1>
9797

9898
<p>ssh:// protocol will appear right next to other protocols list.</p>
9999

100-
<center><p><b style="color:rgb(255,51,51)">Happy SSH-ing! :)</b></p></center>
100+
<center><p><b style="color:rgb(255,51,51)">Happy SSH-ing!</b></p></center>
101101
</div>
102102
</body>
103103
</html>

0 commit comments

Comments
 (0)