2022-07-09 00:45:17 +00:00
<!doctype html>
< html >
< head >
< meta charset = "utf-8" >
< meta name = "viewport" content = "width=device-width, initial-scale=1" / >
2022-10-31 07:44:05 +00:00
< link rel = "stylesheet" href = "../style.css" type = "text/css" / >
2022-09-16 13:44:03 +00:00
< title > Downloads< / title >
2022-07-09 00:45:17 +00:00
< script type = "text/javascript" >
2022-07-12 02:24:02 +00:00
function findLang(){
2022-07-09 00:45:17 +00:00
let href = location.href;
for(let i=href.length-1;i>0;i--){
if('/'==href.charAt(i) & & '/'==href.charAt(i-3))
2022-07-12 02:24:02 +00:00
return i;
2022-07-09 00:45:17 +00:00
}
2022-07-12 02:24:02 +00:00
return 0;
}
function nav2(page){
let i = findLang();
location.href = location.href.substring(0,i+1)+page;
}
function nav2Lang(lang){
let i = findLang();
let href = location.href;
location.href = location.href.substring(0,i-2)+lang+location.href.substring(i);
2022-07-09 00:45:17 +00:00
}
< / script >
< / head >
< body >
< header class = 'header' >
< a class = "logo" href = "javascript:void(0)" onclick = "return nav2('index.html')" > Home< / a > < a class = "logo" href = "javascript:void(0)" onclick = "return nav2('tags/index.html')" > Tags< / a >
2022-07-12 02:24:02 +00:00
2022-07-09 00:45:17 +00:00
< nav >
< / nav >
< / header >
< br / >
< div class = "container" >
2022-09-16 13:44:03 +00:00
< h1 class = "title" > Downloads
2022-07-09 00:45:17 +00:00
< br >
< span class = "subtitle" > < / span >
< / h1 >
< ul class = "tags" >
< / ul >
2022-09-16 08:09:19 +00:00
< p > < a href = "https://www.amazon.com/TorApp-Info-uweb-browser-for-geeks/dp/B098QPR6N5" > Amazon appstore< / a > < / p >
< p > < a href = "https://s1.asytech.cn/s/tQrgT5kBRg8Trry" > uweb, termux & history versions< / a > < / p >
< p > < a href = "https://github.com/torappinfo/uweb/releases/tag/v1" > github< / a > < / p >
2022-09-29 01:45:51 +00:00
< p > < a href = "https://releases.pagure.org/uweb/" > pagure< / a > < / p >
2022-09-16 08:09:19 +00:00
< p > < a href = "https://sourceforge.net/projects/uwebbrowser/files/v1/" > sourceforge< / a > < / p >
< h4 id = "change-logs" > Change logs< / h4 >
2022-12-11 01:23:44 +00:00
< p > 949: Address bar: " :p [width in milliInch]x[height]" to generate PDF in custom size< br >
2022-12-08 08:15:22 +00:00
946: Option " use offline cache" to support serverless local websites.< / p >
2022-11-23 05:52:03 +00:00
< p > 945: commands to support evaluation of generated js code.< / p >
2022-11-16 15:16:30 +00:00
< p > 943: Multiple home screens support .mht (offline webpage), .search & .html local files.< / p >
2022-11-08 03:06:46 +00:00
< p > 940: < a href = "../url2site/index.html" > Any url as website< / a > with local html processing (< a href = "../links/index.html" > " i:0m/..../xxx.html:url" < / a > )< / p >
2022-10-19 15:10:42 +00:00
< p > 935:< / p >
< ul >
< li > Pipe support: command line output to uweb tabs.< / li >
< / ul >
< p > 934:< / p >
< ul >
< li > Serverless local sites: PWA-kind web extension (chrome .crx & firefox .xpi) support.< / li >
< li > PWAs and web extensions to be used as search engines, ex. kiwix zim as search engines.< / li >
< / ul >
2022-10-06 06:06:27 +00:00
< p > 925:< / p >
< ul >
< li > remote js: wait for remote js to be fully loaded.< / li >
< li > html5 apps are as powerful as native ones now and still secure.< / li >
< li > Security enhancements.< / li >
< / ul >
< p > 921: fix remote file decompression.< / p >
2022-09-16 08:09:19 +00:00
< p > 917:< / p >
< ul >
< li > re-implement html5 enhancement for better mdict lookup support.< / li >
< / ul >
< p > 908:< / p >
2022-08-17 03:16:49 +00:00
< ul >
< li > Add internal links " i:1d" to launch apps. (to fix " am" issues for Android 8+)< / li >
< li > File sending now supports pseudo file manager (page url faked as a file url for folder), thus scripts of internal links " d:" can generate any kind of pseudo file manager for file transfer.< / li >
< li > Better support for naked Termux (without any initial packages with updateonly version).< / li >
< / ul >
2022-09-16 08:09:19 +00:00
< p > 903: Enhance html5 apps. (ex. mdict-js, a dictionary lookup< br >
app, works like native with minimal change)< br >
2022-07-27 12:45:20 +00:00
901: Use in-app files folder for configuration< / p >
2022-07-09 00:45:17 +00:00
< / div >
< / body >
< / html >