1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/misskey_ynh.git synced 2024-09-03 19:46:03 +02:00

Merge branch 'testing' into no-python-dep

This commit is contained in:
Éric Gaspar 2021-06-05 07:07:11 +02:00 committed by GitHub
commit 5c65782e5e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 129 additions and 35 deletions

View file

@ -6,11 +6,11 @@ about: When creating a bug report, please use the following template to provide
**How to post a meaningful bug report** **How to post a meaningful bug report**
1. *Read this whole template first.* 1. *Read this whole template first.*
2. *Make sure you are on the right place:* 2. *Determine if you are on the right place:*
- *If you were performing an action on the app from the webadmin or the CLI (install, update, backup, restore, change url...), you are on the right place!* - *If you were performing an action on the app from the webadmin or the CLI (install, update, backup, restore, change_url...), you are on the right place!*
- *Otherwise, the issue may be due to the app itself. Refer to its documentation or repository for help.* - *Otherwise, the issue may be due to the app itself. Refer to its documentation or repository for help.*
- *In doubt, ask here and we will figure it out together.* - *When in doubt, post here and we will figure it out together.*
3. *Delete these italic comments as you write over them below, and remove this guide.* 3. *Delete the italic comments as you write over them below, and remove this guide.*
--- ---
### Describe the bug ### Describe the bug
@ -31,13 +31,13 @@ about: When creating a bug report, please use the following template to provide
- *If you performed a command from the CLI, the command itself is enough. For example:* - *If you performed a command from the CLI, the command itself is enough. For example:*
```sh ```sh
sudo yunohost app install misskey sudo yunohost app install the_app
``` ```
- *If you used the webadmin, please perform the equivalent command from the CLI first.* - *If you used the webadmin, please perform the equivalent command from the CLI first.*
- *If the error occurs in your browser, explain what you did:* - *If the error occurs in your browser, explain what you did:*
1. *Go to '...'* 1. *Go to '...'*
2. *Click on '....'* 2. *Click on '...'*
3. *Scroll down to '....'* 3. *Scroll down to '...'*
4. *See error* 4. *See error*
### Expected behavior ### Expected behavior

16
.github/PULL_REQUEST_TEMPLATE.md vendored Normal file
View file

@ -0,0 +1,16 @@
## Problem
- *Description of why you made this PR*
## Solution
- *And how do you fix that problem*
## PR Status
- [ ] Code finished and ready to be reviewed/tested
- [ ] The fix/enhancement were manually tested (if applicable)
## Automatic tests
Automatic tests can be triggered on https://ci-apps-dev.yunohost.org/ *after creating the PR*, by commenting "!testme", "!gogogadgetoci" or "By the power of systemd, I invoke The Great App CI to test this Pull Request!". (N.B. : for this to work you need to be a member of the Yunohost-Apps organization)

View file

@ -17,15 +17,42 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
Microblogging platform Microblogging platform
**Shipped version:** 12.81.0~ynh1 **Shipped version:** 12.82.0~ynh1
## Screenshots
![](./doc/screenshots/screenshot.jpg)
## Disclaimers / important information
### Important points to read before installing
- *Misskey* require a dedicated root domain, eg. `misskey.domain.tld`
- *Misskey* can take quite some time to install (more then 30 minutes). So take out some time and grab yourself a coffee.
- If installing from command line use of screen is rerecorded to avoid disconnection. See below.
- After installation, first page can take time to load and may show timeout error. Give it time to make itself ready for you. Refresh page after 2-3 minutes.
- The first account created will be an admin user and will have all the admin rights.
Using screen in case of disconnects
```
sudo apt-get install screen
screen
sudo yunohost app install https://github.com/YunoHost-Apps/misskey_ynh.git
```
Recover after disconnect:
```
screen -d
screen -r
```
## Documentation and resources ## Documentation and resources
* Official app website: https://join.misskey.page * Official app website: https://join.misskey.page
* Official user documentation: https://yunohost.org/apps * Official user documentation: https://yunohost.org/apps
* Upstream app code repository: https://github.com/syuilo/misskey * Upstream app code repository: https://github.com/misskey-dev/misskey
* YunoHost documentation for this app: https://yunohost.org/app_misskey * YunoHost documentation for this app: https://yunohost.org/app_misskey
* Report a bug: https://github.com/YunoHost-Apps/misskey_ynh/issues * Report a bug: https://github.com/YunoHost-Apps/misskey_ynh/issues

View file

@ -13,15 +13,42 @@ Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour
Platforme de Microblogging Platforme de Microblogging
**Version incluse :** 12.81.0~ynh1 **Version incluse :** 12.82.0~ynh1
## Captures d'écran
![](./doc/screenshots/screenshot.jpg)
## Avertissements / informations importantes
### Points importants à lire avant l'installation
- *Misskey* nécessite un domaine racine dédié, par ex. `misskey.domain.tld`
- *Misskey* peut prendre un certain temps à installer (plus de 30 minutes). Alors prenez un peu de temps et prenez un café.
- Si l'installation à partir de la ligne de commande, l'utilisation de l'écran est réenregistrée pour éviter la déconnexion. Voir ci-dessous.
- Après l'installation, la première page peut prendre du temps à charger et peut afficher une erreur de délai d'attente. Donnez-lui le temps de se préparer pour vous. Actualiser la page après 2-3 minutes.
- Le premier compte créé sera un utilisateur administrateur et disposera de tous les droits d'administrateur.
Utiliser *screen* en cas de déconnexion
```
sudo apt-get install screen
screen
sudo yunohost app install https://github.com/YunoHost-Apps/misskey_ynh.git
```
Récupérer après déconnexion :
```
screen -d
screen -r
```
## Documentations et ressources ## Documentations et ressources
* Site officiel de l'app : https://join.misskey.page * Site officiel de l'app : https://join.misskey.page
* Documentation officielle utilisateur : https://yunohost.org/apps * Documentation officielle utilisateur : https://yunohost.org/apps
* Dépôt de code officiel de l'app : https://github.com/syuilo/misskey * Dépôt de code officiel de l'app : https://github.com/misskey-dev/misskey
* Documentation YunoHost pour cette app : https://yunohost.org/app_misskey * Documentation YunoHost pour cette app : https://yunohost.org/app_misskey
* Signaler un bug : https://github.com/YunoHost-Apps/misskey_ynh/issues * Signaler un bug : https://github.com/YunoHost-Apps/misskey_ynh/issues

