Add onion container
This commit is contained in:
18
Makefile
18
Makefile
@ -164,3 +164,21 @@ deb: clean
|
|||||||
mv "../hankhill19580_at_gmail.com.crl" ./
|
mv "../hankhill19580_at_gmail.com.crl" ./
|
||||||
mv "../hankhill19580_at_gmail.com.crt" ./
|
mv "../hankhill19580_at_gmail.com.crt" ./
|
||||||
mv "../hankhill19580_at_gmail.com.pem" ./
|
mv "../hankhill19580_at_gmail.com.pem" ./
|
||||||
|
|
||||||
|
debsrc: clean
|
||||||
|
mv "hankhill19580_at_gmail.com.crl" ../; true
|
||||||
|
mv "hankhill19580_at_gmail.com.crt" ../; true
|
||||||
|
mv "hankhill19580_at_gmail.com.pem" ../; true
|
||||||
|
rm ../i2p.plugins.tor-manager_$(VERSION).orig.tar.gz
|
||||||
|
tar --exclude=".git" \
|
||||||
|
--exclude="hankhill19580_at_gmail.com.crl" \
|
||||||
|
--exclude="hankhill19580_at_gmail.com.crt" \
|
||||||
|
--exclude="hankhill19580_at_gmail.com.pem" \
|
||||||
|
--exclude="i2p.plugins.tor-manager" \
|
||||||
|
--exclude="i2p.plugins.tor-manager.exe" \
|
||||||
|
--exclude="tmp" \
|
||||||
|
-cvzf ../i2p.plugins.tor-manager_$(VERSION).orig.tar.gz .
|
||||||
|
debuild -S
|
||||||
|
mv "../hankhill19580_at_gmail.com.crl" ./
|
||||||
|
mv "../hankhill19580_at_gmail.com.crt" ./
|
||||||
|
mv "../hankhill19580_at_gmail.com.pem" ./
|
42
debian/copyright
vendored
42
debian/copyright
vendored
@ -13,25 +13,25 @@ License: MIT
|
|||||||
Comment: Debian packaging is licensed under the same terms as upstream
|
Comment: Debian packaging is licensed under the same terms as upstream
|
||||||
|
|
||||||
License: MIT
|
License: MIT
|
||||||
MIT License
|
MIT License
|
||||||
|
.
|
||||||
Copyright (c) 2022 idk, The Invisible Internet Project
|
Copyright (c) 2022 idk, The Invisible Internet Project
|
||||||
|
.
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
in the Software without restriction, including without limitation the rights
|
in the Software without restriction, including without limitation the rights
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
furnished to do so, subject to the following conditions:
|
furnished to do so, subject to the following conditions:
|
||||||
|
.
|
||||||
The above copyright notice and this permission notice shall be included in all
|
The above copyright notice and this permission notice shall be included in all
|
||||||
copies or substantial portions of the Software.
|
copies or substantial portions of the Software.
|
||||||
|
.
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
SOFTWARE.
|
SOFTWARE.
|
||||||
|
|
||||||
|
4
main.go
4
main.go
@ -46,6 +46,7 @@ var (
|
|||||||
arch = flag.String("arch", ARCH(), "OS/arch to download")
|
arch = flag.String("arch", ARCH(), "OS/arch to download")
|
||||||
i2pbrowser = flag.Bool("i2pbrowser", false, "Open I2P in Tor Browser")
|
i2pbrowser = flag.Bool("i2pbrowser", false, "Open I2P in Tor Browser")
|
||||||
torbrowser = flag.Bool("torbrowser", false, "Open Tor Browser")
|
torbrowser = flag.Bool("torbrowser", false, "Open Tor Browser")
|
||||||
|
verbose = flag.Bool("verbose", false, "Verbose output")
|
||||||
/*mirror = flag.String("mirror", "", "Mirror to use")*/
|
/*mirror = flag.String("mirror", "", "Mirror to use")*/
|
||||||
/*bemirror = flag.Bool("bemirror", false, "Act as an in-I2P mirror when you're done downloading")*/
|
/*bemirror = flag.Bool("bemirror", false, "Act as an in-I2P mirror when you're done downloading")*/
|
||||||
)
|
)
|
||||||
@ -76,6 +77,9 @@ func main() {
|
|||||||
log.Fatal("Couldn't create client", err)
|
log.Fatal("Couldn't create client", err)
|
||||||
}
|
}
|
||||||
//client.TBD.Profile = &content
|
//client.TBD.Profile = &content
|
||||||
|
if *verbose {
|
||||||
|
client.TBD.Verbose = true
|
||||||
|
}
|
||||||
client.TBS.Profile = &content
|
client.TBS.Profile = &content
|
||||||
if *i2pbrowser {
|
if *i2pbrowser {
|
||||||
client.TBS.RunI2PBWithLang()
|
client.TBS.RunI2PBWithLang()
|
||||||
|
Binary file not shown.
@ -58,3 +58,4 @@ user_pref("webgl.disable-fail-if-major-performance-caveat", true);
|
|||||||
user_pref("webgl.enable-webgl2", false);
|
user_pref("webgl.enable-webgl2", false);
|
||||||
user_pref("media.navigator.enabled", false);
|
user_pref("media.navigator.enabled", false);
|
||||||
user_pref("dom.w3c_touch_events.enabled", false);
|
user_pref("dom.w3c_touch_events.enabled", false);
|
||||||
|
user_pref("browser.privatebrowsing.autostart", false);
|
@ -1,19 +1,18 @@
|
|||||||
# Overrides for Extension Preferences
|
/*
|
||||||
# Tor Browser Bundle
|
Overrides#
|
||||||
# Do not edit this file.
|
for Extension Preferences# Tor Browser Bundle# Do not edit this file.##This file is modified from a file included in the Tor Browser Bundle.##Copyright 2017 The Tor Project.See LICENSE.tor#
|
||||||
#
|
for licensing information.
|
||||||
# This file is modified from a file included in the Tor Browser Bundle.
|
|
||||||
#
|
|
||||||
# Copyright 2017 The Tor Project. See LICENSE.tor for licensing information.
|
|
||||||
|
|
||||||
# HTTPS Everywhere Preferences:
|
HTTPS Everywhere Preferences:
|
||||||
|
*/
|
||||||
user_pref("extensions.https_everywhere._observatory.popup_shown", true);
|
user_pref("extensions.https_everywhere._observatory.popup_shown", true);
|
||||||
user_pref("extensions.https_everywhere.toolbar_hint_shown", true);
|
user_pref("extensions.https_everywhere.toolbar_hint_shown", true);
|
||||||
|
|
||||||
# NoScript Preferences:
|
/*
|
||||||
# In order to disable all scripts by default, uncomment the following line...
|
NoScript Preferences: #In order to disable all scripts by
|
||||||
# user_pref("capability.policy.maonoscript.javascript.enabled", "noAccess");
|
default, uncomment the following line...#user_pref("capability.policy.maonoscript.javascript.enabled", "noAccess");#
|
||||||
# and comment out the following line
|
and comment out the following line
|
||||||
|
*/
|
||||||
user_pref("capability.policy.maonoscript.javascript.enabled", "allAccess");
|
user_pref("capability.policy.maonoscript.javascript.enabled", "allAccess");
|
||||||
user_pref("capability.policy.maonoscript.sites", "[System+Principal] about: about:tbupdate about:tor chrome: resource: blob: mediasource: moz-extension: moz-safe-about: about:neterror about:certerror about:feeds about:tabcrashed about:cache");
|
user_pref("capability.policy.maonoscript.sites", "[System+Principal] about: about:tbupdate about:tor chrome: resource: blob: mediasource: moz-extension: moz-safe-about: about:neterror about:certerror about:feeds about:tabcrashed about:cache");
|
||||||
user_pref("noscript.default", "[System+Principal] about: about:tbupdate about:tor chrome: resource: blob: mediasource: moz-extension: moz-safe-about: about:neterror about:certerror about:feeds about:tabcrashed about:cache");
|
user_pref("noscript.default", "[System+Principal] about: about:tbupdate about:tor chrome: resource: blob: mediasource: moz-extension: moz-safe-about: about:neterror about:certerror about:feeds about:tabcrashed about:cache");
|
||||||
@ -222,3 +221,4 @@ user_pref("webgl.min_capability_mode", true);
|
|||||||
user_pref("webgl.disable-fail-if-major-performance-caveat", true);
|
user_pref("webgl.disable-fail-if-major-performance-caveat", true);
|
||||||
user_pref("webgl.enable-webgl2", false);
|
user_pref("webgl.enable-webgl2", false);
|
||||||
user_pref("dom.w3c_touch_events.enabled", false);
|
user_pref("dom.w3c_touch_events.enabled", false);
|
||||||
|
user_pref("browser.privatebrowsing.autostart", false);
|
Reference in New Issue
Block a user