chore: rephrase 5chan description

This commit is contained in:
plebeius
2026-02-27 13:56:29 +08:00
parent d3ddc74354
commit 13abea916d
7 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ Only record items that are repo-specific, likely to recur, and have a concrete m
## Project Overview
5chan is a serverless, adminless, decentralized 4chan alternative built on the Bitsocial protocol.
5chan is a serverless, adminless, decentralized imageboard built on the Bitsocial protocol.
## Instruction Priority
+3 -3
View File
@@ -9,7 +9,7 @@ _Telegram group for this repo https://t.me/fivechandev_
# 5chan
5chan is a serverless, adminless, decentralized and open-source 4chan alternative built on the [Bitsocial protocol](https://bitsocial.net). It features the same directory structure as 4chan, but with a crucial difference: **anyone can create and own boards, and multiple boards can compete for each directory slot**.
5chan is a serverless, adminless, decentralized and open-source imageboard built on the [Bitsocial protocol](https://bitsocial.net). It features the classic imageboard directory structure, but with a crucial difference: **anyone can create and own boards, and multiple boards can compete for each directory slot**.
## Key Features
@@ -17,7 +17,7 @@ _Telegram group for this repo https://t.me/fivechandev_
Unlike traditional imageboards, 5chan has no global admins or central authority. Anyone can create unlimited boards using their own [bitsocial node](https://github.com/bitsocialhq/bitsocial-cli). Each board owner runs their own P2P node that users connect to peer-to-peer, giving them complete control over their board's content, moderation, and rules.
### Competitive Directory System
5chan maintains the familiar 4chan directory structure (Japanese Culture, Video Games, Interests, Creative, etc.), but introduces competition: **multiple boards can compete for each directory slot**. For example, there can be unlimited "Business & Finance" boards, but only the highest-voted one appears in the directory on the homepage.
5chan maintains the familiar imageboard directory structure (Japanese Culture, Video Games, Interests, Creative, etc.), but introduces competition: **multiple boards can compete for each directory slot**. For example, there can be unlimited "Business & Finance" boards, but only the highest-voted one appears in the directory on the homepage.
Currently, directory assignments are temporarily handpicked by developers through GitHub pull requests. In the future, this will be fully automated through **gasless pubsub voting** (see [Future Roadmap](#future-roadmap) below), making the process completely decentralized and community-driven.
@@ -77,7 +77,7 @@ To have your board appear in a directory on the 5chan homepage:
3. Add your board's entry with:
- Title: in the format `/directoryCode/ - Title`, e.g. "/biz/ - Business & Finance";
- Address: the bitsocial community address, whether IPNS key (`12KooW...`) or readable crypto address (`mydomain.eth`);
- NSFW status: `true` or `false`, must be the same as 4chan.
- NSFW status: `true` or `false`, must match the standard classification for the directory code.
4. The developers will review your PR and merge it if approved
+1 -1
View File
@@ -6,7 +6,7 @@
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="description" content="serverless, adminless, decentralized 4chan alternative" />
<meta name="description" content="serverless, adminless, decentralized imageboard" />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="manifest" href="/manifest.json" />
<title>5chan</title>
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "5chan",
"version": "0.6.6",
"description": "A bitsocial client with a 4chan UI",
"description": "A Bitsocial client with an imageboard UI",
"type": "module",
"author": "Bitsocial Labs",
"license": "GPL-2.0-only",
+1 -1
View File
@@ -1,5 +1,5 @@
/**
* Board code groups matching 4chan's bracket structure
* Board code groups matching the classic imageboard bracket structure
* Each group represents boards displayed together in brackets
*/
export const BOARD_CODE_GROUPS: string[][] = [
+4 -4
View File
@@ -86,9 +86,9 @@ const FAQ = () => {
What is 5chan?
</dt>
<dd>
5chan is a serverless, adminless, decentralized 4chan alternative where anyone can create and own unlimited boards. All data comes from the Bitsocial
protocol, it's all text including links from which media is embedded, shared peer-to-peer. Users do not need to register an account before participating
in the community.
5chan is a serverless, adminless, decentralized imageboard where anyone can create and own unlimited boards. All data comes from the Bitsocial protocol,
it's all text including links from which media is embedded, shared peer-to-peer. Users do not need to register an account before participating in the
community.
</dd>
<dt id='howaccess'>How do I access the boards?</dt>
<dd>
@@ -163,7 +163,7 @@ const FAQ = () => {
<span className='greentext'>{'>'}This is a quote</span>").
<br />
<br />
Unlike 4chan and other imageboards, 5chan does <i>not</i> allow to quote more than one post at a time. You can only reply to one post at a time. This is
Unlike traditional imageboards, 5chan does <i>not</i> allow to quote more than one post at a time. You can only reply to one post at a time. This is
because 5chan is a client for the Bitsocial protocol, which is designed to be an alternative to Reddit-like social media, in which you can only reply to
one post at a time.
<br />
+1 -1
View File
@@ -43,7 +43,7 @@ export default defineConfig({
manifest: {
name: '5chan',
short_name: '5chan',
description: 'A serverless, adminless, decentralized 4chan alternative',
description: 'A serverless, adminless, decentralized imageboard',
theme_color: '#ffffff',
background_color: '#ffffee',
display: 'standalone',