Forking what is left of ZeroNet and hopefully adding an AT Proto Frontend/Proxy
0
fork

Configure Feed

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

Fix trayicon autostart script duplicated arguments

+7 -2
+7 -2
plugins/Trayicon/TrayiconPlugin.py
··· 132 132 else: 133 133 cwd = os.path.dirname(sys.executable) 134 134 135 + ignored_args = [ 136 + "--open_browser", "default_browser", 137 + "--dist_type", "bundle_win64" 138 + ] 139 + 135 140 if sys.platform == 'win32': 136 - args = ['"%s"' % arg for arg in args if arg] 141 + args = ['"%s"' % arg for arg in args if arg and arg not in ignored_args] 137 142 cmd = " ".join(args) 138 143 139 144 # Dont open browser on autorun 140 - cmd = cmd.replace("start.py", "zeronet.py").replace('"--open_browser"', "").replace('"default_browser"', "").strip() 145 + cmd = cmd.replace("start.py", "zeronet.py").strip() 141 146 cmd += ' --open_browser ""' 142 147 143 148 return "\r\n".join([