aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-05-16 16:35:51 +0530
committerLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-05-16 20:25:15 +0530
commitbe46b3a6fd341c38d227ab846ecc130e2897133b (patch)
tree77cd982e0ae8a7b3cffb2618ed48142a45e31991
parentNew Crowdin updates (#1421) (diff)
downloadferdium-app-be46b3a6fd341c38d227ab846ecc130e2897133b.tar.gz
ferdium-app-be46b3a6fd341c38d227ab846ecc130e2897133b.tar.zst
ferdium-app-be46b3a6fd341c38d227ab846ecc130e2897133b.zip
Updated documentation with gDrive url and other bits related to nightlies. [skip ci]
-rw-r--r--CONTRIBUTING.md15
-rw-r--r--README.md11
2 files changed, 19 insertions, 7 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index d4a3ef02c..5f901364e 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -142,14 +142,15 @@ The above will place all the built artifacts into the `/ferdi` folder within the
142If you want to copy them outside of the image, simply mount a volume into a different location, and copy all files from `/ferdi` into the mounted folder (`/ferdi-out` in the example command below). 142If you want to copy them outside of the image, simply mount a volume into a different location, and copy all files from `/ferdi` into the mounted folder (`/ferdi-out` in the example command below).
143 143
144```bash 144```bash
145mkdir -p tmp-out 145DATE=`date +"%Y-%b-%d-%H-%M"`
146docker run -v $PWD/tmp-out:/ferdi-out -it ferdi-package sh 146mkdir -p ~/Downloads/$DATE
147docker run -e GIT_SHA=`git rev-parse --short HEAD` -v ~/Downloads/$DATE:/ferdi-out -it ferdi-package sh
147# inside the container: 148# inside the container:
148mv /ferdi/Ferdi-5.6.0-nightly.18.AppImage /ferdi-out/Ferdi-`date +%Y-%b-%d`.AppImage 149mv /ferdi/Ferdi-*.AppImage /ferdi-out/Ferdi-$GIT_SHA.AppImage
149mv /ferdi/ferdi-5.6.0-nightly.18.tar.gz /ferdi-out/Ferdi-`date +%Y-%b-%d`.tar.gz 150mv /ferdi/ferdi-*.tar.gz /ferdi-out/Ferdi-$GIT_SHA.tar.gz
150mv /ferdi/ferdi-5.6.0-nightly.18.x86_64.rpm /ferdi-out/Ferdi-`date +%Y-%b-%d`.x86_64.rpm 151mv /ferdi/ferdi-*.x86_64.rpm /ferdi-out/Ferdi-x86_64-$GIT_SHA.rpm
151mv /ferdi/ferdi_5.6.0-nightly.18_amd64.deb /ferdi-out/Ferdi_`date +%Y-%b-%d`_amd64.deb 152mv /ferdi/ferdi_*_amd64.deb /ferdi-out/Ferdi-amd64-$GIT_SHA.deb
152mv /ferdi/ferdi /ferdi-out/Ferdi_`date +%Y-%b-%d` 153mv /ferdi/ferdi /ferdi-out/Ferdi-$GIT_SHA
153``` 154```
154 155
155### Start development app 156### Start development app
diff --git a/README.md b/README.md
index e2448bde9..be98070a4 100644
--- a/README.md
+++ b/README.md
@@ -231,6 +231,17 @@ We welcome all contributors. Please read the [contributing guidelines](CONTRIBUT
231 231
232Nightly releases are automatically triggered every day ([details](https://github.com/getferdi/ferdi/pull/990)) and available in [getferdi/nightlies](https://github.com/getferdi/nightlies/releases). Maintainers still need to manually publish the draft releases as pre-releases for now. 232Nightly releases are automatically triggered every day ([details](https://github.com/getferdi/ferdi/pull/990)) and available in [getferdi/nightlies](https://github.com/getferdi/nightlies/releases). Maintainers still need to manually publish the draft releases as pre-releases for now.
233 233
234**🔥🔥 UPDATE ON NIGHTLIES 🔥🔥**
235
2361. Since the nightly builds are broken for now, one of the active contributors is sharing builds that are built directly from source in [this location](https://drive.google.com/drive/folders/1mJmKbhpVHdb066IHlrdYiD8TG9wlmuBv?usp=sharing). You are free to use these and report any bugs - please be sure to specify *all the information* that shows up in the *About Ferdi* dialog on your installation. Please also upvote [this issue](https://github.com/getferdi/ferdi/issues/1254) where the broken nightly CI process is being tracked.
2372. Since this is being done on a volunteer basis AND being built from the source code, please be aware that there might be some bugs (introduced rarely - completely unintentionally). We will try to vet the builds before uploading them for your use. But, YMMV.
2383. Since the builds are being built from source, they will contain the latest and greatest of the application code as well as the recipes code - so, please be sure to test and log bugs for anything that is not working.
2394. For macOS users on Catalina or above, please be aware that the OS does not recognize unsigned applications that are not downloaded from the Mac App Store. To work around this issue, you will have to run the following command:
240
241```bash
242sudo xattr -rd com.apple.quarantine <path/to/Ferdi.app>
243```
244
234## Troubleshooting recipes (self-help) 245## Troubleshooting recipes (self-help)
235 246
236One of the issues being raised by the awesome users of Ferdi is that certain service-functionalities do not work. As good example of this is either the unread count (badge) stops working for specific services or the gmail logins don't work anymore. (These are just 2 of the most common problems reported). 247One of the issues being raised by the awesome users of Ferdi is that certain service-functionalities do not work. As good example of this is either the unread count (badge) stops working for specific services or the gmail logins don't work anymore. (These are just 2 of the most common problems reported).