Moved script.

Changed name.
This commit is contained in:
armored-dragon 2024-11-29 23:53:27 -06:00
parent 33b288a37e
commit 6e4899f2c8
No known key found for this signature in database
GPG key ID: C7207ACC3382AD8B
16 changed files with 10 additions and 10 deletions

View file

@ -46,7 +46,7 @@ var DEFAULT_SCRIPTS_SEPARATE = [
"communityScripts/notificationCore/notificationCore.js", "communityScripts/notificationCore/notificationCore.js",
"simplifiedUI/ui/simplifiedNametag/simplifiedNametag.js", "simplifiedUI/ui/simplifiedNametag/simplifiedNametag.js",
{"stable": "system/more/app-more.js", "beta": "https://more.overte.org/more/app-more.js"}, {"stable": "system/more/app-more.js", "beta": "https://more.overte.org/more/app-more.js"},
"communityScripts/armored-chat/armored_chat.js", "system/domainChat/domainChat.js",
//"system/chat.js" //"system/chat.js"
]; ];

View file

@ -1,15 +1,15 @@
# Armored Chat # Domain Chat
1. What is Armored Chat 1. What is Domain Chat
2. User manual 2. User manual
- Installation - Installation
- Settings - Settings
- Usability tips - Usability tips
3. Development 3. Development
## What is Armored Chat ## What is Domain Chat
Armored Chat is a chat application strictly made to communicate between players in the same domain. It is made using QML and to be as light weight as reasonably possible. Domain Chat is a chat application strictly made to communicate between players in the same domain. It is made using QML and to be as light weight as reasonably possible.
### Dependencies ### Dependencies
@ -21,7 +21,7 @@ For notifications, AC uses [notificationCore.js](https://github.com/overte-org/o
### Installation ### Installation
Armored Chat is preinstalled courtesy of [defaultScripts.js](https://github.com/overte-org/overte/blob/8661e8a858663b48e8485c2cd7120dc3e2d7b87e/scripts/defaultScripts.js). Domain Chat is preinstalled courtesy of [defaultScripts.js](https://github.com/overte-org/overte/blob/8661e8a858663b48e8485c2cd7120dc3e2d7b87e/scripts/defaultScripts.js).
If AC is not preinstalled, or for some other reason it can not be automatically installed, you can install it manually by following [these instructions](https://github.com/overte-org/overte/blob/8661e8a858663b48e8485c2cd7120dc3e2d7b87e/scripts/defaultScripts.js) to open your script management application, and loading the script url: If AC is not preinstalled, or for some other reason it can not be automatically installed, you can install it manually by following [these instructions](https://github.com/overte-org/overte/blob/8661e8a858663b48e8485c2cd7120dc3e2d7b87e/scripts/defaultScripts.js) to open your script management application, and loading the script url:
@ -33,7 +33,7 @@ https://raw.githubusercontent.com/overte-org/overte/master/scripts/communityScri
### Settings ### Settings
Armored Chat comes with basic settings for managing itself. Domain Chat comes with basic settings for managing itself.
#### External window #### External window

View file

@ -1,5 +1,5 @@
// //
// armored_chat.js // domainChat.js
// //
// Created by Armored Dragon, May 17th, 2024. // Created by Armored Dragon, May 17th, 2024.
// Copyright 2024 Overte e.V. // Copyright 2024 Overte e.V.
@ -62,7 +62,7 @@
appButton.clicked.connect(toggleMainChatWindow); appButton.clicked.connect(toggleMainChatWindow);
quickMessage = new OverlayWindow({ quickMessage = new OverlayWindow({
source: Script.resolvePath("./armored_chat_quick_message.qml"), source: Script.resolvePath("./domainChatQuick.qml"),
}); });
_openWindow(); _openWindow();
@ -79,7 +79,7 @@
} }
function _openWindow() { function _openWindow() {
chatOverlayWindow = new Desktop.createWindow( chatOverlayWindow = new Desktop.createWindow(
Script.resolvePath("./armored_chat.qml"), Script.resolvePath("./domainChat.qml"),
{ {
title: "Chat", title: "Chat",
size: { x: 550, y: 400 }, size: { x: 550, y: 400 },

View file

Before

Width:  |  Height:  |  Size: 400 B

After

Width:  |  Height:  |  Size: 400 B

View file

Before

Width:  |  Height:  |  Size: 778 B

After

Width:  |  Height:  |  Size: 778 B

View file

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View file

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

View file

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

View file

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

View file

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

View file

Before

Width:  |  Height:  |  Size: 4 KiB

After

Width:  |  Height:  |  Size: 4 KiB

View file

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB