From 109803e8027c07b1e35eb5cdef4c8953b24072d8 Mon Sep 17 00:00:00 2001 From: David Ernst Date: Sat, 6 Apr 2019 23:51:29 -0500 Subject: [PATCH 1/2] Remove '(BETA)' from app window title --- src/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.js b/src/config.js index 6f478bee..a58342ce 100644 --- a/src/config.js +++ b/src/config.js @@ -29,7 +29,7 @@ module.exports = { APP_NAME: APP_NAME, APP_TEAM: APP_TEAM, APP_VERSION: APP_VERSION, - APP_WINDOW_TITLE: APP_NAME + ' (BETA)', + APP_WINDOW_TITLE: APP_NAME, CONFIG_PATH: getConfigPath(), From c3315ab0fcbbf0aed5b5e3ea79f855116c98d090 Mon Sep 17 00:00:00 2001 From: David Ernst Date: Sun, 7 Apr 2019 00:08:19 -0500 Subject: [PATCH 2/2] Remove reference to (BETA) in test comments --- test/setup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/setup.js b/test/setup.js index 75dde6d4..092f2935 100644 --- a/test/setup.js +++ b/test/setup.js @@ -53,7 +53,7 @@ function waitForLoad (app, t, opts) { }).then(function () { return app.webContents.getTitle() }).then(function (title) { - // Note the window title is WebTorrent (BETA), this is the HTML + // Note the window title is WebTorrent, this is the HTML <title> t.equal(title, 'Main Window', 'html title') }) }