experiments in a post-browser web
10
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #11 from autonome/layoutfix

cmd fix, readme updates

authored by

Dietrich Ayala and committed by
GitHub
a31cb607 0e465406

+14 -13
+12 -9
README.md
··· 97 97 * ✅ Modularize feature types, eyeing the extensibility model 98 98 * Settings Cleanup 99 99 * ✅ move settings window to features/settings 100 - * why no settings 101 - * make features enable/disable-able 102 - * move feature list and enablement to storage 103 - * re-enable label previews, eg "Peek {key} - {address}" 104 100 * App cleanup 105 101 * ✅ main window vs settings 106 102 * ✅ change settings shortcut from global+esc to app+comma 107 - * Default features cleanup 108 - * enable/disable individual peeks/slides 103 + * Features cleanup 104 + * make features enable/disable-able 105 + * enable/disable individual frozen items - slides, peeks 106 + * enable/disable individual non-frozen items - scripts 107 + * re-enable label previews, eg "Peek {key} - {address}" 109 108 * Window lifecycle 110 - * modularize window open/close/hide/show across all windows 109 + * ✅modularize window open/close + hidden/visible 110 + * ✅update settings, peeks, slides, scripts 111 111 * hide/show window vs create fresh 112 - * Web content 112 + * modularize window close/hide/show across all windows 113 + * update slides / animation 113 114 * isolate web loading code, have features load content that way instead of raw BrowserWindow 114 - * Basic command bar to open pages 115 + * ✅ Basic command bar to open pages 115 116 * Basic history store 117 + * move feature list and enablement to storage 118 + * configurable default feature to open on app open 116 119 117 120 After that 118 121 * Extension model?
+2 -4
features/cmd/cmd.js
··· 111 111 }, 112 112 }; 113 113 114 - let _windows = {}; 115 - 116 114 const openInputWindow = (api) => { 117 115 const height = 50; 118 116 const width = 600; ··· 182 180 183 181 const onMessage = msg => { 184 182 console.log('cmd:onMessage', msg) 185 - if (msg.command == 'openWebWindow') { 186 - _api.openWebWindow(msg); 183 + if (msg.command == 'openWindow') { 184 + _api.openWindow(msg); 187 185 } 188 186 }; 189 187