docs: refactor "about us" text

def/md_edit
Inex Code 2022-12-31 09:57:12 +02:00 committed by def
commit b3bc70ace0
5 changed files with 59 additions and 32 deletions

View File

@ -97,16 +97,16 @@ steps:
GOOGLE_KEYSTORE_PASS: GOOGLE_KEYSTORE_PASS:
from_secret: GOOGLE_KEYSTORE_PASS from_secret: GOOGLE_KEYSTORE_PASS
# - name: Build Intermediate Android Release Artifact (Bundle) - name: Build Intermediate Android Release Artifact (Bundle)
# commands: commands:
# - ./ci.py --build-bundle - ./ci.py --build-bundle
# environment: environment:
# STANDALONE_KEYSTORE_PASS: STANDALONE_KEYSTORE_PASS:
# from_secret: STANDALONE_KEYSTORE_PASS from_secret: STANDALONE_KEYSTORE_PASS
# FDROID_KEYSTORE_PASS: FDROID_KEYSTORE_PASS:
# from_secret: FDROID_KEYSTORE_PASS from_secret: FDROID_KEYSTORE_PASS
# GOOGLE_KEYSTORE_PASS: GOOGLE_KEYSTORE_PASS:
# from_secret: GOOGLE_KEYSTORE_PASS from_secret: GOOGLE_KEYSTORE_PASS
- name: Sign Android Release Artifact (.APK) for Standalone Use - name: Sign Android Release Artifact (.APK) for Standalone Use
commands: commands:
@ -132,16 +132,16 @@ steps:
GOOGLE_KEYSTORE_PASS: GOOGLE_KEYSTORE_PASS:
from_secret: GOOGLE_KEYSTORE_PASS from_secret: GOOGLE_KEYSTORE_PASS
# - name: Sign Android Release Artifact (Bundle) for Google Play - name: Sign Android Release Artifact (Bundle) for Google Play
# commands: commands:
# - ./ci.py --sign-bundle - ./ci.py --sign-bundle
# environment: environment:
# STANDALONE_KEYSTORE_PASS: STANDALONE_KEYSTORE_PASS:
# from_secret: STANDALONE_KEYSTORE_PASS from_secret: STANDALONE_KEYSTORE_PASS
# FDROID_KEYSTORE_PASS: FDROID_KEYSTORE_PASS:
# from_secret: FDROID_KEYSTORE_PASS from_secret: FDROID_KEYSTORE_PASS
# GOOGLE_KEYSTORE_PASS: GOOGLE_KEYSTORE_PASS:
# from_secret: GOOGLE_KEYSTORE_PASS from_secret: GOOGLE_KEYSTORE_PASS
- name: Package Linux AppImage Artifact - name: Package Linux AppImage Artifact
commands: commands:

View File

@ -1,3 +1,4 @@
org.gradle.jvmargs=-Xmx1536M org.gradle.jvmargs=-Xmx1536M
android.useAndroidX=true android.useAndroidX=true
android.enableJetifier=true android.enableJetifier=true
android.bundle.enableUncompressedNativeLibs=false

View File

@ -1,12 +1,24 @@
### About us ### About us
More and more corporations want to control our data. More and more organizations want to own our data. The project allows everyone to create private services for themselves and their loved ones, and only you can fully manage your own **data** on your own server.
We want to have full control of our **data** on our own.
### Our mission **Digital independence and privacy, available to everyone.**
Digital independence and privacy, available to everyone
### Target ### Where to find us?
Develop the program, which will allow everyone to deploy their private services for themselves and their neighbours. [Official site](https://selfprivacy.org)
[Source Code](https://git.selfprivacy.org/kherel/selfprivacy.org.app)
[Go to Fdroid page](http://f-droid.org/en/packages/pro.kherel.selfprivacy)
Channels with news:
- [matrix: #news:selfprivacy.org](https://matrix.to/#/#news:selfprivacy.org)
- [telegram: @selfprivacy](https://t.me/selfprivacy)
Chats, where you can get help:
- [matrix: #chat:selfprivacy.org](https://matrix.to/#/#chat:selfprivacy.org)
- [telegram: @selfprivacy_chat](https://t.me/selfprivacy_chat)

View File

@ -1,12 +1,25 @@
### О проекте ### О проекте
Всё больше организаций хотят владеть нашими данными Всё больше организаций хотят владеть нашими данными. Проект позволяет каждому создавать приватные сервисы для себя и своих близких, и только вам в полной мере распоряжаться собственными **данными** на своём сервере.
Проект позволяет только Вам в полной мере распоряжаться собственными **данными** на своём сервере.
### Миссия проекта **Цифровая независимость и приватность доступная каждому.**
Цифровая независимость и приватность доступная каждому.
### Цель ### Где нас найти?
Развивать программу, которая позволит каждому создавать приватные сервисы для себя и своих близких. [Официальный сайт](https://selfprivacy.org)
[Исходный код](https://git.selfprivacy.org/kherel/selfprivacy.org.app)
[Перейти на страницу Fdroid](http://f-droid.org/en/packages/pro.kherel.selfprivacy)
Каналы с новостями:
- [matrix: #news:selfprivacy.org](https://matrix.to/#/#news:selfprivacy.org)
- [telegram: @selfprivacy](https://t.me/selfprivacy)
Чаты, где вам помогут:
- [matrix: #chat:selfprivacy.org](https://matrix.to/#/#chat:selfprivacy.org)
- [telegram: @selfprivacy_chat](https://t.me/selfprivacy_chat)

1
ci.py
View File

@ -149,6 +149,7 @@ def package_linux_archive():
def deploy_gitea_release(): def deploy_gitea_release():
gitea_upload_attachment(f"{HOST_MOUNTED_VOLUME}/standalone_{APP_NAME}-{APP_SEMVER}.apk") gitea_upload_attachment(f"{HOST_MOUNTED_VOLUME}/standalone_{APP_NAME}-{APP_SEMVER}.apk")
gitea_upload_attachment(f"{HOST_MOUNTED_VOLUME}/standalone_{APP_NAME}-{APP_SEMVER}.apk.idsig") gitea_upload_attachment(f"{HOST_MOUNTED_VOLUME}/standalone_{APP_NAME}-{APP_SEMVER}.apk.idsig")
gitea_upload_attachment(f"{HOST_MOUNTED_VOLUME}/{APP_NAME}-{APP_SEMVER}.aab")
gitea_upload_attachment(f"{HOST_MOUNTED_VOLUME}/SelfPrivacy-{APP_SEMVER}-x86_64.AppImage") gitea_upload_attachment(f"{HOST_MOUNTED_VOLUME}/SelfPrivacy-{APP_SEMVER}-x86_64.AppImage")
gitea_upload_attachment(f"{HOST_MOUNTED_VOLUME}/SelfPrivacy-{APP_SEMVER}-x86_64.AppImage.zsync") gitea_upload_attachment(f"{HOST_MOUNTED_VOLUME}/SelfPrivacy-{APP_SEMVER}-x86_64.AppImage.zsync")
gitea_upload_attachment(f"{HOST_MOUNTED_VOLUME}/{APP_NAME}-{APP_SEMVER}.flatpak") gitea_upload_attachment(f"{HOST_MOUNTED_VOLUME}/{APP_NAME}-{APP_SEMVER}.flatpak")