summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaindropsSys <raindrops@equestria.dev>2024-04-18 20:43:01 +0200
committerRaindropsSys <raindrops@equestria.dev>2024-04-18 20:43:01 +0200
commit6d54f5c5cb6a9f61a5bc8d85a76928f470419c1b (patch)
treede339485265f8231181348df5886e177594f99a0
parent1787516f60d66d210dca7828bc66f87b3f58a79e (diff)
downloadchatroom-6d54f5c5cb6a9f61a5bc8d85a76928f470419c1b.tar.gz
chatroom-6d54f5c5cb6a9f61a5bc8d85a76928f470419c1b.tar.bz2
chatroom-6d54f5c5cb6a9f61a5bc8d85a76928f470419c1b.zip
Updated 3 files (automated)
-rw-r--r--client/fragments/about.html2
-rw-r--r--client/fragments/home.html4
-rwxr-xr-xclient/main.js2
3 files changed, 6 insertions, 2 deletions
diff --git a/client/fragments/about.html b/client/fragments/about.html
index 156beb0..b4e88fb 100644
--- a/client/fragments/about.html
+++ b/client/fragments/about.html
@@ -40,7 +40,7 @@
<hr style="border-top: 1px solid rgba(0, 0, 0, .25); border-bottom: none;">
<p>Based on Chromium <span id="chrome">-</span></p>
- <p>Chatroom Web Browser<br>Copyright 2023-2024 Equestria.dev. Released under the MIT license.</p>
+ <p>Chatroom Web Browser<br>Copyright 2023-2024 Equestria.dev. Released under the GNU AGPLv3 license.</p>
<p>Chatroom is made possible by the Chromium, Electron and Node.js open source projects.</p>
<code style="font-family: monospace; display: none;" id="advanced">
diff --git a/client/fragments/home.html b/client/fragments/home.html
index 160ba1d..04654d1 100644
--- a/client/fragments/home.html
+++ b/client/fragments/home.html
@@ -44,6 +44,10 @@
<h3>Chatroom is being shut down in June 2024</h3>
<p>Starting in June 2024, we will discontinue and shut down all the Chatroom services. If you have important data or messages you need to export or backup, please use the corresponding Chatroom features before June 2024 to ensure you keep access to your data. <b>Equestria.dev makes no guarantee whatsoever that data will remain accessible past this date.</b></p>
+ <div class="alert alert-warning">
+ <b>Chatroom is now released under the GNU AGPLv3 license.</b> <a href="https://journal.equestria.dev/home/recent#id-2024-04-18-switching-licenses-for-all-open-source-software-from-mit-to-gnu-agplv3" target="_blank">Equestria.dev has recently announced</a> that it would be releasing all of its software under the GNU AGPLv3 license instead of the MIT license, to further tighten control over actors making use of the source code. This might affect your use of Chatroom if you are running a modified version.
+ </div>
+
<h3>What's new in Chatroom?</h3>
<div id="m3-changelog" style="display: none;">
diff --git a/client/main.js b/client/main.js
index cf83ec9..b3fd5b0 100755
--- a/client/main.js
+++ b/client/main.js
@@ -2,7 +2,7 @@
const buildNumber = "main";
// --- >FINAL< @BUILDNUMBER@ >FINAL< --- //
-let version = "2.9.4";
+let version = "2.9.5";
const { desktopCapturer, protocol, app, BrowserWindow, webContents, globalShortcut, nativeTheme, ipcMain, session, dialog, Menu } = require('electron');
const os = require("os");