Skip to content

Commit

Permalink
chore(release): 2.11.1
Browse files Browse the repository at this point in the history
Initial pass at reorganization

Reorginanization of the repository so that it is code focused vs. being
focused on how the packages are built. Packaging will be moved to
GitHub Actions so that every commit will create new packages that can
be used for testing. Releases will be created and produce packages
when a tag is committed to the repository.

Signed-off-by: Gerard Hickey <[email protected]>

Added beginnings of package building code

Signed-off-by: Gerard Hickey <[email protected]>

Updated GitHub workflow

Signed-off-by: Gerard Hickey <[email protected]>

Storing generated package as an artifact

Signed-off-by: Gerard Hickey <[email protected]>

Refactored build API workflow

Signed-off-by: Gerard Hickey <[email protected]>

More reorganization of files

Moved MeshChat source to top level

Signed-off-by: Gerard Hickey <[email protected]>

feat: Set send channel when channel filter changed

Signed-off-by: Gerard Hickey <[email protected]>

docs: Updated README with history of MeshChat

Signed-off-by: Gerard Hickey <[email protected]>

fix: set epoch in send_message API even if not specified

Signed-off-by: Gerard Hickey <[email protected]>

feat: add message class abstracting message handling (#23)

* refactor: add comments to clarify flow

Signed-off-by: Gerard Hickey <[email protected]>

* feat: add messages class to front end

Update the handling of messages on the front end code to better control
the update of messages and coordinateion with the rest of the UI.

Signed-off-by: Gerard Hickey <[email protected]>

* add more config support

Signed-off-by: Gerard Hickey <[email protected]>

* feat: message ID can be specified in send_message API

Signed-off-by: Gerard Hickey <[email protected]>

* add md5 module to front-end

Signed-off-by: Gerard Hickey <[email protected]>

* integrate message class into front-end code

Signed-off-by: Gerard Hickey <[email protected]>

---------

Signed-off-by: Gerard Hickey <[email protected]>

Add GitHub Actions workflow to automate releases (#40)

* Added beginnings of package building code
* chore: create release CI job
* chore: add documentation section to changelog
* chore: make build-meshchat-package a reusable workflow
* chore: add build packages to release
* fix: update-version.sh can now be told version to set
* chore(ci): convert meshchat-api build to reusable workflow
* chore(ci): set release to only work on release branch

Signed-off-by: Gerard Hickey <[email protected]>

chore(ci): update release pipeline

Signed-off-by: Gerard Hickey <[email protected]>

feat: allow admin to set default channel (#19)

A MeshChat administrator now has the ability to define the default
channel that a newly logged in user is placed into. This requires that
the administrator set the value `default_channel` in the configuration
file. Setting `default_channel` to an empty string ('') will continue
using the legacy setting of 'Everything'.

Signed-off-by: Gerard Hickey <[email protected]>
  • Loading branch information
hickey committed Mar 2, 2024
1 parent a6cb468 commit c5f9b19
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@


## [2.11.1](https://github.com/hickey/meshchat/compare/v2.11.0...v2.11.1) (2024-03-02)


### Bug Fixes

* remove duplicate config definitions ([#46](https://github.com/hickey/meshchat/issues/46)) ([a6cb468](https://github.com/hickey/meshchat/commit/a6cb468ca0fa594629a1bae0e22781dfc0bf074e))

## [2.11.0](https://github.com/hickey/meshchat/compare/v2.10.0...v2.11.0) (2024-03-01)


Expand Down
1 change: 1 addition & 0 deletions www/chat.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ var enable_video = 0;
var messages = new Messages();
let alert = new Audio('alert.mp3');

let config = {};
let context = {
config_loaded: false,
debug: true, // let startup funcs show debug
Expand Down

0 comments on commit c5f9b19

Please sign in to comment.