Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tb102 #35

Open
wants to merge 31 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
f8517da
allow alt lookup for keepass in /usr/lib
antixn Mar 24, 2021
58565be
fix : avoid window.keefox_org is undefined
antixn Mar 24, 2021
0871d79
usage comments
antixn Mar 24, 2021
5d478bf
fix : avoid keefox_win.mainUI is undefined
antixn Mar 24, 2021
80ee637
run target : uses web-ext to launch extension
antixn Mar 24, 2021
3a416df
tb68/changes#less-than-progressmeter-greater-than
antixn Mar 24, 2021
73e778a
tb68/changes#less-than-textbox-multiline-true-greater-than
antixn Mar 24, 2021
562f047
tb68/changes#changed-event-behavior
antixn Mar 20, 2021
61d7b57
tb68/changes#nsistringbundleservice
antixn Mar 20, 2021
b671d15
tb68/changes#nsistreamlistener
antixn Mar 20, 2021
757d97e
tb68/changes#nsiscriptableunicodeconverter
antixn Mar 20, 2021
5ed75b0
tb68/changes#nsidomelement-nsidomnode-and-other-basic-dom-interfaces
antixn Mar 20, 2021
a0c2a9b
tb68/changes#services-io-newchannelfromuri-2
antixn Mar 20, 2021
b05d7b7
WindowListener-API
antixn Mar 24, 2021
2e3877e
WindowListener-API - commonDialog
antixn Mar 24, 2021
a084e48
WindowListener-API - install.xul/try
antixn Mar 24, 2021
b57c2aa
comment
antixn Mar 24, 2021
98fa3e7
WindowListener API: Finalizing xul->xhtml
antixn Mar 27, 2021
b683dd0
Replace textbox with html:input
antixn Mar 27, 2021
10fb485
bump version
antixn Mar 27, 2021
7f6fa30
createElement -> createXULElement
antixn Mar 28, 2021
a84bfa1
quick fix on resources
antixn Mar 28, 2021
73a0456
display addon options
antixn Mar 28, 2021
f1022fd
smtp popup title check 2
antixn Aug 7, 2021
796dfea
WindowListener 1.56
antixn Apr 9, 2022
73eb346
fix for global/content/commonDialog.xhtml
antixn May 26, 2022
681e00f
tiny fixes
antixn May 26, 2022
4f96a66
thundernest/addon-developer-support/WindowListener
antixn Oct 18, 2022
f5ee913
fix for global/content/commonDialog.xhtml
antixn Oct 21, 2022
62a56f8
locate keepass path
antixn Oct 21, 2022
58f7e4b
html namespace for KeeFoxSiteOptions
antixn Oct 21, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

PREFIX := /usr
DATADIR := $(PREFIX)/share
# the profile dir is copied and left unmodified by web-ext
PROFILE := /home/xavier/.thunderbird/6ujxy9ck.default-release-2/

# UUID below is for Thunderbird
TB_EXT_DIR := $(DATADIR)/mozilla/extensions/{3550f703-e582-4d05-9a08-453d09bdfdc6}
Expand All @@ -17,3 +19,8 @@ clean:
install: all
install -d $(DESTDIR)$(TB_EXT_DIR)
install --mode=644 *.xpi $(DESTDIR)$(TB_EXT_DIR)

run:
web-ext run --verbose --firefox=/usr/bin/thunderbird --firefox-profile=$(PROFILE) -s xul-ext/
lint:
web-ext lint -s xul-ext/
Loading