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

Commit

Permalink
releasing 4.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
k0shk0sh committed Oct 22, 2017
1 parent 64a7b52 commit a4cc92b
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 9 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ android {
applicationId "com.fastaccess.github"
minSdkVersion 21
targetSdkVersion 26
versionCode 442
versionName "4.4.2"
versionCode 450
versionName "4.5.0"
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 @@ -216,7 +216,8 @@ private void getNotificationWithComment(Context context, int accentColor, Notifi
}

private void withComments(Comment comment, Context context, Notification thread, int accentColor) {
android.app.Notification toAdd = getNotification(comment.getUser() != null ? comment.getUser().getLogin() : "", comment.getBody(),
android.app.Notification toAdd = getNotification(comment.getUser() != null ? comment.getUser().getLogin() : "",
MarkDownProvider.stripMdText(comment.getBody()),
thread.getRepository() != null ? thread.getRepository().getFullName() : "general")
.setLargeIcon(BitmapFactory.decodeResource(getResources(), R.mipmap.ic_launcher))
.setSmallIcon(R.drawable.ic_notification)
Expand Down
24 changes: 18 additions & 6 deletions app/src/main/res/raw/changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,32 @@
<body id="preview">
<h2><a id="FastHub_changelog_0"></a>FastHub changelog
</h2>
<h3><a id="Version__420_Create_Edit__Delete_files_make_Commits_2"></a>Version 4.4.2 (Some fixes)
<h3><a id="Version__420_Create_Edit__Delete_files_make_Commits_2"></a>Version 4.5.0 (Pin Issues & PRs)
</h3>
<blockquote>
<p>Please report the issues in FastHub repo instead, by opening the Drawer Menu and clicking on “Report an Issue”<strong>
PLEASE USE IT</strong>.
</p>
</blockquote>
<h4><a id="Bugs__Enhancements__new_Features_320_7"></a>Bugs , Enhancements &amp; new Features (4.4.2)
<h4><a id="Bugs__Enhancements__new_Features_320_7"></a>Bugs , Enhancements &amp; new Features
</h4>
<ul>
<li>(Enhancement) Markdown Tables (I know it isn't perfect) but at least it show up :p</li>
<li>(Enhancement) Some markdown dark theme enhancements</li>
<li>(Enhancement) Back button in Gist show bring you back to Gists list</li>
<li>(Fix) Creating issue without milestone while being repo owner results in error.</li>
<li>(New) Pin Issues & PRs to your local pins</li>
<li>(New) Search Users & Organization Repos </li>
<li>(New) Clear search history</li>
<li>(New) Jump to Comment if it was in the first page else the comment will be displayed in top and jumped to it.</li>
<li>(Enhancement) Removed Purchase check on App start due to those anti GPS.</li>
<li>(Enhancement) Made Reactions more easier to see who reacted to your comment.</li>
<li>(Enhancement) Remove Assignee from Assignees.</li>
<li>(Enhancement) Fallback to browser upon 404 status code.</li>
<li>(Enhancement) Only restart app after existing Customization Settings.</li>
<li>(Enhancement) Some markdown dark theme enhancements.</li>
<li>(Enhancement) Back button in Gist show bring you back to Gists list.</li>
<li>(Enhancement) Remove caches of WebView.</li>
<li>(Enhancement) Uppercase sentences when commenting from the bottom comment box.</li>
<li>(Fix) Markdown comments in notification bar.</li>
<li>(Fix) Gist description is no longer required.</li>
<li>(Fix) Repo links ends in (.git).</li>
<li>(Fix) Lots of bug fixes.</li>
<li>There are more stuff are not mentioned, find them out ;).</li>
</ul>
Expand Down
2 changes: 2 additions & 0 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -595,11 +595,13 @@
<h5>• How can I get a PROMO CODE?</h5>
<p>If you are a student, you\'ll have to prove it to me. The documents listed below should be provided me via E-mail:</p>
<ul>
<li>Your GitHub username.</li>
<li>Your student card and your identity card/passport (that shows your name and face to compare them!);</li>
<li>Your education start and graduation dates.</li>
</ul>
<p>If you aren\'t a student and you can\'t afford purchasing PRO, you\'ll need to:</p>
<ul>
<li>Your GitHub username.</li>
<li>Write an article about FastHub in any social media, such as Medium;</li>
<li>Prove your authorship.</li>
</ul>
Expand Down

0 comments on commit a4cc92b

Please sign in to comment.