Commit Graph

49 Commits

Author SHA1 Message Date
Jacob Grossman
306c9ce3e8 Use device specific language for output title 2021-12-01 21:38:48 -06:00
Jacob Grossman
2d2ca75177 Remove automatic connection
I did not heed the warning where 'only the path is guaranteed' when
listing open serial ports and made the assumption that the manufacturer
would be known (hint: it wasn't).
2021-12-01 21:19:15 -06:00
Jacob Grossman
d7e44406ec Move commands to correct spot 2021-12-01 20:59:47 -06:00
jakergrossman
4a4c393e2d Add tools for native modules instructions to README.md 2021-12-01 10:04:24 -06:00
jakergrossman
54707da098 More accurate 2021-12-01 09:57:20 -06:00
jakergrossman
6b5c7d93f8 Add rebuild instructions 2021-12-01 09:36:17 -06:00
jakergrossman
9d41e5c9be Merge branch 'master' into hub-communication 2021-12-01 09:03:52 -06:00
JosiahMoses
913be402b1
Update package.json
Had to fix a few typos
2021-11-30 12:27:11 -06:00
JosiahMoses
bdc6c4d050
Update package.json
Added Navigation Keys for Mac
2021-11-30 12:18:58 -06:00
MasonBone
a67870ee5b
Masonbone (#13)
* added initial webpage

* Added webpage

* Update package.json

* Update package.json

* Updating stuff

* Update src/commands.ts

Co-authored-by: Jake Grossman <jake.r.grossman@gmail.com>

* updated extension.ts

* Added Key binding pages

* Read html from file

Co-authored-by: Jake Grossman <jake.r.grossman@gmail.com>
2021-11-30 12:04:26 -06:00
jakergrossman
58f153b039 Fix excess space in image 2021-11-27 17:21:54 -06:00
jakergrossman
1c8d9422a3 Update README 2021-11-27 17:18:15 -06:00
jakergrossman
9514db2fdc Fix issues, split commands into sub-lists 2021-11-18 16:25:32 -06:00
jakergrossman
8d757b943c Add missing comma from conflict resolution 2021-11-18 16:04:04 -06:00
Jake Grossman
066a256923
Merge branch 'master' into hub-communication 2021-11-18 16:03:00 -06:00
jakergrossman
c2f159bbe6 Split MindReader view into accessability and hub sub-views 2021-11-18 15:59:04 -06:00
jakergrossman
90af5cba4a Use stat+stream instead of reading entire file on upload 2021-11-18 15:18:11 -06:00
jakergrossman
8d244e5166 Add logger, output 2021-11-18 12:00:46 -06:00
jakergrossman
95b23236e0 Add clarification comment to send 2021-11-18 00:38:07 -06:00
Jake Grossman
c0f23d6de1
Add persistent accessibility pane (#9)
* Add persistent accessibility pane

This will facilitate more extensive usage of the menu than the
context menu.
2021-11-18 00:33:55 -06:00
jakergrossman
92d42edaff Parse messages on arrival
Rather than queuing inbound messages, the HubController now saves
pending promises/rejects for each pending request. Each inbound packet
is checked at the time of arrival, and if the ID matches a pending
response, the corresponding promise is called.

This fixes a problem where the longer the time between reads, the more
garbage responses queue up that are guaranteed to get thrown away the
next time the next response was gathered.
2021-11-18 00:29:27 -06:00
sophiadrewfs
2c5a381b93
Merge pull request #11 from SingleSemesterSnobs/cal
Merge indentation level and line number hotkey
2021-11-17 22:12:47 -06:00
jakergrossman
8ac7e2c5ea Implement HubController 2021-11-17 19:36:18 -06:00
CalWooten95
7f2181d9ea
Update commands.ts 2021-11-17 16:32:35 -06:00
CalWooten95
327ce1eea4
Update commands.ts 2021-11-16 15:24:41 -06:00
CalWooten95
f59be64ab2
Update commands.ts 2021-11-16 15:21:57 -06:00
cdw0311
0dce1dde23 Added current indentation level and line number hotkey 2021-11-16 15:17:41 -06:00
cdw0311
46fef452d8 Added get indentation level and line number hotkey 2021-11-16 15:12:57 -06:00
jakergrossman
e3e9a218df Add missing semicolon 2021-11-16 13:21:51 -06:00
jakergrossman
07799da26e Fixed missing files 2021-11-16 13:19:43 -06:00
jakergrossman
73e599df7b Add persistent accessibility pane
This will facilitate more extensive usage of the menu than the
context menu.
2021-11-16 12:44:39 -06:00
JosiahMoses
ed6df007fd
Add Navigations Keys (#8)
* Add Navigations Keys

* Update package.json

Fixed Typo

* Update commands.ts

Fixed Typo

Co-authored-by: Jake Grossman <jake.r.grossman@gmail.com>
2021-11-16 11:56:57 -06:00
Jake Grossman
887f88eba6
Add H5 & H4: Listen to Cursor/Line Context (#7)
* Update parser

Implied nodes caused ambiguity when querying for context. Now every line
is considered, even blank lines, to make the process much, *much* easier.

* Update pylex tests

* Add runCursorContext
2021-11-16 11:35:38 -06:00
Jake Grossman
6904b5dacf
Refactor command registration (#6)
Refactor command registration

As we continue to register more commands for our extension,
'extensions.ts' has become gross and hard to read. Commands are now
defined in a `commands: Command[]` list in 'commands.ts':

    type Command = {
      name: string, // Name of the command e.g. 'mind-reader.selectTheme'
      callback: () => void // Callback to register for the command
    }

This list is imported into 'extension.ts' and registered
programatically, reducing the required lines of "extra" code required
to register commands in 'extension.ts' from 4 per command to 7 total.
This should help keep 'extension.ts' squeaky clean :)
2021-11-01 15:32:06 -05:00
Jake Grossman
d105544596
Integrate Parser (#4)
Integrate parser
2021-10-26 12:48:04 -05:00
MasonBone
9db476dd39
Merge pull request #5 from SingleSemesterSnobs/cal
Added hotkeys for 5 commands
2021-10-21 08:34:15 -05:00
CalWooten95
7a1043c9b7 Added hotkeys for 5 commands 2021-10-20 14:25:11 -05:00
sophiadrewfs
0104e75d2c
added change theme feature (#3)
Add theme extension recommendation and open theme commands.
2021-10-19 12:46:05 -05:00
MasonBone
b0e9e71cb7 Added Menus 2021-10-19 12:12:03 -05:00
MasonBone
e9ef0b0441 Menus added in editor 2021-10-19 11:52:58 -05:00
MasonBone
87469da7bd Merge branch 'master' into masonbone 2021-10-17 19:19:31 -05:00
MasonBone
fc30e7643c
Merge pull request #2 from SingleSemesterSnobs/sophiaBranch
Sophia branch: settings update
2021-10-17 19:16:55 -05:00
MasonBone
2454dd6a1f Getting new commands 2021-10-17 17:10:23 -05:00
MasonBone
1983f07032
Merge pull request #1 from SingleSemesterSnobs/jake
Implement increasing font and editor scale
2021-10-17 17:06:16 -05:00
jakergrossman
25b23c514b Implement increasing font and editor scale
The following commands adjust the font scale in the editor only:

    - mind-reader.increaseFontScale

    - mind-reader.decreaseFontScale

    - mind-reader.resetFontScale

The following commands adjust the overall editor scale:

    - mind-reader.increaseEditorScale

    - mind-reader.decreaseEditorScale

    - mind-reader.resetEditorScale
2021-10-16 19:30:40 -05:00
jakergrossman
3ac94353de Add port options 2021-10-12 14:18:29 -05:00
sophiadrewfs
d2e3df4965 Add basic settings 2021-10-12 12:43:10 -05:00
jakergrossman
ba6e27cb9e Add README.md 2021-09-25 16:21:23 -05:00
jakergrossman
214610340f Initial commit 2021-09-25 16:18:41 -05:00