-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
aabb066
commit 6adc6c6
Showing
1 changed file
with
100 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,101 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title> | ||
Simple Browser | ||
</title> | ||
</head> | ||
<body> | ||
<h1>Hello!</h1> | ||
<p>Check back when v1.2.0 releases.</p> | ||
</body> | ||
</html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Simple-Browser</title> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" | ||
integrity="sha384-nBuJbd13Ym6pz0tTN6i9z4zr8T3VyZd0+wgP9JUUEk6NDSBstzf50IUxHhZI77Ti" crossorigin="anonymous"> | ||
<!-- Replace the above link with the actual Font Awesome CDN link --> | ||
<style> | ||
/* Add any custom CSS styles here */ | ||
</style> | ||
<title>Simple Browser</title> | ||
</head> | ||
|
||
<body> | ||
<h1>Simple-Browser</h1> | ||
|
||
<p> | ||
<a href="https://www.gnu.org/licenses/old-licenses/gpl-3.0"> | ||
<img src="https://img.shields.io/github/license/DanielLMcGuire/Simple-Browser" alt="License: GPL v3"> | ||
</a> | ||
<img src="https://img.shields.io/badge/language-C%23-178600" alt="Language: C#"> | ||
<img src="https://img.shields.io/github/repo-size/DanielLMcGuire/Simple-Browser" alt="GitHub repo size"> | ||
<img src="https://img.shields.io/sourceforge/dm/simple-browser" alt="SourceForge Downloads"> | ||
<img src="https://img.shields.io/github/v/release/DanielLMcGuire/Simple-Browser" | ||
alt="GitHub release (with filter)"> | ||
</p> | ||
|
||
<h2>Overview</h2> | ||
|
||
<p>Simple-Browser is a lightweight web browser built using C# and MS WebView2 (Chromium Based). This project aims | ||
to provide users with a minimalistic browsing experience with a focus on simplicity and performance.</p> | ||
|
||
<p><strong>EDIT: THIS IS A COMPLETE MESS UNTIL 1.0.0 SORRY FOR THE CONFUSION! | ||
It will be a mess everywhere until 1.0.0 (what can you expect? we are still in alpha.)<br> | ||
EDIT #2: ALL JOKES ASIDE, THIS WON'T TAKE LONG!</strong></p> | ||
|
||
<h2>Features</h2> | ||
|
||
<ul> | ||
<li><strong>Current Features:</strong> | ||
<ul> | ||
<li>Updating README in 1.0</li> | ||
</ul> | ||
</li> | ||
<li><strong>Upcoming Features:</strong> | ||
<ul> | ||
<li>Tabbed Browsing (1.0.0)</li> | ||
<li>Android version in heavy development</li> | ||
<li>Linux (Debian) support actively being developed</li> | ||
<li>macOS (Catalina & later) support coming soon</li> | ||
<li>iOS support scheduled for late 2024 to early 2025</li> | ||
</ul> | ||
</li> | ||
</ul> | ||
|
||
<h2>Installation</h2> | ||
|
||
<p>Follow these steps to install Simple-Browser:</p> | ||
<ol> | ||
<li>Wait until 1.0</li> | ||
</ol> | ||
|
||
<h2>Usage</h2> | ||
|
||
<p>Once installed, launch Simple-Browser and wait until 1.0</p> | ||
|
||
<h2>Contributing</h2> | ||
|
||
<p>We welcome contributions! If you'd like to contribute, please follow our guidelines by time traveling to whenever | ||
the hell 1.0 releases.</p> | ||
|
||
<h2>Compatibility</h2> | ||
|
||
<ul> | ||
<li><strong>Windows:</strong> | ||
<ul> | ||
<li>Windows 10 22H2 or later (x64 Release Only)</li> | ||
<li>Windows 11 (Any Version)</li> | ||
</ul> | ||
</li> | ||
</ul> | ||
|
||
<h2>Roadmap</h2> | ||
|
||
<p>Our roadmap includes:</p> | ||
<ul> | ||
<li>Waiting until 1.0.0</li> | ||
<li>more waiting...</li> | ||
</ul> | ||
|
||
<h2>License</h2> | ||
|
||
<p>Simple-Browser is licensed under the GNU General Public License v3.0. See the LICENSE file for more details.</p> | ||
|
||
<hr> | ||
</body> | ||
|
||
</html> |