All Projects → ErikFontanel → Sketch Toggle Constrain Proportions

ErikFontanel / Sketch Toggle Constrain Proportions

Toggle the constrain proportions setting with your own configurable keyboard shortcut.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Sketch Toggle Constrain Proportions

Html Sketchapp Cli
Quickly generate Sketch libraries from HTML documents and living style guides, powered by html-sketchapp
Stars: ✭ 631 (+6911.11%)
Mutual labels:  sketch-plugin, sketch
Sketchapi
The JavaScript plugin library embedded in Sketch
Stars: ✭ 784 (+8611.11%)
Mutual labels:  sketch-plugin, sketch
Chromatic Sketch
Sketch plugin for creating good-looking and perceptually uniform gradients and color scales.
Stars: ✭ 445 (+4844.44%)
Mutual labels:  sketch-plugin, sketch
Symbol Organizer
Organize your symbols page alphabetically (including layer list) and into groupings determined by your symbol names.
Stars: ✭ 835 (+9177.78%)
Mutual labels:  sketch-plugin, sketch
Skpm
💎📦 A utility to build and publish Sketch plugins
Stars: ✭ 890 (+9788.89%)
Mutual labels:  sketch-plugin, sketch
Swatches
Make colors with Sketch
Stars: ✭ 396 (+4300%)
Mutual labels:  sketch-plugin, sketch
Sprite
Sketch 3 Plugin that makes SpriteSheets for game developers to export or use
Stars: ✭ 23 (+155.56%)
Mutual labels:  sketch-plugin, sketch
Plugin Directory
Official Sketch Plugin directory
Stars: ✭ 3,412 (+37811.11%)
Mutual labels:  sketch-plugin, sketch
Sketch Styles Generator
Generate hundreds of Sketch Shared Styles in a matter of seconds.
Stars: ✭ 537 (+5866.67%)
Mutual labels:  sketch-plugin, sketch
Sketch Mate
These plugins will make you best friends with Sketch.
Stars: ✭ 508 (+5544.44%)
Mutual labels:  sketch-plugin, sketch
Sync.sketchplugin
Keep your design team in sync!
Stars: ✭ 357 (+3866.67%)
Mutual labels:  sketch-plugin, sketch
Sketch Find And Replace
Sketch plugin to do a find and replace on text within layers
Stars: ✭ 693 (+7600%)
Mutual labels:  sketch-plugin, sketch
Chain
Dynamic color relations in Sketch.
Stars: ✭ 346 (+3744.44%)
Mutual labels:  sketch-plugin, sketch
Sketch Commands
A collection of script commands for Sketch.app
Stars: ✭ 826 (+9077.78%)
Mutual labels:  sketch-plugin, sketch
Sketch Image Compressor
A Plugin for Sketch that compresses your bitmap assets, to keep filesize to a minimum.
Stars: ✭ 338 (+3655.56%)
Mutual labels:  sketch-plugin, sketch
Sketch swatches
A swatches plugin for Sketch.
Stars: ✭ 446 (+4855.56%)
Mutual labels:  sketch-plugin, sketch
Sketch Artboardtricks
A variety of artboard-related utilities for Sketch, primarily rearranging them into a grid, numbering them, etc.
Stars: ✭ 316 (+3411.11%)
Mutual labels:  sketch-plugin, sketch
Sketch Plugin Manager
Keeping your Sketch plugins up to date.
Stars: ✭ 335 (+3622.22%)
Mutual labels:  sketch-plugin, sketch
Sketch Sf Ui Font Fixer
A Sketch plugin that adjusts the character spacing on text layers using iOS 9's SF UI Text/SF UI Display fonts to what it would be when used in an iOS app.
Stars: ✭ 492 (+5366.67%)
Mutual labels:  sketch-plugin, sketch
Sketch Chat
A Sketch plugin to chat in Sketch Cloud files
Stars: ✭ 20 (+122.22%)
Mutual labels:  sketch-plugin, sketch

GitHub release GitHub release

A simple plugin that adds a menu item so you can configure a keyboard shortcut for the 'Toggle Constrain Proportions' command. This plugin is similar to others but this one is made to be compatible with the new plugin methods introduced in Sketch 3945. And this plugin is not bundled with any other plugins which you'll probably never use…

Install with Sketch Runner

With Sketch Runner, just go to the install tab and search for Toggle Constrain Proportions. Runner allows you to manage plugins and do much more to speed up your workflow in Sketch. Download Runner here.

Sketch Runner screenshot

Install manually

  1. Download the plugin
  2. Double click on the toggleconstrainproportions.sketchplugin file
  3. Done

How to use

  1. Select an object
  2. Run this plugin and watch the lock change from 🔒 to 🔓 (and vice versa).

Note

  • As of 1.1 this plugin does not come with a default shortcut anymore since it's impossible to prevent duplicate shortcut conflicts and because Sketch Runner makes it easy to run commands.
  • If you're using Sketch 44 or older, use version 1.1.

Contributing

This plugin was created using skpm. For a detailed explanation on how things work, checkout the skpm Readme.

Usage

Install the dependencies

npm install

Once the installation is done, you can run some commands inside the project folder:

npm run build

To watch for changes:

npm run watch

Additionally, if you wish to run the plugin every time it is built:

npm run start

Custom Configuration

Babel

To customize Babel, you have two options:

  • You may create a .babelrc file in your project's root directory. Any settings you define here will overwrite matching config-keys within skpm preset. For example, if you pass a "presets" object, it will replace & reset all Babel presets that skpm defaults to.

  • If you'd like to modify or add to the existing Babel config, you must use a webpack.skpm.config.js file. Visit the Webpack section for more info.

Webpack

To customize webpack create webpack.skpm.config.js file which exports function that will change webpack's config.

/**
 * Function that mutates original webpack config.
 * Supports asynchronous changes when promise is returned.
 *
 * @param {object} config - original webpack config.
 * @param {boolean} isPluginCommand - whether the config is for a plugin command or a resource
 **/
module.exports = function(config, isPluginCommand) {
  /** you can change config here **/
};

Debugging

To view the output of your console.log, you have a few different options:

  • Use the sketch-dev-tools
  • Open Console.app and look for the sketch logs
  • Look at the ~/Library/Logs/com.bohemiancoding.sketch3/Plugin Output.log file

Skpm provides a convenient way to do the latter:

skpm log

The -f option causes skpm log to not stop when the end of logs is reached, but rather to wait for additional data to be appended to the input

Publishing your plugin

skpm publish <bump>

(where bump can be patch, minor or major)

skpm publish will create a new release on your GitHub repository and create an appcast file in order for Sketch users to be notified of the update.

You will need to specify a repository in the package.json:

...
+ "repository" : {
+   "type": "git",
+   "url": "git+https://github.com/ORG/NAME.git"
+  }
...
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].