-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from MaximilianHeidenreich/develop
Merge v1.1.0
- Loading branch information
Showing
137 changed files
with
3,695 additions
and
6,013 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: DetaApp (DEV) — CI | ||
on: | ||
pull_request: | ||
branches: | ||
- dev | ||
paths: | ||
- "frontend/**" | ||
push: | ||
branches: | ||
- dev | ||
paths: | ||
- "frontend/**" | ||
jobs: | ||
Check-frontend: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@v3 | ||
- name: Setup NodeJS | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cache: "npm" | ||
cache-dependency-path: "frontend/package-lock.json" | ||
- name: Install dependencies | ||
working-directory: frontend | ||
run: npm i | ||
- name: Run check | ||
working-directory: frontend | ||
run: | | ||
npm run check | ||
Test-frontend: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@v3 | ||
- name: Setup NodeJS | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cache: "npm" | ||
cache-dependency-path: "frontend/package-lock.json" | ||
- name: Install dependencies | ||
working-directory: frontend | ||
run: npm i | ||
- name: Run tests | ||
working-directory: frontend | ||
run: | | ||
npm run test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Changelog | ||
|
||
## 1.1.0 - 2023-04-07 | ||
|
||
### Changed | ||
- UI Overhaul | ||
- Event storing system (now using the concept of `time frames`) | ||
- Support for emoji codes (e.g. `:heart:`) when creating events (http://www.emoji-cheat-sheet.com/) | ||
|
||
### Added | ||
- Web Notifications | ||
- Event Filtering | ||
- PWA Support | ||
- Chaching system | ||
- Integrated documentation | ||
- Welcome Tour for new installations | ||
- Absolute or relative timestamp display options | ||
|
||
### Removed | ||
|
||
### Fixed | ||
- API Keys not being validated on event creation | ||
- Deleting a project now deletes associated api keys automatically | ||
|
||
## 1.0.0 - 2024-02-12 | ||
|
||
## Added | ||
- Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.