1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1" />
-
- <link rel="stylesheet" href="/uwebzh/style.css" type="text/css" />
- <title>Change log</title>
- <script type="text/javascript">
- function findLang(){
- let href = location.href;
- for(let i=href.length-1;i>0;i--){
- if('/'==href.charAt(i) && '/'==href.charAt(i-3))
- return i;
- }
- 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);
- }
- </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>
-
- <nav>
- </nav>
- </header>
- <br />
-
- <div class="container">
- <h1 class="title">Change log
- <br>
- <span class="subtitle"></span>
- </h1>
- <ul class="tags">
-
- </ul>
- <p>908:</p>
- <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>
- <p>903: Enhance html5 apps. (ex. mdict-js, a dictionary lookup app, works like native with minimal change)<br>
- 901: Use in-app files folder for configuration</p>
- </div>
- </body>
- </html>
|