Skip to content
This repository has been archived by the owner on Sep 30, 2021. It is now read-only.

Commit

Permalink
releasing 4.6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
k0shk0sh committed Mar 25, 2018
1 parent 276830b commit 1456d17
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 66 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ android {
applicationId "com.fastaccess.github"
minSdkVersion 21
targetSdkVersion 27
versionCode 464
versionName "4.6.4"
versionCode 465
versionName "4.6.5"
buildConfigString "GITHUB_CLIENT_ID", (buildProperties.secrets['github_client_id'] | buildProperties.notThere['github_client_id']).string
buildConfigString "GITHUB_SECRET", (buildProperties.secrets['github_secret'] | buildProperties.notThere['github_secret']).string
buildConfigString "IMGUR_CLIENT_ID", (buildProperties.secrets['imgur_client_id'] | buildProperties.notThere['imgur_client_id']).string
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,10 @@ class MainDrawerFragment : BaseFragment<MainMvp.View, BasePresenter<MainMvp.View
}

override fun onNavigationItemSelected(item: MenuItem): Boolean {
val activity = activity as? BaseActivity<*, *>? ?: return false
activity.closeDrawer()
if (item.isChecked) return false
mainNav.postDelayed({
val activity = activity as? BaseActivity<*, *>? ?: return@postDelayed
if (!activity.isFinishing()) {
when {
item.itemId == R.id.navToRepo -> activity.onNavToRepoClicked()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class GithubHelper {
@Nullable String baseUrl, boolean dark,
boolean isWiki, boolean replace) {
if (baseUrl == null) {
return mergeContent(context, source, dark);
return mergeContent(context, Jsoup.parse(source).html(), dark);
} else {
return mergeContent(context, parseReadme(source, baseUrl, isWiki), dark);
}
Expand Down Expand Up @@ -122,7 +122,7 @@ public class GithubHelper {
" <script src=\"./intercept-hash.js\"></script>\n" +
"</head>\n" +
"\n" +
"<body>\n" + Jsoup.parse(source).body().html() +
"<body>\n" + source +
"\n<script src=\"./intercept-touch.js\"></script>\n" +
"</body>\n" +
"\n" +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,7 @@
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/spacing_xs_large"
app:cardBackgroundColor="?card_background"
app:contentPaddingBottom="@dimen/spacing_normal"
app:contentPaddingLeft="@dimen/spacing_xs_large"
app:contentPaddingRight="@dimen/spacing_xs_large"
app:contentPaddingTop="@dimen/spacing_normal">
app:contentPadding="@dimen/spacing_xs_large">

<LinearLayout
android:layout_width="match_parent"
Expand Down Expand Up @@ -114,10 +111,7 @@
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/spacing_xs_large"
app:cardBackgroundColor="?card_background"
app:contentPaddingBottom="@dimen/spacing_normal"
app:contentPaddingLeft="@dimen/spacing_xs_large"
app:contentPaddingRight="@dimen/spacing_xs_large"
app:contentPaddingTop="@dimen/spacing_normal">
app:contentPadding="@dimen/spacing_xs_large">


<com.fastaccess.ui.widgets.FontTextView
Expand Down Expand Up @@ -152,10 +146,7 @@
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/spacing_xs_large"
app:cardBackgroundColor="?card_background"
app:contentPaddingBottom="@dimen/spacing_normal"
app:contentPaddingLeft="@dimen/spacing_xs_large"
app:contentPaddingRight="@dimen/spacing_xs_large"
app:contentPaddingTop="@dimen/spacing_normal">
app:contentPadding="@dimen/spacing_xs_large">

<com.fastaccess.ui.widgets.FontTextView
android:id="@+id/labels"
Expand Down Expand Up @@ -188,10 +179,7 @@
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/spacing_xs_large"
app:cardBackgroundColor="?card_background"
app:contentPaddingBottom="@dimen/spacing_normal"
app:contentPaddingLeft="@dimen/spacing_xs_large"
app:contentPaddingRight="@dimen/spacing_xs_large"
app:contentPaddingTop="@dimen/spacing_normal">
app:contentPadding="@dimen/spacing_xs_large">

<LinearLayout
android:layout_width="match_parent"
Expand Down
55 changes: 11 additions & 44 deletions app/src/main/res/raw/changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,60 +15,27 @@ <h3><a id="Version__420_Create_Edit__Delete_files_make_Commits_2"></a>Version 4.
PLEASE USE IT</strong>.
</p>
</blockquote>
<p><strong>Implemented enhancements:</strong></p>
<ul>
<li>Block icon position <a href="https://github.com/k0shk0sh/FastHub/issues/1451">#1451</a></li>
<li>Add new lock api <a href="https://github.com/k0shk0sh/FastHub/issues/1410">#1410</a></li>
<li>‘My Repos’ in main sidebar <a href="https://github.com/k0shk0sh/FastHub/issues/1405">#1405</a></li>
</ul>
<p><strong>Fixed bugs:</strong></p>
<ul>
<li>Text “Pro” wears out <a href="https://github.com/k0shk0sh/FastHub/issues/1540">#1540</a></li>
<li>Wrong url when sharing wiki <a href="https://github.com/k0shk0sh/FastHub/issues/1517">#1517</a></li>
<li>Star issue, counter resets (in GUI) if &gt;1000 stars <a href="https://github.com/k0shk0sh/FastHub/issues/1490">#1490</a></li>
<li>Downloaded zip file renamed and missing file extention <a href="https://github.com/k0shk0sh/FastHub/issues/1486">#1486</a></li>
<li>Cannot commit to specific branch <a href="https://github.com/k0shk0sh/FastHub/issues/1239">#1239</a></li>
<li>Cannot unpin pinned gist <a href="https://github.com/k0shk0sh/FastHub/issues/1575">#1575</a></li>
</ul>
<p><strong>Closed issues:</strong></p>
<ul>
<li>Cannot pin more than one gist <a href="https://github.com/k0shk0sh/FastHub/issues/1558">#1558</a></li>
<li>GitHub is going to deprecate anonymous Gist creation. <a href="https://github.com/k0shk0sh/FastHub/issues/1553">#1553</a></li>
<li>Translation error <a href="https://github.com/k0shk0sh/FastHub/issues/1548">#1548</a></li>
<li>Feature request: View PR deployments <a href="https://github.com/k0shk0sh/FastHub/issues/1547">#1547</a></li>
<li>Issue comment replying: automatically add a space after name username. <a href="https://github.com/k0shk0sh/FastHub/issues/1543">#1543</a>
</li>
<li>Button hint errors <a href="https://github.com/k0shk0sh/FastHub/issues/1526">#1526</a></li>
<li>“Cross referenced” message is misleading <a href="https://github.com/k0shk0sh/FastHub/issues/1496">#1496</a></li>
<li>App chrashes when adding new Note/issue to project column <a href="https://github.com/k0shk0sh/FastHub/issues/1488">#1488</a></li>
<li>The link to Slack is not available <a href="https://github.com/k0shk0sh/FastHub/issues/1483">#1483</a></li>
<li>Scrolling Down when Opening the Profile Section (Right) <a href="https://github.com/k0shk0sh/FastHub/issues/1625">#1625</a></li>
<li>Adding an assignee to an issue shows a send icon <a href="https://github.com/k0shk0sh/FastHub/issues/1624">#1624</a></li>
<li>Star counter resets <a href="https://github.com/k0shk0sh/FastHub/issues/1601">#1601</a></li>
<li>Remove extra code <a href="https://github.com/k0shk0sh/FastHub/issues/1596">#1596</a></li>
<li>Update message gets stuck <a href="https://github.com/k0shk0sh/FastHub/issues/1440">#1440</a></li>
</ul>
<p><strong>Merged pull requests:</strong></p>
<ul>
<li>Fix #1548 (german translation error) <a href="https://github.com/k0shk0sh/FastHub/pull/1572">#1572</a> (<a
href="https://github.com/cozyplanes">cozyplanes</a>)
</li>
<li>Language: Added Japanese strings <a href="https://github.com/k0shk0sh/FastHub/pull/1571">#1571</a> (<a href="https://github.com/clockvoid">clockvoid</a>)
</li>
<li>Code color palette will show saved theme <a href="https://github.com/k0shk0sh/FastHub/pull/1556">#1556</a> (<a
href="https://github.com/arpitjindal97">arpitjindal97</a>)
</li>
<li>Language: German strings added <a href="https://github.com/k0shk0sh/FastHub/pull/1535">#1535</a> (<a href="https://github.com/svenhofmann99">svenhofmann99</a>)
</li>
<li>Language: Strings translated <a href="https://github.com/k0shk0sh/FastHub/pull/1504">#1504</a> (<a
href="https://github.com/KallyDev">KallyDev</a>)
</li>
<li>Revert GH words to English + Update Korean strings for 4.6.2 <a href="https://github.com/k0shk0sh/FastHub/pull/1502">#1502</a> (<a
href="https://github.com/cozyplanes">cozyplanes</a>)
</li>
<li>Removed promo mentions <a href="https://github.com/k0shk0sh/FastHub/pull/1474">#1474</a> (<a href="https://github.com/dedepete">dedepete</a>)
</li>
<li>Fix spelling error <a href="https://github.com/k0shk0sh/FastHub/pull/1462">#1462</a> (<a
href="https://github.com/JamesKingdom">JamesKingdom</a>)
<li>Added Korean strings <a href="https://github.com/k0shk0sh/FastHub/pull/1584">#1584</a> (<a href="https://github.com/cozyplanes">cozyplanes</a>)
</li>
<li>Updated German lang <a href="https://github.com/k0shk0sh/FastHub/pull/1458">#1458</a> (<a href="https://github.com/Stargamers">Stargamers</a>)
<li>Spanish transaltion updated <a href="https://github.com/k0shk0sh/FastHub/pull/1581">#1581</a> (<a
href="https://github.com/alete89">alete89</a>)
</li>
<li>Updated Italian Translation <a href="https://github.com/k0shk0sh/FastHub/pull/1450">#1450</a> (<a
href="https://github.com/maicol07">maicol07</a>)
<li>Updated Russian translation <a href="https://github.com/k0shk0sh/FastHub/pull/1577">#1577</a> (<a
href="https://github.com/dedepete">dedepete</a>)
</li>
</ul>
<h3><a id="What_left_in_FastHub_29"></a>What's left for FastHub?
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
state_version = '1.2.0'
lombokVersion = '1.16.20'
supportVersion = "27.1.0"
gms = "11.8.0"
gms = "12.0.0"
thirtyinchVersion = '0.8.0'
retrofit = '2.3.0'
junitVersion = '4.12'
Expand Down

0 comments on commit 1456d17

Please sign in to comment.