Docs
This commit is contained in:
parent
72f35e4e04
commit
21819b5f41
|
@ -64,6 +64,7 @@ download:
|
||||||
name: MacOS
|
name: MacOS
|
||||||
tail: macos.dmg
|
tail: macos.dmg
|
||||||
size: 76 MB
|
size: 76 MB
|
||||||
|
instructions: ./macos-install
|
||||||
|
|
||||||
- type: linux
|
- type: linux
|
||||||
name: Linux
|
name: Linux
|
||||||
|
|
|
@ -171,7 +171,7 @@
|
||||||
{% for platform in site.download.downloads %}
|
{% for platform in site.download.downloads %}
|
||||||
<div class="download_link {{platform.type}}">
|
<div class="download_link {{platform.type}}">
|
||||||
<a href="{{ site.download.url | replace: '%PLATFORM_TAIL%', platform.tail | replace: '%VERSION%', site.download.version }}"><i></i> {{platform.name}}</a>
|
<a href="{{ site.download.url | replace: '%PLATFORM_TAIL%', platform.tail | replace: '%VERSION%', site.download.version }}"><i></i> {{platform.name}}</a>
|
||||||
<small>({{ platform.size }})</small>
|
<small>({{ platform.size }}{% if platform.instructions %} | <a href='{{ platform.instructions }}'>Help with installation</a>{% endif %})</small>
|
||||||
</div>
|
</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</section>
|
</section>
|
||||||
|
@ -189,7 +189,9 @@
|
||||||
<!-- FOOTER -->
|
<!-- FOOTER -->
|
||||||
<div id="footer_wrap" class="outer">
|
<div id="footer_wrap" class="outer">
|
||||||
<footer class="inner">
|
<footer class="inner">
|
||||||
<p></p>
|
<p>
|
||||||
|
By downloading and/or using F-Chat Rising you accept its <a href="https://github.com/mrstallion/fchat-rising/blob/master/LICENSE">license</a>.
|
||||||
|
</p>
|
||||||
</footer>
|
</footer>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,24 @@
|
||||||
|
---
|
||||||
|
layout: rising
|
||||||
|
---
|
||||||
|
|
||||||
|
# Installing F-Chat Rising on MacOS
|
||||||
|
|
||||||
|
> ### Warning!
|
||||||
|
>
|
||||||
|
> F-Chat Rising is available only as an 'unsigned' application.
|
||||||
|
> Running it on MacOS requires you to disable security
|
||||||
|
> protections that are in place for a good reason:
|
||||||
|
> Unsigned applications are a common way to distribute malware.
|
||||||
|
>
|
||||||
|
> Consider these alternatives to increase your safety:
|
||||||
|
>
|
||||||
|
> 1) Compile F-Chat Rising yourself from the [source](https://github.com/mrstallion/fchat-rising); or
|
||||||
|
> 2) Donate a code signing certificate so we can sign the client.
|
||||||
|
>
|
||||||
|
> F-Chat Rising is not malware.
|
||||||
|
> No reason not to trust what the internet says, _right?_
|
||||||
|
|
||||||
|
If you are confident that you wish to continue despite all that,
|
||||||
|
you can find instructions for running unsigned applications [here](https://www.wikihow.com/Install-Software-from-Unsigned-Developers-on-a-Mac).
|
||||||
|
|
Loading…
Reference in New Issue