Skip to content

Commit

Permalink
update: bump version to v1.5.0-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
uragiristereo committed Jun 1, 2022
1 parent 38b9c16 commit 2c0a247
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 22 deletions.
21 changes: 14 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,32 @@
<img src="docs/banner.png" width="100%">
<img src="https://github.com/uragiristereo/Mejiboard/raw/main/docs/banner.png" width="100%">

# Mejiboard
image (イメージ) + board = メジboard (mejiboard)

An image board ~~client~~ viewer based on [Gelbooru](https://gelbooru.com) for android, made from Jetpack Compose 🚀.
An anime image board (booru) viewer for android, made from Jetpack Compose 🚀.

### Supported Booru providers:
_Note: all providers are filtered as rated safe (general & sensitive)._

- [Gelbooru](https://gelbooru.com)
- [Danbooru](https://danbooru.donmai.us)
- [Safebooru.org](https://safebooru.org)

## Features
- Material Design UI
- Easy one-handed operation
- Lightweight
- System-based theme with 3 themes available (Light, Dark & Black)
- Search images with tags
- Image viewer with zoom & pan support
- Image viewer with zoom, pan & gesture support
- Download and share image
- DNS over HTTPS enabled by default
- Using latest Android tech stacks

## Download
Latest **alpha** variant:
- Version: `1.4.1-alpha`
- Date: 2022-05-21
- Links: [changelogs](https://github.com/uragiristereo/Mejiboard/releases/tag/v1.4.1-alpha)[direct APK](https://github.com/uragiristereo/Mejiboard/releases/download/v1.4.1-alpha/Mejiboard_v1.4.1-alpha.apk)
- Version: `1.5.0-alpha`
- Date: 2022-06-01
- Links: [changelogs](https://github.com/uragiristereo/Mejiboard/releases/tag/v1.5.0-alpha)[direct APK](https://github.com/uragiristereo/Mejiboard/releases/download/v1.4.1-alpha/Mejiboard_v1.5.0-alpha.apk)

> _Check out [Releases](https://github.com/uragiristereo/Mejiboard/releases) section for more._
Expand Down
4 changes: 2 additions & 2 deletions app-alpha/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ android {
minSdk 23
//noinspection ExpiredTargetSdkVersion
targetSdk 29
versionCode 104010
versionName "1.4.1-alpha"
versionCode 105000
versionName "1.5.0-alpha"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,8 @@ import androidx.compose.ui.layout.ContentScale
import androidx.compose.ui.platform.LocalContext
import androidx.compose.ui.platform.LocalDensity
import androidx.compose.ui.res.painterResource
import androidx.compose.ui.text.SpanStyle
import androidx.compose.ui.text.buildAnnotatedString
import androidx.compose.ui.text.style.TextAlign
import androidx.compose.ui.text.style.TextDecoration
import androidx.compose.ui.text.withStyle
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
import androidx.compose.ui.unit.sp
Expand Down Expand Up @@ -137,13 +134,7 @@ fun AboutScreen(
item {
Text(
text = buildAnnotatedString {
append("An image board ")
withStyle(
style = SpanStyle(textDecoration = TextDecoration.LineThrough),
) {
append("client")
}
append(" viewer for Android.\n")
append("An anime image board viewer for Android.\n\n")
append("Supported providers: Gelbooru, Danbooru, Safebooru.\n")
},
Modifier
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ fun SettingItemList(
SwitchPreference(
title = "DNS over HTTPS",
subtitle = buildAnnotatedString {
append("Enable if Gelbooru is blocked in your country ")
append("Enable if Booru providers are blocked in your country ")

withStyle(style = SpanStyle(fontWeight = FontWeight.Bold)) {
append("(recommended)")
Expand Down
4 changes: 2 additions & 2 deletions app-alpha/update.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"variant": "alpha",
"releases": [
{
"versionCode": 104010,
"versionName": "1.4.1-alpha",
"versionCode": 105000,
"versionName": "1.5.0-alpha",
"updateRequired": true
}
]
Expand Down

0 comments on commit 2c0a247

Please sign in to comment.