mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 12:38:39 -09:00
* Step 1: move electorn into `app/`. This is to comply with the suggested directory format of `electron-builder`: https://github.com/electron-userland/electron-builder#two-packagejson-structure * Step 2: add build directory with icon files for mac / windows * Step 3: move all development (web) assets into main directory * Step 4: add `build` namespace to dev `package.json` * Step 5: move all dev dependencies into dev file and get rid of old electron packagers in favor of `eletorn-builder` * Step 6: target build inside `app/` as everything else is excluded at build time * Step 7: remove old stuff! * Step 8: update README * turn off asar for `child_pty`
10 lines
514 B
JavaScript
10 lines
514 B
JavaScript
export const UI_FONT_SIZE_SET = 'UI_FONT_SIZE_SET';
|
|
export const UI_FONT_SIZE_INCR = 'UI_FONT_SIZE_INCR';
|
|
export const UI_FONT_SIZE_DECR = 'UI_FONT_SIZE_DECR';
|
|
export const UI_FONT_SIZE_RESET = 'UI_FONT_SIZE_RESET';
|
|
export const UI_FONT_SMOOTHING_SET = 'UI_FONT_SMOOTHING_SET';
|
|
export const UI_MOVE_LEFT = 'UI_MOVE_LEFT';
|
|
export const UI_MOVE_RIGHT = 'UI_MOVE_RIGHT';
|
|
export const UI_MOVE_TO = 'UI_MOVE_TO';
|
|
export const UI_SHOW_PREFERENCES = 'UI_SHOW_PREFERENCES';
|
|
export const UI_WINDOW_MOVE = 'UI_WINDOW_MOVE';
|