Skip to content

Commit

Permalink
Moved script.
Browse files Browse the repository at this point in the history
Changed name.
  • Loading branch information
Armored-Dragon committed Nov 30, 2024
1 parent aa8a206 commit b155e99
Show file tree
Hide file tree
Showing 16 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion scripts/defaultScripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ var DEFAULT_SCRIPTS_SEPARATE = [
"communityScripts/notificationCore/notificationCore.js",
"simplifiedUI/ui/simplifiedNametag/simplifiedNametag.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"
];

Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# Armored Chat
# Domain Chat

1. What is Armored Chat
1. What is Domain Chat
2. User manual
- Installation
- Settings
- Usability tips
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

Expand All @@ -21,7 +21,7 @@ For notifications, AC uses [notificationCore.js](https://github.com/overte-org/o

### 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:

Expand All @@ -33,7 +33,7 @@ https://raw.githubusercontent.com/overte-org/overte/master/scripts/communityScri

### Settings

Armored Chat comes with basic settings for managing itself.
Domain Chat comes with basic settings for managing itself.

#### External window

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//
// armored_chat.js
// domainChat.js
//
// Created by Armored Dragon, 2024.
// Copyright 2024 Overte e.V.
Expand Down Expand Up @@ -61,7 +61,7 @@
appButton.clicked.connect(toggleMainChatWindow);

quickMessage = new OverlayWindow({
source: Script.resolvePath("./armored_chat_quick_message.qml"),
source: Script.resolvePath("./domainChatQuick.qml"),
});

_openWindow();
Expand All @@ -78,7 +78,7 @@
}
function _openWindow() {
chatOverlayWindow = new Desktop.createWindow(
Script.resolvePath("./armored_chat.qml"),
Script.resolvePath("./domainChat.qml"),
{
title: "Chat",
size: { x: 550, y: 400 },
Expand Down
File renamed without changes.
File renamed without changes

0 comments on commit b155e99

Please sign in to comment.