Reorg (#386)
* 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`
This commit is contained in:
parent
bacb60193f
commit
aaed99abac
66 changed files with 87 additions and 173 deletions
2
lib/constants/config.js
Normal file
2
lib/constants/config.js
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
export const CONFIG_LOAD = 'CONFIG_LOAD';
|
||||
export const CONFIG_RELOAD = 'CONFIG_RELOAD';
|
||||
1
lib/constants/index.js
Normal file
1
lib/constants/index.js
Normal file
|
|
@ -0,0 +1 @@
|
|||
export const INIT = 'INIT';
|
||||
1
lib/constants/notifications.js
Normal file
1
lib/constants/notifications.js
Normal file
|
|
@ -0,0 +1 @@
|
|||
export const NOTIFICATION_DISMISS = 'NOTIFICATION_DISMISS';
|
||||
16
lib/constants/sessions.js
Normal file
16
lib/constants/sessions.js
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
export const SESSION_ADD = 'SESSION_ADD';
|
||||
export const SESSION_RESIZE = 'SESSION_RESIZE';
|
||||
export const SESSION_REQUEST = 'SESSION_REQUEST';
|
||||
export const SESSION_ADD_DATA = 'SESSION_ADD_DATA';
|
||||
export const SESSION_PTY_DATA = 'SESSION_PTY_DATA';
|
||||
export const SESSION_PTY_EXIT = 'SESSION_PTY_EXIT';
|
||||
export const SESSION_USER_EXIT = 'SESSION_USER_EXIT';
|
||||
export const SESSION_USER_EXIT_ACTIVE = 'SESSION_USER_EXIT_ACTIVE';
|
||||
export const SESSION_SET_ACTIVE = 'SESSION_SET_ACTIVE';
|
||||
export const SESSION_CLEAR_ACTIVE = 'SESSION_CLEAR_ACTIVE';
|
||||
export const SESSION_USER_DATA = 'SESSION_USER_DATA';
|
||||
export const SESSION_URL_SET = 'SESSION_URL_SET';
|
||||
export const SESSION_URL_UNSET = 'SESSION_URL_UNSET';
|
||||
export const SESSION_SET_XTERM_TITLE = 'SESSION_SET_XTERM_TITLE';
|
||||
export const SESSION_SET_PROCESS_TITLE = 'SESSION_SET_PROCESS_TITLE';
|
||||
export const SESSION_SET_CWD = 'SESSION_SET_CWD';
|
||||
2
lib/constants/tabs.js
Normal file
2
lib/constants/tabs.js
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
export const CLOSE_TAB = 'CLOSE_TAB';
|
||||
export const CHANGE_TAB = 'CHANGE_TAB';
|
||||
10
lib/constants/ui.js
Normal file
10
lib/constants/ui.js
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
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';
|
||||
2
lib/constants/updater.js
Normal file
2
lib/constants/updater.js
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
export const UPDATE_INSTALL = 'UPDATE_INSTALL';
|
||||
export const UPDATE_AVAILABLE = 'UPDATE_AVAILABLE';
|
||||
Loading…
Add table
Add a link
Reference in a new issue