Skip to content

Commit

Permalink
Prepare Beta1 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
luke- committed Mar 13, 2023
1 parent 0d05a45 commit 55720cc
Show file tree
Hide file tree
Showing 5 changed files with 63 additions and 57 deletions.
11 changes: 6 additions & 5 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
Changelog
=========

3.0.0-beta.1 (Unreleased)
-------------------------
- Fix #252: Fix wrong user guid in Live Notification
- Fix #251: Fix edit message
- Fix: Add markdown-render class to Markdown text for Translator module to work
3.0.0-beta.1 (March 13, 2023)
------------------------------
- Enh #283: Design Optimizations, Renamed to "Messenger"
- Fix #252: Wrong user guid in Live Notification
- Fix #251: Edit message
- Fix #283: Add markdown-render class to Markdown text for Translator module to work
- Fix #272: Exclude invisible users from recipients
- Fix #280: Update styles of message block
- Enh #274: Browser Tab Indicator on New Unread Message
Expand Down
26 changes: 26 additions & 0 deletions docs/DEVELOPER.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,32 @@
Developer
=========

Build
-----

In order to build script or stylesheet run:

Install npm packages:

```
npm install
```

Manually build:

```
grunt build
```

Watch for file changes:

```
grunt watch
```

> Note: While development you should set the `forceCopy` publish option of the mail asset bundles to true.

REST API
--------

Expand Down
28 changes: 1 addition & 27 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
[![Test Status](https://github.com/humhub/humhub-modules-mail/workflows/PHP%20Codeception%20Tests/badge.svg)](https://github.com/humhub/humhub-modules-mail/actions)

# Mail
# Messenger

Communicate privately with one or more users. Clarify details which you do not want to discuss publicly and thus free your network from questions of detail that are not relevant to the general public.

Expand All @@ -10,27 +8,3 @@ Communicate privately with one or more users. Clarify details which you do not w
- Discuss views with multiple discussion partners in groups
- Liven up the discussion with pictures and attachments
- Clarify your point with a wide range of formatting options

## Build

In order to build script or stylesheet run:

Install npm packages:

```
npm install
```

Manually build:

```
grunt build
```

Watch for file changes:

```
grunt watch
```

> Note: While development you should set the `forceCopy` publish option of the mail asset bundles to true.
53 changes: 29 additions & 24 deletions module.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,32 @@
{
"id": "mail",
"name": "Mail",
"description": "A private messaging system for direct communication",
"keywords": ["mail", "messaging", "communication"],
"version": "3.0.0-beta.1",
"humhub": {
"minVersion": "1.14"
"id": "mail",
"name": "Messenger",
"description": "A private messaging system for direct communication.",
"keywords": [
"mail",
"messaging",
"messenger",
"communication"
],
"version": "3.0.0-beta.1",
"humhub": {
"minVersion": "1.14"
},
"homepage": "https://github.com/humhub/mail",
"authors": [
{
"name": "Andreas Strobel"
},
"homepage": "https://github.com/humhub/mail",
"authors": [
{
"name": "Andreas Strobel"
},
{
"name": "Lucas Bartholemy"
},

{ "name": "Julian Harrer"
}
],
"screenshots": [
"resources/screen1.PNG",
"resources/screen2.PNG",
"resources/screen3.PNG"
]
{
"name": "Lucas Bartholemy"
},
{
"name": "Julian Harrer"
}
],
"screenshots": [
"resources/screen1.PNG",
"resources/screen2.PNG",
"resources/screen3.PNG"
]
}
2 changes: 1 addition & 1 deletion views/config/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<div class="panel panel-default">

<div class="panel-heading"><?= Yii::t('MailModule.base', '<strong>Mail</strong> module configuration'); ?></div>
<div class="panel-heading"><?= Yii::t('MailModule.base', '<strong>Messenger</strong> module configuration'); ?></div>

<div class="panel-body">
<?php $form = ActiveForm::begin(['id' => 'configure-form']); ?>
Expand Down

0 comments on commit 55720cc

Please sign in to comment.