Skip to content

Releases: rmellis/JavaWebViewer

b1.1 - better hybrid startup flags & Improved console logs

30 Jan 21:53

Choose a tag to compare

Added named startup option flags e.g. --url=index.htm

These new flags have been added with a hybrid approach, meaning any old configs using the old syntax will still function, they can also be phased as a mix
This update will allow setting a variable indexed deeper e.g. level 9 without having to set the 8 variables before it by specifying it directly with the --key=value approach

Examples Below:

1️ Original (unchanged!)

viewer.jar index.htm "My App" 1200 800 false false true center center icon.png

2️ Named flags anywhere

viewer.jar index.htm --title="Dashboard" --fullscreen --icon=kiosk.png

3️ Mix positional + named

viewer.jar index.htm "App" --width=1000 --height=700 --resizable=false --icon=app.png

4️ Just named flags

viewer.jar --url=dashboard.html --title="Kiosk" --fullscreen --icon=kiosk.png

5️ Short-named flags

viewer.jar index.htm --url=dashboard.html --icon=logo.png

Added better console information when launching based on configuration,
see example of loaded htm file below:

🚀 LocalViewer Configuration:
📄 URL: index.htm
🏷️ Title: Java WebApp
📐 Size: auto x auto
🔧 Flags: fullscreen=false, maximized=false
🖼️ Loading icon: icon.png
✅ Icon loaded successfully (64x64)
🎯 Window centered
✨ Viewer ready! Press Ctrl+C to exit.

More may appear depending on your configuration. Check the source code for details.

b0.8 - Feature Addition, Bug Fixes & Visual improvements

30 Jan 13:56

Choose a tag to compare

Second Update for Java Web Viewer

✅ Fixed filename loading (auto redirect index.htm → file:///)
✅ Fixed argument indexing (icon at index 9 was looking for 10th variable)
✅ Safe parsing (no more crashes)
✅ Added some basic debug details to console e.g. if an icon was loaded successfully
✅ Added App Icon as a template (icon.png)
✅ Icons can now be assigned (local PNG/ICO files or auto for favicon)
✅ Added missing repo link to index template
✅ Changed template highlight color to purple (it looks nice)

b0.4 - First uploaded Release

30 Jan 04:38

Choose a tag to compare

First Release

This is the first uploaded release of Java Web Viewer
Simply download the .zip, Extract and edit as needed