View file

@ -10,7 +10,7 @@
setup_private=1 setup_private=1
setup_public=1 setup_public=1
upgrade=1 upgrade=1
#upgrade=0 from_commit=CommitHash upgrade=1 from_commit=9ae6ee3553cd0fba8ed2d53755bf954106d51866
backup_restore=1 backup_restore=1
multi_instance=0 multi_instance=0
change_url=0 change_url=0
@ -18,6 +18,6 @@
Email= Email=
Notification= Notification=
;;; Upgrade options ;;; Upgrade options
; commit=CommitHash ; commit=9ae6ee3553cd0fba8ed2d53755bf954106d51866
name=Name and date of the commit. name=Merge pull request #4
manifest_arg=domain=DOMAIN&path=PATH&admin=USER&language=fr&is_public=1&password=pass&port=666& manifest_arg=domain=DOMAIN&path=PATH&admin=USER&language=fr&is_public=1&password=pass&port=666&

View file

@ -1,5 +1,5 @@
SOURCE_URL=https://github.com/syuilo/misskey/archive/12.81.0.tar.gz SOURCE_URL=https://github.com/misskey-dev/misskey/archive/refs/tags/12.82.0.tar.gz
SOURCE_SUM=7534060ef796398650ca2f105bc51024ac1cefc6b1702dafd25101e7ccc6a929 SOURCE_SUM=16d9787a96ee4593c5ec97f38ad646cb348e8761781433f51897de683c063c72
SOURCE_SUM_PRG=sha256sum SOURCE_SUM_PRG=sha256sum
SOURCE_FORMAT=tar.gz SOURCE_FORMAT=tar.gz
SOURCE_IN_SUBDIR=true SOURCE_IN_SUBDIR=true

20
doc/DISCLAIMER.md Normal file
View file

@ -0,0 +1,20 @@
### Important points to read before installing
- *Misskey* require a dedicated root domain, eg. `misskey.domain.tld`
- *Misskey* can take quite some time to install (more then 30 minutes). So take out some time and grab yourself a coffee.
- If installing from command line use of screen is rerecorded to avoid disconnection. See below.
- After installation, first page can take time to load and may show timeout error. Give it time to make itself ready for you. Refresh page after 2-3 minutes.
- The first account created will be an admin user and will have all the admin rights.
Using screen in case of disconnects
```
sudo apt-get install screen
screen
sudo yunohost app install https://github.com/YunoHost-Apps/misskey_ynh.git
```
Recover after disconnect:
```
screen -d
screen -r
```

20
doc/DISCLAIMER_fr.md Normal file
View file

@ -0,0 +1,20 @@
### Points importants à lire avant l'installation
- *Misskey* nécessite un domaine racine dédié, par ex. `misskey.domain.tld`
- *Misskey* peut prendre un certain temps à installer (plus de 30 minutes). Alors prenez un peu de temps et prenez un café.
- Si l'installation à partir de la ligne de commande, l'utilisation de l'écran est réenregistrée pour éviter la déconnexion. Voir ci-dessous.
- Après l'installation, la première page peut prendre du temps à charger et peut afficher une erreur de délai d'attente. Donnez-lui le temps de se préparer pour vous. Actualiser la page après 2-3 minutes.
- Le premier compte créé sera un utilisateur administrateur et disposera de tous les droits d'administrateur.
Utiliser *screen* en cas de déconnexion
```
sudo apt-get install screen
screen
sudo yunohost app install https://github.com/YunoHost-Apps/misskey_ynh.git
```
Récupérer après déconnexion :
```
screen -d
screen -r
```

Binary file not shown.

After

Width:  |  Height:  |  Size: 148 KiB

View file

@ -6,13 +6,13 @@
"en": "Microblogging platform", "en": "Microblogging platform",
"fr": "Platforme de Microblogging" "fr": "Platforme de Microblogging"
}, },
"version": "12.81.0~ynh1", "version": "12.82.0~ynh1",
"url": "https://join.misskey.page/en/", "url": "https://join.misskey.page/en/",
"upstream": { "upstream": {
"license": "AGPL-3.0", "license": "AGPL-3.0",
"website": "https://join.misskey.page", "website": "https://join.misskey.page",
"userdoc": "https://yunohost.org/apps", "userdoc": "https://yunohost.org/apps",
"code": "https://github.com/syuilo/misskey" "code": "https://github.com/misskey-dev/misskey"
}, },
"license": "AGPL-3.0", "license": "AGPL-3.0",
"maintainer": { "maintainer": {

View file

@ -1,16 +0,0 @@
## Problem
- *Description of why you made this PR*
## Solution
- *And how do you fix that problem*
## PR Status
- [ ] Code finished.
- [ ] Tested with Package_check.
- [ ] Fix or enhancement tested.
- [ ] Upgrade from last version tested.
- [ ] Can be reviewed and tested.
## Package_check results
---
* An automatic package_check will be launch at https://ci-apps-dev.yunohost.org/, when you add a specific comment to your Pull Request: "!testme", "!gogogadgetoci" or "By the power of systemd, I invoke The Great App CI to test this Pull Request!"*