2025-02-27 10:17:59 -05:00
## notfire's modified version of [akkoma-fe for iceshrimp.net](https://iceshrimp.dev/iceshrimp/akkoma-fe) with some personal qol stuff
## list of changes in this fork:
- additional confirmations for:
- post visibility (choose direct, private, unlisted, public, local)
2025-08-09 18:03:09 -04:00
- posting with an attachment marked sensitive but no cw (todo: fix the conf showing up with no attachments)
2025-02-27 10:17:59 -05:00
- biting:
- users
- notes
- notification support for both
- make boosts follow default visibility
- notification sounds:
- disabled by default, includes the misskey notif sound if enabled
- custom ones (overriding the default) that can be randomly picked from
- custom ones for certain users
- volume controls for all sounds individually
- rename "repeats" to "boosts"
2025-03-31 09:20:31 -04:00
- add toggle for deduping boosts (this was done by default upstream)
2025-02-27 10:17:59 -05:00
- raise limits:
- polls can now have up to 20 options instead of 4
2025-03-16 11:56:05 -04:00
- polls can now last anywhere from 1 second to 1000 years
- optional alternate gravestone when using websockets that still shows post content but removes buttons
2025-03-30 14:33:29 -04:00
- filters for reactions:
- matching by regex, domain-specific, or catch-all
- filters the actual reactions to post as well as notifications
2025-04-01 18:22:28 -04:00
- for unreads:
- option to disable favicon badge changing on unreads
- option to disable title showing unreads
2025-08-09 18:03:09 -04:00
- option to not scroll to the top when showing unreads
2025-04-17 09:02:01 -04:00
- update the list of emojis:
- switched weird unicode ones to proper emojis
2025-06-25 22:21:24 -04:00
- emojis are sourced from discord's list of emojis
2025-04-17 09:02:01 -04:00
- emojis are now sorted by category (like on every other emoji picker) instead of alphabetically
- script to get new emojis is included for future unicode versions
2025-09-07 15:02:04 -04:00
- cat stuff!!
- toggles for:
- showing "cat" badge on user profiles
- showing cat ears behind users' avatars
- "nyaize"-ing posts from authors with "Speak as Cat" enabled
- this requires [a backend patch ](https://git.notfire.cc/notfire/iceshrimp-patches/src/branch/main/0007-cat-fields-in-akko-api.patch )
2025-04-27 12:51:16 -04:00
- add toggle for showing post edit notifications
2025-06-06 13:15:15 -04:00
- add support for accepted follow request notifications
2025-09-07 15:02:04 -04:00
- this requires [a backend patch ](https://git.notfire.cc/notfire/iceshrimp-patches/src/branch/main/0005-previews-in-mastoapi.patch )
2025-08-09 18:28:36 -04:00
- add option to prevent page from getting pushed when making a new post with streaming api enabled (similar to 3rd "for unreads" option)
2025-08-12 13:39:55 -04:00
- add link on user card to open profiles in iceshrimp-fe
2025-08-14 20:19:36 -04:00
- add option to open conversation view by clicking empty space in posts
2025-08-15 18:19:51 -04:00
- add ability to close the reply box under posts that were deleted
- also an option to close it automatically
2025-06-27 17:53:37 -04:00
- add a script to download ruffle for flash support (requires python3 and requests library)
- download by entering `tools/` and running `python3 download_ruffle.py`
2024-09-06 07:32:25 +03:00
2025-09-07 15:02:04 -04:00
### also of note for anyone running this fork
- aside from the stuff mentioned above, the following features will require patches to work:
- mfm ([patch ](https://git.notfire.cc/notfire/iceshrimp-patches/src/branch/main/0004-mfm-in-mastoapi.patch ))
- previewing posts ([patch ](https://git.notfire.cc/notfire/iceshrimp-patches/src/branch/main/0005-previews-in-mastoapi.patch ))
2024-09-06 07:32:25 +03:00
---
2023-09-23 20:34:30 -04:00
# Akkoma-FE
2016-10-26 16:46:32 +02:00
2022-08-23 16:12:06 +01:00
 
2022-12-29 15:22:06 +00:00
This is a fork of Akkoma-FE from the Pleroma project, with support for new Akkoma features such as:
2022-07-17 13:09:44 +00:00
- MFM support via [marked-mfm ](https://akkoma.dev/sfr/marked-mfm )
- Custom emoji reactions
2017-02-18 11:49:34 -05:00
2017-11-07 15:42:34 +01:00
# For Translators
2023-09-23 20:34:30 -04:00
The [Weblate UI ](https://translate.akkoma.dev/projects/akkoma/pleroma-fe/ ) is recommended for adding or modifying translations for Akkoma-FE.
2022-07-28 23:56:48 +00:00
2022-07-28 23:59:53 +00:00
Alternatively, edit/create `src/i18n/$LANGUAGE_CODE.json` (where `$LANGUAGE_CODE` is the [ISO 639-1 code ](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes ) for your language), then add your language to [src/i18n/messages.js ](https://akkoma.dev/AkkomaGang/pleroma-fe/src/branch/develop/src/i18n/messages.js ) if it doesn't already exist there.
2022-07-28 23:56:48 +00:00
2022-12-29 15:22:06 +00:00
Akkoma-FE will set your language by your browser locale, but you can temporarily force it in the code by changing the locale in main.js.
2017-11-07 15:42:34 +01:00
2017-01-19 11:51:27 -05:00
# FOR ADMINS
2022-12-29 15:22:06 +00:00
To use Akkoma-FE in Akkoma, use the [frontend ](https://docs.akkoma.dev/stable/administration/CLI_tasks/frontend/ ) CLI task to install Akkoma-FE, then modify your configuration as described in the [Frontend Management ](https://docs.akkoma.dev/stable/configuration/frontend_management/ ) doc.
2017-01-19 11:51:27 -05:00
2016-10-26 16:46:32 +02:00
## Build Setup
2024-08-03 09:54:14 +02:00
Make sure you have [Node.js ](https://nodejs.org/ ) installed. You can check `/.woodpecker.yml` for which node version the Akkoma CI currently uses.
2016-10-26 16:46:32 +02:00
``` bash
# install dependencies
2023-09-23 20:33:46 -04:00
corepack enable
2017-02-19 16:15:42 -05:00
yarn
2016-10-26 16:46:32 +02:00
# serve with hot reload at localhost:8080
npm run dev
# build for production with minification
npm run build
# run unit tests
npm run unit
```
2018-12-11 18:45:25 +03:00
# For Contributors:
2023-09-23 20:34:30 -04:00
You can create file `/config/local.json` (see [example ](https://akkoma.dev/AkkomaGang/akkoma-fe/src/branch/develop/config/local.example.json )) to enable some convenience dev options:
2018-12-11 18:45:25 +03:00
* `target` : makes local dev server redirect to some existing instance's BE instead of local BE, useful for testing things in near-production environment and searching for real-life use-cases.
* `staticConfigPreference` : makes FE's `/static/config.json` take preference of BE-served `/api/statusnet/config.json` . Only works in dev mode.
FE Build process also leaves current commit hash in global variable `___pleromafe_commit_hash` so that you can easily see which pleroma-fe commit instance is running, also helps pinpointing which commit was used when FE was bundled into BE.
2018-06-08 15:25:48 +02:00
# Configuration
2019-03-30 12:42:42 +02:00
Edit config.json for configuration.
2018-11-07 16:56:12 +01:00
## Options
### Login methods
2023-09-23 20:34:30 -04:00
```loginMethod` `` can be set to either ` ``password` `` (the default) or ` ``token` ``, which will use the full oauth redirection flow, which is useful for SSO situations.