Skip to content

Commit 1a13406

Browse files
authored
3.7.4 (#721)
* 3.7.2 adds userid to copied thread urls. I think its all of them Upped targetSdkVersion so the play store stops complaining * Adds search option to in-thread menu * Differentiates handling of user roles * 3.7.3 and notes * added additional bookmark colors * 3.7.4 and log
1 parent d5e476b commit 1a13406

File tree

20 files changed

+119
-62
lines changed

20 files changed

+119
-62
lines changed

Awful.apk/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ android {
3434
defaultConfig {
3535
applicationId = "com.ferg.awfulapp"
3636
minSdkVersion 21
37-
targetSdkVersion 28
37+
targetSdkVersion 29
3838
resConfigs "en"
3939

4040
// Stops the Gradle plugin’s automatic rasterization of vectors
@@ -162,5 +162,5 @@ dependencies {
162162

163163
testImplementation 'junit:junit:4.12'
164164
testImplementation 'org.hamcrest:hamcrest-library:1.3'
165-
implementation 'androidx.constraintlayout:constraintlayout:2.0.2'
165+
implementation 'androidx.constraintlayout:constraintlayout:2.0.3'
166166
}

Awful.apk/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
-->
88
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
99
package="com.ferg.awfulapp"
10-
android:versionCode="30701"
11-
android:versionName="3.7.1"
10+
android:versionCode="30704"
11+
android:versionName="3.7.4"
1212
android:installLocation="auto">
1313
<supports-screens
1414
android:smallScreens="true"

Awful.apk/src/main/assets/changelog.html

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,21 @@
66

77
<main>
88
<section>
9-
<h2>3.7.1</h2>
9+
<h2>3.7.4</h2>
1010
<ul>
11+
<li>The 3 new bookmark colors are now also available in this app. How much more colors can there be, like 2?</li>
12+
<li>You can now zoom gifs via the "display image" function. Truly we are living in the future.</li>
1113
<li>New button in threads to find you are posts.</li>
12-
<li>IK and super-mods are now marked as mods.</li>
14+
<li>Searching a thread is now also available inside that thread via the menu. Makes slightly more sense than in the thread longpress-menu, <i>I GUESS</i></li>
15+
<li>Added stars for supermods and IKs. And for coders? Whatever that is.</li>
16+
<li>Fixed probation time parsing. Probably. Look, just don't get probated ok?</li>
17+
<li>Fixed gfycat display. Turns out trying to fix a correct url is bad?</li>
18+
<li>Fixed video auto-play function. Though I guess nobody used that anyway</li>
19+
<li>Recipient is now above subject in the PM view. Hope this doesn't break your very important workflow.</li>
20+
<li>Copying thread urls will now respect filtering for a user's post. Opening such a thread url still does not. *sets status to "it's complicated"*</li>
1321
<li>Some "new" thread tags for QCS.</li>
14-
<li>Fixed imgur upload again.</li>
22+
<li>Updated some libraries which probably does <i>something</i>. Is the app faster now? Is me telling you a placebo effect? You decide!</li>
23+
<li>Oh wow you are still reading this. Hi!</li>
1524
</ul>
1625
</section>
1726

File renamed without changes.
530 Bytes
Loading
370 Bytes
Loading
File renamed without changes.
583 Bytes
Loading

Awful.apk/src/main/assets/javascript/thread.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,7 @@ function showPostMenu(postMenu) {
486486
postMenu.getAttribute('userid'),
487487
postMenu.getAttribute('lastreadurl'),
488488
postMenu.hasAttribute('editable'),
489-
postMenu.hasAttribute('isMod') || postMenu.hasAttribute('isAdmin'),
489+
postMenu.hasAttribute('has-role'),
490490
postMenu.hasAttribute('isPlat')
491491
);
492492
}
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
<article class="post {{seen}} {{#isMarked}}marked{{/isMarked}} {{#isOP}}op{{/isOP}} {{#isSelf}}self{{/isSelf}}" id="post{{ postID }}">
1+
<article class="post {{seen}} {{#isMarked}}marked{{/isMarked}} {{#isOP}}op{{/isOP}} {{#isSelf}}self{{/isSelf}}" id="post{{postID}}">
22
<header class="postheader">
33
<div class="posterinfo">
4-
{{# avatarURL }}
4+
{{#avatarURL}}
55
<img class="avatar" src="{{.}}" title="{{username}}'s avatar" />
66
{{/avatarURL }}
77
<section class="postinfo">
8-
<aside class="postinfo-poster"><span class="postinfo-poster-name">{{username}} {{#mod}}<img src="file:///android_asset/images/ic_star_blue.png" />{{/mod}} {{#admin}}<img src="file:///android_asset/images/ic_star_red.png" />{{/admin}} </span> {{^admin }}{{^mod}}{{#plat}}<span class="icon-gren"></span>{{/plat}}{{/mod}}{{/admin}}</aside>
8+
<aside class="postinfo-poster"><span class="postinfo-poster-name">{{username}} {{#role}}<img src="file:///android_asset/images/ic_star_{{role}}.png" />{{/role}}</span> {{^role}}{{#plat}}<span class="icon-gren"></span>{{/plat}}{{/role}}</aside>
99
<time class="postinfo-postdate">{{ postDate }}</time>
1010
{{#regDate}}<time class="postinfo-regdate">Reg Date: {{regDate}}</time>{{/regDate}}
11-
<aside class="postinfo-title">{{{ avatarText }}}</aside>
11+
<aside class="postinfo-title">{{{avatarText}}}</aside>
1212
</section >
1313
</div>
14-
<nav class="postmenu" username="{{username}}" userid="{{userID}}" lastreadurl="{{lastReadUrl}}" {{#editable}}editable{{/editable}} {{#mod}}isMod{{/mod}} {{#admin}}isAdmin{{/admin}} {{#plat}}isPlat{{/plat}} ></nav>
14+
<nav class="postmenu" username="{{username}}" userid="{{userID}}" lastreadurl="{{lastReadUrl}}" {{#editable}}editable{{/editable}} {{#role}}has-role {{role}}{{/role}} {{#plat}}isPlat{{/plat}} ></nav>
1515
</header>
1616
<div class="postseparator"></div>
17-
<section class="postcontent">
17+
<section class="postcontent">
1818
{{{postcontent}}}
1919
</section >
2020
</article>

0 commit comments

Comments
 (0)