forked from phpbb-de/quickinstall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
178 lines (158 loc) · 9.39 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
QuickInstall Changelog
- Changes since 1.1.6
+ [Fix] Some language edits and spelling fixes.
+ [Fix] Check that the boards directory exists and is writeable.
+ [Fix] Create one user per minute and one post per second, or actually change the timestamp.
+ [Fix] Set a default value for user_sig, user_occ and user_interests to not error out there.
+ [Fix] Take cache directory from settings if possible.
+ [Fix] Use boards_dir from configuration if it is set.
+ [Fix] Added missing settings globalizations
+ [Fix] Fixes to permission granting.
+ [Fix] Made quickinstall functional on postgres.
+ [Fix] Make sure boards_url ends with a slash.
+ [Fix] Bug #62694 Clarify that it is QI that do not support PHP older than 5.2.0 and not phpBB.
+ [Fix] Bug #62700 Put the config through htmlspecialchars_decode() instead of remove request_var().
+ [Fix] Bug #62704 Mention the upload directory for AutoMOD 1.0.0.
+ [Fix] Bug #62739 Check for phpBB3/common.php instead of the phpBB3 directory.
+ [Fix] Bug #62757 Copy permissions from the default forum instead of from the default category.
+ [Fix] Bug #62765 Need to globalize table prefix.
+ [Fix] Bug #62831 Don't try to login when loading a alternative environment.
+ [Fix] Bug #63111 When setting table prefix, table data containing "phpbb_" was also changed.
+ [Fix] QI_PHPBB_VERSION and AUTOMOD_VERSION are not used so they got deleted.
+ [Fix] Use the QI_VERSION constant directly instead of copying it to the config array.
+ [Fix] Ticket #63262 SMTP port was not copied from settings to config table.
+ [Fix] Ticket #62767 QI should not crash when it can't delete a board but inform about it.
+ [Fix] Ticket #63292 Better options for Daylight saving time.
+ [Fix] Ticket #63289 Need to check $_REQUEST data and config before returning the default value.
+ [Fix] Ticket #63293 Changed forum/forums to board/boards in several places.
+ [Fix] Fixed several spelling and wording errors.
+ [Fix] Set the profile cookie when saving new profiles too.
+ [Fix] Ticket #63293 Admin, board and all test users now gets the correct timezone and DST setting.
+ [Fix] Ticket #63290 Make sure QI script path ends with one and only one slash.
+ [Fix] Ticket #63297 If a new profile name is entered; prefill the new profile name if settings validation fails.
+ [Fix] Ticket #63298 Error text was not shown when there where errors on first config save.
+ [Fix] Ticket #63303 The wrong sidebar was shown in settings when installing QI.
+ [Fix] Ticket #63301 Removed some globalizations which got some variables to be empty.
+ [Fix] Ticket #63305 $language was null when sent as default to request_var.
+ [Fix] Ticket #63306 QI needs to correctly handle an empty qi_config.cfg.
+ [Change] Added checking for functions_mods.php. It will be moved in AutoMOD in the future.
+ [Change] Include functions_admin.php for postgres' benefit.
+ [Change] Use get_cache_dir() in sqlite dbal.
+ [Change] Delay database connection until it is necessary.
+ [Change] Cleaned up the JS in the main html file.
+ [Change] Changed the changelog to have the same format as the rest of our tools have. A text file with most recent versions at top.
+ [Change] QI pages are now in $page instead of $mode, need $mode for settings and it got kind of crowded.
+ [Change] Only try to connect to DB when saving settings or creating/deleting a board.
+ [Change] Removed version check from the About page and moved the changelog stuff a bit.
+ [Change] Errors are stored as a array and imploded to a string on demand.
+ [Change] The global $qi_config array has been removed and all setting/config are now handled by $settings.
+ [Change] Deleted qi_config_sample.cfg since its not used anymore.
+ [Change] The note about not removing the copyright is removed, as it is in phpBB.
+ [Change] Removed some unused language strings.
+ [Change] Added in-page links to the about page instead of big brother.
+ [Change] Set class="radio" for all radio buttons.
+ [Change] Ticket #63299 and #63296 Leave cookie domain empty for new installs and don't require it either.
+ [Feature] Made quickinstall not require write access to qi_config.php
+ [Feature] Added UI for setting cache directory.
+ [Feature] Added a separate notion of boards url.
+ [Feature] Added ability to grant specific permissions when creating boards.
+ [Feature] Added hover-over on the manage tab.
+ [Feature] Added support for PostgreSQL
+ [Feature] Added possibility to set phpBB config fields before creating a board.
+ [Feature] Ticket #62796 Added config settings for chunk sizes when populating a board.
+ [Feature] Ticket #62774 and #62792 Added a settings directory to replace the config file.
+ [Feature] Ticket #62774 and #62792 Added profiles with config files in a directory instead of one configuration file.
+ [Feature] Added confirm to the delete button. And don't show it if there is no boards to delete.
+ [Feature] Added save/reset buttons after each section on the settings page. For convenience.
+ [Feature] Added anchors and internal links to the settings tab.
+ [Feature] Config settings for "Drop database if it exists" and "Delete files if they exist" checkboxes default state.
+ [Feature] A setting for the confirmation alert when deleting boards and profiles. To show that confirm alert or not.
+ [Feature] A setting for default "Alternate environment" now that profiles exists.
+ [Feature] Added option to not save passwords and/or admin/db-user names. They will be required when creating a board.
+ [Feature] Use JS to check that the required fields are filled.
- Changes since 1.1.5
+ [Fix] Make sure phpBB exists before trying to load it.
+ [Fix] Allow localized usernames. Bug #62563
+ [Fix] Added gitattributes to not export all .gitkeep files.
+ [Change] Moved things in the settings and slightly changed the layout.
+ [Fix] Rewrote some of the config handling, at least it looks nicer now. :)
+ [Fix] Updated the install instructions.
+ [Fix] Checks for the config file and gives a proper slap if it's missing.
+ [Fix] Tries to correctly handle non valid chars in db names.
+ [Change] Removed AutoMOD from the QI package.
+ [Change] Moved QI's language file for phpBB.
+ [Change] Moved some AutoMOD installation to QI instead of MODding UMIL or AutoMOD.
+ [Feature] Added option so set how many users, forums, topics and posts that will be created.
- Changes since 1.1.4
+ [Fix] Set the new boards language directory as custom language path.
+ [Change] Moved to github.
+ [Change] Deleted phpBB from the sources/ dir. I now needs to be downloaded from http://www.phpbb.com/.
- Changes since 1.1.3
+ [Change] Finally moved to MOD Teams repo.
+ [Change] Updated to AutoMOD 1.0.0.
+ [Feature] AutoMOD setting "Preview changes" is on as default.
- Changes since 1.1.2
+ [Fix] Restore the admin after making all posts and users to get the logs correct.
+ [Fix] Reset the admin in umil_auto.php for the logs.
+ [Feature] Added French.
+ [Change] Replaced the language text input with a select.
- Changes since 1.1.1
+ [Fix] If installed, Subsilver2 was always made the default style.
- Changes since 1.1.0
+ [Feature] Option to install Subsilver2.
- Changes since 1.0.10
+ [Feature] Option to make files writable.
+ [Feature] Option to populate forum with users and posts.
+ Updated to AutoMOD 1.0.0-RC4
+ [Change] Updated for phpBB 3.0.7-PL1
+ [Change] The Redirect option now works as intended
+ [Change] Updated for phpBB 3.0.7-PL1
+ [Change] Updated AutoMOD (Blinky) to rev 227
+ [Change] Board list is now in alphabetical order
+ [Change] Board listing takes the boards dir value from the config
+ [Change] Redirect and AutoMOD values are taken from the config
+ [Change] Uses tabs instead of links to navigate
+ [Change] Replaced qi_config.php with qi_config.cfg to avoid php errors in config strings
+ [Change] Added link to settings from the error page.
+ [Change] Added checkbox for not using a db password.
+ [Change] Added information about successfull or unsuccessfull settings update.
+ [Change] Removed set_magic_quotes_runtime()
+ [Feature] Added installation/settings page
+ [Feature] Validates the settings on page load.
- Changes since 1.0.9
+ [Change] Updating for phpBB 3.0.4
+ [Change] Updating for AutoMOD 1.0.0-b2
+ [Feature] Allow users to choose an alternate enviroment
- Changes since 1.0.8
+ [Change] Put default site_name and site_desc on main page (thanks exreaction)
+ [Change] Updating for phpBB 3.0.2
- Changes since 1.0.7
+ [Change] Updating for phpBB 3.0.1
- Changes since 1.0.6
+ [Fix] Updated version number in footer.
+ [Fix] Added some more security.
+ [Change] Partial rewrite.
+ [Change] Blinky (easymod) support.
- Changes since 1.0.5
+ [Change] Added hook functionality (auto include files).
+ [Change] Updated for phpBB 3.0.0 (Gold).
- Changes since 1.0.4
+ [Change] Updated for phpBB 3.0.RC7.
- Changes since 1.0.3
+ [Fix] Fixed bug in about_body.html.
+ [Fix] Fixed some other minon stuff.
+ [Change] Added SQLite support.
+ [Change] Updated for phpBB 3.0.RC6.
- Changes since 1.0.2
+ [Change] Updated for phpBB 3.0.RC5.
- Changes since 1.0.1
+ [Fix] Fixed language string.
- Changes since 1.0.0
+ [Change] Updated for phpBB 3.0.RC4.
- Changes since 0.1.0
+ [Feature] Added a changelog to the about page.
+ [Feature] Added possibility of a database prefix. This also keeps the databases more organised.
+ [Fix] Adjusted some of the language.
+ [Fix] Copying from sources/mods/ works now.
Version 0.1.0
Initial release 2007-07-12