Compare commits
2 Commits
v0.6.0
..
v0.2.6-rc2
| Author | SHA1 | Date | |
|---|---|---|---|
| c6e57e2700 | |||
| c5f467ce3d |
+5
-27
@@ -1,28 +1,6 @@
|
|||||||
* text=auto
|
#
|
||||||
* text eol=lf
|
# https://help.github.com/articles/dealing-with-line-endings/
|
||||||
|
#
|
||||||
|
# These are explicitly windows files and should use crlf
|
||||||
|
*.bat text eol=crlf
|
||||||
|
|
||||||
# Windows forced line-endings
|
|
||||||
/.idea/* text eol=crlf
|
|
||||||
*.bat text eol=crlf
|
|
||||||
*.ps1 text eol=crlf
|
|
||||||
|
|
||||||
# Gradle wrapper
|
|
||||||
*.jar binary
|
|
||||||
|
|
||||||
# Binary files types
|
|
||||||
*.webp binary
|
|
||||||
*.png binary
|
|
||||||
*.jpg binary
|
|
||||||
*.jpeg binary
|
|
||||||
*.gif binary
|
|
||||||
*.ico binary
|
|
||||||
*.gz binary
|
|
||||||
*.zip binary
|
|
||||||
*.7z binary
|
|
||||||
*.ttf binary
|
|
||||||
*.eot binary
|
|
||||||
*.woff binary
|
|
||||||
*.pyc binary
|
|
||||||
*.swp binary
|
|
||||||
*.pdf binary
|
|
||||||
*.exe binary
|
|
||||||
@@ -25,7 +25,6 @@ Note that the issue will be automatically closed if you do not fill out the titl
|
|||||||
## Device information
|
## Device information
|
||||||
- Tachidesk version: (Example: v0.2.3-r255-win32)
|
- Tachidesk version: (Example: v0.2.3-r255-win32)
|
||||||
- Server Operating System: (Example: Ubuntu 20.04)
|
- Server Operating System: (Example: Ubuntu 20.04)
|
||||||
- Server Desktop Environment: N/A or (Example: Gnome 40)
|
|
||||||
- Server JVM version: bundled with win32 or (Example: Java 8 Update 281 or OpenJDK 8u281)
|
- Server JVM version: bundled with win32 or (Example: Java 8 Update 281 or OpenJDK 8u281)
|
||||||
- Client Operating System: <usually the same as above Server Operating System>
|
- Client Operating System: <usually the same as above Server Operating System>
|
||||||
- Client Web Browser: (Example: Google Chrome 89.0.4389.82)
|
- Client Web Browser: (Example: Google Chrome 89.0.4389.82)
|
||||||
|
|||||||
Executable
+25
@@ -0,0 +1,25 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
git lfs install
|
||||||
|
#git lfs track "*.zip"
|
||||||
|
|
||||||
|
cp ../master/repo/* .
|
||||||
|
new_jar_build=$(ls *.jar| tail -1)
|
||||||
|
echo "last jar build file name: $new_jar_build"
|
||||||
|
|
||||||
|
new_win32_build=$(ls *.zip| tail -1)
|
||||||
|
echo "last win32 build file name: $new_win32_build"
|
||||||
|
|
||||||
|
cp -f $new_jar_build Tachidesk-latest.jar
|
||||||
|
cp -f $new_win32_build Tachidesk-latest-win32.zip
|
||||||
|
|
||||||
|
git config --global user.email "github-actions[bot]@users.noreply.github.com"
|
||||||
|
git config --global user.name "github-actions[bot]"
|
||||||
|
git status
|
||||||
|
if [ -n "$(git status --porcelain)" ]; then
|
||||||
|
git add .
|
||||||
|
git commit -m "Update repo"
|
||||||
|
git push
|
||||||
|
else
|
||||||
|
echo "No changes to commit"
|
||||||
|
fi
|
||||||
Executable
+20
@@ -0,0 +1,20 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Get last commit message
|
||||||
|
#last_commit_log=$(git log -1 --pretty=format:"%s")
|
||||||
|
#echo "last commit log: $last_commit_log"
|
||||||
|
#
|
||||||
|
#filter_count=$(echo "$last_commit_log" | grep -e '\[RELEASE CI\]' -e '\[CI RELEASE\]' | wc -c)
|
||||||
|
#echo "count is: $filter_count"
|
||||||
|
|
||||||
|
mkdir -p repo/
|
||||||
|
cp server/build/Tachidesk-*.jar repo/
|
||||||
|
cp server/build/Tachidesk-*.zip repo/
|
||||||
|
|
||||||
|
ls repo
|
||||||
|
pwd
|
||||||
|
|
||||||
|
#if [ "$filter_count" -gt 0 ]; then
|
||||||
|
# cp server/build/Tachidesk-*.jar repo/
|
||||||
|
# cp server/build/Tachidesk-*.zip repo/
|
||||||
|
#fi
|
||||||
@@ -1,6 +1,9 @@
|
|||||||
name: CI Pull Request
|
name: CI
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
pull_request:
|
pull_request:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
@@ -16,21 +19,21 @@ jobs:
|
|||||||
uses: gradle/wrapper-validation-action@v1
|
uses: gradle/wrapper-validation-action@v1
|
||||||
|
|
||||||
build:
|
build:
|
||||||
name: Build pull request
|
name: Build FatJar
|
||||||
needs: check_wrapper
|
needs: check_wrapper
|
||||||
if: "!startsWith(github.event.head_commit.message, '[SKIP CI]')"
|
if: "!startsWith(github.event.head_commit.message, '[SKIP CI]')"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Cancel previous runs
|
- name: Cancel previous runs
|
||||||
uses: styfle/cancel-workflow-action@0.9.0
|
uses: styfle/cancel-workflow-action@0.5.0
|
||||||
with:
|
with:
|
||||||
access_token: ${{ github.token }}
|
access_token: ${{ github.token }}
|
||||||
|
|
||||||
- name: Checkout pull request
|
- name: Checkout master branch
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event.pull_request.head.sha }}
|
ref: master
|
||||||
path: master
|
path: master
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
@@ -45,13 +48,24 @@ jobs:
|
|||||||
mkdir -p ~/.gradle
|
mkdir -p ~/.gradle
|
||||||
cp .github/runner-files/ci-gradle.properties ~/.gradle/gradle.properties
|
cp .github/runner-files/ci-gradle.properties ~/.gradle/gradle.properties
|
||||||
|
|
||||||
|
- name: Download android.jar
|
||||||
|
run: |
|
||||||
|
cd master
|
||||||
|
curl https://raw.githubusercontent.com/AriaMoradi/Tachidesk/android-jar/android.jar -o AndroidCompat/lib/android.jar
|
||||||
|
|
||||||
- name: Build Jar
|
- name: Cache node_modules
|
||||||
|
uses: actions/cache@v2
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
**/react/node_modules
|
||||||
|
key: ${{ runner.os }}-${{ hashFiles('**/react/yarn.lock') }}
|
||||||
|
|
||||||
|
- name: Build Jar and launch4j
|
||||||
uses: eskatos/gradle-command-action@v1
|
uses: eskatos/gradle-command-action@v1
|
||||||
with:
|
with:
|
||||||
build-root-directory: master
|
build-root-directory: master
|
||||||
wrapper-directory: master
|
wrapper-directory: master
|
||||||
arguments: :server:shadowJar --stacktrace
|
arguments: :server:windowsPackage --stacktrace
|
||||||
wrapper-cache-enabled: true
|
wrapper-cache-enabled: true
|
||||||
dependencies-cache-enabled: true
|
dependencies-cache-enabled: true
|
||||||
configuration-cache-enabled: true
|
configuration-cache-enabled: true
|
||||||
@@ -1,109 +0,0 @@
|
|||||||
name: CI build
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
check_wrapper:
|
|
||||||
name: Validate Gradle Wrapper
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Clone repo
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
|
|
||||||
- name: Validate Gradle Wrapper
|
|
||||||
uses: gradle/wrapper-validation-action@v1
|
|
||||||
|
|
||||||
build:
|
|
||||||
name: Build artifacts and deploy preview
|
|
||||||
needs: check_wrapper
|
|
||||||
if: "!startsWith(github.event.head_commit.message, '[SKIP CI]')"
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Cancel previous runs
|
|
||||||
uses: styfle/cancel-workflow-action@0.9.0
|
|
||||||
with:
|
|
||||||
access_token: ${{ github.token }}
|
|
||||||
|
|
||||||
- name: Checkout master branch
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
with:
|
|
||||||
ref: master
|
|
||||||
path: master
|
|
||||||
fetch-depth: 0
|
|
||||||
|
|
||||||
- name: Set up JDK 1.8
|
|
||||||
uses: actions/setup-java@v1
|
|
||||||
with:
|
|
||||||
java-version: 1.8
|
|
||||||
|
|
||||||
- name: Copy CI gradle.properties
|
|
||||||
run: |
|
|
||||||
cd master
|
|
||||||
mkdir -p ~/.gradle
|
|
||||||
cp .github/runner-files/ci-gradle.properties ~/.gradle/gradle.properties
|
|
||||||
|
|
||||||
- name: Build Jar
|
|
||||||
uses: eskatos/gradle-command-action@v1
|
|
||||||
env:
|
|
||||||
ProductBuildType: "Preview"
|
|
||||||
with:
|
|
||||||
build-root-directory: master
|
|
||||||
wrapper-directory: master
|
|
||||||
arguments: :server:shadowJar --stacktrace
|
|
||||||
wrapper-cache-enabled: true
|
|
||||||
dependencies-cache-enabled: true
|
|
||||||
configuration-cache-enabled: true
|
|
||||||
|
|
||||||
- name: Generate Tag Name
|
|
||||||
id: GenTagName
|
|
||||||
run: |
|
|
||||||
cd master/server/build
|
|
||||||
genTag=$(ls *.jar | sed -e's/Tachidesk-Server-\|.jar//g')
|
|
||||||
echo "$genTag"
|
|
||||||
echo "::set-output name=value::$genTag"
|
|
||||||
|
|
||||||
- name: make bundle packages
|
|
||||||
run: |
|
|
||||||
cd master/scripts
|
|
||||||
./windows-bundler.sh win32
|
|
||||||
./windows-bundler.sh win64
|
|
||||||
./unix-bundler.sh linux-x64
|
|
||||||
./unix-bundler.sh macOS-x64
|
|
||||||
./unix-bundler.sh macOS-arm64
|
|
||||||
|
|
||||||
- name: Checkout preview branch
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
with:
|
|
||||||
repository: 'Suwayomi/Tachidesk-Server-preview'
|
|
||||||
ref: main
|
|
||||||
path: preview
|
|
||||||
token: ${{ secrets.DEPLOY_PREVIEW_TOKEN }}
|
|
||||||
|
|
||||||
- name: Create Tag
|
|
||||||
run: |
|
|
||||||
TAG="${{ steps.GenTagName.outputs.value }}"
|
|
||||||
echo "tag: $TAG"
|
|
||||||
cd preview
|
|
||||||
echo "{ \"latest\": \"$TAG\" }" > index.json
|
|
||||||
git add index.json
|
|
||||||
git config --global user.email "github-actions[bot]@users.noreply.github.com"
|
|
||||||
git config --global user.name "github-actions[bot]"
|
|
||||||
git commit -m "Updated to $TAG"
|
|
||||||
git push origin main
|
|
||||||
|
|
||||||
git tag $TAG
|
|
||||||
git push origin $TAG
|
|
||||||
|
|
||||||
- name: Upload Preview Release
|
|
||||||
uses: ncipollo/release-action@v1
|
|
||||||
with:
|
|
||||||
token: ${{ secrets.DEPLOY_PREVIEW_TOKEN }}
|
|
||||||
artifacts: "master/server/build/*.jar,master/server/build/*.zip,master/server/build/*.tar.gz"
|
|
||||||
owner: "Suwayomi"
|
|
||||||
repo: "Tachidesk-Server-preview"
|
|
||||||
tag: ${{ steps.GenTagName.outputs.value }}
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
name: Docker Build Stable
|
|
||||||
|
|
||||||
on:
|
|
||||||
release:
|
|
||||||
types: [published]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build_publish_docker_container:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: run docker build and publish script
|
|
||||||
run: |
|
|
||||||
curl -X POST -H "Accept: application/vnd.github.v3+json" -H "Authorization: token ${{ secrets.DEPLOY_PREVIEW_TOKEN }}" -d '{"ref":"main", "inputs":{"tachidesk_release_type": "stable"}}' https://api.github.com/repos/suwayomi/docker-tachidesk/actions/workflows/build_container_images.yml/dispatches
|
|
||||||
|
|
||||||
@@ -26,7 +26,7 @@ jobs:
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "body",
|
"type": "body",
|
||||||
"regex": "(Tachidesk version|Server Operating System|Server Desktop Environment|Server JVM version|Client Operating System|Client Web Browser):.*(\\(Example:|<usually).*",
|
"regex": "(Tachidesk version|Server Operating System|Server JVM version|Client Operating System|Client Web Browser):.*(\\(Example:|<usually).*",
|
||||||
"message": "The requested information was not filled out"
|
"message": "The requested information was not filled out"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
name: CI Publish
|
name: Publish
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
@@ -18,20 +18,20 @@ jobs:
|
|||||||
uses: gradle/wrapper-validation-action@v1
|
uses: gradle/wrapper-validation-action@v1
|
||||||
|
|
||||||
build:
|
build:
|
||||||
name: Build artifacts and release
|
name: Build FatJar
|
||||||
needs: check_wrapper
|
needs: check_wrapper
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Cancel previous runs
|
- name: Cancel previous runs
|
||||||
uses: styfle/cancel-workflow-action@0.9.0
|
uses: styfle/cancel-workflow-action@0.5.0
|
||||||
with:
|
with:
|
||||||
access_token: ${{ github.token }}
|
access_token: ${{ github.token }}
|
||||||
|
|
||||||
- name: Checkout ${{ github.ref }}
|
- name: Checkout master branch
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.ref }}
|
ref: master
|
||||||
path: master
|
path: master
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
@@ -46,33 +46,85 @@ jobs:
|
|||||||
mkdir -p ~/.gradle
|
mkdir -p ~/.gradle
|
||||||
cp .github/runner-files/ci-gradle.properties ~/.gradle/gradle.properties
|
cp .github/runner-files/ci-gradle.properties ~/.gradle/gradle.properties
|
||||||
|
|
||||||
- name: Build and copy webUI, Build Jar
|
- name: Download android.jar
|
||||||
|
run: |
|
||||||
|
cd master
|
||||||
|
curl https://raw.githubusercontent.com/AriaMoradi/Tachidesk/android-jar/android.jar -o AndroidCompat/lib/android.jar
|
||||||
|
|
||||||
|
- name: Cache node_modules
|
||||||
|
uses: actions/cache@v2
|
||||||
|
with:
|
||||||
|
path: |
|
||||||
|
**/react/node_modules
|
||||||
|
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
|
||||||
|
|
||||||
|
- name: Build no-webUI Jar
|
||||||
uses: eskatos/gradle-command-action@v1
|
uses: eskatos/gradle-command-action@v1
|
||||||
env:
|
|
||||||
ProductBuildType: "Stable"
|
|
||||||
with:
|
with:
|
||||||
build-root-directory: master
|
build-root-directory: master
|
||||||
wrapper-directory: master
|
wrapper-directory: master
|
||||||
arguments: :server:downloadWebUI :server:shadowJar --stacktrace
|
arguments: :server:shadowJar -x :webUI:copyBuild --stacktrace
|
||||||
wrapper-cache-enabled: true
|
wrapper-cache-enabled: true
|
||||||
dependencies-cache-enabled: true
|
dependencies-cache-enabled: true
|
||||||
configuration-cache-enabled: true
|
configuration-cache-enabled: true
|
||||||
|
|
||||||
- name: make bundle packages
|
- name: Rename the no-webUI Jar
|
||||||
run: |
|
run: |
|
||||||
cd master/scripts
|
cd master/server/build
|
||||||
./windows-bundler.sh win32
|
mv Tachidesk-*.jar $(ls *.jar | sed 's/\.jar/-no-webUI\.jar/g')
|
||||||
./windows-bundler.sh win64
|
|
||||||
./unix-bundler.sh linux-x64
|
- name: Build Jar and launch4j
|
||||||
./unix-bundler.sh macOS-x64
|
uses: eskatos/gradle-command-action@v1
|
||||||
./unix-bundler.sh macOS-arm64
|
with:
|
||||||
|
build-root-directory: master
|
||||||
|
wrapper-directory: master
|
||||||
|
arguments: :server:windowsPackage --stacktrace
|
||||||
|
wrapper-cache-enabled: true
|
||||||
|
dependencies-cache-enabled: true
|
||||||
|
configuration-cache-enabled: true
|
||||||
|
|
||||||
|
|
||||||
|
- name: Create repo artifacts
|
||||||
|
run: |
|
||||||
|
cd master
|
||||||
|
./.github/scripts/create-repo.sh
|
||||||
|
|
||||||
- name: Upload Release
|
- name: Upload Release
|
||||||
uses: xresloader/upload-to-github-release@v1
|
uses: xresloader/upload-to-github-release@master
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
with:
|
||||||
file: "master/server/build/*.jar;master/server/build/*.zip;master/server/build/*.tar.gz"
|
file: "master/repo/*"
|
||||||
tags: true
|
tags: true
|
||||||
draft: true
|
draft: true
|
||||||
verbose: true
|
verbose: true
|
||||||
|
|
||||||
|
# - name: Create Release
|
||||||
|
# id: create_release
|
||||||
|
# uses: actions/create-release@v1
|
||||||
|
# env:
|
||||||
|
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
# with:
|
||||||
|
# tag_name: ${{ github.ref }}
|
||||||
|
# release_name: Release ${{ github.ref }}
|
||||||
|
# body: |
|
||||||
|
# Release body
|
||||||
|
# draft: false
|
||||||
|
# prerelease: true
|
||||||
|
#
|
||||||
|
# - name: Get the Ref
|
||||||
|
# id: get-ref
|
||||||
|
# uses: ankitvgupta/ref-to-tag-action@master
|
||||||
|
# with:
|
||||||
|
# ref: ${{ github.ref }}
|
||||||
|
# head_ref: ${{ github.head_ref }}
|
||||||
|
#
|
||||||
|
# - name: Get the tag
|
||||||
|
# run: echo "The tag was ${{ steps.get-ref.outputs.tag }}"
|
||||||
|
#
|
||||||
|
# - name: Upload Release
|
||||||
|
# uses: AButler/upload-release-assets@v2.0
|
||||||
|
# with:
|
||||||
|
# files: 'master/repo/*'
|
||||||
|
# repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
# release-tag: ${{ steps.get-ref.outputs.tag }}
|
||||||
|
|||||||
+2
-15
@@ -1,21 +1,8 @@
|
|||||||
# Ignore project-specific local files and dirs
|
# Ignore Gradle project-specific cache directory
|
||||||
.gradle
|
.gradle
|
||||||
.idea
|
.idea
|
||||||
gradle.properties
|
|
||||||
|
|
||||||
# But we need these
|
|
||||||
!.idea/runConfigurations
|
|
||||||
|
|
||||||
# Ignore Gradle build output directory
|
# Ignore Gradle build output directory
|
||||||
build
|
build
|
||||||
server/out
|
|
||||||
AndroidCompat/out
|
|
||||||
|
|
||||||
# WebUI is either to be downloaded on-demand or is a dynamic build asset
|
server/src/main/resources/react
|
||||||
server/src/main/resources/WebUI.zip
|
|
||||||
|
|
||||||
# bundling stage downlaoded assets
|
|
||||||
scripts/OpenJDK*
|
|
||||||
scripts/zulu*
|
|
||||||
scripts/electron-*
|
|
||||||
scripts/rcedit-*
|
|
||||||
|
|||||||
@@ -0,0 +1,4 @@
|
|||||||
|
dependencies {
|
||||||
|
// Config API, moved to the global build.gradle
|
||||||
|
// implementation("com.typesafe:config:1.4.0")
|
||||||
|
}
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
package xyz.nulldev.ts.config
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Copyright (C) Contributors to the Suwayomi project
|
|
||||||
*
|
|
||||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
||||||
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
||||||
|
|
||||||
import net.harawata.appdirs.AppDirsFactory
|
|
||||||
|
|
||||||
const val CONFIG_PREFIX = "suwayomi.tachidesk.config"
|
|
||||||
|
|
||||||
val ApplicationRootDir: String
|
|
||||||
get(): String {
|
|
||||||
return System.getProperty(
|
|
||||||
"$CONFIG_PREFIX.server.rootDir",
|
|
||||||
AppDirsFactory.getInstance().getUserDataDir("Tachidesk", null, null)
|
|
||||||
)
|
|
||||||
}
|
|
||||||
@@ -6,7 +6,7 @@ import org.kodein.di.singleton
|
|||||||
|
|
||||||
class ConfigKodeinModule {
|
class ConfigKodeinModule {
|
||||||
fun create() = DI.Module("ConfigManager") {
|
fun create() = DI.Module("ConfigManager") {
|
||||||
// Config module
|
//Config module
|
||||||
bind<ConfigManager>() with singleton { GlobalConfigManager }
|
bind<ConfigManager>() with singleton { GlobalConfigManager }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,30 +1,27 @@
|
|||||||
package xyz.nulldev.ts.config
|
package xyz.nulldev.ts.config
|
||||||
|
|
||||||
/*
|
|
||||||
* Copyright (C) Contributors to the Suwayomi project
|
|
||||||
*
|
|
||||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
||||||
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
||||||
|
|
||||||
import ch.qos.logback.classic.Level
|
|
||||||
import com.typesafe.config.Config
|
import com.typesafe.config.Config
|
||||||
import com.typesafe.config.ConfigFactory
|
import com.typesafe.config.ConfigFactory
|
||||||
import com.typesafe.config.ConfigRenderOptions
|
import com.typesafe.config.ConfigRenderOptions
|
||||||
import mu.KotlinLogging
|
import mu.KotlinLogging
|
||||||
|
import net.harawata.appdirs.AppDirsFactory
|
||||||
import java.io.File
|
import java.io.File
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Manages app config.
|
* Manages app config.
|
||||||
*/
|
*/
|
||||||
open class ConfigManager {
|
open class ConfigManager {
|
||||||
|
private val dataRoot by lazy { AppDirsFactory.getInstance().getUserDataDir("Tachidesk", null, null)!! }
|
||||||
|
|
||||||
private val generatedModules = mutableMapOf<Class<out ConfigModule>, ConfigModule>()
|
private val generatedModules = mutableMapOf<Class<out ConfigModule>, ConfigModule>()
|
||||||
val config by lazy { loadConfigs() }
|
val config by lazy { loadConfigs() }
|
||||||
|
|
||||||
// Public read-only view of modules
|
//Public read-only view of modules
|
||||||
val loadedModules: Map<Class<out ConfigModule>, ConfigModule>
|
val loadedModules: Map<Class<out ConfigModule>, ConfigModule>
|
||||||
get() = generatedModules
|
get() = generatedModules
|
||||||
|
|
||||||
|
open val appConfigFile: String = "$dataRoot/server.conf"
|
||||||
|
|
||||||
val logger = KotlinLogging.logger {}
|
val logger = KotlinLogging.logger {}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -35,40 +32,27 @@ open class ConfigManager {
|
|||||||
/**
|
/**
|
||||||
* Get a config module (Java API)
|
* Get a config module (Java API)
|
||||||
*/
|
*/
|
||||||
@Suppress("UNCHECKED_CAST")
|
|
||||||
fun <T : ConfigModule> module(type: Class<T>): T = loadedModules[type] as T
|
fun <T : ConfigModule> module(type: Class<T>): T = loadedModules[type] as T
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Load configs
|
* Load configs
|
||||||
*/
|
*/
|
||||||
fun loadConfigs(): Config {
|
fun loadConfigs(): Config {
|
||||||
// Load reference configs
|
//Load reference configs
|
||||||
val compatConfig = ConfigFactory.parseResources("compat-reference.conf")
|
val compatConfig = ConfigFactory.parseResources("compat-reference.conf")
|
||||||
val serverConfig = ConfigFactory.parseResources("server-reference.conf")
|
val serverConfig = ConfigFactory.parseResources("server-reference.conf")
|
||||||
val baseConfig =
|
|
||||||
ConfigFactory.parseMap(
|
|
||||||
mapOf(
|
|
||||||
"androidcompat.rootDir" to "$ApplicationRootDir/android-compat" // override AndroidCompat's rootDir
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
// Load user config
|
//Load user config
|
||||||
val userConfig =
|
val userConfig =
|
||||||
File(ApplicationRootDir, "server.conf").let {
|
File(appConfigFile).let{
|
||||||
ConfigFactory.parseFile(it)
|
ConfigFactory.parseFile(it)
|
||||||
}
|
}
|
||||||
|
|
||||||
val config = ConfigFactory.empty()
|
val config = ConfigFactory.empty()
|
||||||
.withFallback(baseConfig)
|
.withFallback(userConfig)
|
||||||
.withFallback(userConfig)
|
.withFallback(compatConfig)
|
||||||
.withFallback(compatConfig)
|
.withFallback(serverConfig)
|
||||||
.withFallback(serverConfig)
|
.resolve()
|
||||||
.resolve()
|
|
||||||
|
|
||||||
// set log level early
|
|
||||||
if (debugLogsEnabled(config)) {
|
|
||||||
setLogLevel(Level.DEBUG)
|
|
||||||
}
|
|
||||||
|
|
||||||
logger.debug {
|
logger.debug {
|
||||||
"Loaded config:\n" + config.root().render(ConfigRenderOptions.concise().setFormatted(true))
|
"Loaded config:\n" + config.root().render(ConfigRenderOptions.concise().setFormatted(true))
|
||||||
@@ -78,7 +62,7 @@ open class ConfigManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fun registerModule(module: ConfigModule) {
|
fun registerModule(module: ConfigModule) {
|
||||||
generatedModules[module.javaClass] = module
|
generatedModules.put(module.javaClass, module)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun registerModules(vararg modules: ConfigModule) {
|
fun registerModules(vararg modules: ConfigModule) {
|
||||||
|
|||||||
@@ -1,44 +1,8 @@
|
|||||||
package xyz.nulldev.ts.config
|
package xyz.nulldev.ts.config
|
||||||
|
|
||||||
/*
|
|
||||||
* Copyright (C) Contributors to the Suwayomi project
|
|
||||||
*
|
|
||||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
||||||
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
||||||
|
|
||||||
import com.typesafe.config.Config
|
import com.typesafe.config.Config
|
||||||
import io.github.config4k.getValue
|
|
||||||
import kotlin.reflect.KProperty
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Abstract config module.
|
* Abstract config module.
|
||||||
*/
|
*/
|
||||||
@Suppress("UNUSED_PARAMETER")
|
|
||||||
abstract class ConfigModule(config: Config)
|
abstract class ConfigModule(config: Config)
|
||||||
|
|
||||||
/**
|
|
||||||
* Abstract jvm-commandline-argument-overridable config module.
|
|
||||||
*/
|
|
||||||
abstract class SystemPropertyOverridableConfigModule(config: Config, moduleName: String) : ConfigModule(config) {
|
|
||||||
val overridableConfig = SystemPropertyOverrideDelegate(config, moduleName)
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Defines a config property that is overridable with jvm `-D` commandline arguments prefixed with [CONFIG_PREFIX] */
|
|
||||||
class SystemPropertyOverrideDelegate(val config: Config, val moduleName: String) {
|
|
||||||
inline operator fun <R, reified T> getValue(thisRef: R, property: KProperty<*>): T {
|
|
||||||
val configValue: T = config.getValue(thisRef, property)
|
|
||||||
|
|
||||||
val combined = System.getProperty(
|
|
||||||
"$CONFIG_PREFIX.$moduleName.${property.name}",
|
|
||||||
configValue.toString()
|
|
||||||
)
|
|
||||||
|
|
||||||
return when (T::class.simpleName) {
|
|
||||||
"Int" -> combined.toInt()
|
|
||||||
"Boolean" -> combined.toBoolean()
|
|
||||||
// add more types as needed
|
|
||||||
else -> combined // covers String
|
|
||||||
} as T
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,20 +0,0 @@
|
|||||||
package xyz.nulldev.ts.config
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Copyright (C) Contributors to the Suwayomi project
|
|
||||||
*
|
|
||||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
||||||
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
||||||
|
|
||||||
import ch.qos.logback.classic.Level
|
|
||||||
import com.typesafe.config.Config
|
|
||||||
import mu.KotlinLogging
|
|
||||||
import org.slf4j.Logger
|
|
||||||
|
|
||||||
fun setLogLevel(level: Level) {
|
|
||||||
(KotlinLogging.logger(Logger.ROOT_LOGGER_NAME).underlyingLogger as ch.qos.logback.classic.Logger).level = level
|
|
||||||
}
|
|
||||||
|
|
||||||
fun debugLogsEnabled(config: Config) =
|
|
||||||
System.getProperty("suwayomi.tachidesk.config.server.debugLogsEnabled", config.getString("server.debugLogsEnabled")).toBoolean()
|
|
||||||
@@ -3,4 +3,4 @@ package xyz.nulldev.ts.config.util
|
|||||||
import com.typesafe.config.Config
|
import com.typesafe.config.Config
|
||||||
|
|
||||||
operator fun Config.get(key: String) = getString(key)
|
operator fun Config.get(key: String) = getString(key)
|
||||||
?: throw IllegalStateException("Could not find value for config entry: $key!")
|
?: throw IllegalStateException("Could not find value for config entry: $key!")
|
||||||
|
|||||||
+1
@@ -0,0 +1 @@
|
|||||||
|
xyz.nulldev.ts.api.v2.java.impl.ServerAPIImpl
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 2.4 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 6.9 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 2.2 KiB |
File diff suppressed because one or more lines are too long
@@ -0,0 +1,22 @@
|
|||||||
|
[
|
||||||
|
{
|
||||||
|
"label": "Sync",
|
||||||
|
"icon": "import_export",
|
||||||
|
"type": "nested",
|
||||||
|
"prefs": []
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"label": "Server",
|
||||||
|
"icon": "dns",
|
||||||
|
"type": "nested",
|
||||||
|
"prefs": [
|
||||||
|
{
|
||||||
|
"label": "Password authentication",
|
||||||
|
"type": "text-password",
|
||||||
|
"default": "",
|
||||||
|
"key": "pref_ts_server_password",
|
||||||
|
"hint": "Enter a password"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
@@ -1,28 +1,72 @@
|
|||||||
|
|
||||||
|
plugins {
|
||||||
|
application
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
jcenter()
|
||||||
|
maven {
|
||||||
|
url = uri("https://jitpack.io")
|
||||||
|
}
|
||||||
|
|
||||||
|
maven {
|
||||||
|
url = uri("https://maven.google.com")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
// Android stub library
|
// Android stub library
|
||||||
implementation("com.github.Suwayomi:android-jar:1.0.0")
|
// compileOnly( fileTree(File(rootProject.rootDir, "libs/android"), include: "*.jar")
|
||||||
|
implementation(fileTree("lib/"))
|
||||||
|
implementation(fileTree("${rootProject.rootDir}/server/lib/dex2jar/"))
|
||||||
|
|
||||||
|
|
||||||
|
// Android JAR libs
|
||||||
|
// compileOnly( fileTree(dir: new File(rootProject.rootDir, "libs/other"), include: "*.jar")
|
||||||
|
|
||||||
|
// JSON
|
||||||
|
compileOnly( "com.google.code.gson:gson:2.8.6")
|
||||||
|
|
||||||
|
// Javassist
|
||||||
|
compileOnly( "org.javassist:javassist:3.27.0-GA")
|
||||||
|
|
||||||
|
// Coroutines
|
||||||
|
val kotlinx_coroutines_version = "1.4.2"
|
||||||
|
compileOnly( "org.jetbrains.kotlinx:kotlinx-coroutines-core:$kotlinx_coroutines_version")
|
||||||
|
compileOnly( "org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:$kotlinx_coroutines_version")
|
||||||
|
|
||||||
// XML
|
// XML
|
||||||
compileOnly("xmlpull:xmlpull:1.1.3.4a")
|
compileOnly( group= "xmlpull", name= "xmlpull", version= "1.1.3.1")
|
||||||
|
|
||||||
// Config API
|
// Config API
|
||||||
implementation(project(":AndroidCompat:Config"))
|
implementation( project(":AndroidCompat:Config"))
|
||||||
|
|
||||||
|
// dex2jar
|
||||||
|
// compileOnly( "dex2jar:dex-translator")
|
||||||
|
|
||||||
|
// APK parser
|
||||||
|
compileOnly("net.dongliu:apk-parser:2.6.10")
|
||||||
|
|
||||||
// APK sig verifier
|
// APK sig verifier
|
||||||
compileOnly("com.android.tools.build:apksig:7.1.0-alpha12")
|
compileOnly("com.android.tools.build:apksig:4.2.0-alpha13")
|
||||||
|
|
||||||
// AndroidX annotations
|
// AndroidX annotations
|
||||||
compileOnly("androidx.annotation:annotation:1.2.0")
|
compileOnly( "androidx.annotation:annotation:1.2.0-alpha01")
|
||||||
|
|
||||||
// substitute for duktape-android
|
// compileOnly("io.reactivex:rxjava:1.3.8")
|
||||||
implementation("org.mozilla:rhino-runtime:1.7.13") // slimmer version of 'org.mozilla:rhino'
|
|
||||||
implementation("org.mozilla:rhino-engine:1.7.13") // provides the same interface as 'javax.script' a.k.a Nashorn
|
|
||||||
|
|
||||||
// Kotlin wrapper around Java Preferences, makes certain things easier
|
|
||||||
val multiplatformSettingsVersion = "0.8"
|
|
||||||
implementation("com.russhwolf:multiplatform-settings-jvm:$multiplatformSettingsVersion")
|
|
||||||
implementation("com.russhwolf:multiplatform-settings-serialization-jvm:$multiplatformSettingsVersion")
|
|
||||||
|
|
||||||
// Android version of SimpleDateFormat
|
|
||||||
implementation("com.ibm.icu:icu4j:69.1")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//def fatJarTask = tasks.getByPath(':AndroidCompat:JVMPatch:fatJar')
|
||||||
|
//
|
||||||
|
//// Copy JVM core patches
|
||||||
|
//task copyJVMPatches(type: Copy) {
|
||||||
|
// from fatJarTask.outputs.files
|
||||||
|
// into 'src/main/resources/patches'
|
||||||
|
//}
|
||||||
|
//
|
||||||
|
//compileOnly(Java.dependsOn gradle.includedBuild('dex2jar').task(':dex-translator:assemble')
|
||||||
|
//compileOnly(Java.dependsOn copyJVMPatches
|
||||||
|
//copyJVMPatches.dependsOn fatJarTask
|
||||||
|
//
|
||||||
|
|||||||
@@ -1,106 +0,0 @@
|
|||||||
# Copyright (C) Contributors to the Suwayomi project
|
|
||||||
#
|
|
||||||
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
||||||
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
||||||
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
||||||
|
|
||||||
# This is a windows only PowerShell script to create android.jar stubs
|
|
||||||
|
|
||||||
# foolproof against running from AndroidCompat dir instead of running from project root
|
|
||||||
if ($(Split-Path -Path (Get-Location) -Leaf) -eq "AndroidCompat" ) {
|
|
||||||
Set-Location ..
|
|
||||||
}
|
|
||||||
|
|
||||||
Write-Output "Getting required Android.jar..."
|
|
||||||
Remove-Item -Recurse -Force "tmp" -ErrorAction SilentlyContinue | Out-Null
|
|
||||||
New-Item -ItemType Directory -Force -Path "tmp" | Out-Null
|
|
||||||
|
|
||||||
$androidEncoded = (Invoke-WebRequest -Uri "https://android.googlesource.com/platform/prebuilts/sdk/+/6cd31be5e4e25901aadf838120d71a79b46d9add/30/public/android.jar?format=TEXT" -UseBasicParsing).content
|
|
||||||
|
|
||||||
$android_jar = (Get-Location).Path + "\tmp\android.jar"
|
|
||||||
|
|
||||||
[IO.File]::WriteAllBytes($android_jar, [Convert]::FromBase64String($androidEncoded))
|
|
||||||
|
|
||||||
# We need to remove any stub classes that we have implementations for
|
|
||||||
Write-Output "Patching JAR..."
|
|
||||||
|
|
||||||
function Remove-Files-Zip($zipfile, $paths)
|
|
||||||
{
|
|
||||||
[Reflection.Assembly]::LoadWithPartialName('System.IO.Compression') | Out-Null
|
|
||||||
|
|
||||||
$stream = New-Object IO.FileStream($zipfile, [IO.FileMode]::Open)
|
|
||||||
$mode = [IO.Compression.ZipArchiveMode]::Update
|
|
||||||
$zip = New-Object IO.Compression.ZipArchive($stream, $mode)
|
|
||||||
|
|
||||||
if ($paths.getType().Name -eq "Object[]")
|
|
||||||
{
|
|
||||||
$paths | ForEach-Object {
|
|
||||||
$path = $_
|
|
||||||
($zip.Entries | Where-Object { $_.FullName -like $path }) | ForEach-Object { Write-Output "Deleting: $($_.FullName)"; $_.Delete() }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
($zip.Entries | Where-Object { $_.FullName -like $paths }) | ForEach-Object { Write-Output "Deleting: $($_.FullName)"; $_.Delete() }
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
$zip.Dispose()
|
|
||||||
$stream.Close()
|
|
||||||
$stream.Dispose()
|
|
||||||
}
|
|
||||||
|
|
||||||
Write-Output "Removing org.json..."
|
|
||||||
Remove-Files-Zip $android_jar 'org/json/*'
|
|
||||||
|
|
||||||
Write-Output "Removing org.apache..."
|
|
||||||
Remove-Files-Zip $android_jar 'org/apache/*'
|
|
||||||
|
|
||||||
Write-Output "Removing org.w3c..."
|
|
||||||
Remove-Files-Zip $android_jar 'org/w3c/*'
|
|
||||||
|
|
||||||
Write-Output "Removing org.xml..."
|
|
||||||
Remove-Files-Zip $android_jar 'org/xml/*'
|
|
||||||
|
|
||||||
Write-Output "Removing org.xmlpull..."
|
|
||||||
Remove-Files-Zip $android_jar 'org/xmlpull/*'
|
|
||||||
|
|
||||||
Write-Output "Removing junit..."
|
|
||||||
Remove-Files-Zip $android_jar 'junit/*'
|
|
||||||
|
|
||||||
Write-Output "Removing javax..."
|
|
||||||
Remove-Files-Zip $android_jar 'javax/*'
|
|
||||||
|
|
||||||
Write-Output "Removing java..."
|
|
||||||
Remove-Files-Zip $android_jar 'java/*'
|
|
||||||
|
|
||||||
Write-Output "Removing overriden classes..."
|
|
||||||
Remove-Files-Zip $android_jar 'android/app/Application.class'
|
|
||||||
Remove-Files-Zip $android_jar 'android/app/Service.class'
|
|
||||||
Remove-Files-Zip $android_jar 'android/net/Uri.class'
|
|
||||||
Remove-Files-Zip $android_jar 'android/net/Uri$Builder.class'
|
|
||||||
Remove-Files-Zip $android_jar 'android/os/Environment.class'
|
|
||||||
Remove-Files-Zip $android_jar 'android/text/format/Formatter.class'
|
|
||||||
Remove-Files-Zip $android_jar 'android/text/Html.class'
|
|
||||||
|
|
||||||
function Dedupe($path)
|
|
||||||
{
|
|
||||||
Push-Location $path
|
|
||||||
$classes = Get-ChildItem . *.* -Recurse | Where-Object { !$_.PSIsContainer }
|
|
||||||
$classes | ForEach-Object {
|
|
||||||
"Processing class: $($_.FullName)"
|
|
||||||
Remove-Files-Zip $android_jar ("$($_.Name).class","$($_.Name)$*.class","$($_.Name)Kt.class","$($_.Name)Kt$*.class") | Out-Null
|
|
||||||
}
|
|
||||||
Pop-Location
|
|
||||||
}
|
|
||||||
|
|
||||||
Dedupe "AndroidCompat/src/main/java"
|
|
||||||
Dedupe "server/src/main/kotlin"
|
|
||||||
|
|
||||||
Write-Output "Copying Android.jar to library folder..."
|
|
||||||
Move-Item -Force $android_jar "AndroidCompat/lib/android.jar"
|
|
||||||
|
|
||||||
Write-Output "Cleaning up..."
|
|
||||||
Remove-Item -Recurse -Force "tmp"
|
|
||||||
|
|
||||||
Write-Output "Done!"
|
|
||||||
+11
-27
@@ -1,26 +1,7 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# Copyright (C) Contributors to the Suwayomi project
|
|
||||||
#
|
|
||||||
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
||||||
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
||||||
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
||||||
|
|
||||||
# This is a bash script to create android.jar stubs
|
|
||||||
|
|
||||||
for dep in "curl" "base64" "zip"
|
|
||||||
do
|
|
||||||
which $dep >/dev/null 2>&1 || { echo >&2 "Error: This script needs $dep installed."; abort=yes; }
|
|
||||||
done
|
|
||||||
|
|
||||||
if [ "$abort" = yes ]; then
|
|
||||||
echo "Some of the dependencies didn't exist. Aborting."
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
# foolproof against running from AndroidCompat dir instead of running from project root
|
# foolproof against running from AndroidCompat dir instead of running from project root
|
||||||
if [ "$(basename "$(pwd)")" = "AndroidCompat" ]; then
|
if [ "$(basename $(pwd))" = "AndroidCompat" ]; then
|
||||||
cd ..
|
cd ..
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@@ -30,9 +11,9 @@ rm -rf "tmp"
|
|||||||
mkdir -p "tmp"
|
mkdir -p "tmp"
|
||||||
pushd "tmp"
|
pushd "tmp"
|
||||||
|
|
||||||
curl "https://android.googlesource.com/platform/prebuilts/sdk/+/6cd31be5e4e25901aadf838120d71a79b46d9add/30/public/android.jar?format=TEXT" | base64 --decode > android.jar
|
curl "https://android.googlesource.com/platform/prebuilts/sdk/+/3b8a524d25fa6c3d795afb1eece3f24870c60988/27/public/android.jar?format=TEXT" | base64 --decode > android.jar
|
||||||
|
|
||||||
# We need to remove any stub classes that we have implementations for
|
# We need to remove any stub classes that we might use
|
||||||
echo "Patching JAR..."
|
echo "Patching JAR..."
|
||||||
|
|
||||||
echo "Removing org.json..."
|
echo "Removing org.json..."
|
||||||
@@ -59,7 +40,7 @@ zip --delete android.jar javax/*
|
|||||||
echo "Removing java..."
|
echo "Removing java..."
|
||||||
zip --delete android.jar java/*
|
zip --delete android.jar java/*
|
||||||
|
|
||||||
echo "Removing overridden classes..."
|
echo "Removing overriden classes..."
|
||||||
zip --delete android.jar android/app/Application.class
|
zip --delete android.jar android/app/Application.class
|
||||||
zip --delete android.jar android/app/Service.class
|
zip --delete android.jar android/app/Service.class
|
||||||
zip --delete android.jar android/net/Uri.class
|
zip --delete android.jar android/net/Uri.class
|
||||||
@@ -68,12 +49,12 @@ zip --delete android.jar android/os/Environment.class
|
|||||||
zip --delete android.jar android/text/format/Formatter.class
|
zip --delete android.jar android/text/format/Formatter.class
|
||||||
zip --delete android.jar android/text/Html.class
|
zip --delete android.jar android/text/Html.class
|
||||||
|
|
||||||
# Dedup overridden Android classes
|
# Dedup overriden Android classes
|
||||||
ABS_JAR="$(realpath android.jar)"
|
ABS_JAR="$(realpath android.jar)"
|
||||||
function dedup() {
|
function dedup() {
|
||||||
pushd "$1"
|
pushd "$1"
|
||||||
CLASSES="$(find ./* -type f)"
|
CLASSES="$(find * -type f)"
|
||||||
echo "$CLASSES" | while read -r class
|
echo "$CLASSES" | while read class
|
||||||
do
|
do
|
||||||
NAME="${class%.*}"
|
NAME="${class%.*}"
|
||||||
echo "Processing class: $NAME"
|
echo "Processing class: $NAME"
|
||||||
@@ -82,10 +63,13 @@ function dedup() {
|
|||||||
popd
|
popd
|
||||||
}
|
}
|
||||||
|
|
||||||
popd
|
pushd ..
|
||||||
dedup AndroidCompat/src/main/java
|
dedup AndroidCompat/src/main/java
|
||||||
|
dedup server/src/main/java
|
||||||
dedup server/src/main/kotlin
|
dedup server/src/main/kotlin
|
||||||
|
popd
|
||||||
|
|
||||||
|
popd
|
||||||
echo "Copying Android.jar to library folder..."
|
echo "Copying Android.jar to library folder..."
|
||||||
mv tmp/android.jar AndroidCompat/lib
|
mv tmp/android.jar AndroidCompat/lib
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1 @@
|
|||||||
|
android.jar
|
||||||
@@ -9,10 +9,8 @@ import android.content.Context
|
|||||||
class PreferenceManager {
|
class PreferenceManager {
|
||||||
companion object {
|
companion object {
|
||||||
@JvmStatic
|
@JvmStatic
|
||||||
fun getDefaultSharedPreferences(context: Context) =
|
fun getDefaultSharedPreferences(context: Context)
|
||||||
context.getSharedPreferences(
|
= context.getSharedPreferences(context.applicationInfo.packageName,
|
||||||
context.applicationInfo.packageName,
|
Context.MODE_PRIVATE)!!
|
||||||
Context.MODE_PRIVATE
|
|
||||||
)!!
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,291 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2012 The Android Open Source Project
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package android.support.v4.content;
|
||||||
|
|
||||||
|
import android.content.Context;
|
||||||
|
import android.content.Intent;
|
||||||
|
import android.graphics.drawable.Drawable;
|
||||||
|
import android.os.Bundle;
|
||||||
|
import android.os.StatFs;
|
||||||
|
import android.support.v4.os.EnvironmentCompat;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Helper for accessing features in {@link android.content.Context}
|
||||||
|
* introduced after API level 4 in a backwards compatible fashion.
|
||||||
|
*/
|
||||||
|
public class ContextCompat {
|
||||||
|
/**
|
||||||
|
* Start a set of activities as a synthesized task stack, if able.
|
||||||
|
*
|
||||||
|
* <p>In API level 11 (Android 3.0/Honeycomb) the recommended conventions for
|
||||||
|
* app navigation using the back key changed. The back key's behavior is local
|
||||||
|
* to the current task and does not capture navigation across different tasks.
|
||||||
|
* Navigating across tasks and easily reaching the previous task is accomplished
|
||||||
|
* through the "recents" UI, accessible through the software-provided Recents key
|
||||||
|
* on the navigation or system bar. On devices with the older hardware button configuration
|
||||||
|
* the recents UI can be accessed with a long press on the Home key.</p>
|
||||||
|
*
|
||||||
|
* <p>When crossing from one task stack to another post-Android 3.0,
|
||||||
|
* the application should synthesize a back stack/history for the new task so that
|
||||||
|
* the user may navigate out of the new task and back to the Launcher by repeated
|
||||||
|
* presses of the back key. Back key presses should not navigate across task stacks.</p>
|
||||||
|
*
|
||||||
|
* <p>startActivities provides a mechanism for constructing a synthetic task stack of
|
||||||
|
* multiple activities. If the underlying API is not available on the system this method
|
||||||
|
* will return false.</p>
|
||||||
|
*
|
||||||
|
* @param context Start activities using this activity as the starting context
|
||||||
|
* @param intents Array of intents defining the activities that will be started. The element
|
||||||
|
* length-1 will correspond to the top activity on the resulting task stack.
|
||||||
|
* @return true if the underlying API was available and the call was successful, false otherwise
|
||||||
|
*/
|
||||||
|
public static boolean startActivities(Context context, Intent[] intents) {
|
||||||
|
return startActivities(context, intents, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Start a set of activities as a synthesized task stack, if able.
|
||||||
|
*
|
||||||
|
* <p>In API level 11 (Android 3.0/Honeycomb) the recommended conventions for
|
||||||
|
* app navigation using the back key changed. The back key's behavior is local
|
||||||
|
* to the current task and does not capture navigation across different tasks.
|
||||||
|
* Navigating across tasks and easily reaching the previous task is accomplished
|
||||||
|
* through the "recents" UI, accessible through the software-provided Recents key
|
||||||
|
* on the navigation or system bar. On devices with the older hardware button configuration
|
||||||
|
* the recents UI can be accessed with a long press on the Home key.</p>
|
||||||
|
*
|
||||||
|
* <p>When crossing from one task stack to another post-Android 3.0,
|
||||||
|
* the application should synthesize a back stack/history for the new task so that
|
||||||
|
* the user may navigate out of the new task and back to the Launcher by repeated
|
||||||
|
* presses of the back key. Back key presses should not navigate across task stacks.</p>
|
||||||
|
*
|
||||||
|
* <p>startActivities provides a mechanism for constructing a synthetic task stack of
|
||||||
|
* multiple activities. If the underlying API is not available on the system this method
|
||||||
|
* will return false.</p>
|
||||||
|
*
|
||||||
|
* @param context Start activities using this activity as the starting context
|
||||||
|
* @param intents Array of intents defining the activities that will be started. The element
|
||||||
|
* length-1 will correspond to the top activity on the resulting task stack.
|
||||||
|
* @param options Additional options for how the Activity should be started.
|
||||||
|
* See {@link android.content.Context#startActivity(Intent, Bundle)
|
||||||
|
* @return true if the underlying API was available and the call was successful, false otherwise
|
||||||
|
*/
|
||||||
|
public static boolean startActivities(Context context, Intent[] intents,
|
||||||
|
Bundle options) {
|
||||||
|
context.startActivities(intents, options);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns absolute paths to application-specific directories on all
|
||||||
|
* external storage devices where the application's OBB files (if there are
|
||||||
|
* any) can be found. Note if the application does not have any OBB files,
|
||||||
|
* these directories may not exist.
|
||||||
|
* <p>
|
||||||
|
* This is like {@link Context#getFilesDir()} in that these files will be
|
||||||
|
* deleted when the application is uninstalled, however there are some
|
||||||
|
* important differences:
|
||||||
|
* <ul>
|
||||||
|
* <li>External files are not always available: they will disappear if the
|
||||||
|
* user mounts the external storage on a computer or removes it.
|
||||||
|
* <li>There is no security enforced with these files.
|
||||||
|
* </ul>
|
||||||
|
* <p>
|
||||||
|
* External storage devices returned here are considered a permanent part of
|
||||||
|
* the device, including both emulated external storage and physical media
|
||||||
|
* slots, such as SD cards in a battery compartment. The returned paths do
|
||||||
|
* not include transient devices, such as USB flash drives.
|
||||||
|
* <p>
|
||||||
|
* An application may store data on any or all of the returned devices. For
|
||||||
|
* example, an app may choose to store large files on the device with the
|
||||||
|
* most available space, as measured by {@link StatFs}.
|
||||||
|
* <p>
|
||||||
|
* Starting in {@link android.os.Build.VERSION_CODES#KITKAT}, no permissions
|
||||||
|
* are required to write to the returned paths; they're always accessible to
|
||||||
|
* the calling app. Before then,
|
||||||
|
* {@link android.Manifest.permission#WRITE_EXTERNAL_STORAGE} is required to
|
||||||
|
* write. Write access outside of these paths on secondary external storage
|
||||||
|
* devices is not available. To request external storage access in a
|
||||||
|
* backwards compatible way, consider using {@code android:maxSdkVersion}
|
||||||
|
* like this:
|
||||||
|
*
|
||||||
|
* <pre class="prettyprint"><uses-permission
|
||||||
|
* android:name="android.permission.WRITE_EXTERNAL_STORAGE"
|
||||||
|
* android:maxSdkVersion="18" /></pre>
|
||||||
|
* <p>
|
||||||
|
* The first path returned is the same as {@link Context#getObbDir()}.
|
||||||
|
* Returned paths may be {@code null} if a storage device is unavailable.
|
||||||
|
*
|
||||||
|
* @see Context#getObbDir()
|
||||||
|
* @see EnvironmentCompat#getStorageState(File)
|
||||||
|
*/
|
||||||
|
public static File[] getObbDirs(Context context) {
|
||||||
|
return context.getObbDirs();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns absolute paths to application-specific directories on all
|
||||||
|
* external storage devices where the application can place persistent files
|
||||||
|
* it owns. These files are internal to the application, and not typically
|
||||||
|
* visible to the user as media.
|
||||||
|
* <p>
|
||||||
|
* This is like {@link Context#getFilesDir()} in that these files will be
|
||||||
|
* deleted when the application is uninstalled, however there are some
|
||||||
|
* important differences:
|
||||||
|
* <ul>
|
||||||
|
* <li>External files are not always available: they will disappear if the
|
||||||
|
* user mounts the external storage on a computer or removes it.
|
||||||
|
* <li>There is no security enforced with these files.
|
||||||
|
* </ul>
|
||||||
|
* <p>
|
||||||
|
* External storage devices returned here are considered a permanent part of
|
||||||
|
* the device, including both emulated external storage and physical media
|
||||||
|
* slots, such as SD cards in a battery compartment. The returned paths do
|
||||||
|
* not include transient devices, such as USB flash drives.
|
||||||
|
* <p>
|
||||||
|
* An application may store data on any or all of the returned devices. For
|
||||||
|
* example, an app may choose to store large files on the device with the
|
||||||
|
* most available space, as measured by {@link StatFs}.
|
||||||
|
* <p>
|
||||||
|
* Starting in {@link android.os.Build.VERSION_CODES#KITKAT}, no permissions
|
||||||
|
* are required to write to the returned paths; they're always accessible to
|
||||||
|
* the calling app. Before then,
|
||||||
|
* {@link android.Manifest.permission#WRITE_EXTERNAL_STORAGE} is required to
|
||||||
|
* write. Write access outside of these paths on secondary external storage
|
||||||
|
* devices is not available. To request external storage access in a
|
||||||
|
* backwards compatible way, consider using {@code android:maxSdkVersion}
|
||||||
|
* like this:
|
||||||
|
*
|
||||||
|
* <pre class="prettyprint"><uses-permission
|
||||||
|
* android:name="android.permission.WRITE_EXTERNAL_STORAGE"
|
||||||
|
* android:maxSdkVersion="18" /></pre>
|
||||||
|
* <p>
|
||||||
|
* The first path returned is the same as
|
||||||
|
* {@link Context#getExternalFilesDir(String)}. Returned paths may be
|
||||||
|
* {@code null} if a storage device is unavailable.
|
||||||
|
*
|
||||||
|
* @see Context#getExternalFilesDir(String)
|
||||||
|
* @see EnvironmentCompat#getStorageState(File)
|
||||||
|
*/
|
||||||
|
public static File[] getExternalFilesDirs(Context context, String type) {
|
||||||
|
return context.getExternalFilesDirs(type);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns absolute paths to application-specific directories on all
|
||||||
|
* external storage devices where the application can place cache files it
|
||||||
|
* owns. These files are internal to the application, and not typically
|
||||||
|
* visible to the user as media.
|
||||||
|
* <p>
|
||||||
|
* This is like {@link Context#getCacheDir()} in that these files will be
|
||||||
|
* deleted when the application is uninstalled, however there are some
|
||||||
|
* important differences:
|
||||||
|
* <ul>
|
||||||
|
* <li>External files are not always available: they will disappear if the
|
||||||
|
* user mounts the external storage on a computer or removes it.
|
||||||
|
* <li>There is no security enforced with these files.
|
||||||
|
* </ul>
|
||||||
|
* <p>
|
||||||
|
* External storage devices returned here are considered a permanent part of
|
||||||
|
* the device, including both emulated external storage and physical media
|
||||||
|
* slots, such as SD cards in a battery compartment. The returned paths do
|
||||||
|
* not include transient devices, such as USB flash drives.
|
||||||
|
* <p>
|
||||||
|
* An application may store data on any or all of the returned devices. For
|
||||||
|
* example, an app may choose to store large files on the device with the
|
||||||
|
* most available space, as measured by {@link StatFs}.
|
||||||
|
* <p>
|
||||||
|
* Starting in {@link android.os.Build.VERSION_CODES#KITKAT}, no permissions
|
||||||
|
* are required to write to the returned paths; they're always accessible to
|
||||||
|
* the calling app. Before then,
|
||||||
|
* {@link android.Manifest.permission#WRITE_EXTERNAL_STORAGE} is required to
|
||||||
|
* write. Write access outside of these paths on secondary external storage
|
||||||
|
* devices is not available. To request external storage access in a
|
||||||
|
* backwards compatible way, consider using {@code android:maxSdkVersion}
|
||||||
|
* like this:
|
||||||
|
*
|
||||||
|
* <pre class="prettyprint"><uses-permission
|
||||||
|
* android:name="android.permission.WRITE_EXTERNAL_STORAGE"
|
||||||
|
* android:maxSdkVersion="18" /></pre>
|
||||||
|
* <p>
|
||||||
|
* The first path returned is the same as
|
||||||
|
* {@link Context#getExternalCacheDir()}. Returned paths may be {@code null}
|
||||||
|
* if a storage device is unavailable.
|
||||||
|
*
|
||||||
|
* @see Context#getExternalCacheDir()
|
||||||
|
* @see EnvironmentCompat#getStorageState(File)
|
||||||
|
*/
|
||||||
|
public static File[] getExternalCacheDirs(Context context) {
|
||||||
|
return context.getExternalCacheDirs();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return a drawable object associated with a particular resource ID.
|
||||||
|
* <p>
|
||||||
|
* Starting in {@link android.os.Build.VERSION_CODES#LOLLIPOP}, the returned
|
||||||
|
* drawable will be styled for the specified Context's theme.
|
||||||
|
*
|
||||||
|
* @param id The desired resource identifier, as generated by the aapt tool.
|
||||||
|
* This integer encodes the package, type, and resource entry.
|
||||||
|
* The value 0 is an invalid identifier.
|
||||||
|
* @return Drawable An object that can be used to draw this resource.
|
||||||
|
*/
|
||||||
|
public static final Drawable getDrawable(Context context, int id) {
|
||||||
|
return context.getDrawable(id);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the absolute path to the directory on the filesystem similar to
|
||||||
|
* {@link Context#getFilesDir()}. The difference is that files placed under this
|
||||||
|
* directory will be excluded from automatic backup to remote storage on
|
||||||
|
* devices running {@link android.os.Build.VERSION_CODES#LOLLIPOP} or later. See
|
||||||
|
* {@link android.app.backup.BackupAgent BackupAgent} for a full discussion
|
||||||
|
* of the automatic backup mechanism in Android.
|
||||||
|
*
|
||||||
|
* <p>No permissions are required to read or write to the returned path, since this
|
||||||
|
* path is internal storage.
|
||||||
|
*
|
||||||
|
* @return The path of the directory holding application files that will not be
|
||||||
|
* automatically backed up to remote storage.
|
||||||
|
*
|
||||||
|
* @see android.content.Context.getFilesDir
|
||||||
|
*/
|
||||||
|
public final File getNoBackupFilesDir(Context context) {
|
||||||
|
return context.getNoBackupFilesDir();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the absolute path to the application specific cache directory on
|
||||||
|
* the filesystem designed for storing cached code. On devices running
|
||||||
|
* {@link android.os.Build.VERSION_CODES#LOLLIPOP} or later, the system will delete
|
||||||
|
* any files stored in this location both when your specific application is
|
||||||
|
* upgraded, and when the entire platform is upgraded.
|
||||||
|
* <p>
|
||||||
|
* This location is optimal for storing compiled or optimized code generated
|
||||||
|
* by your application at runtime.
|
||||||
|
* <p>
|
||||||
|
* Apps require no extra permissions to read or write to the returned path,
|
||||||
|
* since this path lives in their private storage.
|
||||||
|
*
|
||||||
|
* @return The path of the directory holding application code cache files.
|
||||||
|
*/
|
||||||
|
public final File getCodeCacheDir(Context context) {
|
||||||
|
return context.getCodeCacheDir();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,53 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2011 The Android Open Source Project
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package android.support.v4.os;
|
||||||
|
|
||||||
|
import android.os.Environment;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Helper for accessing features in {@link Environment} introduced after API
|
||||||
|
* level 4 in a backwards compatible fashion.
|
||||||
|
*/
|
||||||
|
public class EnvironmentCompat {
|
||||||
|
/**
|
||||||
|
* Unknown storage state, such as when a path isn't backed by known storage
|
||||||
|
* media.
|
||||||
|
*
|
||||||
|
* @see #getStorageState(File)
|
||||||
|
*/
|
||||||
|
public static final String MEDIA_UNKNOWN = "unknown";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the current state of the storage device that provides the given
|
||||||
|
* path.
|
||||||
|
*
|
||||||
|
* @return one of {@link #MEDIA_UNKNOWN}, {@link Environment#MEDIA_REMOVED},
|
||||||
|
* {@link Environment#MEDIA_UNMOUNTED},
|
||||||
|
* {@link Environment#MEDIA_CHECKING},
|
||||||
|
* {@link Environment#MEDIA_NOFS},
|
||||||
|
* {@link Environment#MEDIA_MOUNTED},
|
||||||
|
* {@link Environment#MEDIA_MOUNTED_READ_ONLY},
|
||||||
|
* {@link Environment#MEDIA_SHARED},
|
||||||
|
* {@link Environment#MEDIA_BAD_REMOVAL}, or
|
||||||
|
* {@link Environment#MEDIA_UNMOUNTABLE}.
|
||||||
|
*/
|
||||||
|
public static String getStorageState(File path) {
|
||||||
|
return Environment.getStorageState(path);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,193 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2017 The Android Open Source Project
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package android.support.v7.preference;
|
||||||
|
|
||||||
|
import android.support.annotation.Nullable;
|
||||||
|
|
||||||
|
import java.util.Set;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A data store interface to be implemented and provided to the Preferences framework. This can be
|
||||||
|
* used to replace the default {@link android.content.SharedPreferences}, if needed.
|
||||||
|
*
|
||||||
|
* <p>In most cases you want to use {@link android.content.SharedPreferences} as it is automatically
|
||||||
|
* backed up and migrated to new devices. However, providing custom data store to preferences can be
|
||||||
|
* useful if your app stores its preferences in a local db, cloud or they are device specific like
|
||||||
|
* "Developer settings". It might be also useful when you want to use the preferences UI but
|
||||||
|
* the data are not supposed to be stored at all because they are valid per session only.
|
||||||
|
*
|
||||||
|
* <p>Once a put method is called it is full responsibility of the data store implementation to
|
||||||
|
* safely store the given values. Time expensive operations need to be done in the background to
|
||||||
|
* prevent from blocking the UI. You also need to have a plan on how to serialize the data in case
|
||||||
|
* the activity holding this object gets destroyed.
|
||||||
|
*
|
||||||
|
* <p>By default, all "put" methods throw {@link UnsupportedOperationException}.
|
||||||
|
*/
|
||||||
|
public abstract class PreferenceDataStore {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets a {@link String} value to the data store.
|
||||||
|
*
|
||||||
|
* <p>Once the value is set the data store is responsible for holding it.
|
||||||
|
*
|
||||||
|
* @param key the name of the preference to modify
|
||||||
|
* @param value the new value for the preference
|
||||||
|
* @see #getString(String, String)
|
||||||
|
*/
|
||||||
|
public void putString(String key, @Nullable String value) {
|
||||||
|
throw new UnsupportedOperationException("Not implemented on this data store");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets a set of Strings to the data store.
|
||||||
|
*
|
||||||
|
* <p>Once the value is set the data store is responsible for holding it.
|
||||||
|
*
|
||||||
|
* @param key the name of the preference to modify
|
||||||
|
* @param values the set of new values for the preference
|
||||||
|
* @see #getStringSet(String, Set<String>)
|
||||||
|
*/
|
||||||
|
public void putStringSet(String key, @Nullable Set<String> values) {
|
||||||
|
throw new UnsupportedOperationException("Not implemented on this data store");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets an {@link Integer} value to the data store.
|
||||||
|
*
|
||||||
|
* <p>Once the value is set the data store is responsible for holding it.
|
||||||
|
*
|
||||||
|
* @param key the name of the preference to modify
|
||||||
|
* @param value the new value for the preference
|
||||||
|
* @see #getInt(String, int)
|
||||||
|
*/
|
||||||
|
public void putInt(String key, int value) {
|
||||||
|
throw new UnsupportedOperationException("Not implemented on this data store");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets a {@link Long} value to the data store.
|
||||||
|
*
|
||||||
|
* <p>Once the value is set the data store is responsible for holding it.
|
||||||
|
*
|
||||||
|
* @param key the name of the preference to modify
|
||||||
|
* @param value the new value for the preference
|
||||||
|
* @see #getLong(String, long)
|
||||||
|
*/
|
||||||
|
public void putLong(String key, long value) {
|
||||||
|
throw new UnsupportedOperationException("Not implemented on this data store");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets a {@link Float} value to the data store.
|
||||||
|
*
|
||||||
|
* <p>Once the value is set the data store is responsible for holding it.
|
||||||
|
*
|
||||||
|
* @param key the name of the preference to modify
|
||||||
|
* @param value the new value for the preference
|
||||||
|
* @see #getFloat(String, float)
|
||||||
|
*/
|
||||||
|
public void putFloat(String key, float value) {
|
||||||
|
throw new UnsupportedOperationException("Not implemented on this data store");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets a {@link Boolean} value to the data store.
|
||||||
|
*
|
||||||
|
* <p>Once the value is set the data store is responsible for holding it.
|
||||||
|
*
|
||||||
|
* @param key the name of the preference to modify
|
||||||
|
* @param value the new value for the preference
|
||||||
|
* @see #getBoolean(String, boolean)
|
||||||
|
*/
|
||||||
|
public void putBoolean(String key, boolean value) {
|
||||||
|
throw new UnsupportedOperationException("Not implemented on this data store");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieves a {@link String} value from the data store.
|
||||||
|
*
|
||||||
|
* @param key the name of the preference to retrieve
|
||||||
|
* @param defValue value to return if this preference does not exist in the storage
|
||||||
|
* @return the value from the data store or the default return value
|
||||||
|
* @see #putString(String, String)
|
||||||
|
*/
|
||||||
|
@Nullable
|
||||||
|
public String getString(String key, @Nullable String defValue) {
|
||||||
|
return defValue;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieves a set of Strings from the data store.
|
||||||
|
*
|
||||||
|
* @param key the name of the preference to retrieve
|
||||||
|
* @param defValues values to return if this preference does not exist in the storage
|
||||||
|
* @return the values from the data store or the default return values
|
||||||
|
* @see #putStringSet(String, Set<String>)
|
||||||
|
*/
|
||||||
|
@Nullable
|
||||||
|
public Set<String> getStringSet(String key, @Nullable Set<String> defValues) {
|
||||||
|
return defValues;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieves an {@link Integer} value from the data store.
|
||||||
|
*
|
||||||
|
* @param key the name of the preference to retrieve
|
||||||
|
* @param defValue value to return if this preference does not exist in the storage
|
||||||
|
* @return the value from the data store or the default return value
|
||||||
|
* @see #putInt(String, int)
|
||||||
|
*/
|
||||||
|
public int getInt(String key, int defValue) {
|
||||||
|
return defValue;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieves a {@link Long} value from the data store.
|
||||||
|
*
|
||||||
|
* @param key the name of the preference to retrieve
|
||||||
|
* @param defValue value to return if this preference does not exist in the storage
|
||||||
|
* @return the value from the data store or the default return value
|
||||||
|
* @see #putLong(String, long)
|
||||||
|
*/
|
||||||
|
public long getLong(String key, long defValue) {
|
||||||
|
return defValue;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieves a {@link Float} value from the data store.
|
||||||
|
*
|
||||||
|
* @param key the name of the preference to retrieve
|
||||||
|
* @param defValue value to return if this preference does not exist in the storage
|
||||||
|
* @return the value from the data store or the default return value
|
||||||
|
* @see #putFloat(String, float)
|
||||||
|
*/
|
||||||
|
public float getFloat(String key, float defValue) {
|
||||||
|
return defValue;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieves a {@link Boolean} value from the data store.
|
||||||
|
*
|
||||||
|
* @param key the name of the preference to retrieve
|
||||||
|
* @param defValue value to return if this preference does not exist in the storage
|
||||||
|
* @return the value from the data store or the default return value
|
||||||
|
* @see #getBoolean(String, boolean)
|
||||||
|
*/
|
||||||
|
public boolean getBoolean(String key, boolean defValue) {
|
||||||
|
return defValue;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
package android.support.v7.preference;
|
||||||
|
|
||||||
|
public class PreferenceScreen {
|
||||||
|
}
|
||||||
@@ -1,40 +0,0 @@
|
|||||||
package android.widget;
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Copyright (C) Contributors to the Suwayomi project
|
|
||||||
*
|
|
||||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
||||||
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
||||||
|
|
||||||
public class EditText {
|
|
||||||
public EditText(android.content.Context context) { throw new RuntimeException("Stub!"); }
|
|
||||||
|
|
||||||
public EditText(android.content.Context context, android.util.AttributeSet attrs) { throw new RuntimeException("Stub!"); }
|
|
||||||
|
|
||||||
public EditText(android.content.Context context, android.util.AttributeSet attrs, int defStyleAttr) { throw new RuntimeException("Stub!"); }
|
|
||||||
|
|
||||||
public EditText(android.content.Context context, android.util.AttributeSet attrs, int defStyleAttr, int defStyleRes) { throw new RuntimeException("Stub!"); }
|
|
||||||
|
|
||||||
public boolean getFreezesText() { throw new RuntimeException("Stub!"); }
|
|
||||||
|
|
||||||
protected boolean getDefaultEditable() { throw new RuntimeException("Stub!"); }
|
|
||||||
|
|
||||||
protected android.text.method.MovementMethod getDefaultMovementMethod() { throw new RuntimeException("Stub!"); }
|
|
||||||
|
|
||||||
public android.text.Editable getText() { throw new RuntimeException("Stub!"); }
|
|
||||||
|
|
||||||
public void setText(java.lang.CharSequence text, android.widget.TextView.BufferType type) { throw new RuntimeException("Stub!"); }
|
|
||||||
|
|
||||||
public void setSelection(int start, int stop) { throw new RuntimeException("Stub!"); }
|
|
||||||
|
|
||||||
public void setSelection(int index) { throw new RuntimeException("Stub!"); }
|
|
||||||
|
|
||||||
public void selectAll() { throw new RuntimeException("Stub!"); }
|
|
||||||
|
|
||||||
public void extendSelection(int index) { throw new RuntimeException("Stub!"); }
|
|
||||||
|
|
||||||
public void setEllipsize(android.text.TextUtils.TruncateAt ellipsis) { throw new RuntimeException("Stub!"); }
|
|
||||||
|
|
||||||
public java.lang.CharSequence getAccessibilityClassName() { throw new RuntimeException("Stub!"); }
|
|
||||||
}
|
|
||||||
@@ -1,91 +0,0 @@
|
|||||||
package android.widget;
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Copyright (C) Contributors to the Suwayomi project
|
|
||||||
*
|
|
||||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
||||||
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
||||||
|
|
||||||
public class Toast {
|
|
||||||
public static final int LENGTH_LONG = 1;
|
|
||||||
public static final int LENGTH_SHORT = 0;
|
|
||||||
|
|
||||||
private CharSequence text;
|
|
||||||
|
|
||||||
private Toast(CharSequence text) {
|
|
||||||
this.text = text;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Toast(android.content.Context context) {
|
|
||||||
throw new RuntimeException("Stub!");
|
|
||||||
}
|
|
||||||
|
|
||||||
public void show() {
|
|
||||||
System.out.printf("made a Toast: \"%s\"\n", text.toString());
|
|
||||||
}
|
|
||||||
|
|
||||||
public void cancel() {
|
|
||||||
throw new RuntimeException("Stub!");
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setView(android.view.View view) {
|
|
||||||
throw new RuntimeException("Stub!");
|
|
||||||
}
|
|
||||||
|
|
||||||
public android.view.View getView() {
|
|
||||||
throw new RuntimeException("Stub!");
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDuration(int duration) {
|
|
||||||
throw new RuntimeException("Stub!");
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getDuration() {
|
|
||||||
throw new RuntimeException("Stub!");
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMargin(float horizontalMargin, float verticalMargin) {
|
|
||||||
throw new RuntimeException("Stub!");
|
|
||||||
}
|
|
||||||
|
|
||||||
public float getHorizontalMargin() {
|
|
||||||
throw new RuntimeException("Stub!");
|
|
||||||
}
|
|
||||||
|
|
||||||
public float getVerticalMargin() {
|
|
||||||
throw new RuntimeException("Stub!");
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGravity(int gravity, int xOffset, int yOffset) {
|
|
||||||
throw new RuntimeException("Stub!");
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getGravity() {
|
|
||||||
throw new RuntimeException("Stub!");
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getXOffset() {
|
|
||||||
throw new RuntimeException("Stub!");
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getYOffset() {
|
|
||||||
throw new RuntimeException("Stub!");
|
|
||||||
}
|
|
||||||
|
|
||||||
public static Toast makeText(android.content.Context context, java.lang.CharSequence text, int duration) {
|
|
||||||
return new Toast(text);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static android.widget.Toast makeText(android.content.Context context, int resId, int duration) throws android.content.res.Resources.NotFoundException {
|
|
||||||
throw new RuntimeException("Stub!");
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setText(int resId) {
|
|
||||||
throw new RuntimeException("Stub!");
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setText(java.lang.CharSequence s) {
|
|
||||||
throw new RuntimeException("Stub!");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
package androidx.preference;
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Copyright (C) Contributors to the Suwayomi project
|
|
||||||
*
|
|
||||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
||||||
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
||||||
|
|
||||||
import android.content.Context;
|
|
||||||
|
|
||||||
public class CheckBoxPreference extends TwoStatePreference {
|
|
||||||
// reference: https://android.googlesource.com/platform/frameworks/support/+/996971f962fcd554339a7cb2859cef9ca89dbcb7/preference/preference/src/main/java/androidx/preference/CheckBoxPreference.java
|
|
||||||
|
|
||||||
public CheckBoxPreference(Context context) {
|
|
||||||
super(context);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
package androidx.preference;
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Copyright (C) Contributors to the Suwayomi project
|
|
||||||
*
|
|
||||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
||||||
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
||||||
|
|
||||||
import android.content.Context;
|
|
||||||
|
|
||||||
public abstract class DialogPreference extends Preference {
|
|
||||||
private CharSequence dialogTitle;
|
|
||||||
private CharSequence dialogMessage;
|
|
||||||
|
|
||||||
public DialogPreference(Context context) { super(context); }
|
|
||||||
|
|
||||||
public CharSequence getDialogTitle() {
|
|
||||||
return dialogTitle;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDialogTitle(CharSequence dialogTitle) {
|
|
||||||
this.dialogTitle = dialogTitle;
|
|
||||||
}
|
|
||||||
|
|
||||||
public CharSequence getDialogMessage() {
|
|
||||||
return dialogMessage;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDialogMessage(CharSequence dialogMessage) {
|
|
||||||
this.dialogMessage = dialogMessage;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,53 +0,0 @@
|
|||||||
package androidx.preference;
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Copyright (C) Contributors to the Suwayomi project
|
|
||||||
*
|
|
||||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
||||||
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
||||||
|
|
||||||
import android.annotation.NonNull;
|
|
||||||
import android.annotation.Nullable;
|
|
||||||
import android.content.Context;
|
|
||||||
import android.widget.EditText;
|
|
||||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
|
||||||
|
|
||||||
public class EditTextPreference extends DialogPreference {
|
|
||||||
// reference: https://android.googlesource.com/platform/frameworks/support/+/996971f962fcd554339a7cb2859cef9ca89dbcb7/preference/preference/src/main/java/androidx/preference/EditTextPreference.java
|
|
||||||
|
|
||||||
private String text;
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
private OnBindEditTextListener onBindEditTextListener;
|
|
||||||
|
|
||||||
public EditTextPreference(Context context) {
|
|
||||||
super(context);
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getText() {
|
|
||||||
return text;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setText(String text) {
|
|
||||||
this.text = text;
|
|
||||||
}
|
|
||||||
|
|
||||||
public OnBindEditTextListener getOnBindEditTextListener() {
|
|
||||||
return onBindEditTextListener;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOnBindEditTextListener(@Nullable OnBindEditTextListener onBindEditTextListener) {
|
|
||||||
this.onBindEditTextListener = onBindEditTextListener;
|
|
||||||
}
|
|
||||||
|
|
||||||
public interface OnBindEditTextListener {
|
|
||||||
void onBindEditText(@NonNull EditText editText);
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Tachidesk specific API */
|
|
||||||
@Override
|
|
||||||
public String getDefaultValueType() {
|
|
||||||
return "String";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,66 +0,0 @@
|
|||||||
package androidx.preference;
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Copyright (C) Contributors to the Suwayomi project
|
|
||||||
*
|
|
||||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
||||||
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
||||||
|
|
||||||
import android.content.Context;
|
|
||||||
import android.text.TextUtils;
|
|
||||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
|
||||||
|
|
||||||
public class ListPreference extends Preference {
|
|
||||||
// reference: https://android.googlesource.com/platform/frameworks/support/+/996971f962fcd554339a7cb2859cef9ca89dbcb7/preference/preference/src/main/java/androidx/preference/ListPreference.java
|
|
||||||
// Note: remove @JsonIgnore and implement methods if any extension ever uses these methods or the variables behind them
|
|
||||||
|
|
||||||
private CharSequence[] entries;
|
|
||||||
private CharSequence[] entryValues;
|
|
||||||
|
|
||||||
public ListPreference(Context context) {
|
|
||||||
super(context);
|
|
||||||
}
|
|
||||||
|
|
||||||
public CharSequence[] getEntries() {
|
|
||||||
return entries;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEntries(CharSequence[] entries) {
|
|
||||||
this.entries = entries;
|
|
||||||
}
|
|
||||||
|
|
||||||
public int findIndexOfValue(String value) {
|
|
||||||
if (value != null && entryValues != null) {
|
|
||||||
for (int i = entryValues.length - 1; i >= 0; i--) {
|
|
||||||
if (TextUtils.equals(entryValues[i].toString(), value)) {
|
|
||||||
return i;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
public CharSequence[] getEntryValues() {
|
|
||||||
return entryValues;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEntryValues(CharSequence[] entryValues) {
|
|
||||||
this.entryValues = entryValues;
|
|
||||||
}
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public void setValueIndex(int index) { throw new RuntimeException("Stub!"); }
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public String getValue() { throw new RuntimeException("Stub!"); }
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public void setValue(String value) { throw new RuntimeException("Stub!"); }
|
|
||||||
|
|
||||||
/** Tachidesk specific API */
|
|
||||||
@Override
|
|
||||||
public String getDefaultValueType() {
|
|
||||||
return "String";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,61 +0,0 @@
|
|||||||
package androidx.preference;
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Copyright (C) Contributors to the Suwayomi project
|
|
||||||
*
|
|
||||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
||||||
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
||||||
|
|
||||||
import android.content.Context;
|
|
||||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
|
||||||
|
|
||||||
import java.util.Set;
|
|
||||||
|
|
||||||
public class MultiSelectListPreference extends DialogPreference {
|
|
||||||
// reference: https://android.googlesource.com/platform/frameworks/support/+/996971f962fcd554339a7cb2859cef9ca89dbcb7/preference/preference/src/main/java/androidx/preference/MultiSelectListPreference.java
|
|
||||||
// Note: remove @JsonIgnore and implement methods if any extension ever uses these methods or the variables behind them
|
|
||||||
|
|
||||||
private CharSequence[] entries;
|
|
||||||
private CharSequence[] entryValues;
|
|
||||||
|
|
||||||
public MultiSelectListPreference(Context context) {
|
|
||||||
super(context);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEntries(CharSequence[] entries) {
|
|
||||||
this.entries = entries;
|
|
||||||
}
|
|
||||||
|
|
||||||
public CharSequence[] getEntries() {
|
|
||||||
return entries;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEntryValues(CharSequence[] entryValues) {
|
|
||||||
this.entryValues = entryValues;
|
|
||||||
}
|
|
||||||
|
|
||||||
public CharSequence[] getEntryValues() {
|
|
||||||
return entryValues;
|
|
||||||
}
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public void setValues(Set<String> values) {
|
|
||||||
throw new RuntimeException("Stub!");
|
|
||||||
}
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public Set<String> getValues() {
|
|
||||||
throw new RuntimeException("Stub!");
|
|
||||||
}
|
|
||||||
|
|
||||||
public int findIndexOfValue(String value) {
|
|
||||||
throw new RuntimeException("Stub!");
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Tachidesk specific API */
|
|
||||||
@Override
|
|
||||||
public String getDefaultValueType() {
|
|
||||||
return "Set<String>";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,148 +0,0 @@
|
|||||||
package androidx.preference;
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Copyright (C) Contributors to the Suwayomi project
|
|
||||||
*
|
|
||||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
||||||
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
||||||
|
|
||||||
import android.content.Context;
|
|
||||||
import android.content.SharedPreferences;
|
|
||||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
|
||||||
import java.util.Set;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A minimal implementation of androidx.preference.Preference
|
|
||||||
*/
|
|
||||||
public class Preference {
|
|
||||||
// reference: https://android.googlesource.com/platform/frameworks/support/+/996971f962fcd554339a7cb2859cef9ca89dbcb7/preference/preference/src/main/java/androidx/preference/Preference.java
|
|
||||||
// Note: `Preference` doesn't actually hold or persist the value, `OnPreferenceChangeListener` is called and it's up to the extension to persist it.
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
protected Context context;
|
|
||||||
|
|
||||||
private String key;
|
|
||||||
private CharSequence title;
|
|
||||||
private CharSequence summary;
|
|
||||||
private Object defaultValue;
|
|
||||||
|
|
||||||
/** Tachidesk specific API */
|
|
||||||
@JsonIgnore
|
|
||||||
private SharedPreferences sharedPreferences;
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public OnPreferenceChangeListener onChangeListener;
|
|
||||||
|
|
||||||
public Preference(Context context) {
|
|
||||||
this.context = context;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Context getContext() {
|
|
||||||
return context;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOnPreferenceChangeListener(OnPreferenceChangeListener onPreferenceChangeListener) {
|
|
||||||
this.onChangeListener = onPreferenceChangeListener;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setOnPreferenceClickListener(OnPreferenceClickListener onPreferenceClickListener) {
|
|
||||||
throw new RuntimeException("Stub!");
|
|
||||||
}
|
|
||||||
|
|
||||||
public CharSequence getTitle() {
|
|
||||||
return title;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTitle(CharSequence title) {
|
|
||||||
this.title = title;
|
|
||||||
}
|
|
||||||
|
|
||||||
public CharSequence getSummary() {
|
|
||||||
return summary;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSummary(CharSequence summary) {
|
|
||||||
this.summary = summary;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setEnabled(boolean enabled) {
|
|
||||||
throw new RuntimeException("Stub!");
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getKey() {
|
|
||||||
return key;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setKey(String key) {
|
|
||||||
this.key = key;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDefaultValue(Object defaultValue) {
|
|
||||||
this.defaultValue = defaultValue;
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean callChangeListener(Object newValue) {
|
|
||||||
return onChangeListener == null || onChangeListener.onPreferenceChange(this, newValue);
|
|
||||||
}
|
|
||||||
|
|
||||||
public Object getDefaultValue() {
|
|
||||||
return defaultValue;
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Tachidesk specific API */
|
|
||||||
public String getDefaultValueType() {
|
|
||||||
return defaultValue.getClass().getSimpleName();
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Tachidesk specific API */
|
|
||||||
public SharedPreferences getSharedPreferences() {
|
|
||||||
return sharedPreferences;
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Tachidesk specific API */
|
|
||||||
public void setSharedPreferences(SharedPreferences sharedPreferences) {
|
|
||||||
this.sharedPreferences = sharedPreferences;
|
|
||||||
}
|
|
||||||
|
|
||||||
public interface OnPreferenceChangeListener {
|
|
||||||
boolean onPreferenceChange(Preference preference, Object newValue);
|
|
||||||
}
|
|
||||||
|
|
||||||
public interface OnPreferenceClickListener {
|
|
||||||
boolean onPreferenceClick(Preference preference);
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Tachidesk specific API */
|
|
||||||
@SuppressWarnings("unchecked")
|
|
||||||
public Object getCurrentValue() {
|
|
||||||
switch (getDefaultValueType()) {
|
|
||||||
case "String":
|
|
||||||
return sharedPreferences.getString(key, (String)defaultValue);
|
|
||||||
case "Boolean":
|
|
||||||
return sharedPreferences.getBoolean(key, (Boolean)defaultValue);
|
|
||||||
case "Set<String>":
|
|
||||||
return sharedPreferences.getStringSet(key, (Set<String>)defaultValue);
|
|
||||||
default:
|
|
||||||
throw new RuntimeException("Unsupported type");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Tachidesk specific API */
|
|
||||||
@SuppressWarnings("unchecked")
|
|
||||||
public void saveNewValue(Object value) {
|
|
||||||
switch (getDefaultValueType()) {
|
|
||||||
case "String":
|
|
||||||
sharedPreferences.edit().putString(key, (String)value).apply();
|
|
||||||
break;
|
|
||||||
case "Boolean":
|
|
||||||
sharedPreferences.edit().putBoolean(key, (Boolean)value).apply();
|
|
||||||
break;
|
|
||||||
case "Set<String>":
|
|
||||||
sharedPreferences.edit().putStringSet(key, (Set<String>)value).apply();
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
throw new RuntimeException("Unsupported type");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,36 +0,0 @@
|
|||||||
package androidx.preference;
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Copyright (C) Contributors to the Suwayomi project
|
|
||||||
*
|
|
||||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
||||||
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
||||||
|
|
||||||
import android.content.Context;
|
|
||||||
|
|
||||||
import java.util.LinkedList;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
public class PreferenceScreen extends Preference {
|
|
||||||
/** Tachidesk specific API */
|
|
||||||
private List<Preference> preferences = new LinkedList<>();
|
|
||||||
|
|
||||||
public PreferenceScreen(Context context) {
|
|
||||||
super(context);
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean addPreference(Preference preference) {
|
|
||||||
// propagate own shared preferences
|
|
||||||
preference.setSharedPreferences(getSharedPreferences());
|
|
||||||
|
|
||||||
preferences.add(preference);
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Tachidesk specific API */
|
|
||||||
public List<Preference> getPreferences(){
|
|
||||||
return preferences;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
package androidx.preference;
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Copyright (C) Contributors to the Suwayomi project
|
|
||||||
*
|
|
||||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
||||||
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
||||||
|
|
||||||
import android.content.Context;
|
|
||||||
|
|
||||||
public class SwitchPreferenceCompat extends TwoStatePreference {
|
|
||||||
// reference: https://android.googlesource.com/platform/frameworks/support/+/996971f962fcd554339a7cb2859cef9ca89dbcb7/preference/preference/src/main/java/androidx/preference/CheckBoxPreference.java
|
|
||||||
|
|
||||||
public SwitchPreferenceCompat(Context context) {
|
|
||||||
super(context);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,50 +0,0 @@
|
|||||||
package androidx.preference;
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Copyright (C) Contributors to the Suwayomi project
|
|
||||||
*
|
|
||||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
||||||
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
||||||
|
|
||||||
import android.content.Context;
|
|
||||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
|
||||||
|
|
||||||
public class TwoStatePreference extends Preference {
|
|
||||||
// Note: remove @JsonIgnore and implement methods if any extension ever uses these methods or the variables behind them
|
|
||||||
|
|
||||||
public TwoStatePreference(Context context) {
|
|
||||||
super(context);
|
|
||||||
setDefaultValue(false);
|
|
||||||
}
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public boolean isChecked() { throw new RuntimeException("Stub!"); }
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public void setChecked(boolean checked) { throw new RuntimeException("Stub!"); }
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public CharSequence getSummaryOn() { throw new RuntimeException("Stub!"); }
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public void setSummaryOn(CharSequence summary) { throw new RuntimeException("Stub!"); }
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public CharSequence getSummaryOff() { throw new RuntimeException("Stub!"); }
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public void setSummaryOff(CharSequence summary) { throw new RuntimeException("Stub!"); }
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public boolean getDisableDependentsState() { throw new RuntimeException("Stub!"); }
|
|
||||||
|
|
||||||
@JsonIgnore
|
|
||||||
public void setDisableDependentsState(boolean disableDependentsState) { throw new RuntimeException("Stub!"); }
|
|
||||||
|
|
||||||
/** Tachidesk specific API */
|
|
||||||
@Override
|
|
||||||
public String getDefaultValueType() {
|
|
||||||
return "Boolean";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
package com.f2prateek;
|
||||||
|
//TODO Consider if we can change this package into an Android dependency
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
/*
|
||||||
|
Copyright 2014 Prateek Srivastava
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
|
||||||
|
This file may have been modified after being copied from it's original source.
|
||||||
|
*/
|
||||||
|
package com.f2prateek.rx.preferences;
|
||||||
|
|
||||||
|
import android.content.SharedPreferences;
|
||||||
|
import android.support.annotation.NonNull;
|
||||||
|
|
||||||
|
final class BooleanAdapter implements Preference.Adapter<Boolean> {
|
||||||
|
static final BooleanAdapter INSTANCE = new BooleanAdapter();
|
||||||
|
|
||||||
|
@Override public Boolean get(@NonNull String key, @NonNull SharedPreferences preferences) {
|
||||||
|
return preferences.getBoolean(key, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override public void set(@NonNull String key, @NonNull Boolean value,
|
||||||
|
@NonNull SharedPreferences.Editor editor) {
|
||||||
|
editor.putBoolean(key, value);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,40 @@
|
|||||||
|
/*
|
||||||
|
Copyright 2014 Prateek Srivastava
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
|
||||||
|
This file may have been modified after being copied from it's original source.
|
||||||
|
*/
|
||||||
|
package com.f2prateek.rx.preferences;
|
||||||
|
|
||||||
|
import android.content.SharedPreferences;
|
||||||
|
import android.support.annotation.NonNull;
|
||||||
|
|
||||||
|
final class EnumAdapter<T extends Enum<T>> implements Preference.Adapter<T> {
|
||||||
|
private final Class<T> enumClass;
|
||||||
|
|
||||||
|
EnumAdapter(Class<T> enumClass) {
|
||||||
|
this.enumClass = enumClass;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override public T get(@NonNull String key, @NonNull SharedPreferences preferences) {
|
||||||
|
String value = preferences.getString(key, null);
|
||||||
|
assert value != null; // Not called unless key is present.
|
||||||
|
return Enum.valueOf(enumClass, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void set(@NonNull String key, @NonNull T value, @NonNull SharedPreferences.Editor editor) {
|
||||||
|
editor.putString(key, value.name());
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
/*
|
||||||
|
Copyright 2014 Prateek Srivastava
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
|
||||||
|
This file may have been modified after being copied from it's original source.
|
||||||
|
*/
|
||||||
|
package com.f2prateek.rx.preferences;
|
||||||
|
|
||||||
|
import android.content.SharedPreferences;
|
||||||
|
import android.support.annotation.NonNull;
|
||||||
|
|
||||||
|
final class FloatAdapter implements Preference.Adapter<Float> {
|
||||||
|
static final FloatAdapter INSTANCE = new FloatAdapter();
|
||||||
|
|
||||||
|
@Override public Float get(@NonNull String key, @NonNull SharedPreferences preferences) {
|
||||||
|
return preferences.getFloat(key, 0f);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override public void set(@NonNull String key, @NonNull Float value,
|
||||||
|
@NonNull SharedPreferences.Editor editor) {
|
||||||
|
editor.putFloat(key, value);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
/*
|
||||||
|
Copyright 2014 Prateek Srivastava
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
|
||||||
|
This file may have been modified after being copied from it's original source.
|
||||||
|
*/
|
||||||
|
package com.f2prateek.rx.preferences;
|
||||||
|
|
||||||
|
import android.content.SharedPreferences;
|
||||||
|
import android.support.annotation.NonNull;
|
||||||
|
|
||||||
|
final class IntegerAdapter implements Preference.Adapter<Integer> {
|
||||||
|
static final IntegerAdapter INSTANCE = new IntegerAdapter();
|
||||||
|
|
||||||
|
@Override public Integer get(@NonNull String key, @NonNull SharedPreferences preferences) {
|
||||||
|
return preferences.getInt(key, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override public void set(@NonNull String key, @NonNull Integer value,
|
||||||
|
@NonNull SharedPreferences.Editor editor) {
|
||||||
|
editor.putInt(key, value);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
/*
|
||||||
|
Copyright 2014 Prateek Srivastava
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
|
||||||
|
This file may have been modified after being copied from it's original source.
|
||||||
|
*/
|
||||||
|
package com.f2prateek.rx.preferences;
|
||||||
|
|
||||||
|
import android.content.SharedPreferences;
|
||||||
|
import android.support.annotation.NonNull;
|
||||||
|
|
||||||
|
final class LongAdapter implements Preference.Adapter<Long> {
|
||||||
|
static final LongAdapter INSTANCE = new LongAdapter();
|
||||||
|
|
||||||
|
@Override public Long get(@NonNull String key, @NonNull SharedPreferences preferences) {
|
||||||
|
return preferences.getLong(key, 0L);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override public void set(@NonNull String key, @NonNull Long value,
|
||||||
|
@NonNull SharedPreferences.Editor editor) {
|
||||||
|
editor.putLong(key, value);
|
||||||
|
}
|
||||||
|
}
|
||||||
+19
-2
@@ -1,13 +1,30 @@
|
|||||||
Copyright 2015 Javier Tomás
|
/*
|
||||||
|
Copyright 2014 Prateek Srivastava
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
You may obtain a copy of the License at
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
http://www.apache.org/licenses/LICENSE-2.0
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
Unless required by applicable law or agreed to in writing, software
|
Unless required by applicable law or agreed to in writing, software
|
||||||
distributed under the License is distributed on an "AS IS" BASIS,
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
See the License for the specific language governing permissions and
|
See the License for the specific language governing permissions and
|
||||||
limitations under the License.
|
limitations under the License.
|
||||||
|
|
||||||
|
This file may have been modified after being copied from it's original source.
|
||||||
|
*/
|
||||||
|
package com.f2prateek.rx.preferences;
|
||||||
|
|
||||||
|
final class Preconditions {
|
||||||
|
static void checkNotNull(Object o, String message) {
|
||||||
|
if (o == null) {
|
||||||
|
throw new NullPointerException(message);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private Preconditions() {
|
||||||
|
throw new AssertionError("No instances");
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,127 @@
|
|||||||
|
/*
|
||||||
|
Copyright 2014 Prateek Srivastava
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
|
||||||
|
This file has been modified after being copied from it's original source.
|
||||||
|
*/
|
||||||
|
package com.f2prateek.rx.preferences;
|
||||||
|
|
||||||
|
import android.content.SharedPreferences;
|
||||||
|
import android.support.annotation.CheckResult;
|
||||||
|
import android.support.annotation.NonNull;
|
||||||
|
import android.support.annotation.Nullable;
|
||||||
|
import rx.Observable;
|
||||||
|
import rx.functions.Action1;
|
||||||
|
|
||||||
|
/** A preference of type {@link T}. Instances can be created from {@link RxSharedPreferences}. */
|
||||||
|
public final class Preference<T> {
|
||||||
|
/** Stores and retrieves instances of {@code T} in {@link SharedPreferences}. */
|
||||||
|
public interface Adapter<T> {
|
||||||
|
/** Retrieve the value for {@code key} from {@code preferences}. */
|
||||||
|
T get(@NonNull String key, @NonNull SharedPreferences preferences);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Store non-null {@code value} for {@code key} in {@code editor}.
|
||||||
|
* <p>
|
||||||
|
* Note: Implementations <b>must not</b> call {@code commit()} or {@code apply()} on
|
||||||
|
* {@code editor}.
|
||||||
|
*/
|
||||||
|
void set(@NonNull String key, @NonNull T value, @NonNull SharedPreferences.Editor editor);
|
||||||
|
}
|
||||||
|
|
||||||
|
private final SharedPreferences preferences;
|
||||||
|
private final String key;
|
||||||
|
private final T defaultValue;
|
||||||
|
private final Adapter<T> adapter;
|
||||||
|
private final Observable<T> values;
|
||||||
|
|
||||||
|
Preference(SharedPreferences preferences, final String key, T defaultValue, Adapter<T> adapter,
|
||||||
|
Observable<String> keyChanges) {
|
||||||
|
this.preferences = preferences;
|
||||||
|
this.key = key;
|
||||||
|
this.defaultValue = defaultValue;
|
||||||
|
this.adapter = adapter;
|
||||||
|
this.values = keyChanges
|
||||||
|
.filter(key::equals)
|
||||||
|
.startWith("<init>") // Dummy value to trigger initial load.
|
||||||
|
.onBackpressureLatest()
|
||||||
|
.map(ignored -> get());
|
||||||
|
}
|
||||||
|
|
||||||
|
/** The key for which this preference will store and retrieve values. */
|
||||||
|
@NonNull
|
||||||
|
public String key() {
|
||||||
|
return key;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** The value used if none is stored. May be {@code null}. */
|
||||||
|
@Nullable
|
||||||
|
public T defaultValue() {
|
||||||
|
return defaultValue;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieve the current value for this preference. Returns {@link #defaultValue()} if no value is
|
||||||
|
* set.
|
||||||
|
*/
|
||||||
|
@Nullable
|
||||||
|
public T get() {
|
||||||
|
if (!preferences.contains(key)) {
|
||||||
|
return defaultValue;
|
||||||
|
}
|
||||||
|
return adapter.get(key, preferences);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Change this preference's stored value to {@code value}. A value of {@code null} will delete the
|
||||||
|
* preference.
|
||||||
|
*/
|
||||||
|
public void set(@Nullable T value) {
|
||||||
|
SharedPreferences.Editor editor = preferences.edit();
|
||||||
|
if (value == null) {
|
||||||
|
editor.remove(key);
|
||||||
|
} else {
|
||||||
|
adapter.set(key, value, editor);
|
||||||
|
}
|
||||||
|
editor.apply();
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Returns true if this preference has a stored value. */
|
||||||
|
public boolean isSet() {
|
||||||
|
return preferences.contains(key);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Delete the stored value for this preference, if any. */
|
||||||
|
public void delete() {
|
||||||
|
set(null);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Observe changes to this preference. The current value or {@link #defaultValue()} will be
|
||||||
|
* emitted on first subscribe.
|
||||||
|
*/
|
||||||
|
@CheckResult @NonNull
|
||||||
|
public Observable<T> asObservable() {
|
||||||
|
return values;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* An action which stores a new value for this preference. Passing {@code null} will delete the
|
||||||
|
* preference.
|
||||||
|
*/
|
||||||
|
@CheckResult @NonNull
|
||||||
|
public Action1<? super T> asAction() {
|
||||||
|
return (Action1<T>) this::set;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,178 @@
|
|||||||
|
/*
|
||||||
|
Copyright 2014 Prateek Srivastava
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
|
||||||
|
This file has been modified after being copied from it's original source.
|
||||||
|
*/
|
||||||
|
package com.f2prateek.rx.preferences;
|
||||||
|
|
||||||
|
import android.annotation.TargetApi;
|
||||||
|
import android.content.SharedPreferences;
|
||||||
|
import android.content.SharedPreferences.OnSharedPreferenceChangeListener;
|
||||||
|
import android.support.annotation.CheckResult;
|
||||||
|
import android.support.annotation.NonNull;
|
||||||
|
import android.support.annotation.Nullable;
|
||||||
|
import java.util.Collections;
|
||||||
|
import java.util.Set;
|
||||||
|
import rx.Observable;
|
||||||
|
import rx.subscriptions.Subscriptions;
|
||||||
|
|
||||||
|
import static android.os.Build.VERSION_CODES.HONEYCOMB;
|
||||||
|
import static com.f2prateek.rx.preferences.Preconditions.checkNotNull;
|
||||||
|
|
||||||
|
/** A factory for reactive {@link Preference} objects. */
|
||||||
|
public final class RxSharedPreferences {
|
||||||
|
private static final Float DEFAULT_FLOAT = 0f;
|
||||||
|
private static final Integer DEFAULT_INTEGER = 0;
|
||||||
|
private static final Boolean DEFAULT_BOOLEAN = Boolean.FALSE;
|
||||||
|
private static final Long DEFAULT_LONG = 0L;
|
||||||
|
|
||||||
|
/** Create an instance of {@link RxSharedPreferences} for {@code preferences}. */
|
||||||
|
@CheckResult @NonNull
|
||||||
|
public static RxSharedPreferences create(@NonNull SharedPreferences preferences) {
|
||||||
|
checkNotNull(preferences, "preferences == null");
|
||||||
|
return new RxSharedPreferences(preferences);
|
||||||
|
}
|
||||||
|
|
||||||
|
private final SharedPreferences preferences;
|
||||||
|
private final Observable<String> keyChanges;
|
||||||
|
|
||||||
|
private RxSharedPreferences(final SharedPreferences preferences) {
|
||||||
|
this.preferences = preferences;
|
||||||
|
this.keyChanges = Observable.create((Observable.OnSubscribe<String>) subscriber -> {
|
||||||
|
final OnSharedPreferenceChangeListener listener = (preferences1, key) -> subscriber.onNext(key);
|
||||||
|
|
||||||
|
preferences.registerOnSharedPreferenceChangeListener(listener);
|
||||||
|
|
||||||
|
subscriber.add(Subscriptions.create(() -> preferences.unregisterOnSharedPreferenceChangeListener(listener)));
|
||||||
|
}).share();
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Create a boolean preference for {@code key}. Default is {@code false}. */
|
||||||
|
@CheckResult @NonNull
|
||||||
|
public Preference<Boolean> getBoolean(@NonNull String key) {
|
||||||
|
return getBoolean(key, DEFAULT_BOOLEAN);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Create a boolean preference for {@code key} with a default of {@code defaultValue}. */
|
||||||
|
@CheckResult @NonNull
|
||||||
|
public Preference<Boolean> getBoolean(@NonNull String key, @Nullable Boolean defaultValue) {
|
||||||
|
checkNotNull(key, "key == null");
|
||||||
|
return new Preference<>(preferences, key, defaultValue, BooleanAdapter.INSTANCE, keyChanges);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Create an enum preference for {@code key}. Default is {@code null}. */
|
||||||
|
@CheckResult @NonNull
|
||||||
|
public <T extends Enum<T>> Preference<T> getEnum(@NonNull String key,
|
||||||
|
@NonNull Class<T> enumClass) {
|
||||||
|
return getEnum(key, null, enumClass);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Create an enum preference for {@code key} with a default of {@code defaultValue}. */
|
||||||
|
@CheckResult @NonNull
|
||||||
|
public <T extends Enum<T>> Preference<T> getEnum(@NonNull String key, @Nullable T defaultValue,
|
||||||
|
@NonNull Class<T> enumClass) {
|
||||||
|
checkNotNull(key, "key == null");
|
||||||
|
checkNotNull(enumClass, "enumClass == null");
|
||||||
|
Preference.Adapter<T> adapter = new EnumAdapter<>(enumClass);
|
||||||
|
return new Preference<>(preferences, key, defaultValue, adapter, keyChanges);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Create a float preference for {@code key}. Default is {@code 0}. */
|
||||||
|
@CheckResult @NonNull
|
||||||
|
public Preference<Float> getFloat(@NonNull String key) {
|
||||||
|
return getFloat(key, DEFAULT_FLOAT);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Create a float preference for {@code key} with a default of {@code defaultValue}. */
|
||||||
|
@CheckResult @NonNull
|
||||||
|
public Preference<Float> getFloat(@NonNull String key, @Nullable Float defaultValue) {
|
||||||
|
checkNotNull(key, "key == null");
|
||||||
|
return new Preference<>(preferences, key, defaultValue, FloatAdapter.INSTANCE, keyChanges);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Create an integer preference for {@code key}. Default is {@code 0}. */
|
||||||
|
@CheckResult @NonNull
|
||||||
|
public Preference<Integer> getInteger(@NonNull String key) {
|
||||||
|
//noinspection UnnecessaryBoxing
|
||||||
|
return getInteger(key, DEFAULT_INTEGER);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Create an integer preference for {@code key} with a default of {@code defaultValue}. */
|
||||||
|
@CheckResult @NonNull
|
||||||
|
public Preference<Integer> getInteger(@NonNull String key, @Nullable Integer defaultValue) {
|
||||||
|
checkNotNull(key, "key == null");
|
||||||
|
return new Preference<>(preferences, key, defaultValue, IntegerAdapter.INSTANCE, keyChanges);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Create a long preference for {@code key}. Default is {@code 0}. */
|
||||||
|
@CheckResult @NonNull
|
||||||
|
public Preference<Long> getLong(@NonNull String key) {
|
||||||
|
//noinspection UnnecessaryBoxing
|
||||||
|
return getLong(key, DEFAULT_LONG);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Create a long preference for {@code key} with a default of {@code defaultValue}. */
|
||||||
|
@CheckResult @NonNull
|
||||||
|
public Preference<Long> getLong(@NonNull String key, @Nullable Long defaultValue) {
|
||||||
|
checkNotNull(key, "key == null");
|
||||||
|
return new Preference<>(preferences, key, defaultValue, LongAdapter.INSTANCE, keyChanges);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Create a preference of type {@code T} for {@code key}. Default is {@code null}. */
|
||||||
|
@CheckResult @NonNull
|
||||||
|
public <T> Preference<T> getObject(@NonNull String key, @NonNull Preference.Adapter<T> adapter) {
|
||||||
|
return getObject(key, null, adapter);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a preference for type {@code T} for {@code key} with a default of {@code defaultValue}.
|
||||||
|
*/
|
||||||
|
@CheckResult @NonNull
|
||||||
|
public <T> Preference<T> getObject(@NonNull String key, @Nullable T defaultValue,
|
||||||
|
@NonNull Preference.Adapter<T> adapter) {
|
||||||
|
checkNotNull(key, "key == null");
|
||||||
|
checkNotNull(adapter, "adapter == null");
|
||||||
|
return new Preference<>(preferences, key, defaultValue, adapter, keyChanges);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Create a string preference for {@code key}. Default is {@code null}. */
|
||||||
|
@CheckResult @NonNull
|
||||||
|
public Preference<String> getString(@NonNull String key) {
|
||||||
|
return getString(key, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Create a string preference for {@code key} with a default of {@code defaultValue}. */
|
||||||
|
@CheckResult @NonNull
|
||||||
|
public Preference<String> getString(@NonNull String key, @Nullable String defaultValue) {
|
||||||
|
checkNotNull(key, "key == null");
|
||||||
|
return new Preference<>(preferences, key, defaultValue, StringAdapter.INSTANCE, keyChanges);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Create a string set preference for {@code key}. Default is an empty set. */
|
||||||
|
@TargetApi(HONEYCOMB)
|
||||||
|
@CheckResult @NonNull
|
||||||
|
public Preference<Set<String>> getStringSet(@NonNull String key) {
|
||||||
|
return getStringSet(key, Collections.emptySet());
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Create a string set preference for {@code key} with a default of {@code defaultValue}. */
|
||||||
|
@TargetApi(HONEYCOMB)
|
||||||
|
@CheckResult @NonNull
|
||||||
|
public Preference<Set<String>> getStringSet(@NonNull String key,
|
||||||
|
@NonNull Set<String> defaultValue) {
|
||||||
|
checkNotNull(key, "key == null");
|
||||||
|
return new Preference<>(preferences, key, defaultValue, StringSetAdapter.INSTANCE, keyChanges);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
package com.f2prateek.rx.preferences;
|
||||||
|
|
||||||
|
import android.content.SharedPreferences;
|
||||||
|
import android.support.annotation.NonNull;
|
||||||
|
|
||||||
|
final class StringAdapter implements Preference.Adapter<String> {
|
||||||
|
static final StringAdapter INSTANCE = new StringAdapter();
|
||||||
|
|
||||||
|
@Override public String get(@NonNull String key, @NonNull SharedPreferences preferences) {
|
||||||
|
return preferences.getString(key, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override public void set(@NonNull String key, @NonNull String value,
|
||||||
|
@NonNull SharedPreferences.Editor editor) {
|
||||||
|
editor.putString(key, value);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,22 @@
|
|||||||
|
package com.f2prateek.rx.preferences;
|
||||||
|
|
||||||
|
import android.annotation.TargetApi;
|
||||||
|
import android.content.SharedPreferences;
|
||||||
|
import android.support.annotation.NonNull;
|
||||||
|
import java.util.Set;
|
||||||
|
|
||||||
|
import static android.os.Build.VERSION_CODES.HONEYCOMB;
|
||||||
|
|
||||||
|
@TargetApi(HONEYCOMB)
|
||||||
|
final class StringSetAdapter implements Preference.Adapter<Set<String>> {
|
||||||
|
static final StringSetAdapter INSTANCE = new StringSetAdapter();
|
||||||
|
|
||||||
|
@Override public Set<String> get(@NonNull String key, @NonNull SharedPreferences preferences) {
|
||||||
|
return preferences.getStringSet(key, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override public void set(@NonNull String key, @NonNull Set<String> value,
|
||||||
|
@NonNull SharedPreferences.Editor editor) {
|
||||||
|
editor.putStringSet(key, value);
|
||||||
|
}
|
||||||
|
}
|
||||||
+7
@@ -0,0 +1,7 @@
|
|||||||
|
package com.github.pwittchen.reactivenetwork.library
|
||||||
|
|
||||||
|
import android.net.NetworkInfo
|
||||||
|
|
||||||
|
class Connectivity {
|
||||||
|
val state = NetworkInfo.State.CONNECTED
|
||||||
|
}
|
||||||
+14
@@ -0,0 +1,14 @@
|
|||||||
|
package com.github.pwittchen.reactivenetwork.library
|
||||||
|
|
||||||
|
import android.content.Context
|
||||||
|
import rx.Observable
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Created by nulldev on 12/29/16.
|
||||||
|
*/
|
||||||
|
|
||||||
|
class ReactiveNetwork {
|
||||||
|
companion object {
|
||||||
|
fun observeNetworkConnectivity(context: Context) = Observable.just(Connectivity())!!
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -13,7 +13,6 @@
|
|||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package com.squareup.duktape;
|
package com.squareup.duktape;
|
||||||
|
|
||||||
import kotlin.NotImplementedError;
|
import kotlin.NotImplementedError;
|
||||||
@@ -23,18 +22,11 @@ import javax.script.ScriptEngineManager;
|
|||||||
import javax.script.ScriptException;
|
import javax.script.ScriptException;
|
||||||
import java.io.Closeable;
|
import java.io.Closeable;
|
||||||
|
|
||||||
/* Note (March 2021):
|
/** A simple EMCAScript (Javascript) interpreter. */
|
||||||
* The old implementation for duktape-android used the nashorn engine which is deprecated.
|
|
||||||
* This new implementation uses Mozilla's Rhino: https://github.com/mozilla/rhino
|
|
||||||
*/
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A simple EMCAScript (Javascript) interpreter.
|
|
||||||
*/
|
|
||||||
public final class Duktape implements Closeable, AutoCloseable {
|
public final class Duktape implements Closeable, AutoCloseable {
|
||||||
|
|
||||||
private ScriptEngineManager factory = new ScriptEngineManager();
|
private ScriptEngineManager factory = new ScriptEngineManager();
|
||||||
private ScriptEngine engine = factory.getEngineByName("rhino");
|
private ScriptEngine engine = factory.getEngineByName("JavaScript");
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new interpreter instance. Calls to this method <strong>must</strong> matched with
|
* Create a new interpreter instance. Calls to this method <strong>must</strong> matched with
|
||||||
@@ -46,6 +38,17 @@ public final class Duktape implements Closeable, AutoCloseable {
|
|||||||
|
|
||||||
private Duktape() {}
|
private Duktape() {}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Evaluate {@code script} and return a result. {@code fileName} will be used in error
|
||||||
|
* reporting. Note that the result must be one of the supported Java types or the call will
|
||||||
|
* return null.
|
||||||
|
*
|
||||||
|
* @throws DuktapeException if there is an error evaluating the script.
|
||||||
|
*/
|
||||||
|
public synchronized Object evaluate(String script, String fileName) {
|
||||||
|
throw new NotImplementedError("Not implemented!");
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Evaluate {@code script} and return a result. Note that the result must be one of the
|
* Evaluate {@code script} and return a result. Note that the result must be one of the
|
||||||
* supported Java types or the call will return null.
|
* supported Java types or the call will return null.
|
||||||
|
|||||||
@@ -1,30 +0,0 @@
|
|||||||
package com.squareup.duktape;
|
|
||||||
|
|
||||||
/* part of tachiyomi-extensions which is licensed under Apache License Version 2.0 */
|
|
||||||
|
|
||||||
import java.io.Closeable;
|
|
||||||
import java.io.IOException;
|
|
||||||
|
|
||||||
/** This is the reference Duktape stub that tachiyomi's extensions depend on.
|
|
||||||
* Intended to be used as a reference.
|
|
||||||
*/
|
|
||||||
public class DuktapeStub implements Closeable {
|
|
||||||
|
|
||||||
public static Duktape create() {
|
|
||||||
throw new RuntimeException("Stub!");
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public synchronized void close() throws IOException {
|
|
||||||
throw new RuntimeException("Stub!");
|
|
||||||
}
|
|
||||||
|
|
||||||
public synchronized Object evaluate(String script) {
|
|
||||||
throw new RuntimeException("Stub!");
|
|
||||||
}
|
|
||||||
|
|
||||||
public synchronized <T> void set(String name, Class<T> type, T object) {
|
|
||||||
throw new RuntimeException("Stub!");
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
+1
-1
@@ -5,4 +5,4 @@ import android.arch.persistence.db.framework.FrameworkSQLiteOpenHelperFactory
|
|||||||
|
|
||||||
class RequerySQLiteOpenHelperFactory {
|
class RequerySQLiteOpenHelperFactory {
|
||||||
fun create(configuration: SupportSQLiteOpenHelper.Configuration) = FrameworkSQLiteOpenHelperFactory().create(configuration)
|
fun create(configuration: SupportSQLiteOpenHelper.Configuration) = FrameworkSQLiteOpenHelperFactory().create(configuration)
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
package kotlinx.coroutines.experimental.android
|
||||||
|
|
||||||
|
import kotlinx.coroutines.GlobalScope
|
||||||
|
|
||||||
|
val UI = GlobalScope.coroutineContext
|
||||||
@@ -1,6 +1,5 @@
|
|||||||
package rx.android.schedulers
|
package rx.android.schedulers
|
||||||
|
|
||||||
import rx.Scheduler
|
|
||||||
import rx.internal.schedulers.ImmediateScheduler
|
import rx.internal.schedulers.ImmediateScheduler
|
||||||
|
|
||||||
class AndroidSchedulers {
|
class AndroidSchedulers {
|
||||||
@@ -12,7 +11,6 @@ class AndroidSchedulers {
|
|||||||
/**
|
/**
|
||||||
* Simulated main thread scheduler
|
* Simulated main thread scheduler
|
||||||
*/
|
*/
|
||||||
@JvmStatic
|
fun mainThread() = mainThreadScheduler
|
||||||
fun mainThread(): Scheduler = mainThreadScheduler
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -14,4 +14,4 @@ class AndroidCompat {
|
|||||||
application.attach(context)
|
application.attach(context)
|
||||||
application.onCreate()
|
application.onCreate()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -2,6 +2,7 @@ package xyz.nulldev.androidcompat
|
|||||||
|
|
||||||
import org.kodein.di.DI
|
import org.kodein.di.DI
|
||||||
import org.kodein.di.conf.global
|
import org.kodein.di.conf.global
|
||||||
|
import xyz.nulldev.androidcompat.bytecode.ModApplier
|
||||||
import xyz.nulldev.androidcompat.config.ApplicationInfoConfigModule
|
import xyz.nulldev.androidcompat.config.ApplicationInfoConfigModule
|
||||||
import xyz.nulldev.androidcompat.config.FilesConfigModule
|
import xyz.nulldev.androidcompat.config.FilesConfigModule
|
||||||
import xyz.nulldev.androidcompat.config.SystemConfigModule
|
import xyz.nulldev.androidcompat.config.SystemConfigModule
|
||||||
@@ -11,17 +12,19 @@ import xyz.nulldev.ts.config.GlobalConfigManager
|
|||||||
* Initializes the Android compatibility module
|
* Initializes the Android compatibility module
|
||||||
*/
|
*/
|
||||||
class AndroidCompatInitializer {
|
class AndroidCompatInitializer {
|
||||||
|
|
||||||
|
val modApplier by lazy { ModApplier() }
|
||||||
|
|
||||||
fun init() {
|
fun init() {
|
||||||
|
modApplier.apply()
|
||||||
|
|
||||||
DI.global.addImport(AndroidCompatModule().create())
|
DI.global.addImport(AndroidCompatModule().create())
|
||||||
|
|
||||||
// Register config modules
|
//Register config modules
|
||||||
GlobalConfigManager.registerModules(
|
GlobalConfigManager.registerModules(
|
||||||
FilesConfigModule.register(GlobalConfigManager.config),
|
FilesConfigModule.register(GlobalConfigManager.config),
|
||||||
ApplicationInfoConfigModule.register(GlobalConfigManager.config),
|
ApplicationInfoConfigModule.register(GlobalConfigManager.config),
|
||||||
SystemConfigModule.register(GlobalConfigManager.config)
|
SystemConfigModule.register(GlobalConfigManager.config)
|
||||||
)
|
)
|
||||||
|
|
||||||
// Set some properties extensions use
|
|
||||||
System.setProperty("http.agent", "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36")
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ class AndroidCompatModule {
|
|||||||
|
|
||||||
bind<PackageController>() with singleton { PackageController() }
|
bind<PackageController>() with singleton { PackageController() }
|
||||||
|
|
||||||
// Context
|
//Context
|
||||||
bind<CustomContext>() with singleton { CustomContext() }
|
bind<CustomContext>() with singleton { CustomContext() }
|
||||||
bind<Context>() with singleton {
|
bind<Context>() with singleton {
|
||||||
val context: Context by DI.global.instance<CustomContext>()
|
val context: Context by DI.global.instance<CustomContext>()
|
||||||
|
|||||||
+13
-10
@@ -38,7 +38,7 @@ import org.slf4j.Logger;
|
|||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
import xyz.nulldev.androidcompat.info.ApplicationInfoImpl;
|
import xyz.nulldev.androidcompat.info.ApplicationInfoImpl;
|
||||||
import xyz.nulldev.androidcompat.io.AndroidFiles;
|
import xyz.nulldev.androidcompat.io.AndroidFiles;
|
||||||
import xyz.nulldev.androidcompat.io.sharedprefs.JavaSharedPreferences;
|
import xyz.nulldev.androidcompat.io.sharedprefs.JsonSharedPreferences;
|
||||||
import xyz.nulldev.androidcompat.service.ServiceSupport;
|
import xyz.nulldev.androidcompat.service.ServiceSupport;
|
||||||
import xyz.nulldev.androidcompat.util.KodeinGlobalHelper;
|
import xyz.nulldev.androidcompat.util.KodeinGlobalHelper;
|
||||||
|
|
||||||
@@ -50,9 +50,10 @@ import java.util.Map;
|
|||||||
/**
|
/**
|
||||||
* Custom context implementation.
|
* Custom context implementation.
|
||||||
*
|
*
|
||||||
|
* TODO Deal with packagemanager for extension sources
|
||||||
*/
|
*/
|
||||||
public class CustomContext extends Context implements DIAware {
|
public class CustomContext extends Context implements DIAware {
|
||||||
private final DI kodein;
|
private DI kodein;
|
||||||
public CustomContext() {
|
public CustomContext() {
|
||||||
this(KodeinGlobalHelper.kodein());
|
this(KodeinGlobalHelper.kodein());
|
||||||
}
|
}
|
||||||
@@ -164,22 +165,23 @@ public class CustomContext extends Context implements DIAware {
|
|||||||
/** Fake shared prefs! **/
|
/** Fake shared prefs! **/
|
||||||
private Map<String, SharedPreferences> prefs = new HashMap<>(); //Cache
|
private Map<String, SharedPreferences> prefs = new HashMap<>(); //Cache
|
||||||
|
|
||||||
|
private File sharedPrefsFileFromString(String s) {
|
||||||
|
return new File(androidFiles.getPrefsDir(), s + ".json");
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public synchronized SharedPreferences getSharedPreferences(String s, int i) {
|
public synchronized SharedPreferences getSharedPreferences(String s, int i) {
|
||||||
SharedPreferences preferences = prefs.get(s);
|
SharedPreferences preferences = prefs.get(s);
|
||||||
//Create new shared preferences if one does not exist
|
//Create new shared preferences if one does not exist
|
||||||
if(preferences == null) {
|
if(preferences == null) {
|
||||||
preferences = new JavaSharedPreferences(s);
|
preferences = getSharedPreferences(sharedPrefsFileFromString(s), i);
|
||||||
prefs.put(s, preferences);
|
prefs.put(s, preferences);
|
||||||
}
|
}
|
||||||
return preferences;
|
return preferences;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
public SharedPreferences getSharedPreferences(File file, int mode) {
|
||||||
public SharedPreferences getSharedPreferences(@NotNull File file, int mode) {
|
return new JsonSharedPreferences(file);
|
||||||
String path = file.getAbsolutePath().replace('\\', '/');
|
|
||||||
int firstSlash = path.indexOf("/");
|
|
||||||
return new JavaSharedPreferences(path.substring(firstSlash));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -189,8 +191,8 @@ public class CustomContext extends Context implements DIAware {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean deleteSharedPreferences(String name) {
|
public boolean deleteSharedPreferences(String name) {
|
||||||
JavaSharedPreferences item = (JavaSharedPreferences) prefs.remove(name);
|
prefs.remove(name);
|
||||||
return item.deleteAll();
|
return sharedPrefsFileFromString(name).delete();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -733,3 +735,4 @@ public class CustomContext extends Context implements DIAware {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,22 @@
|
|||||||
|
package xyz.nulldev.androidcompat.bytecode
|
||||||
|
|
||||||
|
import javassist.CtClass
|
||||||
|
import mu.KotlinLogging
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Applies Javassist modifications
|
||||||
|
*/
|
||||||
|
|
||||||
|
class ModApplier {
|
||||||
|
|
||||||
|
val logger = KotlinLogging.logger {}
|
||||||
|
|
||||||
|
fun apply() {
|
||||||
|
logger.info { "Applying Javassist mods..." }
|
||||||
|
val modifiedClasses = mutableListOf<CtClass>()
|
||||||
|
|
||||||
|
modifiedClasses.forEach {
|
||||||
|
it.toClass()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
+4
-5
@@ -1,7 +1,6 @@
|
|||||||
package xyz.nulldev.androidcompat.config
|
package xyz.nulldev.androidcompat.config
|
||||||
|
|
||||||
import com.typesafe.config.Config
|
import com.typesafe.config.Config
|
||||||
import io.github.config4k.getValue
|
|
||||||
import xyz.nulldev.ts.config.ConfigModule
|
import xyz.nulldev.ts.config.ConfigModule
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -9,11 +8,11 @@ import xyz.nulldev.ts.config.ConfigModule
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
class ApplicationInfoConfigModule(config: Config) : ConfigModule(config) {
|
class ApplicationInfoConfigModule(config: Config) : ConfigModule(config) {
|
||||||
val packageName: String by config
|
val packageName = config.getString("packageName")!!
|
||||||
val debug: Boolean by config
|
val debug = config.getBoolean("debug")
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
fun register(config: Config) =
|
fun register(config: Config)
|
||||||
ApplicationInfoConfigModule(config.getConfig("android.app"))
|
= ApplicationInfoConfigModule(config.getConfig("android.app"))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
package xyz.nulldev.androidcompat.config
|
package xyz.nulldev.androidcompat.config
|
||||||
|
|
||||||
import com.typesafe.config.Config
|
import com.typesafe.config.Config
|
||||||
import io.github.config4k.getValue
|
|
||||||
import xyz.nulldev.ts.config.ConfigModule
|
import xyz.nulldev.ts.config.ConfigModule
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -9,26 +8,26 @@ import xyz.nulldev.ts.config.ConfigModule
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
class FilesConfigModule(config: Config) : ConfigModule(config) {
|
class FilesConfigModule(config: Config) : ConfigModule(config) {
|
||||||
val dataDir: String by config
|
val dataDir = config.getString("dataDir")!!
|
||||||
val filesDir: String by config
|
val filesDir = config.getString("filesDir")!!
|
||||||
val noBackupFilesDir: String by config
|
val noBackupFilesDir = config.getString("noBackupFilesDir")!!
|
||||||
val externalFilesDirs: MutableList<String> by config
|
val externalFilesDirs: MutableList<String> = config.getStringList("externalFilesDirs")!!
|
||||||
val obbDirs: MutableList<String> by config
|
val obbDirs: MutableList<String> = config.getStringList("obbDirs")!!
|
||||||
val cacheDir: String by config
|
val cacheDir = config.getString("cacheDir")!!
|
||||||
val codeCacheDir: String by config
|
val codeCacheDir = config.getString("codeCacheDir")!!
|
||||||
val externalCacheDirs: MutableList<String> by config
|
val externalCacheDirs: MutableList<String> = config.getStringList("externalCacheDirs")!!
|
||||||
val externalMediaDirs: MutableList<String> by config
|
val externalMediaDirs: MutableList<String> = config.getStringList("externalMediaDirs")!!
|
||||||
val rootDir: String by config
|
val rootDir = config.getString("rootDir")!!
|
||||||
val externalStorageDir: String by config
|
val externalStorageDir = config.getString("externalStorageDir")!!
|
||||||
val downloadCacheDir: String by config
|
val downloadCacheDir = config.getString("downloadCacheDir")!!
|
||||||
val databasesDir: String by config
|
val databasesDir = config.getString("databasesDir")!!
|
||||||
|
|
||||||
val prefsDir: String by config
|
val prefsDir = config.getString("prefsDir")!!
|
||||||
|
|
||||||
val packageDir: String by config
|
val packageDir = config.getString("packageDir")!!
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
fun register(config: Config) =
|
fun register(config: Config)
|
||||||
FilesConfigModule(config.getConfig("android.files"))
|
= FilesConfigModule(config.getConfig("android.files"))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,11 +1,10 @@
|
|||||||
package xyz.nulldev.androidcompat.config
|
package xyz.nulldev.androidcompat.config
|
||||||
|
|
||||||
import com.typesafe.config.Config
|
import com.typesafe.config.Config
|
||||||
import io.github.config4k.getValue
|
|
||||||
import xyz.nulldev.ts.config.ConfigModule
|
import xyz.nulldev.ts.config.ConfigModule
|
||||||
|
|
||||||
class SystemConfigModule(val config: Config) : ConfigModule(config) {
|
class SystemConfigModule(val config: Config) : ConfigModule(config) {
|
||||||
val isDebuggable: Boolean by config
|
val isDebuggable = config.getBoolean("isDebuggable")
|
||||||
|
|
||||||
val propertyPrefix = "properties."
|
val propertyPrefix = "properties."
|
||||||
|
|
||||||
@@ -16,7 +15,7 @@ class SystemConfigModule(val config: Config) : ConfigModule(config) {
|
|||||||
fun hasProperty(property: String) = config.hasPath("$propertyPrefix$property")
|
fun hasProperty(property: String) = config.hasPath("$propertyPrefix$property")
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
fun register(config: Config) =
|
fun register(config: Config)
|
||||||
SystemConfigModule(config.getConfig("android.system"))
|
= SystemConfigModule(config.getConfig("android.system"))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,21 +4,11 @@ import java.io.InputStream
|
|||||||
import java.io.Reader
|
import java.io.Reader
|
||||||
import java.math.BigDecimal
|
import java.math.BigDecimal
|
||||||
import java.net.URL
|
import java.net.URL
|
||||||
|
import java.sql.*
|
||||||
import java.sql.Array
|
import java.sql.Array
|
||||||
import java.sql.Blob
|
|
||||||
import java.sql.Clob
|
|
||||||
import java.sql.Date
|
import java.sql.Date
|
||||||
import java.sql.NClob
|
import java.util.*
|
||||||
import java.sql.Ref
|
|
||||||
import java.sql.ResultSet
|
|
||||||
import java.sql.ResultSetMetaData
|
|
||||||
import java.sql.RowId
|
|
||||||
import java.sql.SQLXML
|
|
||||||
import java.sql.Time
|
|
||||||
import java.sql.Timestamp
|
|
||||||
import java.util.Calendar
|
|
||||||
|
|
||||||
@Suppress("UNCHECKED_CAST")
|
|
||||||
class ScrollableResultSet(val parent: ResultSet) : ResultSet by parent {
|
class ScrollableResultSet(val parent: ResultSet) : ResultSet by parent {
|
||||||
|
|
||||||
private val cachedContent = mutableListOf<ResultSetEntry>()
|
private val cachedContent = mutableListOf<ResultSetEntry>()
|
||||||
@@ -29,7 +19,7 @@ class ScrollableResultSet(val parent: ResultSet) : ResultSet by parent {
|
|||||||
|
|
||||||
val parentMetadata = parent.metaData
|
val parentMetadata = parent.metaData
|
||||||
val columnCount = parentMetadata.columnCount
|
val columnCount = parentMetadata.columnCount
|
||||||
val columnLabels = (1..columnCount).map {
|
val columnLabels = (1 .. columnCount).map {
|
||||||
parentMetadata.getColumnLabel(it)
|
parentMetadata.getColumnLabel(it)
|
||||||
}.toTypedArray()
|
}.toTypedArray()
|
||||||
|
|
||||||
@@ -41,10 +31,10 @@ class ScrollableResultSet(val parent: ResultSet) : ResultSet by parent {
|
|||||||
// How can we optimize this?
|
// How can we optimize this?
|
||||||
// We need to fill the cache as the set is loaded
|
// We need to fill the cache as the set is loaded
|
||||||
|
|
||||||
// Fill cache
|
//Fill cache
|
||||||
while (parent.next()) {
|
while(parent.next()) {
|
||||||
cachedContent += ResultSetEntry().apply {
|
cachedContent += ResultSetEntry().apply {
|
||||||
for (i in 1..columnCount)
|
for(i in 1 .. columnCount)
|
||||||
data += parent.getObject(i)
|
data += parent.getObject(i)
|
||||||
}
|
}
|
||||||
resultSetLength++
|
resultSetLength++
|
||||||
@@ -60,8 +50,8 @@ class ScrollableResultSet(val parent: ResultSet) : ResultSet by parent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private fun internalMove(row: Int) {
|
private fun internalMove(row: Int) {
|
||||||
if (cursor < 0) cursor = 0
|
if(cursor < 0) cursor = 0
|
||||||
else if (cursor > resultSetLength + 1) cursor = resultSetLength + 1
|
else if(cursor > resultSetLength + 1) cursor = resultSetLength + 1
|
||||||
else cursor = row
|
else cursor = row
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -75,10 +65,10 @@ class ScrollableResultSet(val parent: ResultSet) : ResultSet by parent {
|
|||||||
return obj(cachedFindColumn(column))
|
return obj(cachedFindColumn(column))
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun cachedFindColumn(column: String?) =
|
private fun cachedFindColumn(column: String?)
|
||||||
columnCache.getOrPut(column!!, {
|
= columnCache.getOrPut(column!!, {
|
||||||
findColumn(column)
|
findColumn(column)
|
||||||
})
|
})
|
||||||
|
|
||||||
override fun getNClob(columnIndex: Int): NClob {
|
override fun getNClob(columnIndex: Int): NClob {
|
||||||
return obj(columnIndex) as NClob
|
return obj(columnIndex) as NClob
|
||||||
@@ -157,27 +147,27 @@ class ScrollableResultSet(val parent: ResultSet) : ResultSet by parent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
override fun getDate(columnIndex: Int): Date {
|
override fun getDate(columnIndex: Int): Date {
|
||||||
// TODO Maybe?
|
//TODO Maybe?
|
||||||
notImplemented()
|
notImplemented()
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun getDate(columnLabel: String?): Date {
|
override fun getDate(columnLabel: String?): Date {
|
||||||
// TODO Maybe?
|
//TODO Maybe?
|
||||||
notImplemented()
|
notImplemented()
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun getDate(columnIndex: Int, cal: Calendar?): Date {
|
override fun getDate(columnIndex: Int, cal: Calendar?): Date {
|
||||||
// TODO Maybe?
|
//TODO Maybe?
|
||||||
notImplemented()
|
notImplemented()
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun getDate(columnLabel: String?, cal: Calendar?): Date {
|
override fun getDate(columnLabel: String?, cal: Calendar?): Date {
|
||||||
// TODO Maybe?
|
//TODO Maybe?
|
||||||
notImplemented()
|
notImplemented()
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun beforeFirst() {
|
override fun beforeFirst() {
|
||||||
// TODO Maybe?
|
//TODO Maybe?
|
||||||
notImplemented()
|
notImplemented()
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -202,12 +192,12 @@ class ScrollableResultSet(val parent: ResultSet) : ResultSet by parent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
override fun getBigDecimal(columnIndex: Int, scale: Int): BigDecimal {
|
override fun getBigDecimal(columnIndex: Int, scale: Int): BigDecimal {
|
||||||
// TODO Maybe?
|
//TODO Maybe?
|
||||||
notImplemented()
|
notImplemented()
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun getBigDecimal(columnLabel: String?, scale: Int): BigDecimal {
|
override fun getBigDecimal(columnLabel: String?, scale: Int): BigDecimal {
|
||||||
// TODO Maybe?
|
//TODO Maybe?
|
||||||
notImplemented()
|
notImplemented()
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -236,22 +226,22 @@ class ScrollableResultSet(val parent: ResultSet) : ResultSet by parent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
override fun getTime(columnIndex: Int): Time {
|
override fun getTime(columnIndex: Int): Time {
|
||||||
// TODO Maybe?
|
//TODO Maybe?
|
||||||
notImplemented()
|
notImplemented()
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun getTime(columnLabel: String?): Time {
|
override fun getTime(columnLabel: String?): Time {
|
||||||
// TODO Maybe?
|
//TODO Maybe?
|
||||||
notImplemented()
|
notImplemented()
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun getTime(columnIndex: Int, cal: Calendar?): Time {
|
override fun getTime(columnIndex: Int, cal: Calendar?): Time {
|
||||||
// TODO Maybe?
|
//TODO Maybe?
|
||||||
notImplemented()
|
notImplemented()
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun getTime(columnLabel: String?, cal: Calendar?): Time {
|
override fun getTime(columnLabel: String?, cal: Calendar?): Time {
|
||||||
// TODO Maybe?
|
//TODO Maybe?
|
||||||
notImplemented()
|
notImplemented()
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -272,28 +262,28 @@ class ScrollableResultSet(val parent: ResultSet) : ResultSet by parent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
override fun absolute(row: Int): Boolean {
|
override fun absolute(row: Int): Boolean {
|
||||||
if (row > 0) {
|
if(row > 0) {
|
||||||
internalMove(row)
|
internalMove(row)
|
||||||
} else {
|
} else {
|
||||||
last()
|
last()
|
||||||
for (i in 1..row)
|
for(i in 1 .. row)
|
||||||
previous()
|
previous()
|
||||||
}
|
}
|
||||||
return cursorValid()
|
return cursorValid()
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun getSQLXML(columnIndex: Int): SQLXML? {
|
override fun getSQLXML(columnIndex: Int): SQLXML? {
|
||||||
// TODO Maybe?
|
//TODO Maybe?
|
||||||
notImplemented()
|
notImplemented()
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun getSQLXML(columnLabel: String?): SQLXML? {
|
override fun getSQLXML(columnLabel: String?): SQLXML? {
|
||||||
// TODO Maybe?
|
//TODO Maybe?
|
||||||
notImplemented()
|
notImplemented()
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun <T : Any?> unwrap(iface: Class<T>?): T {
|
override fun <T : Any?> unwrap(iface: Class<T>?): T {
|
||||||
if (thisIsWrapperFor(iface))
|
if(thisIsWrapperFor(iface))
|
||||||
return this as T
|
return this as T
|
||||||
else
|
else
|
||||||
return parent.unwrap(iface)
|
return parent.unwrap(iface)
|
||||||
@@ -426,12 +416,12 @@ class ScrollableResultSet(val parent: ResultSet) : ResultSet by parent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
override fun getBlob(columnIndex: Int): Blob {
|
override fun getBlob(columnIndex: Int): Blob {
|
||||||
// TODO Maybe?
|
//TODO Maybe?
|
||||||
notImplemented()
|
notImplemented()
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun getBlob(columnLabel: String?): Blob {
|
override fun getBlob(columnLabel: String?): Blob {
|
||||||
// TODO Maybe?
|
//TODO Maybe?
|
||||||
notImplemented()
|
notImplemented()
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -500,12 +490,12 @@ class ScrollableResultSet(val parent: ResultSet) : ResultSet by parent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
override fun getObject(columnIndex: Int, map: MutableMap<String, Class<*>>?): Any {
|
override fun getObject(columnIndex: Int, map: MutableMap<String, Class<*>>?): Any {
|
||||||
// TODO Maybe?
|
//TODO Maybe?
|
||||||
notImplemented()
|
notImplemented()
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun getObject(columnLabel: String?, map: MutableMap<String, Class<*>>?): Any {
|
override fun getObject(columnLabel: String?, map: MutableMap<String, Class<*>>?): Any {
|
||||||
// TODO Maybe?
|
//TODO Maybe?
|
||||||
notImplemented()
|
notImplemented()
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -531,9 +521,9 @@ class ScrollableResultSet(val parent: ResultSet) : ResultSet by parent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private fun castToLong(obj: Any?): Long {
|
private fun castToLong(obj: Any?): Long {
|
||||||
if (obj == null) return 0
|
if(obj == null) return 0
|
||||||
else if (obj is Long) return obj
|
else if(obj is Long) return obj
|
||||||
else if (obj is Number) return obj.toLong()
|
else if(obj is Number) return obj.toLong()
|
||||||
else throw IllegalStateException("Object is not a long!")
|
else throw IllegalStateException("Object is not a long!")
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -546,12 +536,12 @@ class ScrollableResultSet(val parent: ResultSet) : ResultSet by parent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
override fun getClob(columnIndex: Int): Clob {
|
override fun getClob(columnIndex: Int): Clob {
|
||||||
// TODO Maybe?
|
//TODO Maybe?
|
||||||
notImplemented()
|
notImplemented()
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun getClob(columnLabel: String?): Clob {
|
override fun getClob(columnLabel: String?): Clob {
|
||||||
// TODO Maybe?
|
//TODO Maybe?
|
||||||
notImplemented()
|
notImplemented()
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -604,12 +594,12 @@ class ScrollableResultSet(val parent: ResultSet) : ResultSet by parent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
override fun getArray(columnIndex: Int): Array {
|
override fun getArray(columnIndex: Int): Array {
|
||||||
// TODO Maybe?
|
//TODO Maybe?
|
||||||
notImplemented()
|
notImplemented()
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun getArray(columnLabel: String?): Array {
|
override fun getArray(columnLabel: String?): Array {
|
||||||
// TODO Maybe?
|
//TODO Maybe?
|
||||||
notImplemented()
|
notImplemented()
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -688,32 +678,32 @@ class ScrollableResultSet(val parent: ResultSet) : ResultSet by parent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
override fun getTimestamp(columnIndex: Int): Timestamp {
|
override fun getTimestamp(columnIndex: Int): Timestamp {
|
||||||
// TODO Maybe?
|
//TODO Maybe?
|
||||||
notImplemented()
|
notImplemented()
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun getTimestamp(columnLabel: String?): Timestamp {
|
override fun getTimestamp(columnLabel: String?): Timestamp {
|
||||||
// TODO Maybe?
|
//TODO Maybe?
|
||||||
notImplemented()
|
notImplemented()
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun getTimestamp(columnIndex: Int, cal: Calendar?): Timestamp {
|
override fun getTimestamp(columnIndex: Int, cal: Calendar?): Timestamp {
|
||||||
// TODO Maybe?
|
//TODO Maybe?
|
||||||
notImplemented()
|
notImplemented()
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun getTimestamp(columnLabel: String?, cal: Calendar?): Timestamp {
|
override fun getTimestamp(columnLabel: String?, cal: Calendar?): Timestamp {
|
||||||
// TODO Maybe?
|
//TODO Maybe?
|
||||||
notImplemented()
|
notImplemented()
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun getRef(columnIndex: Int): Ref {
|
override fun getRef(columnIndex: Int): Ref {
|
||||||
// TODO Maybe?
|
//TODO Maybe?
|
||||||
notImplemented()
|
notImplemented()
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun getRef(columnLabel: String?): Ref {
|
override fun getRef(columnLabel: String?): Ref {
|
||||||
// TODO Maybe?
|
//TODO Maybe?
|
||||||
notImplemented()
|
notImplemented()
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -792,12 +782,12 @@ class ScrollableResultSet(val parent: ResultSet) : ResultSet by parent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
override fun getRowId(columnIndex: Int): RowId {
|
override fun getRowId(columnIndex: Int): RowId {
|
||||||
// TODO Maybe?
|
//TODO Maybe?
|
||||||
notImplemented()
|
notImplemented()
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun getRowId(columnLabel: String?): RowId {
|
override fun getRowId(columnLabel: String?): RowId {
|
||||||
// TODO Maybe?
|
//TODO Maybe?
|
||||||
notImplemented()
|
notImplemented()
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -848,4 +838,4 @@ class ScrollableResultSet(val parent: ResultSet) : ResultSet by parent {
|
|||||||
class ResultSetEntry {
|
class ResultSetEntry {
|
||||||
val data = mutableListOf<Any?>()
|
val data = mutableListOf<Any?>()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
-177
@@ -1,177 +0,0 @@
|
|||||||
package xyz.nulldev.androidcompat.io.sharedprefs
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Copyright (C) Contributors to the Suwayomi project
|
|
||||||
*
|
|
||||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
||||||
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
||||||
|
|
||||||
import android.content.SharedPreferences
|
|
||||||
import com.russhwolf.settings.ExperimentalSettingsApi
|
|
||||||
import com.russhwolf.settings.ExperimentalSettingsImplementation
|
|
||||||
import com.russhwolf.settings.JvmPreferencesSettings
|
|
||||||
import com.russhwolf.settings.serialization.decodeValue
|
|
||||||
import com.russhwolf.settings.serialization.decodeValueOrNull
|
|
||||||
import com.russhwolf.settings.serialization.encodeValue
|
|
||||||
import kotlinx.serialization.ExperimentalSerializationApi
|
|
||||||
import kotlinx.serialization.SerializationException
|
|
||||||
import kotlinx.serialization.builtins.SetSerializer
|
|
||||||
import kotlinx.serialization.builtins.serializer
|
|
||||||
import java.util.prefs.PreferenceChangeListener
|
|
||||||
import java.util.prefs.Preferences
|
|
||||||
|
|
||||||
@OptIn(ExperimentalSettingsImplementation::class, ExperimentalSerializationApi::class, ExperimentalSettingsApi::class)
|
|
||||||
class JavaSharedPreferences(key: String) : SharedPreferences {
|
|
||||||
private val javaPreferences = Preferences.userRoot().node("suwayomi/tachidesk/$key")
|
|
||||||
private val preferences = JvmPreferencesSettings(javaPreferences)
|
|
||||||
private val listeners = mutableMapOf<SharedPreferences.OnSharedPreferenceChangeListener, PreferenceChangeListener>()
|
|
||||||
|
|
||||||
// TODO: 2021-05-29 Need to find a way to get this working with all pref types
|
|
||||||
override fun getAll(): MutableMap<String, *> {
|
|
||||||
return preferences.keys.associateWith { preferences.getStringOrNull(it) }.toMutableMap()
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun getString(key: String, defValue: String?): String? {
|
|
||||||
return if (defValue != null) {
|
|
||||||
preferences.getString(key, defValue)
|
|
||||||
} else {
|
|
||||||
preferences.getStringOrNull(key)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun getStringSet(key: String, defValues: Set<String>?): Set<String>? {
|
|
||||||
try {
|
|
||||||
return if (defValues != null) {
|
|
||||||
preferences.decodeValue(SetSerializer(String.serializer()), key, defValues)
|
|
||||||
} else {
|
|
||||||
preferences.decodeValueOrNull(SetSerializer(String.serializer()), key)
|
|
||||||
}
|
|
||||||
} catch (e: SerializationException) {
|
|
||||||
throw ClassCastException("$key was not a StringSet")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun getInt(key: String, defValue: Int): Int {
|
|
||||||
return preferences.getInt(key, defValue)
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun getLong(key: String, defValue: Long): Long {
|
|
||||||
return preferences.getLong(key, defValue)
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun getFloat(key: String, defValue: Float): Float {
|
|
||||||
return preferences.getFloat(key, defValue)
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun getBoolean(key: String, defValue: Boolean): Boolean {
|
|
||||||
return preferences.getBoolean(key, defValue)
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun contains(key: String): Boolean {
|
|
||||||
return key in preferences.keys
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun edit(): SharedPreferences.Editor {
|
|
||||||
return Editor(preferences)
|
|
||||||
}
|
|
||||||
|
|
||||||
class Editor(private val preferences: JvmPreferencesSettings) : SharedPreferences.Editor {
|
|
||||||
val itemsToAdd = mutableMapOf<String, Any>()
|
|
||||||
|
|
||||||
override fun putString(key: String, value: String?): SharedPreferences.Editor {
|
|
||||||
if (value != null) {
|
|
||||||
itemsToAdd[key] = value
|
|
||||||
} else {
|
|
||||||
remove(key)
|
|
||||||
}
|
|
||||||
return this
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun putStringSet(
|
|
||||||
key: String,
|
|
||||||
values: MutableSet<String>?
|
|
||||||
): SharedPreferences.Editor {
|
|
||||||
if (values != null) {
|
|
||||||
itemsToAdd[key] = values
|
|
||||||
} else {
|
|
||||||
remove(key)
|
|
||||||
}
|
|
||||||
return this
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun putInt(key: String, value: Int): SharedPreferences.Editor {
|
|
||||||
itemsToAdd[key] = value
|
|
||||||
return this
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun putLong(key: String, value: Long): SharedPreferences.Editor {
|
|
||||||
itemsToAdd[key] = value
|
|
||||||
return this
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun putFloat(key: String, value: Float): SharedPreferences.Editor {
|
|
||||||
itemsToAdd[key] = value
|
|
||||||
return this
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun putBoolean(key: String, value: Boolean): SharedPreferences.Editor {
|
|
||||||
itemsToAdd[key] = value
|
|
||||||
return this
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun remove(key: String): SharedPreferences.Editor {
|
|
||||||
itemsToAdd.remove(key)
|
|
||||||
return this
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun clear(): SharedPreferences.Editor {
|
|
||||||
itemsToAdd.clear()
|
|
||||||
return this
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun commit(): Boolean {
|
|
||||||
addToPreferences()
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun apply() {
|
|
||||||
addToPreferences()
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun addToPreferences() {
|
|
||||||
itemsToAdd.forEach { (key, value) ->
|
|
||||||
@Suppress("UNCHECKED_CAST")
|
|
||||||
when (value) {
|
|
||||||
is Set<*> -> preferences.encodeValue(SetSerializer(String.serializer()), key, value as Set<String>)
|
|
||||||
is String -> preferences.putString(key, value)
|
|
||||||
is Int -> preferences.putInt(key, value)
|
|
||||||
is Long -> preferences.putLong(key, value)
|
|
||||||
is Float -> preferences.putFloat(key, value)
|
|
||||||
is Double -> preferences.putDouble(key, value)
|
|
||||||
is Boolean -> preferences.putBoolean(key, value)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun registerOnSharedPreferenceChangeListener(listener: SharedPreferences.OnSharedPreferenceChangeListener) {
|
|
||||||
val javaListener = PreferenceChangeListener {
|
|
||||||
listener.onSharedPreferenceChanged(this, it.key)
|
|
||||||
}
|
|
||||||
listeners[listener] = javaListener
|
|
||||||
javaPreferences.addPreferenceChangeListener(javaListener)
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun unregisterOnSharedPreferenceChangeListener(listener: SharedPreferences.OnSharedPreferenceChangeListener) {
|
|
||||||
val registeredListener = listeners.remove(listener)
|
|
||||||
if (registeredListener != null) {
|
|
||||||
javaPreferences.removePreferenceChangeListener(registeredListener)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fun deleteAll(): Boolean {
|
|
||||||
javaPreferences.removeNode()
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
+1
-1
@@ -233,7 +233,7 @@ public class JsonSharedPreferences implements SharedPreferences {
|
|||||||
private JsonSharedPreferencesEditor() {
|
private JsonSharedPreferencesEditor() {
|
||||||
}
|
}
|
||||||
|
|
||||||
private void recordChange(String key) {
|
private void recordChange(String key) {
|
||||||
if (!affectedKeys.contains(key)) {
|
if (!affectedKeys.contains(key)) {
|
||||||
affectedKeys.add(key);
|
affectedKeys.add(key);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -14,13 +14,15 @@ import java.io.File
|
|||||||
import javax.imageio.ImageIO
|
import javax.imageio.ImageIO
|
||||||
import javax.xml.parsers.DocumentBuilderFactory
|
import javax.xml.parsers.DocumentBuilderFactory
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
data class InstalledPackage(val root: File) {
|
data class InstalledPackage(val root: File) {
|
||||||
val apk = File(root, "package.apk")
|
val apk = File(root, "package.apk")
|
||||||
val jar = File(root, "translated.jar")
|
val jar = File(root, "translated.jar")
|
||||||
val icon = File(root, "icon.png")
|
val icon = File(root, "icon.png")
|
||||||
|
|
||||||
val info: PackageInfo
|
val info: PackageInfo
|
||||||
get() = ApkParsers.getMetaInfo(apk).toPackageInfo(apk).also {
|
get() = ApkParsers.getMetaInfo(apk).toPackageInfo(root, apk).also {
|
||||||
val parsed = ApkFile(apk)
|
val parsed = ApkFile(apk)
|
||||||
val dbFactory = DocumentBuilderFactory.newInstance()
|
val dbFactory = DocumentBuilderFactory.newInstance()
|
||||||
val dBuilder = dbFactory.newDocumentBuilder()
|
val dBuilder = dbFactory.newDocumentBuilder()
|
||||||
@@ -38,24 +40,20 @@ data class InstalledPackage(val root: File) {
|
|||||||
}?.filter {
|
}?.filter {
|
||||||
it.tagName == "meta-data"
|
it.tagName == "meta-data"
|
||||||
}?.map {
|
}?.map {
|
||||||
putString(
|
putString(it.attributes.getNamedItem("android:name").nodeValue,
|
||||||
it.attributes.getNamedItem("android:name").nodeValue,
|
it.attributes.getNamedItem("android:value").nodeValue)
|
||||||
it.attributes.getNamedItem("android:value").nodeValue
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
it.signatures = (
|
it.signatures = (parsed.apkSingers.flatMap { it.certificateMetas }
|
||||||
parsed.apkSingers.flatMap { it.certificateMetas }
|
/*+ parsed.apkV2Singers.flatMap { it.certificateMetas }*/) // Blocked by: https://github.com/hsiafan/apk-parser/issues/72
|
||||||
/*+ parsed.apkV2Singers.flatMap { it.certificateMetas }*/
|
.map { Signature(it.data) }.toTypedArray()
|
||||||
) // Blocked by: https://github.com/hsiafan/apk-parser/issues/72
|
|
||||||
.map { Signature(it.data) }.toTypedArray()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fun verify(): Boolean {
|
fun verify(): Boolean {
|
||||||
val res = ApkVerifier.Builder(apk)
|
val res = ApkVerifier.Builder(apk)
|
||||||
.build()
|
.build()
|
||||||
.verify()
|
.verify()
|
||||||
|
|
||||||
return res.isVerified
|
return res.isVerified
|
||||||
}
|
}
|
||||||
@@ -71,7 +69,7 @@ data class InstalledPackage(val root: File) {
|
|||||||
}.sortedByDescending { it.width * it.height }.firstOrNull() ?: return
|
}.sortedByDescending { it.width * it.height }.firstOrNull() ?: return
|
||||||
|
|
||||||
ImageIO.write(read, "png", icon)
|
ImageIO.write(read, "png", icon)
|
||||||
} catch (e: Exception) {
|
} catch(e: Exception) {
|
||||||
icon.delete()
|
icon.delete()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -79,19 +77,17 @@ data class InstalledPackage(val root: File) {
|
|||||||
fun writeJar() {
|
fun writeJar() {
|
||||||
try {
|
try {
|
||||||
Dex2jar.from(apk).to(jar.toPath())
|
Dex2jar.from(apk).to(jar.toPath())
|
||||||
} catch (e: Exception) {
|
} catch(e: Exception) {
|
||||||
jar.delete()
|
jar.delete()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
companion object {
|
private fun NodeList.toList(): List<Node> {
|
||||||
fun NodeList.toList(): List<Node> {
|
val out = mutableListOf<Node>()
|
||||||
val out = mutableListOf<Node>()
|
|
||||||
|
|
||||||
for (i in 0 until length)
|
for(i in 0 until length)
|
||||||
out += item(i)
|
out += item(i)
|
||||||
|
|
||||||
return out
|
return out
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -48,7 +48,7 @@ class PackageController {
|
|||||||
if (!installed.jar.exists()) {
|
if (!installed.jar.exists()) {
|
||||||
throw IllegalStateException("Failed to translate APK dex!")
|
throw IllegalStateException("Failed to translate APK dex!")
|
||||||
}
|
}
|
||||||
} catch (t: Throwable) {
|
} catch(t: Throwable) {
|
||||||
root.deleteRecursively()
|
root.deleteRecursively()
|
||||||
throw t
|
throw t
|
||||||
}
|
}
|
||||||
@@ -63,7 +63,7 @@ class PackageController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fun deletePackage(pack: InstalledPackage) {
|
fun deletePackage(pack: InstalledPackage) {
|
||||||
if (!pack.root.exists()) error("Package was never installed!")
|
if(!pack.root.exists()) error("Package was never installed!")
|
||||||
|
|
||||||
val packageName = pack.info.packageName
|
val packageName = pack.info.packageName
|
||||||
pack.root.deleteRecursively()
|
pack.root.deleteRecursively()
|
||||||
@@ -74,7 +74,7 @@ class PackageController {
|
|||||||
|
|
||||||
fun findPackage(packageName: String): InstalledPackage? {
|
fun findPackage(packageName: String): InstalledPackage? {
|
||||||
val file = File(androidFiles.packagesDir, packageName)
|
val file = File(androidFiles.packagesDir, packageName)
|
||||||
return if (file.exists())
|
return if(file.exists())
|
||||||
InstalledPackage(file)
|
InstalledPackage(file)
|
||||||
else
|
else
|
||||||
null
|
null
|
||||||
@@ -84,4 +84,4 @@ class PackageController {
|
|||||||
val pkgName = ApkParsers.getMetaInfo(apkFile).packageName
|
val pkgName = ApkParsers.getMetaInfo(apkFile).packageName
|
||||||
return findPackage(pkgName)?.jar
|
return findPackage(pkgName)?.jar
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -6,7 +6,7 @@ import android.content.pm.PackageInfo
|
|||||||
import net.dongliu.apk.parser.bean.ApkMeta
|
import net.dongliu.apk.parser.bean.ApkMeta
|
||||||
import java.io.File
|
import java.io.File
|
||||||
|
|
||||||
fun ApkMeta.toPackageInfo(apk: File): PackageInfo {
|
fun ApkMeta.toPackageInfo(root: File, apk: File): PackageInfo {
|
||||||
return PackageInfo().also {
|
return PackageInfo().also {
|
||||||
it.packageName = packageName
|
it.packageName = packageName
|
||||||
it.versionCode = versionCode.toInt()
|
it.versionCode = versionCode.toInt()
|
||||||
@@ -24,4 +24,4 @@ fun ApkMeta.toPackageInfo(apk: File): PackageInfo {
|
|||||||
sourceDir = apk.absolutePath
|
sourceDir = apk.absolutePath
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
-249
@@ -1,249 +0,0 @@
|
|||||||
package xyz.nulldev.androidcompat.replace.java.text;
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Copyright (C) Contributors to the Suwayomi project
|
|
||||||
*
|
|
||||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
||||||
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
||||||
|
|
||||||
import com.ibm.icu.text.DisplayContext;
|
|
||||||
import com.ibm.icu.util.Currency;
|
|
||||||
import com.ibm.icu.util.CurrencyAmount;
|
|
||||||
import com.ibm.icu.util.ULocale;
|
|
||||||
|
|
||||||
import java.math.BigDecimal;
|
|
||||||
import java.math.BigInteger;
|
|
||||||
import java.text.AttributedCharacterIterator;
|
|
||||||
import java.text.FieldPosition;
|
|
||||||
import java.text.ParseException;
|
|
||||||
import java.text.ParsePosition;
|
|
||||||
import java.util.Locale;
|
|
||||||
|
|
||||||
public class NumberFormat extends java.text.NumberFormat {
|
|
||||||
private com.ibm.icu.text.NumberFormat delegate;
|
|
||||||
|
|
||||||
public NumberFormat(com.ibm.icu.text.NumberFormat delegate) {
|
|
||||||
this.delegate = delegate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public StringBuffer format(Object number, StringBuffer toAppendTo, FieldPosition pos) {
|
|
||||||
return delegate.format(number, toAppendTo, pos);
|
|
||||||
}
|
|
||||||
|
|
||||||
public String format(BigInteger number) {
|
|
||||||
return delegate.format(number);
|
|
||||||
}
|
|
||||||
|
|
||||||
public String format(BigDecimal number) {
|
|
||||||
return delegate.format(number);
|
|
||||||
}
|
|
||||||
|
|
||||||
public String format(com.ibm.icu.math.BigDecimal number) {
|
|
||||||
return delegate.format(number);
|
|
||||||
}
|
|
||||||
|
|
||||||
public String format(CurrencyAmount currAmt) {
|
|
||||||
return delegate.format(currAmt);
|
|
||||||
}
|
|
||||||
|
|
||||||
public StringBuffer format(double number, StringBuffer toAppendTo, FieldPosition pos) {
|
|
||||||
return delegate.format(number, toAppendTo, pos);
|
|
||||||
}
|
|
||||||
|
|
||||||
public StringBuffer format(long number, StringBuffer toAppendTo, FieldPosition pos) {
|
|
||||||
return delegate.format(number, toAppendTo, pos);
|
|
||||||
}
|
|
||||||
|
|
||||||
public StringBuffer format(BigInteger number, StringBuffer toAppendTo, FieldPosition pos) {
|
|
||||||
return delegate.format(number, toAppendTo, pos);
|
|
||||||
}
|
|
||||||
|
|
||||||
public StringBuffer format(BigDecimal number, StringBuffer toAppendTo, FieldPosition pos) {
|
|
||||||
return delegate.format(number, toAppendTo, pos);
|
|
||||||
}
|
|
||||||
|
|
||||||
public StringBuffer format(com.ibm.icu.math.BigDecimal number, StringBuffer toAppendTo, FieldPosition pos) {
|
|
||||||
return delegate.format(number, toAppendTo, pos);
|
|
||||||
}
|
|
||||||
|
|
||||||
public StringBuffer format(CurrencyAmount currAmt, StringBuffer toAppendTo, FieldPosition pos) {
|
|
||||||
return delegate.format(currAmt, toAppendTo, pos);
|
|
||||||
}
|
|
||||||
|
|
||||||
public Number parse(String text, ParsePosition parsePosition) {
|
|
||||||
return delegate.parse(text, parsePosition);
|
|
||||||
}
|
|
||||||
|
|
||||||
public Number parse(String text) throws ParseException {
|
|
||||||
return delegate.parse(text);
|
|
||||||
}
|
|
||||||
|
|
||||||
public CurrencyAmount parseCurrency(CharSequence text, ParsePosition pos) {
|
|
||||||
return delegate.parseCurrency(text, pos);
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isParseIntegerOnly() {
|
|
||||||
return delegate.isParseIntegerOnly();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setParseIntegerOnly(boolean value) {
|
|
||||||
delegate.setParseIntegerOnly(value);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setParseStrict(boolean value) {
|
|
||||||
delegate.setParseStrict(value);
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isParseStrict() {
|
|
||||||
return delegate.isParseStrict();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setContext(DisplayContext context) {
|
|
||||||
delegate.setContext(context);
|
|
||||||
}
|
|
||||||
|
|
||||||
public DisplayContext getContext(DisplayContext.Type type) {
|
|
||||||
return delegate.getContext(type);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static java.text.NumberFormat getInstance(Locale inLocale) {
|
|
||||||
return new NumberFormat(com.ibm.icu.text.NumberFormat.getInstance(inLocale));
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.text.NumberFormat getInstance(ULocale inLocale) {
|
|
||||||
return com.ibm.icu.text.NumberFormat.getInstance(inLocale);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.text.NumberFormat getInstance(int style) {
|
|
||||||
return com.ibm.icu.text.NumberFormat.getInstance(style);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.text.NumberFormat getInstance(Locale inLocale, int style) {
|
|
||||||
return com.ibm.icu.text.NumberFormat.getInstance(inLocale, style);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.text.NumberFormat getNumberInstance(ULocale inLocale) {
|
|
||||||
return com.ibm.icu.text.NumberFormat.getNumberInstance(inLocale);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.text.NumberFormat getIntegerInstance(ULocale inLocale) {
|
|
||||||
return com.ibm.icu.text.NumberFormat.getIntegerInstance(inLocale);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.text.NumberFormat getCurrencyInstance(ULocale inLocale) {
|
|
||||||
return com.ibm.icu.text.NumberFormat.getCurrencyInstance(inLocale);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.text.NumberFormat getPercentInstance(ULocale inLocale) {
|
|
||||||
return com.ibm.icu.text.NumberFormat.getPercentInstance(inLocale);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.text.NumberFormat getScientificInstance(ULocale inLocale) {
|
|
||||||
return com.ibm.icu.text.NumberFormat.getScientificInstance(inLocale);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static Locale[] getAvailableLocales() {
|
|
||||||
return com.ibm.icu.text.NumberFormat.getAvailableLocales();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static ULocale[] getAvailableULocales() {
|
|
||||||
return com.ibm.icu.text.NumberFormat.getAvailableULocales();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static Object registerFactory(com.ibm.icu.text.NumberFormat.NumberFormatFactory factory) {
|
|
||||||
return com.ibm.icu.text.NumberFormat.registerFactory(factory);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean unregister(Object registryKey) {
|
|
||||||
return com.ibm.icu.text.NumberFormat.unregister(registryKey);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int hashCode() {
|
|
||||||
return delegate.hashCode();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean equals(Object obj) {
|
|
||||||
return delegate.equals(obj);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public Object clone() {
|
|
||||||
return delegate.clone();
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isGroupingUsed() {
|
|
||||||
return delegate.isGroupingUsed();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setGroupingUsed(boolean newValue) {
|
|
||||||
delegate.setGroupingUsed(newValue);
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getMaximumIntegerDigits() {
|
|
||||||
return delegate.getMaximumIntegerDigits();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMaximumIntegerDigits(int newValue) {
|
|
||||||
delegate.setMaximumIntegerDigits(newValue);
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getMinimumIntegerDigits() {
|
|
||||||
return delegate.getMinimumIntegerDigits();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMinimumIntegerDigits(int newValue) {
|
|
||||||
delegate.setMinimumIntegerDigits(newValue);
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getMaximumFractionDigits() {
|
|
||||||
return delegate.getMaximumFractionDigits();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMaximumFractionDigits(int newValue) {
|
|
||||||
delegate.setMaximumFractionDigits(newValue);
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getMinimumFractionDigits() {
|
|
||||||
return delegate.getMinimumFractionDigits();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setMinimumFractionDigits(int newValue) {
|
|
||||||
delegate.setMinimumFractionDigits(newValue);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCurrency(Currency theCurrency) {
|
|
||||||
delegate.setCurrency(theCurrency);
|
|
||||||
}
|
|
||||||
|
|
||||||
public java.util.Currency getCurrency() {
|
|
||||||
return java.util.Currency.getInstance(delegate.getCurrency().getCurrencyCode());
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRoundingMode(int roundingMode) {
|
|
||||||
delegate.setRoundingMode(roundingMode);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.text.NumberFormat getInstance(ULocale desiredLocale, int choice) {
|
|
||||||
return com.ibm.icu.text.NumberFormat.getInstance(desiredLocale, choice);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public static String getPatternForStyle(ULocale forLocale, int choice) {
|
|
||||||
return com.ibm.icu.text.NumberFormat.getPatternForStyle(forLocale, choice);
|
|
||||||
}
|
|
||||||
|
|
||||||
public ULocale getLocale(ULocale.Type type) {
|
|
||||||
return delegate.getLocale(type);
|
|
||||||
}
|
|
||||||
|
|
||||||
public AttributedCharacterIterator formatToCharacterIterator(Object obj) {
|
|
||||||
return delegate.formatToCharacterIterator(obj);
|
|
||||||
}
|
|
||||||
|
|
||||||
public Object parseObject(String source) throws ParseException {
|
|
||||||
return delegate.parseObject(source);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-346
@@ -1,346 +0,0 @@
|
|||||||
package xyz.nulldev.androidcompat.replace.java.text;
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Copyright (C) Contributors to the Suwayomi project
|
|
||||||
*
|
|
||||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
||||||
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
||||||
|
|
||||||
import com.ibm.icu.text.DateFormatSymbols;
|
|
||||||
import com.ibm.icu.text.DisplayContext;
|
|
||||||
import com.ibm.icu.text.TimeZoneFormat;
|
|
||||||
import com.ibm.icu.util.ULocale;
|
|
||||||
import xyz.nulldev.androidcompat.replace.java.util.Calendar;
|
|
||||||
import xyz.nulldev.androidcompat.replace.java.util.TimeZone;
|
|
||||||
|
|
||||||
import java.text.*;
|
|
||||||
import java.util.Date;
|
|
||||||
import java.util.Locale;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Overridden to switch to Android implementation
|
|
||||||
*/
|
|
||||||
public class SimpleDateFormat extends java.text.DateFormat {
|
|
||||||
private com.ibm.icu.text.SimpleDateFormat delegate;
|
|
||||||
|
|
||||||
public SimpleDateFormat() {
|
|
||||||
delegate = new com.ibm.icu.text.SimpleDateFormat();
|
|
||||||
}
|
|
||||||
|
|
||||||
private SimpleDateFormat(com.ibm.icu.text.SimpleDateFormat delegate) {
|
|
||||||
this.delegate = delegate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public SimpleDateFormat(String pattern) {
|
|
||||||
delegate = new com.ibm.icu.text.SimpleDateFormat(pattern);
|
|
||||||
}
|
|
||||||
|
|
||||||
public SimpleDateFormat(String pattern, Locale loc) {
|
|
||||||
delegate = new com.ibm.icu.text.SimpleDateFormat(pattern, loc);
|
|
||||||
}
|
|
||||||
|
|
||||||
public SimpleDateFormat(String pattern, ULocale loc) {
|
|
||||||
delegate = new com.ibm.icu.text.SimpleDateFormat(pattern, loc);
|
|
||||||
}
|
|
||||||
|
|
||||||
public SimpleDateFormat(String pattern, String override, ULocale loc) {
|
|
||||||
delegate = new com.ibm.icu.text.SimpleDateFormat(pattern, override, loc);
|
|
||||||
}
|
|
||||||
|
|
||||||
public SimpleDateFormat(String pattern, DateFormatSymbols formatData) {
|
|
||||||
delegate = new com.ibm.icu.text.SimpleDateFormat(pattern, formatData);
|
|
||||||
}
|
|
||||||
|
|
||||||
public SimpleDateFormat(String pattern, DateFormatSymbols formatData, ULocale loc) {
|
|
||||||
delegate = new com.ibm.icu.text.SimpleDateFormat(pattern, formatData, loc);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public static SimpleDateFormat getInstance(com.ibm.icu.util.Calendar.FormatConfiguration formatConfig) {
|
|
||||||
return new SimpleDateFormat(com.ibm.icu.text.SimpleDateFormat.getInstance(formatConfig));
|
|
||||||
}
|
|
||||||
|
|
||||||
public void set2DigitYearStart(Date startDate) {
|
|
||||||
delegate.set2DigitYearStart(startDate);
|
|
||||||
}
|
|
||||||
|
|
||||||
public Date get2DigitYearStart() {
|
|
||||||
return delegate.get2DigitYearStart();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setContext(DisplayContext context) {
|
|
||||||
delegate.setContext(context);
|
|
||||||
}
|
|
||||||
|
|
||||||
public StringBuffer format(com.ibm.icu.util.Calendar cal, StringBuffer toAppendTo, FieldPosition pos) {
|
|
||||||
return delegate.format(cal, toAppendTo, pos);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setNumberFormat(com.ibm.icu.text.NumberFormat newNumberFormat) {
|
|
||||||
delegate.setNumberFormat(newNumberFormat);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void parse(String text, com.ibm.icu.util.Calendar cal, ParsePosition parsePos) {
|
|
||||||
delegate.parse(text, cal, parsePos);
|
|
||||||
}
|
|
||||||
|
|
||||||
public String toPattern() {
|
|
||||||
return delegate.toPattern();
|
|
||||||
}
|
|
||||||
|
|
||||||
public String toLocalizedPattern() {
|
|
||||||
return delegate.toLocalizedPattern();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void applyPattern(String pat) {
|
|
||||||
delegate.applyPattern(pat);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void applyLocalizedPattern(String pat) {
|
|
||||||
delegate.applyLocalizedPattern(pat);
|
|
||||||
}
|
|
||||||
|
|
||||||
public DateFormatSymbols getDateFormatSymbols() {
|
|
||||||
return delegate.getDateFormatSymbols();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setDateFormatSymbols(DateFormatSymbols newFormatSymbols) {
|
|
||||||
delegate.setDateFormatSymbols(newFormatSymbols);
|
|
||||||
}
|
|
||||||
|
|
||||||
public TimeZoneFormat getTimeZoneFormat() {
|
|
||||||
return delegate.getTimeZoneFormat();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTimeZoneFormat(TimeZoneFormat tzfmt) {
|
|
||||||
delegate.setTimeZoneFormat(tzfmt);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public Object clone() {
|
|
||||||
return delegate.clone();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int hashCode() {
|
|
||||||
return delegate.hashCode();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean equals(Object obj) {
|
|
||||||
return delegate.equals(obj);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public AttributedCharacterIterator formatToCharacterIterator(Object obj) {
|
|
||||||
return delegate.formatToCharacterIterator(obj);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public StringBuffer intervalFormatByAlgorithm(com.ibm.icu.util.Calendar fromCalendar, com.ibm.icu.util.Calendar toCalendar, StringBuffer appendTo, FieldPosition pos) throws IllegalArgumentException {
|
|
||||||
return delegate.intervalFormatByAlgorithm(fromCalendar, toCalendar, appendTo, pos);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setNumberFormat(String fields, com.ibm.icu.text.NumberFormat overrideNF) {
|
|
||||||
delegate.setNumberFormat(fields, overrideNF);
|
|
||||||
}
|
|
||||||
|
|
||||||
public com.ibm.icu.text.NumberFormat getNumberFormat(char field) {
|
|
||||||
return delegate.getNumberFormat(field);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public StringBuffer format(Date date, StringBuffer toAppendTo, FieldPosition fieldPosition) {
|
|
||||||
return delegate.format(date, toAppendTo, fieldPosition);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public Date parse(String text) throws ParseException {
|
|
||||||
return delegate.parse(text);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public Date parse(String text, ParsePosition pos) {
|
|
||||||
return delegate.parse(text, pos);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public Object parseObject(String source, ParsePosition pos) {
|
|
||||||
return delegate.parseObject(source, pos);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.text.DateFormat getTimeInstance(int style, ULocale locale) {
|
|
||||||
return com.ibm.icu.text.DateFormat.getTimeInstance(style, locale);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.text.DateFormat getDateInstance(int style, ULocale locale) {
|
|
||||||
return com.ibm.icu.text.DateFormat.getDateInstance(style, locale);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.text.DateFormat getDateTimeInstance(int dateStyle, int timeStyle, ULocale locale) {
|
|
||||||
return com.ibm.icu.text.DateFormat.getDateTimeInstance(dateStyle, timeStyle, locale);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static Locale[] getAvailableLocales() {
|
|
||||||
return com.ibm.icu.text.DateFormat.getAvailableLocales();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static ULocale[] getAvailableULocales() {
|
|
||||||
return com.ibm.icu.text.DateFormat.getAvailableULocales();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void setCalendar(java.util.Calendar newCalendar) {
|
|
||||||
com.ibm.icu.util.Calendar cal = com.ibm.icu.util.Calendar.getInstance(com.ibm.icu.util.TimeZone.getTimeZone(newCalendar.getTimeZone().getID()));
|
|
||||||
cal.setTimeInMillis(newCalendar.getTimeInMillis());
|
|
||||||
delegate.setCalendar(cal);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public java.util.Calendar getCalendar() {
|
|
||||||
return new Calendar(delegate.getCalendar());
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public java.text.NumberFormat getNumberFormat() {
|
|
||||||
return new NumberFormat(delegate.getNumberFormat());
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void setTimeZone(java.util.TimeZone zone) {
|
|
||||||
delegate.setTimeZone(com.ibm.icu.util.TimeZone.getTimeZone(zone.getID()));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public java.util.TimeZone getTimeZone() {
|
|
||||||
return new TimeZone(delegate.getTimeZone());
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void setLenient(boolean lenient) {
|
|
||||||
delegate.setLenient(lenient);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean isLenient() {
|
|
||||||
return delegate.isLenient();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setCalendarLenient(boolean lenient) {
|
|
||||||
delegate.setCalendarLenient(lenient);
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isCalendarLenient() {
|
|
||||||
return delegate.isCalendarLenient();
|
|
||||||
}
|
|
||||||
|
|
||||||
public com.ibm.icu.text.DateFormat setBooleanAttribute(com.ibm.icu.text.DateFormat.BooleanAttribute key, boolean value) {
|
|
||||||
return delegate.setBooleanAttribute(key, value);
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean getBooleanAttribute(com.ibm.icu.text.DateFormat.BooleanAttribute key) {
|
|
||||||
return delegate.getBooleanAttribute(key);
|
|
||||||
}
|
|
||||||
|
|
||||||
public DisplayContext getContext(DisplayContext.Type type) {
|
|
||||||
return delegate.getContext(type);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.text.DateFormat getDateInstance(com.ibm.icu.util.Calendar cal, int dateStyle, Locale locale) {
|
|
||||||
return com.ibm.icu.text.DateFormat.getDateInstance(cal, dateStyle, locale);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.text.DateFormat getDateInstance(com.ibm.icu.util.Calendar cal, int dateStyle, ULocale locale) {
|
|
||||||
return com.ibm.icu.text.DateFormat.getDateInstance(cal, dateStyle, locale);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.text.DateFormat getTimeInstance(com.ibm.icu.util.Calendar cal, int timeStyle, Locale locale) {
|
|
||||||
return com.ibm.icu.text.DateFormat.getTimeInstance(cal, timeStyle, locale);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.text.DateFormat getTimeInstance(com.ibm.icu.util.Calendar cal, int timeStyle, ULocale locale) {
|
|
||||||
return com.ibm.icu.text.DateFormat.getTimeInstance(cal, timeStyle, locale);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.text.DateFormat getDateTimeInstance(com.ibm.icu.util.Calendar cal, int dateStyle, int timeStyle, Locale locale) {
|
|
||||||
return com.ibm.icu.text.DateFormat.getDateTimeInstance(cal, dateStyle, timeStyle, locale);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.text.DateFormat getDateTimeInstance(com.ibm.icu.util.Calendar cal, int dateStyle, int timeStyle, ULocale locale) {
|
|
||||||
return com.ibm.icu.text.DateFormat.getDateTimeInstance(cal, dateStyle, timeStyle, locale);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.text.DateFormat getInstance(com.ibm.icu.util.Calendar cal, Locale locale) {
|
|
||||||
return com.ibm.icu.text.DateFormat.getInstance(cal, locale);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.text.DateFormat getInstance(com.ibm.icu.util.Calendar cal, ULocale locale) {
|
|
||||||
return com.ibm.icu.text.DateFormat.getInstance(cal, locale);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.text.DateFormat getInstance(com.ibm.icu.util.Calendar cal) {
|
|
||||||
return com.ibm.icu.text.DateFormat.getInstance(cal);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.text.DateFormat getDateInstance(com.ibm.icu.util.Calendar cal, int dateStyle) {
|
|
||||||
return com.ibm.icu.text.DateFormat.getDateInstance(cal, dateStyle);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.text.DateFormat getTimeInstance(com.ibm.icu.util.Calendar cal, int timeStyle) {
|
|
||||||
return com.ibm.icu.text.DateFormat.getTimeInstance(cal, timeStyle);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.text.DateFormat getDateTimeInstance(com.ibm.icu.util.Calendar cal, int dateStyle, int timeStyle) {
|
|
||||||
return com.ibm.icu.text.DateFormat.getDateTimeInstance(cal, dateStyle, timeStyle);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.text.DateFormat getInstanceForSkeleton(String skeleton) {
|
|
||||||
return com.ibm.icu.text.DateFormat.getInstanceForSkeleton(skeleton);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.text.DateFormat getInstanceForSkeleton(String skeleton, Locale locale) {
|
|
||||||
return com.ibm.icu.text.DateFormat.getInstanceForSkeleton(skeleton, locale);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.text.DateFormat getInstanceForSkeleton(String skeleton, ULocale locale) {
|
|
||||||
return com.ibm.icu.text.DateFormat.getInstanceForSkeleton(skeleton, locale);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.text.DateFormat getInstanceForSkeleton(com.ibm.icu.util.Calendar cal, String skeleton, Locale locale) {
|
|
||||||
return com.ibm.icu.text.DateFormat.getInstanceForSkeleton(cal, skeleton, locale);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.text.DateFormat getInstanceForSkeleton(com.ibm.icu.util.Calendar cal, String skeleton, ULocale locale) {
|
|
||||||
return com.ibm.icu.text.DateFormat.getInstanceForSkeleton(cal, skeleton, locale);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.text.DateFormat getPatternInstance(String skeleton) {
|
|
||||||
return com.ibm.icu.text.DateFormat.getPatternInstance(skeleton);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.text.DateFormat getPatternInstance(String skeleton, Locale locale) {
|
|
||||||
return com.ibm.icu.text.DateFormat.getPatternInstance(skeleton, locale);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.text.DateFormat getPatternInstance(String skeleton, ULocale locale) {
|
|
||||||
return com.ibm.icu.text.DateFormat.getPatternInstance(skeleton, locale);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.text.DateFormat getPatternInstance(com.ibm.icu.util.Calendar cal, String skeleton, Locale locale) {
|
|
||||||
return com.ibm.icu.text.DateFormat.getPatternInstance(cal, skeleton, locale);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.text.DateFormat getPatternInstance(com.ibm.icu.util.Calendar cal, String skeleton, ULocale locale) {
|
|
||||||
return com.ibm.icu.text.DateFormat.getPatternInstance(cal, skeleton, locale);
|
|
||||||
}
|
|
||||||
|
|
||||||
public ULocale getLocale(ULocale.Type type) {
|
|
||||||
return delegate.getLocale(type);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public Object parseObject(String source) throws ParseException {
|
|
||||||
return delegate.parseObject(source);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-294
@@ -1,294 +0,0 @@
|
|||||||
package xyz.nulldev.androidcompat.replace.java.util;
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Copyright (C) Contributors to the Suwayomi project
|
|
||||||
*
|
|
||||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
||||||
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
||||||
|
|
||||||
import com.ibm.icu.text.DateFormat;
|
|
||||||
import com.ibm.icu.util.ULocale;
|
|
||||||
|
|
||||||
import java.util.Date;
|
|
||||||
import java.util.Locale;
|
|
||||||
|
|
||||||
public class Calendar extends java.util.Calendar {
|
|
||||||
private com.ibm.icu.util.Calendar delegate;
|
|
||||||
|
|
||||||
public Calendar(com.ibm.icu.util.Calendar delegate) {
|
|
||||||
this.delegate = delegate;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static java.util.Calendar getInstance() {
|
|
||||||
return new Calendar(com.ibm.icu.util.Calendar.getInstance());
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.util.Calendar getInstance(com.ibm.icu.util.TimeZone zone) {
|
|
||||||
return com.ibm.icu.util.Calendar.getInstance(zone);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static java.util.Calendar getInstance(Locale aLocale) {
|
|
||||||
return new Calendar(com.ibm.icu.util.Calendar.getInstance(aLocale));
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.util.Calendar getInstance(ULocale locale) {
|
|
||||||
return com.ibm.icu.util.Calendar.getInstance(locale);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.util.Calendar getInstance(com.ibm.icu.util.TimeZone zone, Locale aLocale) {
|
|
||||||
return com.ibm.icu.util.Calendar.getInstance(zone, aLocale);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.util.Calendar getInstance(com.ibm.icu.util.TimeZone zone, ULocale locale) {
|
|
||||||
return com.ibm.icu.util.Calendar.getInstance(zone, locale);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static Locale[] getAvailableLocales() {
|
|
||||||
return com.ibm.icu.util.Calendar.getAvailableLocales();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void computeTime() {}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void computeFields() {}
|
|
||||||
|
|
||||||
public static ULocale[] getAvailableULocales() {
|
|
||||||
return com.ibm.icu.util.Calendar.getAvailableULocales();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static String[] getKeywordValuesForLocale(String key, ULocale locale, boolean commonlyUsed) {
|
|
||||||
return com.ibm.icu.util.Calendar.getKeywordValuesForLocale(key, locale, commonlyUsed);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public long getTimeInMillis() {
|
|
||||||
return delegate.getTimeInMillis();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void setTimeInMillis(long millis) {
|
|
||||||
delegate.setTimeInMillis(millis);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public int getRelatedYear() {
|
|
||||||
return delegate.getRelatedYear();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public void setRelatedYear(int year) {
|
|
||||||
delegate.setRelatedYear(year);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean equals(Object obj) {
|
|
||||||
return delegate.equals(obj);
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isEquivalentTo(com.ibm.icu.util.Calendar other) {
|
|
||||||
return delegate.isEquivalentTo(other);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int hashCode() {
|
|
||||||
return delegate.hashCode();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean before(Object when) {
|
|
||||||
return delegate.before(when);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean after(Object when) {
|
|
||||||
return delegate.after(when);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int getActualMaximum(int field) {
|
|
||||||
return delegate.getActualMaximum(field);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int getActualMinimum(int field) {
|
|
||||||
return delegate.getActualMinimum(field);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void roll(int field, int amount) {
|
|
||||||
delegate.roll(field, amount);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void add(int field, int amount) {
|
|
||||||
delegate.add(field, amount);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void roll(int field, boolean up) {
|
|
||||||
roll(field, up ? 1 : -1);
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getDisplayName(Locale loc) {
|
|
||||||
return delegate.getDisplayName(loc);
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getDisplayName(ULocale loc) {
|
|
||||||
return delegate.getDisplayName(loc);
|
|
||||||
}
|
|
||||||
|
|
||||||
public int compareTo(com.ibm.icu.util.Calendar that) {
|
|
||||||
return delegate.compareTo(that);
|
|
||||||
}
|
|
||||||
|
|
||||||
public DateFormat getDateTimeFormat(int dateStyle, int timeStyle, Locale loc) {
|
|
||||||
return delegate.getDateTimeFormat(dateStyle, timeStyle, loc);
|
|
||||||
}
|
|
||||||
|
|
||||||
public DateFormat getDateTimeFormat(int dateStyle, int timeStyle, ULocale loc) {
|
|
||||||
return delegate.getDateTimeFormat(dateStyle, timeStyle, loc);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public static String getDateTimePattern(com.ibm.icu.util.Calendar cal, ULocale uLocale, int dateStyle) {
|
|
||||||
return com.ibm.icu.util.Calendar.getDateTimePattern(cal, uLocale, dateStyle);
|
|
||||||
}
|
|
||||||
|
|
||||||
public int fieldDifference(Date when, int field) {
|
|
||||||
return delegate.fieldDifference(when, field);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTimeZone(com.ibm.icu.util.TimeZone value) {
|
|
||||||
delegate.setTimeZone(value);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public java.util.TimeZone getTimeZone() {
|
|
||||||
return new TimeZone(delegate.getTimeZone());
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void setLenient(boolean lenient) {
|
|
||||||
delegate.setLenient(lenient);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean isLenient() {
|
|
||||||
return delegate.isLenient();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRepeatedWallTimeOption(int option) {
|
|
||||||
delegate.setRepeatedWallTimeOption(option);
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getRepeatedWallTimeOption() {
|
|
||||||
return delegate.getRepeatedWallTimeOption();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setSkippedWallTimeOption(int option) {
|
|
||||||
delegate.setSkippedWallTimeOption(option);
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getSkippedWallTimeOption() {
|
|
||||||
return delegate.getSkippedWallTimeOption();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void setFirstDayOfWeek(int value) {
|
|
||||||
delegate.setFirstDayOfWeek(value);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int getFirstDayOfWeek() {
|
|
||||||
return delegate.getFirstDayOfWeek();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void setMinimalDaysInFirstWeek(int value) {
|
|
||||||
delegate.setMinimalDaysInFirstWeek(value);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int getMinimalDaysInFirstWeek() {
|
|
||||||
return delegate.getMinimalDaysInFirstWeek();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int getMinimum(int field) {
|
|
||||||
return delegate.getMinimum(field);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int getMaximum(int field) {
|
|
||||||
return delegate.getMaximum(field);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int getGreatestMinimum(int field) {
|
|
||||||
return delegate.getGreatestMinimum(field);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int getLeastMaximum(int field) {
|
|
||||||
return delegate.getLeastMaximum(field);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public int getDayOfWeekType(int dayOfWeek) {
|
|
||||||
return delegate.getDayOfWeekType(dayOfWeek);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public int getWeekendTransition(int dayOfWeek) {
|
|
||||||
return delegate.getWeekendTransition(dayOfWeek);
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isWeekend(Date date) {
|
|
||||||
return delegate.isWeekend(date);
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isWeekend() {
|
|
||||||
return delegate.isWeekend();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public Object clone() {
|
|
||||||
return delegate.clone();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return delegate.toString();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.util.Calendar.WeekData getWeekDataForRegion(String region) {
|
|
||||||
return com.ibm.icu.util.Calendar.getWeekDataForRegion(region);
|
|
||||||
}
|
|
||||||
|
|
||||||
public com.ibm.icu.util.Calendar.WeekData getWeekData() {
|
|
||||||
return delegate.getWeekData();
|
|
||||||
}
|
|
||||||
|
|
||||||
public com.ibm.icu.util.Calendar setWeekData(com.ibm.icu.util.Calendar.WeekData wdata) {
|
|
||||||
return delegate.setWeekData(wdata);
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getFieldCount() {
|
|
||||||
return delegate.getFieldCount();
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getType() {
|
|
||||||
return delegate.getType();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Deprecated
|
|
||||||
public boolean haveDefaultCentury() {
|
|
||||||
return delegate.haveDefaultCentury();
|
|
||||||
}
|
|
||||||
|
|
||||||
public ULocale getLocale(ULocale.Type type) {
|
|
||||||
return delegate.getLocale(type);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
-196
@@ -1,196 +0,0 @@
|
|||||||
package xyz.nulldev.androidcompat.replace.java.util;
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Copyright (C) Contributors to the Suwayomi project
|
|
||||||
*
|
|
||||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
||||||
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
||||||
|
|
||||||
import com.ibm.icu.util.ULocale;
|
|
||||||
|
|
||||||
import java.util.Date;
|
|
||||||
import java.util.Locale;
|
|
||||||
import java.util.Set;
|
|
||||||
|
|
||||||
public class TimeZone extends java.util.TimeZone {
|
|
||||||
private com.ibm.icu.util.TimeZone delegate;
|
|
||||||
|
|
||||||
public TimeZone(com.ibm.icu.util.TimeZone delegate) {
|
|
||||||
this.delegate = delegate;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int getOffset(int era, int year, int month, int day, int dayOfWeek, int milliseconds) {
|
|
||||||
return delegate.getOffset(era, year, month, day, dayOfWeek, milliseconds);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int getOffset(long date) {
|
|
||||||
return delegate.getOffset(date);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void getOffset(long date, boolean local, int[] offsets) {
|
|
||||||
delegate.getOffset(date, local, offsets);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void setRawOffset(int offsetMillis) {
|
|
||||||
delegate.setRawOffset(offsetMillis);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int getRawOffset() {
|
|
||||||
return delegate.getRawOffset();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String getID() {
|
|
||||||
return delegate.getID();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void setID(String ID) {
|
|
||||||
delegate.setID(ID);
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getDisplayName(ULocale locale) {
|
|
||||||
return delegate.getDisplayName(locale);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String getDisplayName(boolean daylight, int style, Locale locale) {
|
|
||||||
return delegate.getDisplayName(daylight, style, locale);
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getDisplayName(boolean daylight, int style, ULocale locale) {
|
|
||||||
return delegate.getDisplayName(daylight, style, locale);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int getDSTSavings() {
|
|
||||||
return delegate.getDSTSavings();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean useDaylightTime() {
|
|
||||||
return delegate.useDaylightTime();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean observesDaylightTime() {
|
|
||||||
return delegate.observesDaylightTime();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean inDaylightTime(Date date) {
|
|
||||||
return delegate.inDaylightTime(date);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static java.util.TimeZone getTimeZone(String ID) {
|
|
||||||
return new TimeZone(com.ibm.icu.util.TimeZone.getTimeZone(ID));
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.util.TimeZone getFrozenTimeZone(String ID) {
|
|
||||||
return com.ibm.icu.util.TimeZone.getFrozenTimeZone(ID);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static com.ibm.icu.util.TimeZone getTimeZone(String ID, int type) {
|
|
||||||
return com.ibm.icu.util.TimeZone.getTimeZone(ID, type);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void setDefaultTimeZoneType(int type) {
|
|
||||||
com.ibm.icu.util.TimeZone.setDefaultTimeZoneType(type);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static int getDefaultTimeZoneType() {
|
|
||||||
return com.ibm.icu.util.TimeZone.getDefaultTimeZoneType();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static Set<String> getAvailableIDs(com.ibm.icu.util.TimeZone.SystemTimeZoneType zoneType, String region, Integer rawOffset) {
|
|
||||||
return com.ibm.icu.util.TimeZone.getAvailableIDs(zoneType, region, rawOffset);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static String[] getAvailableIDs(int rawOffset) {
|
|
||||||
return com.ibm.icu.util.TimeZone.getAvailableIDs(rawOffset);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static String[] getAvailableIDs(String country) {
|
|
||||||
return com.ibm.icu.util.TimeZone.getAvailableIDs(country);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static String[] getAvailableIDs() {
|
|
||||||
return com.ibm.icu.util.TimeZone.getAvailableIDs();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static int countEquivalentIDs(String id) {
|
|
||||||
return com.ibm.icu.util.TimeZone.countEquivalentIDs(id);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static String getEquivalentID(String id, int index) {
|
|
||||||
return com.ibm.icu.util.TimeZone.getEquivalentID(id, index);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static java.util.TimeZone getDefault() {
|
|
||||||
return new TimeZone(com.ibm.icu.util.TimeZone.getDefault());
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void setDefault(com.ibm.icu.util.TimeZone tz) {
|
|
||||||
com.ibm.icu.util.TimeZone.setDefault(tz);
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean hasSameRules(com.ibm.icu.util.TimeZone other) {
|
|
||||||
return delegate.hasSameRules(other);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public Object clone() {
|
|
||||||
return delegate.clone();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean equals(Object obj) {
|
|
||||||
return delegate.equals(obj);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int hashCode() {
|
|
||||||
return delegate.hashCode();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static String getTZDataVersion() {
|
|
||||||
return com.ibm.icu.util.TimeZone.getTZDataVersion();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static String getCanonicalID(String id) {
|
|
||||||
return com.ibm.icu.util.TimeZone.getCanonicalID(id);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static String getCanonicalID(String id, boolean[] isSystemID) {
|
|
||||||
return com.ibm.icu.util.TimeZone.getCanonicalID(id, isSystemID);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static String getRegion(String id) {
|
|
||||||
return com.ibm.icu.util.TimeZone.getRegion(id);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static String getWindowsID(String id) {
|
|
||||||
return com.ibm.icu.util.TimeZone.getWindowsID(id);
|
|
||||||
}
|
|
||||||
|
|
||||||
public static String getIDForWindowsID(String winid, String region) {
|
|
||||||
return com.ibm.icu.util.TimeZone.getIDForWindowsID(winid, region);
|
|
||||||
}
|
|
||||||
|
|
||||||
public boolean isFrozen() {
|
|
||||||
return delegate.isFrozen();
|
|
||||||
}
|
|
||||||
|
|
||||||
public com.ibm.icu.util.TimeZone freeze() {
|
|
||||||
return delegate.freeze();
|
|
||||||
}
|
|
||||||
|
|
||||||
public com.ibm.icu.util.TimeZone cloneAsThawed() {
|
|
||||||
return delegate.cloneAsThawed();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -24,4 +24,4 @@ interface Resource {
|
|||||||
fun getType(): Class<out Resource>
|
fun getType(): Class<out Resource>
|
||||||
|
|
||||||
fun getValue(): Any?
|
fun getValue(): Any?
|
||||||
}
|
}
|
||||||
@@ -18,7 +18,7 @@ class ServiceSupport {
|
|||||||
|
|
||||||
private val logger = KotlinLogging.logger {}
|
private val logger = KotlinLogging.logger {}
|
||||||
|
|
||||||
fun startService(@Suppress("UNUSED_PARAMETER") context: Context, intent: Intent) {
|
fun startService(context: Context, intent: Intent) {
|
||||||
val name = intentToClassName(intent)
|
val name = intentToClassName(intent)
|
||||||
|
|
||||||
logger.debug { "Starting service: $name" }
|
logger.debug { "Starting service: $name" }
|
||||||
@@ -27,15 +27,15 @@ class ServiceSupport {
|
|||||||
|
|
||||||
runningServices[name] = service
|
runningServices[name] = service
|
||||||
|
|
||||||
// Setup service
|
//Setup service
|
||||||
thread {
|
thread {
|
||||||
callOnCreate(service)
|
callOnCreate(service)
|
||||||
// TODO Handle more complex cases
|
//TODO Handle more complex cases
|
||||||
service.onStartCommand(intent, 0, 0)
|
service.onStartCommand(intent, 0, 0)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fun stopService(@Suppress("UNUSED_PARAMETER") context: Context, intent: Intent) {
|
fun stopService(context: Context, intent: Intent) {
|
||||||
val name = intentToClassName(intent)
|
val name = intentToClassName(intent)
|
||||||
stopService(name)
|
stopService(name)
|
||||||
}
|
}
|
||||||
@@ -43,7 +43,7 @@ class ServiceSupport {
|
|||||||
fun stopService(name: String) {
|
fun stopService(name: String) {
|
||||||
logger.debug { "Stopping service: $name" }
|
logger.debug { "Stopping service: $name" }
|
||||||
val service = runningServices.remove(name)
|
val service = runningServices.remove(name)
|
||||||
if (service == null) {
|
if(service == null) {
|
||||||
logger.warn { "An attempt was made to stop a service that is not running: $name" }
|
logger.warn { "An attempt was made to stop a service that is not running: $name" }
|
||||||
} else {
|
} else {
|
||||||
thread {
|
thread {
|
||||||
@@ -63,6 +63,6 @@ class ServiceSupport {
|
|||||||
fun serviceInstanceFromClass(className: String): Service {
|
fun serviceInstanceFromClass(className: String): Service {
|
||||||
val clazzObj = Class.forName(className)
|
val clazzObj = Class.forName(className)
|
||||||
return clazzObj.getDeclaredConstructor().newInstance() as? Service
|
return clazzObj.getDeclaredConstructor().newInstance() as? Service
|
||||||
?: throw IllegalArgumentException("$className is not a Service!")
|
?: throw IllegalArgumentException("$className is not a Service!")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -25,9 +25,8 @@ object KodeinGlobalHelper {
|
|||||||
* Get a dependency
|
* Get a dependency
|
||||||
*/
|
*/
|
||||||
@JvmStatic
|
@JvmStatic
|
||||||
@Suppress("UNCHECKED_CAST")
|
|
||||||
fun <T : Any> instance(type: Class<T>, kodein: DI? = null): T {
|
fun <T : Any> instance(type: Class<T>, kodein: DI? = null): T {
|
||||||
return when (type) {
|
return when(type) {
|
||||||
AndroidFiles::class.java -> {
|
AndroidFiles::class.java -> {
|
||||||
val instance: AndroidFiles by (kodein ?: kodein()).instance()
|
val instance: AndroidFiles by (kodein ?: kodein()).instance()
|
||||||
instance as T
|
instance as T
|
||||||
@@ -64,4 +63,5 @@ object KodeinGlobalHelper {
|
|||||||
fun <T : Any> instance(type: Class<T>): T {
|
fun <T : Any> instance(type: Class<T>): T {
|
||||||
return instance(type, null)
|
return instance(type, null)
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,12 +1,36 @@
|
|||||||
# AndroidComapt Root dir
|
|
||||||
androidcompat.rootDir = androidcompat-root
|
|
||||||
|
|
||||||
####################### `android.files` (FilesConfigModule) #######################
|
# Allow/disallow preference changes (useful for demos)
|
||||||
|
ts.server.allowConfigChanges = true
|
||||||
|
|
||||||
|
# Enable the WebUI? Note: The API and multi-user sync server ui will remain available even if the WebUI is disabled
|
||||||
|
ts.server.enableWebUi = true
|
||||||
|
|
||||||
|
# 'true' to use the old, buggy/memory-leaking WebUI
|
||||||
|
ts.server.useOldWebUi = false
|
||||||
|
|
||||||
|
# 'true' to pretty print all JSON API responses
|
||||||
|
ts.server.prettyPrintApi = false
|
||||||
|
|
||||||
|
# List of blacklisted/whitelisted API endpoints/operation IDs
|
||||||
|
ts.server.disabledApiEndpoints = []
|
||||||
|
ts.server.enabledApiEndpoints = []
|
||||||
|
|
||||||
|
# Message to print in the console when the API has finished booting
|
||||||
|
ts.server.httpInitializedPrintMessage = ""
|
||||||
|
|
||||||
|
# Use external folder for static files
|
||||||
|
ts.server.useExternalStaticFiles = false
|
||||||
|
ts.server.externalStaticFilesFolder = ""
|
||||||
|
|
||||||
|
# Root storage dir
|
||||||
|
ts.server.rootDir = tachiserver-data
|
||||||
|
# Dir to store JVM patches
|
||||||
|
ts.server.patchesDir = ${ts.server.rootDir}/patches
|
||||||
|
|
||||||
# Storage dir for the emulated Android app
|
# Storage dir for the emulated Android app
|
||||||
android.files.rootDir = ${androidcompat.rootDir}/appdata
|
android.files.rootDir = ${ts.server.rootDir}/android-compat/appdata
|
||||||
# External storage dir for the emulated Android app's
|
# External storage dir for the emulated Android app's
|
||||||
android.files.externalStorageDir = ${androidcompat.rootDir}/extappdata
|
android.files.externalStorageDir = ${ts.server.rootDir}/android-compat/extappdata
|
||||||
|
|
||||||
# Internal Android directories
|
# Internal Android directories
|
||||||
android.files.dataDir = ${android.files.rootDir}/data
|
android.files.dataDir = ${android.files.rootDir}/data
|
||||||
@@ -24,16 +48,37 @@ android.files.externalCacheDirs = [${android.files.externalStorageDir}/cache]
|
|||||||
android.files.externalMediaDirs = [${android.files.externalStorageDir}/media]
|
android.files.externalMediaDirs = [${android.files.externalStorageDir}/media]
|
||||||
android.files.downloadCacheDir = ${android.files.externalStorageDir}/downloadCache
|
android.files.downloadCacheDir = ${android.files.externalStorageDir}/downloadCache
|
||||||
|
|
||||||
android.files.packageDir = ${androidcompat.rootDir}/android-compat/packages
|
android.files.packageDir = ${ts.server.rootDir}/android-compat/packages
|
||||||
|
|
||||||
####################### `android.app` (ApplicationInfoConfigModule) #######################
|
|
||||||
|
|
||||||
# Emulated Android app package name
|
# Emulated Android app package name
|
||||||
android.app.packageName = eu.kanade.tachiyomi
|
android.app.packageName = eu.kanade.tachiyomi
|
||||||
# Debug mode for the emulated Android app
|
# Debug mode for the emulated Android app
|
||||||
android.app.debug = true
|
android.app.debug = true
|
||||||
|
|
||||||
####################### `android.system` (SystemConfigModule) #######################
|
|
||||||
|
|
||||||
# Whether or not the emulated Android system is debuggable
|
# Whether or not the emulated Android system is debuggable
|
||||||
android.system.isDebuggable = true
|
android.system.isDebuggable = true
|
||||||
|
|
||||||
|
# Is the multi-user sync server enabled? Does not affect the single-user sync server included in the API.
|
||||||
|
ts.syncd.enable = false
|
||||||
|
|
||||||
|
# The URL of this server (displayed in the sync server web ui)
|
||||||
|
ts.syncd.baseUrl = "http://example.com"
|
||||||
|
|
||||||
|
# 'true' to disable the API and only enable the multi-user sync server
|
||||||
|
ts.syncd.syncOnlyMode = false
|
||||||
|
|
||||||
|
# The root directory to store synchronized data
|
||||||
|
ts.syncd.rootDir = ${ts.server.rootDir}/sync/accounts
|
||||||
|
|
||||||
|
# Location to store config files for the sandbox
|
||||||
|
ts.syncd.sandboxedConfig = ${ts.server.rootDir}/sync/sandboxed_config.config
|
||||||
|
|
||||||
|
# Recaptcha stuff for signup/login
|
||||||
|
ts.syncd.recaptcha.siteKey = ""
|
||||||
|
ts.syncd.recaptcha.secret = ""
|
||||||
|
|
||||||
|
# Sync server display name
|
||||||
|
ts.syncd.name = "Tachiyomi sync server"
|
||||||
|
|
||||||
|
# Header used to forward the IP to the multi-user sync server if the server is behind a reverse proxy
|
||||||
|
ts.syncd.ipHeader = ""
|
||||||
|
|||||||
@@ -1,11 +0,0 @@
|
|||||||
# Server: v0.X.Y-next + WebUI: rXXX
|
|
||||||
## TL;DR
|
|
||||||
- N/A
|
|
||||||
|
|
||||||
## Tachidesk-Server Changelog
|
|
||||||
- N/A
|
|
||||||
|
|
||||||
## Tachidesk-WebUI Changelog
|
|
||||||
- N/A
|
|
||||||
|
|
||||||
|
|
||||||
-387
@@ -1,387 +0,0 @@
|
|||||||
# Server: v0.6.0 + WebUI: r893
|
|
||||||
## TL;DR
|
|
||||||
- WebUI design went through a whole lot of changes, including
|
|
||||||
- Got rid of hamburger menu, now we have a custom mobile navbar
|
|
||||||
- Unread and Download count badges
|
|
||||||
- Back button so better electron experience
|
|
||||||
- There's a whole lot more that I'm too lazy to explore.
|
|
||||||
- Completely removed anime support
|
|
||||||
- Fixed category reordering
|
|
||||||
- Added support for search filters(Server side only)
|
|
||||||
- Added support for updating library(Server side only)
|
|
||||||
- A bunch of API breaking changes(hence why bumping to v0.6.0)!
|
|
||||||
|
|
||||||
## Tachidesk-Server Changelog
|
|
||||||
- (r996) cleanup (by @AriaMoradi)
|
|
||||||
- (r999) better cleaning algorithm (by @AriaMoradi)
|
|
||||||
- (r1007) remove anime support (by @AriaMoradi)
|
|
||||||
- (r1009) Fix tests ([#226](https://github.com/Suwayomi/Tachidesk-Server/pull/226) by @ntbm)
|
|
||||||
- (r1010) Expose unread and download count of Manga in category api ([#227](https://github.com/Suwayomi/Tachidesk-Server/pull/227) by @ntbm)
|
|
||||||
- (r1011) add Cache Header to Thumbnail Response for improved library performance ([#228](https://github.com/Suwayomi/Tachidesk-Server/pull/228) by @ntbm)
|
|
||||||
- (r1013) Fix unread and download counts casing ([#230](https://github.com/Suwayomi/Tachidesk-Server/pull/230) by @Syer10)
|
|
||||||
- (r1014) Fix broken test ([#231](https://github.com/Suwayomi/Tachidesk-Server/pull/231) by @ntbm)
|
|
||||||
- (r1016) Fix category reorder Endpoint. Added Test for Category Reorder ([#232](https://github.com/Suwayomi/Tachidesk-Server/pull/232) by @ntbm)
|
|
||||||
- (r1017) change windows bundle names (by @AriaMoradi)
|
|
||||||
- (r1018) improve tests (by @AriaMoradi)
|
|
||||||
- (r1019) allow injecting Sources (by @AriaMoradi)
|
|
||||||
- (r1020) update (by @AriaMoradi)
|
|
||||||
- (r1021) fix credit (by @AriaMoradi)
|
|
||||||
- (r1022) cleanup (by @AriaMoradi)
|
|
||||||
- (r1023) refactor (by @AriaMoradi)
|
|
||||||
- (r1024) refactor (by @AriaMoradi)
|
|
||||||
- (r1025) implement Source Filters (by @AriaMoradi)
|
|
||||||
- (r1026) ignore build artifacts generated by teting (by @AriaMoradi)
|
|
||||||
- (r1027) convert request type (by @AriaMoradi)
|
|
||||||
- (r1028) Update CONTRIBUTING.md (by @AriaMoradi)
|
|
||||||
- (r1029) stop supporting zero based image storage ([#242](https://github.com/Suwayomi/src/pull/242) by @AriaMoradi)
|
|
||||||
- (r1030) add manga data to download queue object ([#244](https://github.com/Suwayomi/src/pull/244) by @AriaMoradi)
|
|
||||||
- (r1031) Fix Manga Meta, add Manga Meta test ([#245](https://github.com/Suwayomi/src/pull/245) by @Syer10)
|
|
||||||
- (r1032) add pagination to recentChapters ([#246](https://github.com/Suwayomi/src/pull/246) by @AriaMoradi)
|
|
||||||
- (r1033) update (by @AriaMoradi)
|
|
||||||
- (r1034) Implement Update of Library/Category ([#235](https://github.com/Suwayomi/src/pull/235) by @ntbm)
|
|
||||||
- (r1035) update (by @AriaMoradi)
|
|
||||||
- (r1036) Mention the existence of Mahor's Tachidesk-GTK (by @AriaMoradi)
|
|
||||||
- (r1037) Add a Kotlin DSL for endpoint documentation ([#249](https://github.com/Suwayomi/Tachidesk-Server/pull/249) by @Syer10)
|
|
||||||
- (r1038) update (by @AriaMoradi)
|
|
||||||
- (r1039) update (by @AriaMoradi)
|
|
||||||
- (r1040) cleanup directory names ([#251](https://github.com/Suwayomi/Tachidesk-Server/pull/251) by @AriaMoradi)
|
|
||||||
- (r1041) Fix first page not being detected correctly ([#253](https://github.com/Suwayomi/Tachidesk-Server/pull/253) by @AriaMoradi)
|
|
||||||
- (r1042) Update README.md (by @AriaMoradi)
|
|
||||||
- (r1043) Update README.md (by @AriaMoradi)
|
|
||||||
- (r1044) migrate application directories ([#255](https://github.com/Suwayomi/Tachidesk-Server/pull/255) by @AriaMoradi)
|
|
||||||
- (r1045) add support for MultiSelectListPreference ([#258](https://github.com/Suwayomi/Tachidesk-Server/pull/258) by @AriaMoradi)
|
|
||||||
- (r1046) empty searchTerm support ([#259](https://github.com/Suwayomi/Tachidesk-Server/pull/259) by @AriaMoradi)
|
|
||||||
|
|
||||||
|
|
||||||
## Tachidesk-WebUI
|
|
||||||
- (r821) add Permanent sidebar for desktop widths([#46](https://github.com/Suwayomi/Tachidesk-WebUI/pull/46) by @abhijeetChawla)
|
|
||||||
- (r822) Fix Local Source being missing (by @AriaMoradi)
|
|
||||||
- (r823) fix the ugliness of bare messages (by @AriaMoradi)
|
|
||||||
- (r824) add pull request template (by @AriaMoradi)
|
|
||||||
- (r825) add Unread badges ([#48](https://github.com/Suwayomi/Tachidesk-WebUI/pull/48) by @ntbm)
|
|
||||||
- (r826) Back button implementation ([#47](https://github.com/Suwayomi/Tachidesk-WebUI/pull/47) by @abhijeetChawla)
|
|
||||||
- (r827) remove redundant '/manga' prefix from paths (by @AriaMoradi)
|
|
||||||
- (r828) refactor (by @AriaMoradi)
|
|
||||||
- (r829) put Sources and Extensions in the same screen (by @AriaMoradi)
|
|
||||||
- (r830) Set Fallback Image for broken Thumbnails ([#50](https://github.com/Suwayomi/Tachidesk-WebUI/pull/50) by @ntbm)
|
|
||||||
- (r833) Apply Api changes for unread badges ([#52](https://github.com/Suwayomi/Tachidesk-WebUI/pull/52) by @ntbm)
|
|
||||||
- (r834) add EmptyView to DownloadQueue, refactro strings ([#53](https://github.com/Suwayomi/Tachidesk-WebUI/pull/53) by @abhijeetChawla)
|
|
||||||
- (r835) Bottom navbar for mobile ([#51](https://github.com/Suwayomi/Tachidesk-WebUI/pull/51) by @abhijeetChawla)
|
|
||||||
- (r836) Implement Unread Filter for Library ([#54](https://github.com/Suwayomi/Tachidesk-WebUI/pull/54) by @ntbm)
|
|
||||||
- (r837) fix navbar broken logic (by @AriaMoradi)
|
|
||||||
- (r838) fix navbar (by @AriaMoradi)
|
|
||||||
- (r839) refactor (by @AriaMoradi)
|
|
||||||
- (r840) refactor (by @AriaMoradi)
|
|
||||||
- (r841) refactor (by @AriaMoradi)
|
|
||||||
- (r842) show different NavbarItems depending on device width (by @AriaMoradi)
|
|
||||||
- (r843) remove text decoration (by @AriaMoradi)
|
|
||||||
- (r844) fancy icon based on if path selected (by @AriaMoradi)
|
|
||||||
- (r845) custom Extension icon, google's version is shit (by @AriaMoradi)
|
|
||||||
- (r846) refactor (by @AriaMoradi)
|
|
||||||
- (r848) move info (by @AriaMoradi)
|
|
||||||
- (r849) add Search to Library ([#55](https://github.com/Suwayomi/Tachidesk-WebUI/pull/55) by @ntbm)
|
|
||||||
- (r850) add aspect ratio to the manga card. ([#56](https://github.com/Suwayomi/Tachidesk-WebUI/pull/56) by @abhijeetChawla)
|
|
||||||
- (r851) better wording (by @AriaMoradi)
|
|
||||||
- (r852) reorder nav buttons (by @AriaMoradi)
|
|
||||||
- (r853) nicer gradient (by @AriaMoradi)
|
|
||||||
- (r854) refactor MangaCard (by @AriaMoradi)
|
|
||||||
- (r855) closes #58 (by @AriaMoradi
|
|
||||||
- (r856) Add Resume Reading FAB Manga screen ([#59](https://github.com/Suwayomi/Tachidesk-WebUI/pull/59) by @abhijeetChawla)
|
|
||||||
- (r857) add filter and badge for `downloadCount` ([#62](https://github.com/Suwayomi/Tachidesk-WebUI/pull/62) by @abhijeetChawla)
|
|
||||||
- (r858) add issue template (by @AriaMoradi)
|
|
||||||
- (r859) Change color of navbar in light mode ([#65](https://github.com/Suwayomi/Tachidesk-WebUI/pull/65) by @abhijeetChawla)
|
|
||||||
- (r860) fix manga FAB margins ([#66](https://github.com/Suwayomi/Tachidesk-WebUI/pull/66) by @AriaMoradi)
|
|
||||||
- (r861) remove extra scrollbar on mobile ([#67](https://github.com/Suwayomi/Tachidesk-WebUI/pull/67) by @AriaMoradi)
|
|
||||||
- (r862) Fix Bad messages in Library Appbar search ([#70](https://github.com/Suwayomi/Tachidesk-WebUI/pull/70) by @ntbm)
|
|
||||||
- (r863) ban the style prop (by @AriaMoradi)
|
|
||||||
- (r864) Updates pagination update ([#68](https://github.com/Suwayomi/Tachidesk-WebUI/pull/68) by @AriaMoradi)
|
|
||||||
- (r865) make the whole chapter card into a button ([#73](https://github.com/Suwayomi/Tachidesk-WebUI/pull/73) by @AriaMoradi)
|
|
||||||
- (r866) fix chapter actions not working if manga is not fetched online ([#74](https://github.com/Suwayomi/Tachidesk-WebUI/pull/74) by @AriaMoradi)
|
|
||||||
- (r867) migrate some components to Mui5 new styling system ([#72](https://github.com/Suwayomi/Tachidesk-WebUI/pull/72) by @abhijeetChawla)
|
|
||||||
- (r868) load first page on read manga ([#76](https://github.com/Suwayomi/Tachidesk-WebUI/pull/76) by @AriaMoradi)
|
|
||||||
- (r869) Revert "migrate some components to Mui5 new styling system ([#72](https://github.com/Suwayomi/Tachidesk-WebUI/pull/72))" (by @AriaMoradi)
|
|
||||||
- (r870) migrate Backup to Mui 5 ([#106](https://github.com/Suwayomi/Tachidesk-WebUI/pull/106) by @AriaMoradi)
|
|
||||||
- (r871) migrate EmptyView to Mui 5 ([#95](https://github.com/Suwayomi/Tachidesk-WebUI/pull/95) by @AriaMoradi)
|
|
||||||
- (r872) migrate CategorySelect to Mui 5 ([#85](https://github.com/Suwayomi/Tachidesk-WebUI/pull/85) by @AriaMoradi)
|
|
||||||
- (r873) migrate LibraryOptions to Mui 5 ([#83](https://github.com/Suwayomi/Tachidesk-WebUI/pull/83) by @AriaMoradi)
|
|
||||||
- (r874) migrate ChapterCard.tsx to Mui 5 ([#80](https://github.com/Suwayomi/Tachidesk-WebUI/pull/80) by @AriaMoradi)
|
|
||||||
- (r875) migrate App.tsx to Mui 5 ([#79](https://github.com/Suwayomi/Tachidesk-WebUI/pull/79) by @AriaMoradi)
|
|
||||||
- (r876) migrate SourceConfigure to Mui 5 ([#103](https://github.com/Suwayomi/Tachidesk-WebUI/pull/103) by @AriaMoradi)
|
|
||||||
- (r877) migrate Settings to Mui 5 ([#102](https://github.com/Suwayomi/Tachidesk-WebUI/pull/102) by @AriaMoradi)
|
|
||||||
- (r878) migrate Updates to Mui 5 ([#104](https://github.com/Suwayomi/Tachidesk-WebUI/pull/104) by @AriaMoradi)
|
|
||||||
- (r879) Save tabs number in Url to persist tab when go to other paths ([#78](https://github.com/Suwayomi/Tachidesk-WebUI/pull/78) by @abhijeetChawla)
|
|
||||||
- (r880) migrate LangSelect to Mui 5 ([#86](https://github.com/Suwayomi/Tachidesk-WebUI/pull/86) by @AriaMoradi)
|
|
||||||
- (r881) migrate ExtensionCard.tsx to Mui 5 ([#81](https://github.com/Suwayomi/Tachidesk-WebUI/pull/81) by @AriaMoradi)
|
|
||||||
- (r882) migrate SingleSearch to Mui 5 ([#101](https://github.com/Suwayomi/Tachidesk-WebUI/pull/101) by @AriaMoradi)
|
|
||||||
- (r883) migrate LoadingPlaceholder to Mui 5 ([#96](https://github.com/Suwayomi/Tachidesk-WebUI/pull/96) by @AriaMoradi)
|
|
||||||
- (r884) migrate About to Mui 5 ([#105](https://github.com/Suwayomi/Tachidesk-WebUI/pull/105) by @AriaMoradi)
|
|
||||||
- (r885) migrate SourceCard to Mui 5 ([#82](https://github.com/Suwayomi/Tachidesk-WebUI/pull/82) by @AriaMoradi)
|
|
||||||
- (r886) migrate Manga to Mui 5 ([#99](https://github.com/Suwayomi/Tachidesk-WebUI/pull/99) by @AriaMoradi)
|
|
||||||
- (r887) migrate Browse to Mui 5 ([#98](https://github.com/Suwayomi/Tachidesk-WebUI/pull/98) by @AriaMoradi)
|
|
||||||
- (r888) migrate DesktopSideBar to Mui 5 ([#87](https://github.com/Suwayomi/Tachidesk-WebUI/pull/87) by @AriaMoradi)
|
|
||||||
- (r889) cleanup library ([#107](https://github.com/Suwayomi/Tachidesk-WebUI/pull/107) by @AriaMoradi)
|
|
||||||
- (r890) support for new searchTerm (by @AriaMoradi)
|
|
||||||
- (r891) Revert "support for new searchTerm" (by @AriaMoradi)
|
|
||||||
- (r892) add support for emptySearch ([#109](https://github.com/Suwayomi/Tachidesk-WebUI/pull/109) by @AriaMoradi)
|
|
||||||
- (r893) add support for MultiSelectListPreference ([#108](https://github.com/Suwayomi/Tachidesk-WebUI/pull/108) by @AriaMoradi)
|
|
||||||
|
|
||||||
# Server: v0.5.4 + WebUI: r820
|
|
||||||
## TL;DR
|
|
||||||
- Fixed ReadComicOnline, Toonily and possibly other sources not working
|
|
||||||
- Backup and Restore now includes Updates tab data
|
|
||||||
- Removed Anime support from WebUI, Anime support will also be removed from Tachidesk-Server in a future update
|
|
||||||
|
|
||||||
## Tachidesk-Server Changelog
|
|
||||||
- (r973) convert android.jar lib to a maven repo
|
|
||||||
- (r978) mimic Tachiyomi's behaviour more closely, fixes ReadComicOnline (EN)
|
|
||||||
- (r980) fix export chapter ordering, include new props in backup
|
|
||||||
- (r982) remove isNsfw annotation detection
|
|
||||||
- (r984) use correct time conversion units when doing backups
|
|
||||||
- (r989) Support using a CatalogueSource instead of only HttpSources ([#219](https://github.com/Suwayomi/Tachidesk-Server/pull/219) by @Syer10)
|
|
||||||
- (r991) Use a custom task to run electron ([#220](https://github.com/Suwayomi/Tachidesk-Server/pull/220) by @Syer10)
|
|
||||||
|
|
||||||
## Tachidesk-WebUI Changelog
|
|
||||||
- (r810) fix wrong strings in set Server Address dialog, fixes [#39](https://github.com/Suwayomi/Tachidesk-WebUI/issues/39)
|
|
||||||
- (r811) fix chapterFetch loop
|
|
||||||
- (r812) fix overlapping requests
|
|
||||||
- (r813) fix typo
|
|
||||||
- (r814) Better portrait support ([#41](https://github.com/Suwayomi/Tachidesk-WebUI/issues/41) by @minhe7735)
|
|
||||||
- (r815) fixes Reader navbar colors when in light mode ([#43](https://github.com/Suwayomi/Tachidesk-WebUI/issues/43) by @abhijeetChawla)
|
|
||||||
- (r816) default languages cleanup, force Local source enabled
|
|
||||||
- (r817) force Local source at LangSelect
|
|
||||||
- (r818) rename ExtensionLangSelect: generic name for generic use
|
|
||||||
- (r819) don't show anime anymore
|
|
||||||
- (r820) Remove Anime support
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Server: v0.5.3 + WebUI: r809
|
|
||||||
## TL;DR
|
|
||||||
- added support for a equivalent page to Tachiyomi's Updates tab
|
|
||||||
- fix launchers not working on macOS M1/arm64
|
|
||||||
|
|
||||||
## Tachidesk-Server Changelog
|
|
||||||
- (r956) fix macOS-arm64 bundle launchers not working
|
|
||||||
- (r957) Workaround StdLib issue and add KtLint to all modules ([#206](https://github.com/Suwayomi/Tachidesk-Server/pull/206) by @Syer10)
|
|
||||||
- (r960-r963) Add recently updated chapters(Updates) endpoint
|
|
||||||
|
|
||||||
|
|
||||||
## Tachidesk-WebUI Changelog
|
|
||||||
- (r808) fix chapter list not calling onlineFetch=true
|
|
||||||
- (r809) add support for Updates
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Server: v0.5.2 + WebUI: r807
|
|
||||||
## TL;DR
|
|
||||||
- Fixed Local source not working on Windows
|
|
||||||
- Fixed Chapter numbers being shown incorrectly
|
|
||||||
|
|
||||||
## Tachidesk-Server
|
|
||||||
### Public API
|
|
||||||
#### Non-breaking changes
|
|
||||||
- N/A
|
|
||||||
|
|
||||||
#### Breaking changes
|
|
||||||
- N/A
|
|
||||||
|
|
||||||
#### Bug fixes
|
|
||||||
- (r948) Fix ManaToki (KO) and NewToki (KO) (issue [#202](https://github.com/Suwayomi/Tachidesk-Server/issue/202))
|
|
||||||
- (r949) Local source: fix windows paths
|
|
||||||
|
|
||||||
### Private API
|
|
||||||
- (r941) Update BytecodeEditor to use Java NIO Paths ([#200](https://github.com/Suwayomi/Tachidesk-Server/pull/200) by @Syer10)
|
|
||||||
- (r942) Gradle Updates ([#199](https://github.com/Suwayomi/Tachidesk-Server/pull/199) by @Syer10)
|
|
||||||
|
|
||||||
|
|
||||||
## Tachidesk-WebUI
|
|
||||||
#### Visible changes
|
|
||||||
- (r804) update text positioning on Reader and Player ([#35](https://github.com/Suwayomi/Tachidesk-WebUI/pull/35) by @voltrare)
|
|
||||||
- (r806) Source card for Local source is different
|
|
||||||
- (r807) add Local source guide
|
|
||||||
|
|
||||||
#### Bug fixes
|
|
||||||
- (r805) fix chapter name
|
|
||||||
|
|
||||||
#### Internal changes
|
|
||||||
- N/A
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Server: v0.5.1 + WebUI: r803
|
|
||||||
## TL;DR
|
|
||||||
- Loading sources' manga list is at least twice as fast
|
|
||||||
- Added support for Tachiyomi's Local source
|
|
||||||
- Added BasicAuth support, now you can protect your Tachidesk instance if you are running it on a public server
|
|
||||||
- Added ability to turn off cache for image requests
|
|
||||||
|
|
||||||
## Tachidesk-Server
|
|
||||||
### Public API
|
|
||||||
#### Non-breaking changes
|
|
||||||
- (r915) add BasicAuth support
|
|
||||||
- (r918) add ability to delete downloaded chapters
|
|
||||||
- (r923-r930) add Local Source
|
|
||||||
- (r938) add ability to turn off cache for image requests
|
|
||||||
|
|
||||||
#### Breaking changes
|
|
||||||
- N/A
|
|
||||||
|
|
||||||
#### Bug fixes
|
|
||||||
- (r917) detect if a downloaded chapter is missing
|
|
||||||
|
|
||||||
### Private API
|
|
||||||
- (r913) remove expand char limit on MangaTable columns
|
|
||||||
- (r914) migrate to Javalin 4
|
|
||||||
- (r921) depricate zero based chapters
|
|
||||||
- (r937) add ChapterRecognition from tachiyomi, closes #10
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Tachidesk-WebUI
|
|
||||||
#### Visible changes
|
|
||||||
- (r790) nice looking progress percentage
|
|
||||||
- (r791) show a Delete button for downloaded chapters
|
|
||||||
- (r792) Update hover effect using more of Material-UI color pallete ([#29](https://github.com/Suwayomi/Tachidesk-WebUI/pull/29) by @voltrare)
|
|
||||||
- (r793) Optimize images ([#32](https://github.com/Suwayomi/Tachidesk-WebUI/pull/32) by @phanirithvij)
|
|
||||||
- (r794) try fix #30 ([#31](https://github.com/Suwayomi/Tachidesk-WebUI/pull/31) by @phanirithvij)
|
|
||||||
- (r795) fix viewing page number when the string is long
|
|
||||||
- (r796) show proper display name for source
|
|
||||||
- (r797) fail gracefully when a thumbnail has errors
|
|
||||||
- (r798) fix when a source fails to load mangas
|
|
||||||
- (r800) add Local source ([#31](https://github.com/Suwayomi/Tachidesk-WebUI/pull/31))
|
|
||||||
- (r803) add support for useCache
|
|
||||||
|
|
||||||
#### Bug fixes
|
|
||||||
- N/A
|
|
||||||
|
|
||||||
#### Internal changes
|
|
||||||
- N/A
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Server: v0.5.0 + WebUI: r789
|
|
||||||
## TL;DR
|
|
||||||
- You can now install APK extensions from the extensions page
|
|
||||||
- WebUI now comes with an updated Material Design looks and is faster a little bit.
|
|
||||||
- WebUI now shows Nsfw content by default, disable it in settings if you prefer to not see Nsfw stuff
|
|
||||||
- Added support for configuration of sources, this enables MangaDex, Komga, Cubari and many other sources
|
|
||||||
- Chapters in the Manga page and Sources in the source page now look nicer and will glow with mouse hover
|
|
||||||
|
|
||||||
## Tachidesk-Server
|
|
||||||
### Public API
|
|
||||||
#### Non-breaking changes
|
|
||||||
- (r888) add installing APK from external sources endpoint
|
|
||||||
|
|
||||||
#### Breaking changes
|
|
||||||
- (r877 [#188](https://github.com/Suwayomi/Tachidesk-Server/pull/188) by @Syer10) `MangaDataClass.genre` changed type to `List<String>`
|
|
||||||
|
|
||||||
#### Bug fixes
|
|
||||||
- (r899-r901) fix when an external apk is installed and it doesn't have the default tachiyomi-extensions name
|
|
||||||
- (r905) fix a bug where if two sources return the same URL, a false duplicate might be detected
|
|
||||||
|
|
||||||
### Private API
|
|
||||||
- (r887) the `run` task won't call `downloadWebUI` now
|
|
||||||
- (r902) cleanup print/ln instances
|
|
||||||
- (r906) better handling of uninstalling Extensions
|
|
||||||
|
|
||||||
## Tachidesk-WebUI
|
|
||||||
#### Visible changes
|
|
||||||
- (r770) add support for the new genre type
|
|
||||||
- (r771) set the default value of `showNsfw` to `true` so we won't have visual artifacts with a clean install
|
|
||||||
- (r774 [#21](https://github.com/Suwayomi/Tachidesk-WebUI/pull/21) by @voltrare) `ReaderNavbar.jsx`: Swap close and retract Navbar buttons
|
|
||||||
- (r775 [#23](https://github.com/Suwayomi/Tachidesk-WebUI/pull/23) by @voltrare) `yarn.lock`: Fixes version inconsistency after commit 9b866811b
|
|
||||||
- (r776 [#23](https://github.com/Suwayomi/Tachidesk-WebUI/pull/23) by @voltrare) add margin between Source and Extension cards, make the Search button look nicer
|
|
||||||
- (r777) add support for installing external APK files
|
|
||||||
- (r778) fix the makeToaster?
|
|
||||||
- (r779) Action button for installing external extension
|
|
||||||
- (r780 Suwayomi/Tachidesk-WebUI#25) add on hover, active effect to Chapter/Episode card
|
|
||||||
- (r782-r785) updating material-ui to v5 changed the theme
|
|
||||||
- (r785-r788) better `SourceCard` looks on mobile, move `SourceDataClass.isConfigurable` gear button to `SourceMangas`
|
|
||||||
- (r789) implement source configuration
|
|
||||||
|
|
||||||
#### Bug fixes
|
|
||||||
- N/A
|
|
||||||
|
|
||||||
#### Internal changes
|
|
||||||
- (r782-r785) update dependencies, migrate material-ui from v4 to v5
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Server: v0.4.9 + WebUI: r769
|
|
||||||
## Tachidesk-Server
|
|
||||||
### Public API
|
|
||||||
#### Non-breaking changes
|
|
||||||
- N/A
|
|
||||||
|
|
||||||
#### Breaking changes
|
|
||||||
- (r857) renamed: `SourceDataClass.isNSFW` -> `SourceDataClass.isNsfw`
|
|
||||||
|
|
||||||
#### Bug fixes
|
|
||||||
- N/A
|
|
||||||
|
|
||||||
### Private API
|
|
||||||
- (r850) Bump WebUI version to r767
|
|
||||||
- (r861) Bump WebUI version to r769
|
|
||||||
|
|
||||||
#### Non-code changes
|
|
||||||
- (r851) Add this changelog file and `CHANGELOG-TEMPLATE.md`
|
|
||||||
- (r852-r853) `CONTRIBUTING.md`: Add a note about this maintaining this file changelog
|
|
||||||
- (r855) `CONTRIBUTING.md`: text cleanup
|
|
||||||
- (r859) `CONTRIBUTING.md`: remove dumb rule
|
|
||||||
- (r862) `windows-bundler.sh`: update jre
|
|
||||||
- (r864) add linux and macOS bundler script and launcher scripts
|
|
||||||
- (r865) fix macOS bundler script and launcher scripts
|
|
||||||
- (r866) bump electron version to v14.0.0
|
|
||||||
- (r868) add linux and macOS bundlers to the publish workflow
|
|
||||||
- (r871) `publish.yml`: remove node module cache, won't need it anymore
|
|
||||||
- (r873) `publish.yml` and `build_push.yml`: fix oopsies
|
|
||||||
|
|
||||||
|
|
||||||
## Tachidesk-WebUI
|
|
||||||
#### Visible changes
|
|
||||||
- (r767-r769) Support for hiding NSFW content in settings screen, extensions screen, sources screen
|
|
||||||
|
|
||||||
#### Bug fixes
|
|
||||||
- N/A
|
|
||||||
|
|
||||||
#### Internal changes
|
|
||||||
- (r767) Remove some duplicate dependency declaration from `package.json`
|
|
||||||
|
|
||||||
#### Non-code changes
|
|
||||||
- (r42-r45) Change `README.md`: some links and stuff
|
|
||||||
- (r45-r765) Add all of the commit history from when WebUI was separated from Server, jumping from r45 to r765 (r45 is exactly the same as r765)
|
|
||||||
- (r766) Steal `.gitattributes` from Tachidesk-Server
|
|
||||||
- (r767) Dependency cleanup in `package.json`
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Server: v0.4.8 + WebUI: r41
|
|
||||||
## Tachidesk-Server
|
|
||||||
### Public API
|
|
||||||
#### Non-breaking changes
|
|
||||||
- Added support for serializing Search Filters
|
|
||||||
- `SourceDataClass` now has a `isNsfw` key
|
|
||||||
|
|
||||||
#### Breaking changes
|
|
||||||
- N/A
|
|
||||||
|
|
||||||
#### Bug fixes
|
|
||||||
- Fixed a bug where backup restore reversed chapter order
|
|
||||||
- Open Site feature now works properly (https://github.com/Suwayomi/Tachidesk-WebUI/issues/19)
|
|
||||||
|
|
||||||
### Private API
|
|
||||||
- Added `CloudflareInterceptor` from TachiWeb-Server
|
|
||||||
- Restoring backup for mangas in library(merging manga data) is now supported
|
|
||||||
|
|
||||||
## Tachidesk-WebUI
|
|
||||||
#### Visible changes
|
|
||||||
- Better looking manga card titles
|
|
||||||
- Better reader title, next, prev buttons
|
|
||||||
|
|
||||||
#### Bug fixes
|
|
||||||
- Open Site feature now works properly (https://github.com/Suwayomi/Tachidesk-WebUI/issues/19)
|
|
||||||
- Re-ordering categories now works
|
|
||||||
|
|
||||||
#### Internal changes
|
|
||||||
- N/A
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
# Code Of Conduct
|
|
||||||
- Don't be a dick.
|
|
||||||
|
|
||||||
# expanding the code of conduct!
|
|
||||||
The contents of this document is up for debate and improvement! Discussions on discord.
|
|
||||||
@@ -1,56 +0,0 @@
|
|||||||
# Contributing
|
|
||||||
## Where should I start?
|
|
||||||
Checkout [This Kanban Board](https://github.com/Suwayomi/Tachidesk/projects/1) to see the rough development roadmap.
|
|
||||||
|
|
||||||
**Note 1:** Notify the developers on [Suwayomi discord](https://discord.gg/DDZdqZWaHA) (#tachidesk-server and #tachidesk-webui channels) or open a WIP pull request before starting if you decide to take on working on anything from/not from the roadmap in order to avoid parallel efforts on the same issue/feature.
|
|
||||||
|
|
||||||
**Note 2:** Your pull request will be squashed into a single commit.
|
|
||||||
|
|
||||||
### Project goals and vision
|
|
||||||
- Porting Tachiyomi and covering it's features
|
|
||||||
- Syncing with Tachiyomi, [main issue](https://github.com/Suwayomi/Tachidesk-Server/issues/159)
|
|
||||||
- Generally rejecting features that Tachiyomi(main app) doesn't have,
|
|
||||||
- Unless it's something that makes sense for desktop sizes or desktop form factor (keyboard + mouse)
|
|
||||||
- Additional/crazy features can go in forks and alternative clients
|
|
||||||
- [Tachidesk-WebUI](https://github.com/Suwayomi/Tachidesk-WebUI) should
|
|
||||||
- be responsive
|
|
||||||
- support both desktop and mobile form factors well
|
|
||||||
|
|
||||||
## How does Tachidesk-Server work?
|
|
||||||
This project has two components:
|
|
||||||
1. **Server:** contains the implementation of [tachiyomi's extensions library](https://github.com/tachiyomiorg/extensions-lib) and uses an Android compatibility library to run jar libraries converted from apk extensions. All this concludes to serving a REST API.
|
|
||||||
2. **WebUI:** A React SPA(`create-react-app`) project that works with the server to do the presentation located at https://github.com/Suwayomi/Tachidesk-WebUI
|
|
||||||
|
|
||||||
## Why a web app?
|
|
||||||
This structure is chosen to
|
|
||||||
- Achieve the maximum multi-platform-ness
|
|
||||||
- Gives the ability to access Tachidesk-Server from a remote client e.g., your phone, tablet or smart TV
|
|
||||||
- Ease development of user interfaces for Tachidesk
|
|
||||||
|
|
||||||
## Building from source
|
|
||||||
### Prerequisites
|
|
||||||
You need these software packages installed in order to build the project
|
|
||||||
|
|
||||||
- Java Development Kit and Java Runtime Environment version 8 or newer(both Oracle JDK and OpenJDK works)
|
|
||||||
|
|
||||||
### building the full-blown jar (Tachidesk-Server + Tachidesk-WebUI bundle)
|
|
||||||
Run `./gradlew server:downloadWebUI server:shadowJar`, the resulting built jar file will be `server/build/Tachidesk-Server-vX.Y.Z-rxxx.jar`.
|
|
||||||
|
|
||||||
### building without `webUI` bundled (server only)
|
|
||||||
Delete `server/src/main/resources/WebUI.zip` if exists from previous runs, then run `./gradlew server:shadowJar`, the resulting built jar file will be `server/build/Tachidesk-Server-vX.Y.Z-rxxx.jar`.
|
|
||||||
|
|
||||||
### building the Windows package
|
|
||||||
First Build the jar, then cd into the `scripts` directory and run `./windows-bundler.sh win32` or `./windows-bundler.sh win64` depending on the target architecture, the resulting built zip package file will be `server/build/Tachidesk-Server-vX.Y.Z-rxxx-winXX.zip`.
|
|
||||||
|
|
||||||
## Running in development mode
|
|
||||||
run `./gradlew :server:run --stacktrace` to run the server
|
|
||||||
|
|
||||||
## Running tests
|
|
||||||
run `./gradlew :server:test` to execute all tests
|
|
||||||
to test a specific class run `./gradlew :server:test --tests <package.with.classname>`
|
|
||||||
|
|
||||||
## Building the android-jar maven repository
|
|
||||||
Run `AndroidCompat/getAndroid.sh`(macOS/Linux) or `AndroidCompat/getAndroid.ps1`(Windows)
|
|
||||||
from project's root directory to download and rebuild the jar file from Google's repository,
|
|
||||||
then use `AndroidCompat/lib/android.jar` to manually create a maven repository inside the `android-jar` git branch.
|
|
||||||
Update the dependency declaration afterwards.
|
|
||||||
@@ -1,163 +1,90 @@
|
|||||||
|
|
||||||
| Build | Stable | Preview | Support Server |
|

|
||||||
|-------|----------|---------|---------|
|
# Tachidesk
|
||||||
|  | [](https://github.com/Suwayomi/Tachidesk/releases) | [](https://github.com/Suwayomi/Tachidesk-preview/releases/latest) | [](https://discord.gg/DDZdqZWaHA) |
|
A free and open source manga reader that runs extensions built for [Tachiyomi](https://tachiyomi.org/).
|
||||||
|
|
||||||
## Table of Content
|
Tachidesk is as multi-platform as you can get. Any platform that runs java and/or has a modern browser can run it.
|
||||||
- [What is Tachidesk?](#what-is-tachidesk)
|
|
||||||
- [Tachidesk client projects](#tachidesk-client-projects)
|
|
||||||
* [Is this application usable? Should I test it?](#is-this-application-usable-should-i-test-it)
|
|
||||||
- [Downloading and Running the app](#downloading-and-running-the-app)
|
|
||||||
* [Using Operating System Specific Bundles](#using-operating-system-specific-bundles)
|
|
||||||
- [Launcher Scripts](#launcher-scripts)
|
|
||||||
+ [Windows](#windows)
|
|
||||||
+ [macOS](#macos)
|
|
||||||
+ [GNU/Linux](#gnulinux)
|
|
||||||
* [Other methods of getting Tachidesk](#other-methods-of-getting-tachidesk)
|
|
||||||
+ [Arch Linux](#arch-linux)
|
|
||||||
+ [Ubuntu-based distributions](#ubuntu-based-distributions)
|
|
||||||
+ [Docker](#docker)
|
|
||||||
* [Advanced Methods](#advanced-methods)
|
|
||||||
+ [Running the jar release directly](#running-the-jar-release-directly)
|
|
||||||
+ [Using Tachidesk Remotely](#using-tachidesk-remotely)
|
|
||||||
- [Syncing With Tachiyomi](#syncing-with-tachiyomi)
|
|
||||||
- [Troubleshooting and Support](#troubleshooting-and-support)
|
|
||||||
- [Contributing and Technical info](#contributing-and-technical-info)
|
|
||||||
- [Credit](#credit)
|
|
||||||
- [License](#license)
|
|
||||||
<!-- Generated with https://ecotrust-canada.github.io/markdown-toc/ -->
|
|
||||||
|
|
||||||
# What is Tachidesk?
|
Ability to read and write Tachiyomi compatible backups and syncing is a planned feature.
|
||||||
<img src="https://github.com/Suwayomi/Tachidesk/raw/master/server/src/main/resources/icon/faviconlogo.png" alt="drawing" width="200"/>
|
|
||||||
|
|
||||||
A free and open source manga reader server that runs extensions built for [Tachiyomi](https://tachiyomi.org/).
|
|
||||||
|
|
||||||
Tachidesk is an independent Tachiyomi compatible software and is **not a Fork of** Tachiyomi.
|
|
||||||
|
|
||||||
`Tachidesk` is a general term used to describe the combination of Tachidesk-Server(this project) and one of our clients.
|
|
||||||
Think of it roughly like the concept of "distribution" in GNU/Linux distributions, in which Linux(Tachidesk-Server) is the kernel and the difference is which desktop environment(Tachidesk client) you get with it.
|
|
||||||
|
|
||||||
Tachidesk-Server is as multi-platform as you can get. Any platform that runs java and/or has a modern browser can run it. This includes Windows, Linux, macOS, chrome OS, etc. Follow [Downloading and Running the app](#downloading-and-running-the-app) for installation instructions.
|
|
||||||
|
|
||||||
Ability to sync with Tachiyomi is a planned feature.
|
|
||||||
|
|
||||||
# Tachidesk client projects
|
|
||||||
**You need a client/user interface app as a front-end for Tachidesk-Server, if you Directly Download Tachidesk-Server you'll get a bundled version of [Tachidesk-WebUI](https://github.com/Suwayomi/Tachidesk-WebUI) with it.**
|
|
||||||
|
|
||||||
Here's a list of known clients/user interfaces for Tachidesk-Server:
|
|
||||||
- [Tachidesk-WebUI](https://github.com/Suwayomi/Tachidesk-WebUI): The web/ElectronJS front-end that Tachidesk-Server is traditionally shipped with. Usually gets new features faster.
|
|
||||||
- [Tachidesk-JUI](https://github.com/Suwayomi/Tachidesk-JUI): The native desktop front-end for Tachidesk-Server. Currently the most advanced. Downlading Tachidesk-JUI is not recommened for now, the current release is getting obsolete, a new version is to be released soon(TM).
|
|
||||||
- [Tachidesk-qtui](https://github.com/Suwayomi/Tachidesk-qtui): A C++/Qt front-end for mobile devices(Android/linux), in super early stage of development.
|
|
||||||
- [Tachidesk-GTK](https://github.com/mahor1221/Tachidesk-GTK): A native Rust/GTK desktop client, in super early stage of development.
|
|
||||||
- [Equinox](https://github.com/Suwayomi/Equinox): A web user interface made with Vue.js, in super early stage of development. Seemingly abandoned.
|
|
||||||
|
|
||||||
## Is this application usable? Should I test it?
|
## Is this application usable? Should I test it?
|
||||||
Here is a list of current features:
|
Here is a list of current features:
|
||||||
|
|
||||||
- Installing and executing Tachiyomi's Extensions, So you'll get the same sources
|
- Installing and executing Tachiyomi's Extensions, So you'll get the same sources.
|
||||||
- A library to save your mangas and categories to put them into
|
- A library to save your mangas and categories to put them into.
|
||||||
- Searching and browsing installed sources
|
- Searching and browsing installed sources.
|
||||||
- Ability to download Manga for offline read
|
- A minimal chapter reader.
|
||||||
- Backup and restore support powered by Tachiyomi-compatible Backups
|
- Ability to download Mangas for offline read(This partially works)
|
||||||
- Viewing latest updated chapters.
|
|
||||||
|
|
||||||
**Note:** These are capabilities of Tachidesk-Server, the actual working support is provided by each front-end app, checkout their respective readme for more info.
|
**Note:** Keep in mind that Tachidesk is alpha software and can break rarely and/or with each update, so you may have to delete your data to fix it. See [General troubleshooting](#general-troubleshooting) and [Support and help](#support-and-help) if it happens.
|
||||||
|
|
||||||
# Downloading and Running the app
|
Anyways, for more info checkout [finished milestone #1](https://github.com/AriaMoradi/Tachidesk/issues/2) and [milestone #2](https://github.com/AriaMoradi/Tachidesk/projects/1) to see what's implemented in more detail.
|
||||||
## Using Operating System Specific Bundles
|
|
||||||
To facilitate the use of Tachidesk we provide bundle releases that include The Java Runtime Environment, ElectronJS and 3 Tachidesk Launcher Scripts.
|
|
||||||
|
|
||||||
If a bundle for your operating system or cpu architecture is not provided then refer to [Advanced Methods](#advanced-methods)
|
## Downloading and Running the app
|
||||||
|
### All Operating Systems
|
||||||
|
You should have The Java Runtime Environment(JRE) 8 or newer and a modern browser installed. Also an internet connection is required as almost everything this app does is downloading stuff.
|
||||||
|
|
||||||
#### Launcher Scripts
|
Download the latest jar release from [the releases section](https://github.com/AriaMoradi/Tachidesk/releases).
|
||||||
- `Tachidesk Electron Launcher`: Launches Tachidesk inside Electron as a desktop applicaton
|
|
||||||
- `Tachidesk Browser Launcher`: Launches Tachidesk in a browser window
|
|
||||||
- `Tachidesk Debug Launcher`: Launches Tachidesk with debug logs attached. If Tachidesk doesn't work for you, running this can give you insight into why.
|
|
||||||
|
|
||||||
**Node:** Linux launcher scripts are named a bit differently but work the same.
|
Double click on the jar file or run `java -jar Tachidesk-vX.Y.Z-rxxx.jar` from a Terminal/Command Prompt window to run the app which will open a new browser window automatically. Also the System Tray Icon is your friend if you need to open the browser window again or close Tachidesk.
|
||||||
|
|
||||||
### Windows
|
### Windows
|
||||||
Download the latest `win32`(Windows 32-bit) or `win64`(Windows 64-bit) release from [the releases section](https://github.com/Suwayomi/Tachidesk/releases) or a preview one from [the preview repository](https://github.com/Suwayomi/Tachidesk-preview/releases).
|
Download the latest win32 release from [the releases section](https://github.com/AriaMoradi/Tachidesk/releases).
|
||||||
|
|
||||||
Unzip the downloaded file and double click on one of the launcher scripts.
|
The Windows specific build has java bundled inside, so you don't have to install java to use it. Unzip `Tachidesk-vX.Y.Z-rxxx-win32.zip` and run `server.exe`. The rest works like the previous section.
|
||||||
|
|
||||||
### macOS
|
|
||||||
Download the latest `macOS-x64`(older macOS systems) or `macOS-arm64`(Apple M1) release from [the releases section](https://github.com/Suwayomi/Tachidesk/releases) or a preview one from [the preview repository](https://github.com/Suwayomi/Tachidesk-preview/releases).
|
|
||||||
|
|
||||||
Unzip the downloaded file and double click on one of the launcher scripts.
|
|
||||||
|
|
||||||
### GNU/Linux
|
|
||||||
Download the latest `linux-x64`(x86_64) release from [the releases section](https://github.com/Suwayomi/Tachidesk/releases) or a preview one from [the preview repository](https://github.com/Suwayomi/Tachidesk-preview/releases).
|
|
||||||
|
|
||||||
`tar xvf` the downloaded file and double click on one of the launcher scripts or run them using the terminal.
|
|
||||||
|
|
||||||
## Other methods of getting Tachidesk
|
|
||||||
### Arch Linux
|
### Arch Linux
|
||||||
You can install Tachidesk from the AUR
|
You can install Tachidesk from the AUR
|
||||||
```
|
```
|
||||||
yay -S tachidesk
|
yay -S tachidesk
|
||||||
```
|
```
|
||||||
|
|
||||||
### Ubuntu-based distributions
|
|
||||||
More information can be found on the [PPA's page](https://launchpad.net/~suwayomi/+archive/ubuntu/tachidesk).
|
|
||||||
```
|
|
||||||
sudo add-apt-repository ppa:suwayomi/tachidesk
|
|
||||||
sudo apt update
|
|
||||||
sudo apt install tachidesk
|
|
||||||
```
|
|
||||||
|
|
||||||
### Docker
|
### Docker
|
||||||
Check our Official Docker release [Tachidesk Container](https://github.com/orgs/Suwayomi/packages/container/package/tachidesk) for running Tachidesk Server in a docker container. Source code for our container is available at [docker-tachidesk](https://github.com/Suwayomi/docker-tachidesk). By default the server will be running on http://localhost:4567 open this url in your browser.
|
Check [arbuilder's repo](https://github.com/arbuilder/Tachidesk-docker) out for more details and the dockerfile.
|
||||||
|
|
||||||
Install from the command line:
|
## General troubleshooting
|
||||||
```
|
If the app breaks try deleting the directory below and re-running the app (**This will delete all your data!**) and if the problem persists open an issue.
|
||||||
$ docker pull ghcr.io/suwayomi/tachidesk
|
|
||||||
```
|
|
||||||
Run Container from the command line:
|
|
||||||
```
|
|
||||||
$ docker run -p 4567:4567 ghcr.io/suwayomi/tachidesk
|
|
||||||
```
|
|
||||||
|
|
||||||
## Advanced Methods
|
On Mac OS X : `/Users/<Account>/Library/Application Support/Tachidesk`
|
||||||
### Running the jar release directly
|
|
||||||
In order to run the app you need the following:
|
|
||||||
- The jar release of Tachidesk-Server
|
|
||||||
- The Java Runtime Environment(JRE) 8 or newer
|
|
||||||
- A Browser like Google Chrome, Firefox, Edge, etc.
|
|
||||||
- ElectronJS (optional)
|
|
||||||
|
|
||||||
Download the latest `.jar` release from [the releases section](https://github.com/Suwayomi/Tachidesk-Server/releases) or a preview jar build from [the preview repository](https://github.com/Suwayomi/Tachidesk-preview/releases).
|
On Windows XP : `C:\Documents and Settings\<Account>\Application Data\Local Settings\Tachidesk`
|
||||||
|
|
||||||
Make sure you have The Java Runtime Environment installed on your system, Double click on the jar file or run `java -jar Tachidesk-vX.Y.Z-rxxxx.jar` from a Terminal/Command Prompt window to run the app which will open a new browser window automatically.
|
On Windows 7 and later : `C:\Users\<Account>\AppData\Local\Tachidesk`
|
||||||
|
|
||||||
### Using Tachidesk Remotely
|
On Unix/Linux : `/home/<account>/.local/share/Tachidesk`
|
||||||
You can run Tachidesk on your computer or a server and connect to it remotely through one of our clients or the bundled web interface with a web browser. This method of using Tachidesk is requires a bit of networking/firewall/port forwarding/server configuration/etc. knowledge on your side, if you can run a Minecraft server and configure it, then you are good to go.
|
|
||||||
|
|
||||||
Check out [this wiki page](https://github.com/Suwayomi/Tachidesk-Server/wiki/Configuring-Tachidesk-Server) for a guide on configuring Tachidesk-Server.
|
## Support and help
|
||||||
|
Join Tachidesk's [discord server](https://discord.gg/wgPyb7hE5d) to hang out with the community and receive support and help.
|
||||||
|
|
||||||
If you face issues with your setup then we are happy to provide help, just join our discord server(a discord badge is on the top of the page, you are just a click clack away!).
|
## How does it work?
|
||||||
|
This project has two components:
|
||||||
|
1. **server:** contains the implementation of [tachiyomi's extensions library](https://github.com/tachiyomiorg/extensions-lib) and uses an Android compatibility library to run apk extensions. All this concludes to serving a REST API to `webUI`.
|
||||||
|
2. **webUI:** A react SPA project that works with the server to do the presentation.
|
||||||
|
|
||||||
## Syncing With Tachiyomi
|
## Building from source
|
||||||
### The Tachidesk extension
|
### Get Android stubs jar
|
||||||
- You can install the `Tachidesk` extension inside tachiyomi.
|
#### Manual download
|
||||||
- The extension will load Tachidesk library.
|
Download [android.jar](https://raw.githubusercontent.com/AriaMoradi/Tachidesk/android-jar/android.jar) and put it under `AndroidCompat/lib`.
|
||||||
- By manipulating filters you can browse your categories.
|
#### Automated download(needs `bash`, `curl`, `base64`, `zip` to work)
|
||||||
|
Run `AndroidCompat/getAndroid.sh` from project's root directory to download and rebuild the jar file from Google's repository.
|
||||||
### Other methods
|
### building the jar
|
||||||
Checkout [this issue](https://github.com/Suwayomi/Tachidesk-Server/issues/159) for tracking progress.
|
Run `./gradlew shadowJar`, the resulting built jar file will be `server/build/Tachidesk-vX.Y.Z-rxxx.jar`.
|
||||||
|
### building the Windows package
|
||||||
## Troubleshooting and Support
|
Run `./gradlew windowsPackage`, the resulting built zip package file will be `server/build/Tachidesk-vX.Y.Z-rxxx-win32.zip`.
|
||||||
See [this troubleshooting wiki page](https://github.com/Suwayomi/Tachidesk/wiki/Troubleshooting).
|
## Running for development purposes
|
||||||
|
### `server` module
|
||||||
## Contributing and Technical info
|
Run `./gradlew :server:run -x :webUI:copyBuild --stacktrace` to run the server
|
||||||
See [CONTRIBUTING.md](./CONTRIBUTING.md).
|
### `webUI` module
|
||||||
|
How to do it is described in `webUI/react/README.md` but for short,
|
||||||
|
first cd into `webUI/react` then run `yarn` to install the node modules(do this only once)
|
||||||
|
then `yarn start` to start the client if a new browser window doesn't start automatically,
|
||||||
|
then open `http://127.0.0.1:3000` in a modern browser. This is a `create-react-app` project
|
||||||
|
and supports HMR and all the other goodies you'll need.
|
||||||
|
|
||||||
## Credit
|
## Credit
|
||||||
This project is a spiritual successor of [TachiWeb-Server](https://github.com/Tachiweb/TachiWeb-server), Many of the ideas and the groundwork adopted in this project comes from TachiWeb.
|
The `AndroidCompat` module was originally developed by [@null-dev](https://github.com/null-dev) for [TachiWeb-Server](https://github.com/Tachiweb/TachiWeb-server) and is licensed under `Apache License Version 2.0`.
|
||||||
|
|
||||||
The `AndroidCompat` module was originally developed by [@null-dev](https://github.com/null-dev) for [TachiWeb-Server](https://github.com/Tachiweb/TachiWeb-server) and is licensed under `Apache License Version 2.0` and `Copyright 2019 Andy Bao and contributors`.
|
Parts of [tachiyomi](https://github.com/tachiyomiorg/tachiyomi) is adopted into this codebase, also licensed under `Apache License Version 2.0`.
|
||||||
|
|
||||||
Parts of [tachiyomi](https://github.com/tachiyomiorg/tachiyomi) is adopted into this codebase, also licensed under `Apache License Version 2.0` and `Copyright 2015 Javier Tomás`.
|
|
||||||
|
|
||||||
You can obtain a copy of `Apache License Version 2.0` from http://www.apache.org/licenses/LICENSE-2.0
|
You can obtain a copy of `Apache License Version 2.0` from http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
@@ -165,7 +92,7 @@ Changes to both codebases is licensed under `MPL v. 2.0` as the rest of this pro
|
|||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
Copyright (C) Contributors to the Suwayomi project
|
Copyright (C) 2020-2021 Aria Moradi and contributors
|
||||||
|
|
||||||
This Source Code Form is subject to the terms of the Mozilla Public
|
This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
License, v. 2.0. If a copy of the MPL was not distributed with this
|
License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
|||||||
+37
-69
@@ -1,115 +1,83 @@
|
|||||||
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
import org.jetbrains.kotlin.config.KotlinCompilerVersion
|
||||||
import org.jmailen.gradle.kotlinter.tasks.FormatTask
|
|
||||||
import org.jmailen.gradle.kotlinter.tasks.LintTask
|
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
kotlin("jvm") version kotlinVersion
|
id("org.jetbrains.kotlin.jvm") version "1.4.21" apply false // Also in buildSrc Config.kt
|
||||||
kotlin("plugin.serialization") version kotlinVersion
|
id("java")
|
||||||
id("org.jmailen.kotlinter") version "3.6.0"
|
|
||||||
id("com.github.gmazzo.buildconfig") version "3.0.3" apply false
|
|
||||||
}
|
}
|
||||||
|
|
||||||
allprojects {
|
allprojects {
|
||||||
group = "suwayomi"
|
group = "xyz.nulldev.ts"
|
||||||
|
|
||||||
version = "1.0"
|
version = "1.0"
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
|
jcenter()
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
google()
|
|
||||||
maven("https://jitpack.io")
|
maven("https://jitpack.io")
|
||||||
maven("https://github.com/Suwayomi/Tachidesk-Server/raw/android-jar/")
|
maven("https://oss.sonatype.org/content/repositories/snapshots/")
|
||||||
|
maven("https://dl.bintray.com/inorichi/maven")
|
||||||
|
maven("https://dl.google.com/dl/android/maven2/")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
val projects = listOf(
|
val javaProjects = listOf(
|
||||||
project(":AndroidCompat"),
|
project(":AndroidCompat"),
|
||||||
project(":AndroidCompat:Config"),
|
project(":AndroidCompat:Config"),
|
||||||
project(":server")
|
project(":server")
|
||||||
)
|
)
|
||||||
|
|
||||||
configure(projects) {
|
configure(javaProjects) {
|
||||||
|
apply(plugin = "java")
|
||||||
apply(plugin = "org.jetbrains.kotlin.jvm")
|
apply(plugin = "org.jetbrains.kotlin.jvm")
|
||||||
apply(plugin = "org.jetbrains.kotlin.plugin.serialization")
|
|
||||||
apply(plugin = "org.jmailen.kotlinter")
|
|
||||||
|
|
||||||
java {
|
java {
|
||||||
sourceCompatibility = JavaVersion.VERSION_1_8
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
||||||
targetCompatibility = JavaVersion.VERSION_1_8
|
targetCompatibility = JavaVersion.VERSION_1_8
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks {
|
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
|
||||||
withType<KotlinCompile> {
|
kotlinOptions {
|
||||||
dependsOn(formatKotlin)
|
jvmTarget = "1.8"
|
||||||
kotlinOptions {
|
|
||||||
jvmTarget = JavaVersion.VERSION_1_8.toString()
|
|
||||||
freeCompilerArgs = listOf(
|
|
||||||
"-Xopt-in=kotlin.RequiresOptIn",
|
|
||||||
"-Xopt-in=kotlinx.coroutines.ExperimentalCoroutinesApi",
|
|
||||||
"-Xopt-in=kotlinx.coroutines.InternalCoroutinesApi",
|
|
||||||
"-Xopt-in=kotlinx.serialization.ExperimentalSerializationApi",
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
withType<LintTask> {
|
|
||||||
source(files("src/kotlin"))
|
|
||||||
}
|
|
||||||
|
|
||||||
withType<FormatTask> {
|
|
||||||
source(files("src/kotlin"))
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
// Kotlin
|
// Kotlin
|
||||||
implementation(kotlin("stdlib-jdk8"))
|
implementation(kotlin("stdlib", KotlinCompilerVersion.VERSION))
|
||||||
implementation(kotlin("reflect"))
|
implementation(kotlin("stdlib", KotlinCompilerVersion.VERSION))
|
||||||
testImplementation(kotlin("test-junit5"))
|
testImplementation(kotlin("test", version = "1.4.21"))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// coroutines
|
configure(listOf(
|
||||||
val coroutinesVersion = "1.5.2"
|
project(":AndroidCompat"),
|
||||||
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion")
|
project(":server"),
|
||||||
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:$coroutinesVersion")
|
project(":AndroidCompat:Config")
|
||||||
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:$coroutinesVersion")
|
|
||||||
|
|
||||||
val kotlinSerializationVersion = "1.3.0-RC"
|
|
||||||
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:$kotlinSerializationVersion")
|
|
||||||
implementation("org.jetbrains.kotlinx:kotlinx-serialization-protobuf:$kotlinSerializationVersion")
|
|
||||||
|
|
||||||
|
)) {
|
||||||
|
dependencies {
|
||||||
// Dependency Injection
|
// Dependency Injection
|
||||||
implementation("org.kodein.di:kodein-di-conf-jvm:7.8.0")
|
implementation("org.kodein.di:kodein-di-conf-jvm:7.1.0")
|
||||||
|
|
||||||
// Logging
|
// Logging
|
||||||
implementation("org.slf4j:slf4j-api:1.7.32")
|
implementation("org.slf4j:slf4j-api:1.7.30")
|
||||||
implementation("ch.qos.logback:logback-classic:1.2.6")
|
implementation("org.slf4j:slf4j-simple:1.7.30")
|
||||||
implementation("io.github.microutils:kotlin-logging:2.0.11")
|
implementation("io.github.microutils:kotlin-logging:2.0.3")
|
||||||
|
|
||||||
// ReactiveX
|
// RxJava
|
||||||
implementation("io.reactivex:rxjava:1.3.8")
|
implementation("io.reactivex:rxjava:1.3.8")
|
||||||
implementation("io.reactivex:rxkotlin:1.0.0")
|
implementation("io.reactivex:rxkotlin:1.0.0")
|
||||||
implementation("com.jakewharton.rxrelay:rxrelay:1.2.0")
|
|
||||||
|
|
||||||
// dependency both in AndroidCompat and extensions, version locked by Tachiyomi app/extensions
|
// JSoup
|
||||||
implementation("org.jsoup:jsoup:1.14.2")
|
implementation("org.jsoup:jsoup:1.13.1")
|
||||||
|
|
||||||
|
// Kotlin
|
||||||
|
implementation(kotlin("reflect", version = "1.4.21"))
|
||||||
|
|
||||||
// dependency of :AndroidCompat:Config
|
// dependency of :AndroidCompat:Config
|
||||||
implementation("com.typesafe:config:1.4.1")
|
implementation("com.typesafe:config:1.4.0")
|
||||||
implementation("io.github.config4k:config4k:0.4.2")
|
|
||||||
|
|
||||||
// to get application content root
|
// to get application content root
|
||||||
implementation("net.harawata:appdirs:1.2.1")
|
implementation("net.harawata:appdirs:1.2.0")
|
||||||
|
|
||||||
// dex2jar
|
|
||||||
val dex2jarVersion = "v26"
|
|
||||||
implementation("com.github.ThexXTURBOXx.dex2jar:dex-translator:$dex2jarVersion")
|
|
||||||
implementation("com.github.ThexXTURBOXx.dex2jar:dex-tools:$dex2jarVersion")
|
|
||||||
|
|
||||||
// APK parser
|
|
||||||
implementation("net.dongliu:apk-parser:2.6.10")
|
|
||||||
|
|
||||||
// dependency both in AndroidCompat and server, version locked by javalin
|
|
||||||
implementation("com.fasterxml.jackson.core:jackson-annotations:2.12.4")
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
plugins {
|
|
||||||
`kotlin-dsl`
|
|
||||||
}
|
|
||||||
|
|
||||||
repositories {
|
|
||||||
mavenCentral()
|
|
||||||
}
|
|
||||||
|
|
||||||
dependencies {
|
|
||||||
implementation("net.lingala.zip4j:zip4j:2.9.0")
|
|
||||||
}
|
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
import java.io.BufferedReader
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Copyright (C) Contributors to the Suwayomi project
|
|
||||||
*
|
|
||||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
||||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
||||||
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
||||||
|
|
||||||
const val kotlinVersion = "1.5.30"
|
|
||||||
|
|
||||||
const val MainClass = "suwayomi.tachidesk.MainKt"
|
|
||||||
|
|
||||||
// should be bumped with each stable release
|
|
||||||
val tachideskVersion = System.getenv("ProductVersion") ?: "v0.6.0"
|
|
||||||
|
|
||||||
val webUIRevisionTag = System.getenv("WebUIRevision") ?: "r893"
|
|
||||||
|
|
||||||
// counts commits on the master branch
|
|
||||||
val tachideskRevision = runCatching {
|
|
||||||
System.getenv("ProductRevision") ?: Runtime
|
|
||||||
.getRuntime()
|
|
||||||
.exec("git rev-list HEAD --count")
|
|
||||||
.let { process ->
|
|
||||||
process.waitFor()
|
|
||||||
val output = process.inputStream.use {
|
|
||||||
it.bufferedReader().use(BufferedReader::readText)
|
|
||||||
}
|
|
||||||
process.destroy()
|
|
||||||
"r" + output.trim()
|
|
||||||
}
|
|
||||||
}.getOrDefault("r0")
|
|
||||||
|
|
||||||
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-all.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-all.zip
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
|
|||||||
@@ -1 +0,0 @@
|
|||||||
start "" jre/bin/javaw -jar Tachidesk.jar
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
cd "`dirname "$0"`"
|
|
||||||
|
|
||||||
./jre/Contents/Home/bin/java -jar Tachidesk.jar
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
:: cleaner output
|
|
||||||
@echo off
|
|
||||||
|
|
||||||
jre\bin\java -Dsuwayomi.tachidesk.config.server.debugLogsEnabled=true -jar Tachidesk.jar
|
|
||||||
|
|
||||||
:: Prevent cmd from closing when Tachidesk crashes
|
|
||||||
pause
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
cd "`dirname "$0"`"
|
|
||||||
|
|
||||||
./jre/Contents/Home/bin/java -Dsuwayomi.tachidesk.config.server.debugLogsEnabled=true -jar Tachidesk.jar
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
jre\bin\javaw "-Dsuwayomi.tachidesk.config.server.webUIInterface=electron" "-Dsuwayomi.tachidesk.config.server.electronPath=electron/electron.exe" -jar Tachidesk.jar
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
cd "`dirname "$0"`"
|
|
||||||
|
|
||||||
./jre/Contents/Home/bin/java "-Dsuwayomi.tachidesk.config.server.webUIInterface=electron" "-Dsuwayomi.tachidesk.config.server.electronPath=electron/Electron.app/Contents/MacOS/Electron" -jar Tachidesk.jar
|
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
./jre/bin/java -jar Tachidesk.jar
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user