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