Skip to content

Commit

Permalink
Merge pull request #1956 from KhalisFoundation/master
Browse files Browse the repository at this point in the history
Production release 9.2.1
  • Loading branch information
Gauravjeetsingh authored May 27, 2024
2 parents 32774a8 + 032719a commit 6cb186d
Show file tree
Hide file tree
Showing 95 changed files with 3,769 additions and 908 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ data.db
*.provisionprofile
npm-debug.log*
.idea/
.DS_Store/
www/.DS_Store
.DS_Store
**/.DS_Store
www/js/
.env
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
## New Updates

### 9.2.1 - ਊਨਾ Release _May 24, 2024_

#### New Features
- Choose the order of the lines that sangat see on screen using quickview dropdowns.
![](./assets/img/help_images/content-order.gif)
- New Multi-Pane workspace allows you to open multiple Shabads on one screen to display from.
![](./assets/img/help_images/multipane-preview.gif)
- You now have the ability to reset the font sizes.

#### Misc. bug fix and other improvements
- Update of the support link.
- Improve the colors of Floral theme in Bani Overlay.
- Preserve formatting (line breaks) in announcement.
- Improvements to Bani Overlay margins to adhere to standard broadcast standards.
- Code refactors and style improvements.

**We would love to hear from you if there a feature that you have been waiting for. Send us your feedback at [sttm.co/feedback](https://www.sttm.co/feedback).**
</br>

### 9.2.0 - ਊਨਾ Release _January 30, 2024_

#### New Features
Expand Down
2 changes: 1 addition & 1 deletion HELP.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ Bani Overlay allows you to display Gurbani from SikhiToTheMax on a Live Stream.

### <a name="report-mistake">How do I report a mistake?</a>

Visit [SikhiToTheMax.org](https://sikhitothemax.org) and click "[Feedback](https://goo.gl/plk23h)" at the bottom of the page.
Visit [Khalis Support](https://support.khalisfoundation.org/support/solutions/folders/63000040721) and click on New Support Ticket.

### <a name="video-tutorial">Video Tutorial</a>

Expand Down
29 changes: 12 additions & 17 deletions analytics.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,18 @@ require('dotenv').config();

class Analytics {
trackEvent({ category, action, label, value }) {
if (process.env.NODE_ENV !== 'development') {
// TODO: need to add variable that stops statistics collection
isOnline().then((online) => {
// TODO: for offline users, come up with a way of storing and send when online.
if (online) {
trackEvent(action, {
category,
label,
value,
});
}
});
} else {
console.log(
`Tracking Event suppressed for development ec: ${category}, ea: ${action}, el: ${label}, ev: ${value}`,
);
}
// TODO: need to add variable that stops statistics collection
isOnline().then((online) => {
// TODO: for offline users, come up with a way of storing and send when online.
if (online) {
console.log('action', action, 'options', { category, label, value });
trackEvent(action, {
category,
label,
value,
});
}
});
}
}

Expand Down
Loading

0 comments on commit 6cb186d

Please sign in to comment.