Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dark mode #148

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,12 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: |
if [ -e yarn.lock ]; then
yarn install --frozen-lockfile
elif [ -e package-lock.json ]; then
npm ci
else
npm i
fi
- run: npm run build --if-present
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ v0.4.5
- Event is now removed from view.
- Fixed bug: Default calendar id is ignored if it isn't valid.
- Changed button size in AddTask bar.
-Dark mode
- Now has dark mode for users of the vampiric persuasion.

v0.4.4
- Version bump to 0.4.4
Expand Down
9 changes: 3 additions & 6 deletions COMMITMESSAGE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
- Version bump to 0.4.5
- Moved save button to top in TaskEditor and Event Editor.
- Fixed #138
- Event is now removed from view.
- Fixed bug: Default calendar id is ignored if it isn't valid.
- Changed button size in AddTask bar.
Dark mode
- Now has dark mode for users of the vampiric persuasion.
- Partially completes #137
Loading
Loading