aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md16
-rw-r--r--server/initializers/installer.ts2
2 files changed, 16 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4e8bb7e16..bedeb556c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,21 @@
4 4
5### Features 5### Features
6 6
7 * Add hover background color in menu
8 * Add info about the initial user quota in the registration form
9 * Add link to register in the login form
10 * Prevent brute force login attack
11
12### Bug fixes
13
14 * Fix bad federation with videos with special utf characters in description (again)
15 * Fix views system behind a reverse proxy
16
17
18## v1.0.0-beta.2
19
20### Features
21
7 * More logging in SMTP module 22 * More logging in SMTP module
8 * Add option to disable starttls in SMTP module 23 * Add option to disable starttls in SMTP module
9 * Update STUN servers (using framasoft.org and stunprotocol.org now) 24 * Update STUN servers (using framasoft.org and stunprotocol.org now)
@@ -37,6 +52,7 @@
37 * Fix communication of a PeerTube instance and Mastodon 52 * Fix communication of a PeerTube instance and Mastodon
38 * Fix custom configuration with number values 53 * Fix custom configuration with number values
39 54
55
40## v1.0.0-beta.1 56## v1.0.0-beta.1
41 57
42Nothing new here, but PeerTube is stable enough for being in beta now. 58Nothing new here, but PeerTube is stable enough for being in beta now.
diff --git a/server/initializers/installer.ts b/server/initializers/installer.ts
index f0adf8c9e..09c6d5473 100644
--- a/server/initializers/installer.ts
+++ b/server/initializers/installer.ts
@@ -134,8 +134,6 @@ async function createApplicationIfNotExist () {
134 // Nothing to do, application already exist 134 // Nothing to do, application already exist
135 if (exist === true) return undefined 135 if (exist === true) return undefined
136 136
137 logger.info('Creating Application table.')
138
139 logger.info('Creating application account.') 137 logger.info('Creating application account.')
140 138
141 const application = await ApplicationModel.create({ 139 const application = await ApplicationModel.create({