Commit graph

1315 commits

Author SHA1 Message Date
Colin Caine
532f0acd67 Stop using quirks mode in commandline.html
If you don't use a doctype then browsers use quirks mode, which is very
confusing. In particular tables don't inherit styles properly and Olie
gets very confused.
2018-05-21 02:34:22 +01:00
Colin Caine
133c3817ef Fix missing semicolon 2018-05-21 02:30:52 +01:00
Colin Caine
5805984ab7 Add old design doc for hinting 2018-05-21 02:02:45 +01:00
Colin Caine
e6c2da19d5 Quote * in bodgecss 2018-05-21 01:22:43 +01:00
Colin Caine
a883c9ebee Stop typedoc complaining about toBeAll 2018-05-21 01:22:04 +01:00
Babil Golam Sarwar
6fe643cb75 Conditionally add pyinstaller as a prerequisite 2018-05-21 09:07:43 +10:00
Babil Golam Sarwar
7026647e11 Fix shebang path to env in bodgecss.sh 2018-05-21 09:06:50 +10:00
Babil Golam Sarwar
dd21250b5d Merge branch 'master' of https://github.com/cmcaine/tridactyl into 'gsbabil/windows-compiled-native-messenger-support' 2018-05-21 08:53:14 +10:00
Babil Golam Sarwar
de0868bb81 Merge branch 'master' of https://github.com/cmcaine/tridactyl 2018-05-21 08:44:02 +10:00
Babil Golam Sarwar
ad3e2d51f7 Disable GPG signing of the EXE for now 2018-05-21 08:32:28 +10:00
Babil Golam Sarwar
edbc97eec2 Require PYINSTALLER=1 to build and sign EXE
A default `npm run build` or a `scripts/build.sh` invocation would
not compile or sign `native_main.exe` anymore. This is a departure
from the previous logic where `PYINSTALLER=0` was needed to prevent
compile+signing of `native_main.exe`.

The following is achieved with this commit:

```
  $ ## following does _not_ compile/sign `native_main.exe`
  $ npm run build
  $ PYINSTALLER=0 npm run build

  $ ## following _does_ compile/sign `native_main.exe`
  $ PYINSTALLER=1 npm run build
```
2018-05-21 06:07:29 +10:00
Oliver Blanthorn
0136cda9d0
Update changelog 2018-05-20 18:27:36 +01:00
Oliver Blanthorn
554bbe41f5
Merge branch 'master' of github.com:cmcaine/tridactyl into caput-theme-mk2 2018-05-20 18:20:46 +01:00
Oliver Blanthorn
c2ed90aacb
Add shydactyl theme to list of themes and help 2018-05-20 18:17:17 +01:00
Oliver Blanthorn
c57cfec62a
Add contribution guidelines 2018-05-20 18:12:01 +01:00
Ashley Trinh
1a6a460879
Add "shydactyl" theme
NB: this is actually bootleg. All complaints about added jank should go
to @bovine3dom, who will provide copious helpings of empathy, but
probably won't be able to fix it.
2018-05-20 18:03:09 +01:00
Babil Golam Sarwar
3f205b5d7b Merge branch 'master' of https://github.com/cmcaine/tridactyl 2018-05-21 03:01:01 +10:00
Colin Caine
71d27e5133 Add appendTo()
Appends an element as a child of another if it can, else waits for
DOMContentLoaded.

Cleans up modeindicator insertion a bit.
2018-05-20 17:54:29 +01:00
Colin Caine
45181d0c50 Fix commandline not appearing on ImageDocuments.
DOMContentLoaded is never fired for ImageDocuments and
document.readyState doesn't behave the way we want.

