-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Add morgen extension #17449
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
base: main
Are you sure you want to change the base?
Add morgen extension #17449
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"root": true, | ||
"extends": ["@raycast"] | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules | ||
|
||
# Raycast specific files | ||
raycast-env.d.ts | ||
.raycast-swift-build | ||
.swiftpm | ||
compiled_raycast_swift | ||
|
||
# misc | ||
.DS_Store |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"printWidth": 120, | ||
"singleQuote": false | ||
} | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Morgen Changelog | ||
|
||
## [Initial Version] - {PR_MERGE_DATE} | ||
|
||
Initial version code. Finally, we get Morgen in our Raycast command bar! |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2025 张哲涵 Zhehan Zhang | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
@@ -0,0 +1,32 @@ | ||||||
# Morgen | ||||||
|
||||||
## Introduction | ||||||
|
||||||
The Morgen Raycast extension brings your Morgen schedule directly into Raycast, offering quick access to your events, tasks, and key Morgen views. | ||||||
|
||||||
With seamless search functionality, you can efficiently navigate your schedule and see important details without leaving Raycast. | ||||||
|
||||||
**To start, enter your API key obtained from [https://platform.morgen.so/developers-api](https://platform.morgen.so/developers-api).** | ||||||
|
||||||
Haven't subscribed to Morgen Calendar? Start with a free trial using [this link](https://www.morgen.so/?ref=yzq5y2z). | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. style: The referral link 'yzq5y2z' appears to be a personal referral code. Consider using a generic link instead
Suggested change
|
||||||
|
||||||
_While we currently do not support direct task creation and management due to Morgen’s API limitations, we are actively engaging with Morgen to enhance API capabilities, aiming to bring full task, event, and AI scheduling support in the future._ | ||||||
|
||||||
## Roadmap | ||||||
|
||||||
- API Expansion & Feature Requests | ||||||
- Enable task/event creation and updates via API. | ||||||
- Provide AI-driven scheduling functionalities accessible from Raycast. | ||||||
- Enhanced Search Capabilities | ||||||
- Extend search range beyond 7 days. _(Currently limited to avoid hitting rate limits)_ | ||||||
- Cache events data on device and update automatically. | ||||||
- Improve filtering and sorting options for better organization. | ||||||
- Task Management Improvements | ||||||
- Implement task creation and editing (pending API support). | ||||||
- Add quick task shortcuts for instant scheduling. | ||||||
- Event Management Enhancements | ||||||
- Enable direct event creation and modifications (pending _better_ API support). | ||||||
- Allow quick RSVP actions for event invitations. (WIP) | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. style: WIP items should be moved to a separate section or removed from the public documentation |
||||||
- Better Integration with Morgen Scheduler (pending API support). | ||||||
|
||||||
This roadmap will evolve as we continue working with Morgen and exploring new possibilities. Stay tuned for updates! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
style: Consider adding
trailingComma: "es5"
to ensure consistent comma usage across the codebase