Skip to content

Commit

Permalink
Add ftrack extension
Browse files Browse the repository at this point in the history
- Fix type errors
- Resize images
- Update readme, changelog, screenshots
- Combine all search commands as one
- chore: Update deps (raycast#6)
- feat: Copy branch name (raycast#5)
- deps: Update dependencies, use strict api and iso-formatted dates (raycast#4)
- feat: Search projects, objects and versions (raycast#2)
- chore: Add codeowners file (raycast#3)
- feat: Assigned tasks (raycast#1)
- Initial commit
  • Loading branch information
lucaas committed Apr 28, 2023
1 parent 3fb24d6 commit ca395f6
Show file tree
Hide file tree
Showing 23 changed files with 4,460 additions and 0 deletions.
14 changes: 14 additions & 0 deletions extensions/ftrack/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"root": true,
"env": {
"es2020": true,
"node": true
},
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
]
}
155 changes: 155 additions & 0 deletions extensions/ftrack/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,155 @@
### macOS ###
# General
.DS_Store
.AppleDouble
.LSOverride

# Icon must end with two \r
Icon

# Thumbnails
._*

# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent

# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

## Build generated
build/
DerivedData/

### Node ###
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage
*.lcov

# nyc test coverage
.nyc_output

# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Build directories
dist/

# TypeScript v1 declaration files
typings/

# TypeScript cache
*.tsbuildinfo

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
.env.test
.env.json

# parcel-bundler cache (https://parceljs.org/)
.cache

# Next.js build output
.next

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless/

# FuseBox cache
.fusebox/

# DynamoDB Local files
.dynamodb/

# TernJS port file
.tern-port

# Stores VSCode versions used for testing VSCode extensions
.vscode-test

## JS Source Maps
*.js.map

## Extension archives
examples/**/*.zip
extensions/**/*.zip

# IntelliJ / WebStorm
.idea/
*.iml
1 change: 1 addition & 0 deletions extensions/ftrack/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
9 changes: 9 additions & 0 deletions extensions/ftrack/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# ftrack Changelog

## [First public version] - 2023-04-28

- Combined search commands for individual types as one command
- Updated dependencies
## [Initial Version] - 2023-02-23

- See assigned tasks and change status, open in browser or copy id.
1 change: 1 addition & 0 deletions extensions/ftrack/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @lucaas
21 changes: 21 additions & 0 deletions extensions/ftrack/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2023 ftrack

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.
21 changes: 21 additions & 0 deletions extensions/ftrack/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# ftrack-raycast-extension

Raycast extension for ftrack Studio - Search and modify your tasks from your mac.

Requires an active ftrack Studio account, sign up at https://www.ftrack.com/en/studio.

![screenshot](./metadata/ftrack-3.png)

# Getting started

Install dependencies

```bash
npm install
```

Start development
```
npm run dev
```

Binary file added extensions/ftrack/assets/ftrack-logo-white.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/ftrack/metadata/ftrack-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/ftrack/metadata/ftrack-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/ftrack/metadata/ftrack-3.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/ftrack/metadata/ftrack-4.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 ca395f6

Please sign in to comment.