Skip to content

Commit

Permalink
Add timecamp extension
Browse files Browse the repository at this point in the history
- Delete owner
- Update Readme and Icon
- Refactor: Fixed some type errors
- STYLE: Add correct logo and name
- Merge pull request raycast#11 from iAmKevinCruz/feature/use-preferences-for-token
- FEAT: Use Prefernces to save token
- STYLE: List focus on the active timer if it exists
- FEAT: It\'s working!
- WIP
- first commit
  • Loading branch information
iAmKevinCruz committed Jan 20, 2024
1 parent 022abda commit 25f351c
Show file tree
Hide file tree
Showing 13 changed files with 2,473 additions and 0 deletions.
4 changes: 4 additions & 0 deletions extensions/timecamp/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"root": true,
"extends": ["@raycast"]
}
13 changes: 13 additions & 0 deletions extensions/timecamp/.gitignore
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
4 changes: 4 additions & 0 deletions extensions/timecamp/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"printWidth": 120,
"singleQuote": false
}
3 changes: 3 additions & 0 deletions extensions/timecamp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Timecamp v1 Changelog

## [Initial Version] - 2024-01-15
10 changes: 10 additions & 0 deletions extensions/timecamp/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Timecamp

## What You'll Need
You will need to get your Timecamp API token. You can find this token at [here](https://app.timecamp.com/app#/settings/users/me), usually under the subheading `Your programming API token:`.

## Commands
### Start/Stop Tasks
This command finds all the tasks that have no more children and lists them. You can press `ENTER` to start a task. You'll see this task with it's timer under a new `Active Tasks` section at the top of the list. If you start another task while one is active, it will end the active task and start the new one.

When hovering the active task, you can hit `CMD + S` to end the task or `ENTER` to edit the task note. When editing the task note, hitting `CMD + ENTER` will save the note and bring you back to the task list.
Binary file added extensions/timecamp/assets/timecamp-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added extensions/timecamp/metadata/timecamp-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added extensions/timecamp/metadata/timecamp-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added extensions/timecamp/metadata/timecamp-3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 25f351c

Please sign in to comment.