├── .gitignore ├── README.md ├── compiled source ├── bin │ ├── q_json.helper │ │ └── Contents │ │ │ ├── Frameworks │ │ │ └── Appscript.framework │ │ │ │ ├── Appscript │ │ │ │ ├── Headers │ │ │ │ ├── Resources │ │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Appscript │ │ │ │ ├── Headers │ │ │ │ │ ├── Appscript.h │ │ │ │ │ ├── appdata.h │ │ │ │ │ ├── application.h │ │ │ │ │ ├── base.h │ │ │ │ │ ├── bridgedata.h │ │ │ │ │ ├── codecs.h │ │ │ │ │ ├── command.h │ │ │ │ │ ├── constant.h │ │ │ │ │ ├── event.h │ │ │ │ │ ├── objectrenderer.h │ │ │ │ │ ├── parser.h │ │ │ │ │ ├── reference.h │ │ │ │ │ ├── referencerenderer.h │ │ │ │ │ ├── sendthreadsafe.h │ │ │ │ │ ├── specifier.h │ │ │ │ │ ├── terminology.h │ │ │ │ │ ├── test.h │ │ │ │ │ ├── types.h │ │ │ │ │ ├── unittype.h │ │ │ │ │ └── utils.h │ │ │ │ ├── Resources │ │ │ │ │ ├── BridgeSupport │ │ │ │ │ │ └── Appscript.bridgesupport │ │ │ │ │ └── Info.plist │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ │ └── Current │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── JSON Helper │ │ │ ├── PkgInfo │ │ │ ├── Resources │ │ │ ├── English.lproj │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.nib │ │ │ ├── JSON Helper.sdef │ │ │ └── json.icns │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ └── q_notifier.helper └── q_workflow.scpt ├── documentation └── Documentation.md ├── example workflows ├── README.md ├── Search Twitter.alfredworkflow ├── iTunes Ratings.alfredworkflow └── screenshots │ ├── screenshot.jpg │ ├── screenshot2.jpg │ ├── screenshot3.jpg │ ├── screenshot4.jpg │ └── screenshot5.jpg └── uncompiled source └── q_workflow.applescript /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/README.md -------------------------------------------------------------------------------- /compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Appscript: -------------------------------------------------------------------------------- 1 | Versions/Current/Appscript -------------------------------------------------------------------------------- /compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Appscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Appscript -------------------------------------------------------------------------------- /compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Headers/Appscript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Headers/Appscript.h -------------------------------------------------------------------------------- /compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Headers/appdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Headers/appdata.h -------------------------------------------------------------------------------- /compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Headers/application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Headers/application.h -------------------------------------------------------------------------------- /compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Headers/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Headers/base.h -------------------------------------------------------------------------------- /compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Headers/bridgedata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Headers/bridgedata.h -------------------------------------------------------------------------------- /compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Headers/codecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Headers/codecs.h -------------------------------------------------------------------------------- /compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Headers/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Headers/command.h -------------------------------------------------------------------------------- /compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Headers/constant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Headers/constant.h -------------------------------------------------------------------------------- /compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Headers/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Headers/event.h -------------------------------------------------------------------------------- /compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Headers/objectrenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Headers/objectrenderer.h -------------------------------------------------------------------------------- /compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Headers/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Headers/parser.h -------------------------------------------------------------------------------- /compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Headers/reference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Headers/reference.h -------------------------------------------------------------------------------- /compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Headers/referencerenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Headers/referencerenderer.h -------------------------------------------------------------------------------- /compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Headers/sendthreadsafe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Headers/sendthreadsafe.h -------------------------------------------------------------------------------- /compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Headers/specifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Headers/specifier.h -------------------------------------------------------------------------------- /compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Headers/terminology.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Headers/terminology.h -------------------------------------------------------------------------------- /compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Headers/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Headers/test.h -------------------------------------------------------------------------------- /compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Headers/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Headers/types.h -------------------------------------------------------------------------------- /compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Headers/unittype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Headers/unittype.h -------------------------------------------------------------------------------- /compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Headers/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Headers/utils.h -------------------------------------------------------------------------------- /compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Resources/BridgeSupport/Appscript.bridgesupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Resources/BridgeSupport/Appscript.bridgesupport -------------------------------------------------------------------------------- /compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/A/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /compiled source/bin/q_json.helper/Contents/Frameworks/Appscript.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /compiled source/bin/q_json.helper/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/compiled source/bin/q_json.helper/Contents/Info.plist -------------------------------------------------------------------------------- /compiled source/bin/q_json.helper/Contents/MacOS/JSON Helper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/compiled source/bin/q_json.helper/Contents/MacOS/JSON Helper -------------------------------------------------------------------------------- /compiled source/bin/q_json.helper/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPLDfaB -------------------------------------------------------------------------------- /compiled source/bin/q_json.helper/Contents/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/compiled source/bin/q_json.helper/Contents/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /compiled source/bin/q_json.helper/Contents/Resources/English.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/compiled source/bin/q_json.helper/Contents/Resources/English.lproj/MainMenu.nib -------------------------------------------------------------------------------- /compiled source/bin/q_json.helper/Contents/Resources/JSON Helper.sdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/compiled source/bin/q_json.helper/Contents/Resources/JSON Helper.sdef -------------------------------------------------------------------------------- /compiled source/bin/q_json.helper/Contents/Resources/json.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/compiled source/bin/q_json.helper/Contents/Resources/json.icns -------------------------------------------------------------------------------- /compiled source/bin/q_json.helper/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/compiled source/bin/q_json.helper/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /compiled source/bin/q_notifier.helper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/compiled source/bin/q_notifier.helper -------------------------------------------------------------------------------- /compiled source/q_workflow.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/compiled source/q_workflow.scpt -------------------------------------------------------------------------------- /documentation/Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/documentation/Documentation.md -------------------------------------------------------------------------------- /example workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/example workflows/README.md -------------------------------------------------------------------------------- /example workflows/Search Twitter.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/example workflows/Search Twitter.alfredworkflow -------------------------------------------------------------------------------- /example workflows/iTunes Ratings.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/example workflows/iTunes Ratings.alfredworkflow -------------------------------------------------------------------------------- /example workflows/screenshots/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/example workflows/screenshots/screenshot.jpg -------------------------------------------------------------------------------- /example workflows/screenshots/screenshot2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/example workflows/screenshots/screenshot2.jpg -------------------------------------------------------------------------------- /example workflows/screenshots/screenshot3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/example workflows/screenshots/screenshot3.jpg -------------------------------------------------------------------------------- /example workflows/screenshots/screenshot4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/example workflows/screenshots/screenshot4.jpg -------------------------------------------------------------------------------- /example workflows/screenshots/screenshot5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/example workflows/screenshots/screenshot5.jpg -------------------------------------------------------------------------------- /uncompiled source/q_workflow.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qlassiqa/qWorkflow/HEAD/uncompiled source/q_workflow.applescript --------------------------------------------------------------------------------