forked from distok/cutthecord
ctcconfig: Use better defaults
This commit is contained in:
parent
d3c51e2bef
commit
f1e8382505
2 changed files with 11 additions and 16 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -3,4 +3,5 @@ patches/*/*.patch-failed
|
||||||
resources/distok/versionlogs/*
|
resources/distok/versionlogs/*
|
||||||
!resources/distok/versionlogs/.gitkeep
|
!resources/distok/versionlogs/.gitkeep
|
||||||
resources/fdroid/repo/icons/*.xml
|
resources/fdroid/repo/icons/*.xml
|
||||||
|
resources/fonts/*.ttf
|
||||||
*.apk
|
*.apk
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
import os
|
import os
|
||||||
|
|
||||||
APKTOOL_BIN = "java -jar /opt/ctc/tools/apktool.jar" # use latest
|
APKTOOL_BIN = "java -jar /opt/ctc/tools/apktool.jar"
|
||||||
|
DEX2JAR_BIN = "java -jar /opt/ctc/tools/dex2jar.jar"
|
||||||
|
|
||||||
# APKs must be placed under $DISTOK_FOLDER/android/$PACKAGE_ID-$VERSION_NUMBER.apk
|
# APKs must be placed under $DISTOK_FOLDER/android/$PACKAGE_ID-$VERSION_NUMBER.apk
|
||||||
# Example: /home/ave/distok/android/com.discord-909.apk
|
# Example: /home/ave/distok/android/com.discord-909.apk
|
||||||
|
@ -15,14 +16,14 @@ FDROID_FOLDER = "/opt/ctc/gitrepo/resources/fdroid"
|
||||||
RESULT_FOLDER = FDROID_FOLDER + "/repo"
|
RESULT_FOLDER = FDROID_FOLDER + "/repo"
|
||||||
|
|
||||||
# Repo for CutTheCord (https://gitdab.com/distok/cutthecord)
|
# Repo for CutTheCord (https://gitdab.com/distok/cutthecord)
|
||||||
DO_GITPULL = True
|
DO_GITPULL = False
|
||||||
REPO_FOLDER = "/opt/ctc/gitrepo"
|
REPO_FOLDER = "/opt/ctc/gitrepo"
|
||||||
|
|
||||||
# If false, jarsigner will be used for signing the apk.
|
# If false, jarsigner will be used for signing the apk.
|
||||||
DO_APKSIGNER = True
|
DO_APKSIGNER = True
|
||||||
|
|
||||||
# Keystore file, alias and pass. Required.
|
# Keystore file, alias and pass. Required.
|
||||||
KEYSTORE_FILE = "/opt/ctc/gitrepo/resources/keystore.jks"
|
KEYSTORE_FILE = "/opt/ctc/keystores/keystore.jks"
|
||||||
KEYSTORE_ALIAS = "test"
|
KEYSTORE_ALIAS = "test"
|
||||||
KEYSTORE_PASS = "password"
|
KEYSTORE_PASS = "password"
|
||||||
|
|
||||||
|
@ -42,8 +43,7 @@ PACKAGE_ID = "com.discord"
|
||||||
FORCE = False
|
FORCE = False
|
||||||
|
|
||||||
# Custom ringtones, default = applied to all the ones not explicitly stated
|
# Custom ringtones, default = applied to all the ones not explicitly stated
|
||||||
RINGTONES = {"ave": "/opt/ctc/gitrepo/resources/ringtones/sans.mp3",
|
RINGTONES = {"default": "/opt/ctc/gitrepo/resources/ringtones/removeskype.mp3"}
|
||||||
"default": "/opt/ctc/gitrepo/resources/ringtones/removeskype.mp3"}
|
|
||||||
|
|
||||||
# Custom icons, default = applied to all the ones not explicitly stated
|
# Custom icons, default = applied to all the ones not explicitly stated
|
||||||
ICONS = {"ave": "/opt/ctc/gitrepo/resources/icons/ctclogoave.png",
|
ICONS = {"ave": "/opt/ctc/gitrepo/resources/icons/ctclogoave.png",
|
||||||
|
@ -63,17 +63,11 @@ APP_NAMES = {"ave": "CutTheCord__Ave",
|
||||||
"default": "CutTheCord"}
|
"default": "CutTheCord"}
|
||||||
|
|
||||||
# Custom fonts, default = applied to all the ones not explicitly stated
|
# Custom fonts, default = applied to all the ones not explicitly stated
|
||||||
FONTS = {"ellie": {"whitney_bold.ttf": "/opt/ctc/gitrepo/resources/fonts/GoogleSans-Bold.ttf",
|
FONTS = {"ave": {"sourcecodepro_semibold.ttf": "/opt/ctc/gitrepo/resources/fonts/comic.ttf",
|
||||||
"whitney_semibold.ttf": "/opt/ctc/gitrepo/resources/fonts/GoogleSans-Medium.ttf",
|
"ginto_bold.ttf": "/opt/ctc/gitrepo/resources/fonts/whitney_bold.ttf",
|
||||||
"whitney_medium.ttf": "/opt/ctc/gitrepo/resources/fonts/GoogleSans-Regular.ttf"},
|
"ginto_medium.ttf": "/opt/ctc/gitrepo/resources/fonts/whitney_semibold.ttf",
|
||||||
"dyslexic": {"whitney_bold.ttf": "/opt/ctc/gitrepo/resources/fonts/OpenDyslexic3-Bold.ttf",
|
"ginto_regular.ttf": "/opt/ctc/gitrepo/resources/fonts/whitney_medium.ttf"},
|
||||||
"whitney_semibold.ttf": "/opt/ctc/gitrepo/resources/fonts/OpenDyslexic3-Bold.ttf",
|
"default": {}}
|
||||||
"whitney_medium.ttf": "/opt/ctc/gitrepo/resources/fonts/OpenDyslexic3-Regular.ttf"},
|
|
||||||
"murm": {"whitney_bold.ttf": "/opt/ctc/gitrepo/resources/fonts/comicbd.ttf",
|
|
||||||
"whitney_semibold.ttf": "/opt/ctc/gitrepo/resources/fonts/comicbd.ttf",
|
|
||||||
"whitney_medium.ttf": "/opt/ctc/gitrepo/resources/fonts/comic.ttf"},
|
|
||||||
"ave": {"sourcecodepro_semibold.ttf": "/opt/ctc/gitrepo/resources/fonts/comic.ttf"},
|
|
||||||
"default": {}}
|
|
||||||
|
|
||||||
# Amount of last builds cleanartifacts.py should keep
|
# Amount of last builds cleanartifacts.py should keep
|
||||||
CLEAN_ARTIFACT_KEEP_COUNT = 2
|
CLEAN_ARTIFACT_KEEP_COUNT = 2
|
||||||
|
|
Loading…
Reference in a new issue