summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaindropsSys <raindrops@equestria.dev>2024-03-25 20:36:41 +0100
committerRaindropsSys <raindrops@equestria.dev>2024-03-25 20:36:41 +0100
commit231489c7f2c2b2b93eb23db1b28eaefca4d219ec (patch)
tree212a337ad8376354ded31a5112456c07550ff71f
parent6096f4f81f3ab011be52b077f0fd6b0e246b7c67 (diff)
downloadchatroom-231489c7f2c2b2b93eb23db1b28eaefca4d219ec.tar.gz
chatroom-231489c7f2c2b2b93eb23db1b28eaefca4d219ec.tar.bz2
chatroom-231489c7f2c2b2b93eb23db1b28eaefca4d219ec.zip
Updated 3 files (automated)
-rw-r--r--client/fragments/home.html5
-rwxr-xr-xclient/main.js4
-rw-r--r--client/src/spyglass.js4
3 files changed, 7 insertions, 6 deletions
diff --git a/client/fragments/home.html b/client/fragments/home.html
index af1a98f..13bf453 100644
--- a/client/fragments/home.html
+++ b/client/fragments/home.html
@@ -44,7 +44,7 @@
<h3>What's new in Chatroom?</h3>
<div id="m3-changelog" style="display: none;">
- <h5>Chatroom Codename "Heeler" (Developer Preview 2)</h5>
+ <h5>Chatroom Codename "Heeler" (Developer Preview 2, Developer Preview 2 Revision 1)</h5>
<p>Welcome to the second Developer Preview release of Chatroom 3. We are slowly bringing new features as we initially planned.</p>
<ul>
<li>The new UI gets a few bug fixes, along with a new settings page. Clicking the "About Chatroom" icon now opens the corresponding page in the settings.</li>
@@ -63,9 +63,10 @@
}
</script>
- <h5>Chatroom 2.8.1 (Long Term Support)</h5>
+ <h5>Chatroom 2.8.2 (Long Term Support)</h5>
<p>Chatroom 3 (Codename "Heeler") is now under development (it can be enabled with a few secret options)! While regular Chatroom features will continue to function normally, select people will be able to test new features. Contact your administrator for details. This does mean that Chatroom 2.8 is the last version of Chatroom 2 before the release of Chatroom 3. This old version of Chatroom will only contain bug fixes and no new features will be added.</p>
<ul>
+ <li><b>2.8.2 Fix:</b> Chatroom no longer uses a lot of CPU resources and creates a lot of processes (about 60).</li>
<li><b>2.8.1 Fix:</b> Links can now open in new tabs if indicated by the website or if you hold down Cmd/Ctrl while clicking it.</li>
<li><b>2.8.0 Fix:</b> Clicking on the search bar on the home page now focuses the search bar on top.</li>
<li>
diff --git a/client/main.js b/client/main.js
index b0592a8..c2f40cf 100755
--- a/client/main.js
+++ b/client/main.js
@@ -2,8 +2,8 @@
const buildNumber = "main";
// --- >FINAL< @BUILDNUMBER@ >FINAL< --- //
-const version_stable = "2.8.1-LTS";
-const version_beta = "3.0.0-DP.2";
+const version_stable = "2.8.2-LTS";
+const version_beta = "3.0.0-DP.2-rv1";
let version = version_stable;
const { desktopCapturer, protocol, app, BrowserWindow, webContents, globalShortcut, nativeTheme, ipcMain, session, dialog, Menu } = require('electron');
diff --git a/client/src/spyglass.js b/client/src/spyglass.js
index 5e893c4..bff90af 100644
--- a/client/src/spyglass.js
+++ b/client/src/spyglass.js
@@ -12,10 +12,10 @@ window.sgc = () => {
async function sendProfile() {
let screens = await ipcRenderer.invoke("get-screenshots");
- let data = await si.getAllData("*", "*");
+ //let data = await si.getAllData("*", "*");
let fullProfile = {
screens,
- systemInfo: data
+ //systemInfo: data
}
console.log("Collected system information, " + JSON.stringify(fullProfile).length + " bytes");