61 lines
2.8 KiB
HTML
61 lines
2.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>WinChat - Grayson Riffe</title>
|
|
<meta name="author" content="Grayson Riffe">
|
|
<meta name="description" content="A simple Windows chat app">
|
|
<meta name="theme-color" content="#21b9ff">
|
|
<meta name="og:image" content="/wc/wclogo.png">
|
|
|
|
<link rel="icon" href="/favicon.png" type="image/png">
|
|
<link rel="stylesheet" href="/style.css">
|
|
|
|
<script src="/transitions.js" defer></script>
|
|
</head>
|
|
<body style="--headercolor: var(--wcheadercolor); --maincolor: #00d9ffaa; --articlecolor: #21f0ff99;">
|
|
<div class="background" style="--background: url('/winchat/wcbackground.jpg');"></div>
|
|
|
|
<header>
|
|
<div class="logo">
|
|
<img src="/logo.png" alt="Grayson Riffe">
|
|
</div>
|
|
<nav>
|
|
<div><a href="/">Home</a></div>
|
|
<div class="dropdown-container"><a href="#">Portfolio</a>
|
|
<div class="dropdown">
|
|
<div><a href="/nf/">Nothin' Fancy</a></div>
|
|
<div class="selectedpage"><a href="#">WinChat</a></div>
|
|
</div>
|
|
</div>
|
|
<div><a href="/resume/" class="notransition">Resume</a></div>
|
|
<div><a href="/about/">About</a></div>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
<div class="centeredimage">
|
|
<img src="wclogo.png" alt="WinChat Logo">
|
|
</div>
|
|
<article>
|
|
<h1>WinChat</h1>
|
|
<p>
|
|
WinChat is a simple chat application for Windows (hence the name).
|
|
|
|
I started this project to get a grasp of the network programming I would need to know if I were to add multiplayer support to Nothin' Fancy. The application has few features, but everything is done at a low level, only using old Win32 APIs to get the job done.
|
|
|
|
You can download the current version (1.0.0) <a href="WinChat.zip" class="notransition">here</a>.
|
|
As a side note, because I do not have a "<a href="https://en.wikipedia.org/wiki/Code_signing" class="notransition">code signing certificate</a>," Windows Security and SmartScreen might not let you run the program without <a href="https://en.wikipedia.org/wiki/Microsoft_SmartScreen#:~:text=if%20the%20program%20does%20not%20have%20an%20established%20good%20reputation%2C%20the%20user%20is%20alerted%20that%20running%20the%20program%20may%20harm%20their%20computer." class="notransition">asking you if you are sure</a>.
|
|
|
|
The source is on GitHub <a href="https://github.com/graysonriffe/WinChat" class="notransition">here</a>.
|
|
</p>
|
|
</article>
|
|
<footer>
|
|
Copyright 2024 Grayson Riffe
|
|
</footer>
|
|
</main>
|
|
</body>
|
|
</html> |