Turns out you can just append immediately, though, so we do that.
2018-05-20 17:54:29 +01:00
Oliver Blanthorn
b545333dfc
Make command line use flex for easier styling 2018-05-20 17:36:08 +01:00
Oliver Blanthorn
06e2897965
Try to use greenmat font everywhere 2018-05-20 16:22:45 +01:00
Oliver Blanthorn
43905a4c34
Fix up fonts 2018-05-20 16:22:45 +01:00
Oliver Blanthorn
745fb80d46
Make Tridactyl pages use theme colours 2018-05-20 16:22:45 +01:00
Oliver Blanthorn
b980a8ba4f
Make greenmat apply to more stuff 2018-05-20 16:22:45 +01:00
Oliver Blanthorn
538652c374
Make dark theme apply to mode indicator: fix #415 2018-05-20 16:22:45 +01:00
Oliver Blanthorn
53ade2cc2f
Allow mode indicator to be styled 2018-05-20 16:22:45 +01:00
Oliver Blanthorn
cf0b3d1ccc
Reuse some variables 2018-05-20 16:22:45 +01:00
Oliver Blanthorn
2b2d30edb6
Consolidate default 2018-05-20 16:22:45 +01:00
Oliver Blanthorn
84d53f000f
Consolidate greenmat 2018-05-20 16:22:45 +01:00
Oliver Blanthorn
4918454959
Consolidate dark theme 2018-05-20 16:22:45 +01:00
Oliver Blanthorn
535dd5bb67
Make injection of theme scripts automatic 2018-05-20 16:22:45 +01:00
Oliver Blanthorn
c2803b0927
Add more generic variables 2018-05-20 16:22:45 +01:00
Bruno Oliveira
0feaa3d2ca
Improve Tridactyl theming capabilities 2018-05-20 16:22:46 +01:00
jcrowgey
bb5a82ae31
Call get when there's no value to set: fix #573
This is simple, but untested (I didn't see any test code in this repo).
2018-05-20 16:21:58 +01:00
Chandan Singh
fa8c0e0759
readme.md: Fix markdown syntax for hyperlink
Previously it was of the form `(text)[link]`, but should be of the form
`[text](link)`.
2018-05-20 16:21:58 +01:00
Thomas Broadley
634ac54260
Fix path to docs in :help command 2018-05-20 16:21:58 +01:00
jcrowgey
71e1ed76e9
Call get when there's no value to set: fix #573
This is simple, but untested (I didn't see any test code in this repo).
2018-05-20 12:25:04 +01:00
Oliver Blanthorn
ff8949c972
Merge pull request #576 from cs-shadow/readme-fix-markdown
readme.md: Fix markdown syntax for hyperlink
2018-05-20 12:22:36 +01:00
Chandan Singh
29f86d9b26 readme.md: Fix markdown syntax for hyperlink
Previously it was of the form `(text)[link]`, but should be of the form
`[text](link)`.
2018-05-20 11:30:40 +01:00
Babil Golam Sarwar
2f4ddc033e Add minor Windows specific revises to build.sh 2018-05-20 09:32:31 +10:00
Babil Golam Sarwar
a940453958 Add -NoPython flag support to win_install.ps1
This patch replaces the previous `-UsePython` flag with `-NoPython`.
Essentially this flag replaces the native messenger installation
behavior with the following new strategy on Windows:

  * Look for Python-3 in user's Windows environment

    - If Python-3 is found, install `native_main.py` as the native
      messenger binary

    - If Python-3 is _not_ found, install `native_main.exe` as the
      native messenger binary
2018-05-20 06:21:35 +10:00
Oliver Blanthorn
0933e05de3
Merge pull request #571 from tbroadley/help-path-to-docs
Fix path to docs in :help command
2018-05-19 15:06:29 +01:00
Oliver Blanthorn
89a2085743
Make DocStart URL matching use search 2018-05-19 14:55:11 +01:00
Oliver Blanthorn
65279b4263
Reduce number of web-ext insta-crashes from 75% to about 30% 2018-05-19 14:52:20 +01:00
Thomas Broadley
155bcfc131 Fix path to docs in :help command 2018-05-19 09:36:55 -04:00
Oliver Blanthorn
2692d55f9c
Correct colours sp and add man alias 2018-05-19 14:10:58 +01:00
Oliver Blanthorn
a3a9011dad
Fix w quickmark 2018-05-19 13:42:57 +01:00
Oliver Blanthorn
9372964d0d
Add "w" quickmark for cmcaine 👑👰💒🔔 2018-05-19 10:18:17 +01:00
Babil Golam Sarwar
2f8689cf3d Add OpenPGP signature support for native_main.exe 2018-05-19 14:14:32 +10:00
Oliver Blanthorn
bf03e7ed6c
Merge branch 'master' of github.com:cmcaine/tridactyl into MoSal-master 2018-05-18 17:31:06 +01:00