diff --git a/app/build.gradle b/app/build.gradle
index ad1b80205..f954f3837 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -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
diff --git a/app/src/main/java/com/fastaccess/ui/modules/main/drawer/MainDrawerFragment.kt b/app/src/main/java/com/fastaccess/ui/modules/main/drawer/MainDrawerFragment.kt
index 2da3bf18a..d2b29f7fb 100644
--- a/app/src/main/java/com/fastaccess/ui/modules/main/drawer/MainDrawerFragment.kt
+++ b/app/src/main/java/com/fastaccess/ui/modules/main/drawer/MainDrawerFragment.kt
@@ -40,9 +40,10 @@ class MainDrawerFragment : BaseFragment? ?: 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()
diff --git a/app/src/main/java/com/prettifier/pretty/helper/GithubHelper.java b/app/src/main/java/com/prettifier/pretty/helper/GithubHelper.java
index 97e44a6d0..03cc2cb47 100644
--- a/app/src/main/java/com/prettifier/pretty/helper/GithubHelper.java
+++ b/app/src/main/java/com/prettifier/pretty/helper/GithubHelper.java
@@ -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);
}
@@ -122,7 +122,7 @@ public class GithubHelper {
" \n" +
"\n" +
"\n" +
- "\n" + Jsoup.parse(source).body().html() +
+ "\n" + source +
"\n\n" +
"\n" +
"\n" +
diff --git a/app/src/main/res/layouts/main_layouts/layout/create_issue_layout.xml b/app/src/main/res/layouts/main_layouts/layout/create_issue_layout.xml
index fc09b8e39..0946dfa0e 100644
--- a/app/src/main/res/layouts/main_layouts/layout/create_issue_layout.xml
+++ b/app/src/main/res/layouts/main_layouts/layout/create_issue_layout.xml
@@ -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">
+ app:contentPadding="@dimen/spacing_xs_large">
+ app:contentPadding="@dimen/spacing_xs_large">
+ app:contentPadding="@dimen/spacing_xs_large">
Version 4.
PLEASE USE IT.
- Implemented enhancements:
-
- - Block icon position #1451
- - Add new lock api #1410
- - ‘My Repos’ in main sidebar #1405
-
Fixed bugs:
- - Text “Pro” wears out #1540
- - Wrong url when sharing wiki #1517
- - Star issue, counter resets (in GUI) if >1000 stars #1490
- - Downloaded zip file renamed and missing file extention #1486
- - Cannot commit to specific branch #1239
+ - Cannot unpin pinned gist #1575
Closed issues:
- - Cannot pin more than one gist #1558
- - GitHub is going to deprecate anonymous Gist creation. #1553
- - Translation error #1548
- - Feature request: View PR deployments #1547
- - Issue comment replying: automatically add a space after name username. #1543
-
- - Button hint errors #1526
- - “Cross referenced” message is misleading #1496
- - App chrashes when adding new Note/issue to project column #1488
- - The link to Slack is not available #1483
+ - Scrolling Down when Opening the Profile Section (Right) #1625
+ - Adding an assignee to an issue shows a send icon #1624
+ - Star counter resets #1601
+ - Remove extra code #1596
+ - Update message gets stuck #1440
Merged pull requests:
What's left for FastHub?
diff --git a/build.gradle b/build.gradle
index 1793f9e96..e09a38da4 100644
--- a/build.gradle
+++ b/build.gradle
@@ -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'