Skip to content

Commit a728839

Browse files
committed
Merge branch 'develop' into beta
2 parents 1237679 + 0badb1d commit a728839

36 files changed

+816
-192
lines changed

Awful.apk/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
buildscript {
2-
ext.kotlin_version = '1.3.11'
2+
ext.kotlin_version = '1.3.41'
33

44
repositories {
55
google()
66
jcenter()
77
maven { url 'https://maven.fabric.io/public' }
88
}
99
dependencies {
10-
classpath 'com.android.tools.build:gradle:3.2.1'
10+
classpath 'com.android.tools.build:gradle:3.4.2'
1111
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1212
classpath 'io.fabric.tools:gradle:1.+'
1313
}

Awful.apk/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="com.ferg.awfulapp"
4-
android:versionCode="10009"
5-
android:versionName="3.6.5"
4+
android:versionCode="10011"
5+
android:versionName="3.6.7"
66
android:installLocation="auto">
77
<supports-screens
88
android:smallScreens="true"

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

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@
55
<!-- See the Changelog code for the expected structure of this document -->
66

77
<main>
8+
<section>
9+
<h2>3.6.7</h2>
10+
<ul>
11+
<li>Looks like you can add an icon when you send a private message now??</li>
12+
<li>Revealed post previews on OLED themes and stopped them jumping around</li>
13+
<li>Back by popular demand - rating threads!</li>
14+
<li>Also maybe the ... post menu works for everyone now, even YOU</li>
15+
<li>General fixes that are a secret</li>
16+
</ul>
17+
</section>
18+
819
<section>
920
<h2>3.6.5</h2>
1021
<ul>

Awful.apk/src/main/assets/css/amberpos.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ body {
3535
background-color: #1A4000;
3636
}
3737

38-
.postcontent {
39-
border-color: #eacf4c;
38+
.postseparator {
39+
background-color: #eacf4c;
4040
}
4141

4242
.postcontent .bbc-block {

Awful.apk/src/main/assets/css/classic.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ body {
3636
background-color: #5BA611;
3737
}
3838

39+
.postseparator {
40+
display: none;
41+
}
42+
3943
.postcontent {
4044
padding: 5px;
4145
margin: 5px 5px 0;

Awful.apk/src/main/assets/css/fyad.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,14 @@ body {
4040
background-color: #ECFFD9;
4141
}
4242

43+
.postheader {
44+
padding-bottom: 0px;
45+
}
46+
47+
.postseparator {
48+
display: none;
49+
}
50+
4351
.postcontent {
4452
background-color: #FFFFFF;
4553
border: 3px solid #000000;

Awful.apk/src/main/assets/css/general.css

Lines changed: 22 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,33 +26,46 @@
2626
display: flex;
2727
border: 0;
2828
margin-left: 15px;
29-
padding-top: 15px;
29+
padding: 15px 0px 5px;
3030
}
3131

3232
.postmenu {
3333
font-weight: bolder;
3434
font-size: 1.7em;
35-
display: contents;
35+
width: 24px;
36+
height: 24px;
37+
margin-right: 5px;
38+
margin-top: -4px;
3639
}
3740

3841
.postmenu:after {
3942
font-family: 'icons' !important;
4043
content: "\e902";
4144
font-weight: normal;
4245
-webkit-font-smoothing: antialiased;
43-
display: inline-block;
4446
-webkit-user-select: none;
4547
user-select: none;
46-
margin-top: -10px;
47-
padding: 10px;
48-
height: 100%;
48+
padding: 4px;
49+
display:block;
50+
}
51+
52+
/*
53+
this is the dividing line between the header and the post content
54+
I've given it no vertical spacing, so the header and content can define their own padding etc
55+
(means that e.g. post content in previews looks right because it controls its spacing)
56+
*/
57+
.postseparator {
58+
display: block;
59+
height: 2px;
60+
padding: 0px;
61+
margin: 0px 15px;
62+
background-color: #eae9ea;
4963
}
5064

5165
.postcontent {
5266
word-wrap: break-word;
53-
padding: 10px 0;
54-
border-top: 2px solid #eae9ea;
55-
margin: 5px 15px;
67+
padding: 10px 0px;
68+
margin: 0px 15px;
5669
}
5770

5871
.playGif {

Awful.apk/src/main/assets/css/oled.css

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ body {
3636
}
3737

3838
.postcontent {
39-
border-top: none;
4039
margin: 5px 10px;
4140
}
4241

@@ -84,9 +83,14 @@ body {
8483
vertical-align: top;
8584
clear: left;
8685
border: 0;
87-
border-bottom: 1px solid #e7e7e7;
8886
border-top: 1px solid #e7e7e7;
8987
margin: 0;
9088
padding: 10px;
9189
padding-right: 0;
90+
}
91+
92+
.postseparator {
93+
height: 1px;
94+
background-color: #e7e7e7;
95+
margin: 0px;
9296
}

Awful.apk/src/main/assets/css/yospos.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ body {
4040
padding: 5px;
4141
}
4242

43-
.postcontent {
44-
border-color: #0F0;
43+
.postseparator {
44+
background-color: #0F0;
4545
}
4646

4747
.postcontent .bbc-block {

Awful.apk/src/main/assets/mustache/post.mustache

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
</div>
1414
<nav class="postmenu" username="{{username}}" userid="{{userID}}" lastreadurl="{{lastReadUrl}}" {{#editable}}editable{{/editable}} {{#mod}}isMod{{/mod}} {{#admin}}isAdmin{{/admin}} {{#plat}}isPlat{{/plat}} ></nav>
1515
</header>
16+
<div class="postseparator"></div>
1617
<section class="postcontent">
1718
{{{postcontent}}}
1819
</section >

0 commit comments

Comments
 (0)