Show More
@@ -1,22 +1,22 b'' | |||
|
1 |
VERSION = '2.5.0 |
|
|
1 | VERSION = '2.5.0 Yasako' | |
|
2 | 2 | SITE_NAME = 'Neboard' |
|
3 | 3 | |
|
4 | 4 | CACHE_TIMEOUT = 600 # Timeout for caching, if cache is used |
|
5 | 5 | LOGIN_TIMEOUT = 3600 # Timeout between login tries |
|
6 | 6 | MAX_TEXT_LENGTH = 30000 # Max post length in characters |
|
7 | 7 | MAX_IMAGE_SIZE = 8 * 1024 * 1024 # Max image size |
|
8 | 8 | |
|
9 | 9 | # Thread bumplimit |
|
10 | 10 | MAX_POSTS_PER_THREAD = 10 |
|
11 | 11 | # Old posts will be archived or deleted if this value is reached |
|
12 | 12 | MAX_THREAD_COUNT = 5 |
|
13 | 13 | THREADS_PER_PAGE = 3 |
|
14 | 14 | DEFAULT_THEME = 'md' |
|
15 | 15 | LAST_REPLIES_COUNT = 3 |
|
16 | 16 | |
|
17 | 17 | # Enable archiving threads instead of deletion when the thread limit is reached |
|
18 | 18 | ARCHIVE_THREADS = True |
|
19 | 19 | # Limit posting speed |
|
20 | 20 | LIMIT_POSTING_SPEED = False |
|
21 | 21 | # Thread update |
|
22 | 22 | WEBSOCKETS_ENABLED = True |
@@ -1,67 +1,77 b'' | |||
|
1 | 1 | # 1.5 Aker # |
|
2 | 2 | * Saving image previews size. No space will be shown below images in some |
|
3 | 3 | styles. |
|
4 | 4 | * Showing notification in page title when new posts are loaded into the open |
|
5 | 5 | thread. |
|
6 | 6 | * Thread moderation fixes |
|
7 | 7 | * Added new gallery with search links and image metadata |
|
8 | 8 | |
|
9 | 9 | # 1.6 Amon # |
|
10 | 10 | * Deleted threads are moved to archive instead of permanent delete |
|
11 | 11 | * User management fixes and optimizations |
|
12 | 12 | * Markdown fixes |
|
13 | 13 | * Pagination changes. Pages counter now starts from 1 instead of 0 |
|
14 | 14 | * Added API for viewing threads and posts |
|
15 | 15 | * New tag popularity algorithm |
|
16 | 16 | * Tags list page changes. Now tags list is more like a tag cloud |
|
17 | 17 | |
|
18 | 18 | # 1.7 Anubis |
|
19 | 19 | * [ADMIN] Added admin page for post editing, capable of adding and removing tags |
|
20 | 20 | * [CODE] Post view unification |
|
21 | 21 | * Post caching instead of thread caching |
|
22 | 22 | * Simplified tag list page |
|
23 | 23 | * [API] Added api for thread update in json |
|
24 | 24 | * Image duplicate check |
|
25 | 25 | * Posting over ajax (no page reload now) |
|
26 | 26 | * Update last update time with thread update |
|
27 | 27 | * Added z-index to the images to move the dragged image to front |
|
28 | 28 | * [CODE] Major view refactoring. Now almost all views are class-based |
|
29 | 29 | |
|
30 | 30 | # 1.8 Kara |
|
31 | 31 | * [CODE] Removed thread update logging |
|
32 | 32 | * [CODE] Refactored compact form. Now it uses the same one form and moves |
|
33 | 33 | elements instead of swapping them |
|
34 | 34 | * [CODE] Moved image to a separate model. This will allow to add multiple |
|
35 | 35 | images to a post |
|
36 | 36 | * Added search over posts and tags |
|
37 | 37 | * [ADMIN] Command to remove empty users |
|
38 | 38 | |
|
39 | 39 | # 2.0 D'Anna |
|
40 | 40 | * Removed users. Now settings are stored in sessions |
|
41 | 41 | * Changed markdown to bbcode |
|
42 | 42 | * Removed linked tags |
|
43 | 43 | * [ADMIN] Added title to the post logs to make them more informative |
|
44 | 44 | |
|
45 | 45 | # 2.2 |
|
46 | 46 | * Support websockets for thread update |
|
47 | 47 | * Using div as line separator |
|
48 | 48 | * CSS and JS compressor |
|
49 | 49 | |
|
50 | 50 | # 2.2.1 |
|
51 | 51 | * Changed logs style |
|
52 | 52 | * Text preparsing. Support markdown-style text that parses into bbcode |
|
53 | 53 | * "bumpable" field for threads. If the thread became non-bumpable, it will |
|
54 | 54 | remain in this state even if the bumplimit changes or posts will be deleted from |
|
55 | 55 | it |
|
56 | 56 | |
|
57 | 57 | # 2.2.4 |
|
58 | 58 | * Default settings. There is a global neboard default settings file, but user |
|
59 | 59 | can override settings in the old settings.py |
|
60 | 60 | * Required tags. Some tags can be marked as required and you can't create thread |
|
61 | 61 | without at least one of them, while you can add any tags you want to it |
|
62 | 62 | * [ADMIN] Cosmetic changes in the admin site. Adding and removing tags is much |
|
63 | 63 | more simple now |
|
64 | 64 | * Don't save tag's threads as a separate table, use aggregation instead |
|
65 | 65 | |
|
66 | 66 | # 2.3.0 Neiro |
|
67 | 67 | * Image deduplication |
|
68 | ||
|
69 | # 2.4.0 Korra | |
|
70 | * Downloading images by URL | |
|
71 | * [CODE] Cached properties | |
|
72 | ||
|
73 | # 2.5.0 Yasako | |
|
74 | * User notifications | |
|
75 | * Posting to many threads by one post | |
|
76 | * Tag details | |
|
77 | * Removed compact form |
General Comments 0
You need to be logged in to leave comments.
Login now