forked from liamcain/obsidian-calendar-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bump version of calendar-ui filemenu apply gggg patch for weekly notes add issue template bug fixes - no longer has multiple days selected at once - deselects day when navigating to non-daily note - no longer resets displayedMonth on tick() - now supports any day of the week (monday, tuesday, wednesday, thursday, friday, saturday, sunday) Fastforward settings improvements Fix locale config Move localization code from plugin into ui lib Fix update on settings change use 0.2.0 of the cal-ui
- Loading branch information
Showing
26 changed files
with
723 additions
and
607 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,41 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: "" | ||
labels: bug, needs-review | ||
assignees: "" | ||
--- | ||
|
||
> **Before Submitting:** Double-check that you are running the latest version of the plugin. The bug might have already been fixed 😄 | ||
### Describe the bug | ||
|
||
_A clear and concise description of what the bug is._ | ||
|
||
### Steps to reproduce | ||
|
||
1. Go to '...' | ||
2. Click on '....' | ||
3. See error | ||
|
||
### Expected behavior | ||
|
||
_A clear and concise description of what you expected to happen_. | ||
|
||
### Screenshots | ||
|
||
_If applicable, add screenshots to help explain your problem._ | ||
|
||
### Environment (please specify) | ||
|
||
#### OS | ||
|
||
[e.g. macOS] | ||
|
||
#### Obsidian Version (e.g. v0.10.6) | ||
|
||
`(Settings → About → Current Version)` | ||
|
||
### Additional context | ||
|
||
_Add any other context about the problem here._ |
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,21 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: "" | ||
labels: enhancement | ||
assignees: "" | ||
--- | ||
|
||
> **Before Submitting:** Double-check that you are running the latest version of the plugin. The feature might have already been included 😄 | ||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. | ||
|
||
**Describe alternatives you've considered** | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. |
File renamed without changes.
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,14 @@ | ||
name: CI | ||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install modules | ||
run: yarn | ||
- name: Run tests | ||
run: yarn 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 |
---|---|---|
|
@@ -2,4 +2,5 @@ node_modules/ | |
dist/ | ||
data.json | ||
main.js | ||
.vscode/ | ||
*.code-workspace |
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
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
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
This file was deleted.
Oops, something went wrong.
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.