Call this v1.3.3

This commit is contained in:
Pentium44 2020-12-13 18:41:34 -08:00
parent 15be7f3b14
commit 2f7ddd989d
5 changed files with 53 additions and 13 deletions

View File

@ -60,6 +60,11 @@ Read-Write access for working directory
#### Changelog
* v1.3.3:
* Tweaked main page from "Connected to:" to "Using:"
* Keep JS from processing if irc.php is not active.
* CSS tweaks
* v1.3.2:
* Fix irc.php private message bug with array.
* Fix irc.php saving logs in incorrect locations.

View File

@ -17,8 +17,9 @@ $allowMultiServer = "true"; // [true/false] Allow users to set other IRC servers
///// WEBCLIENT LAYOUT /////
$ipcolor = "#00FF00";
///// NO TOUCHY SECTION /////
$version = "1.3.2"; // IdleIRC version
///// NO TOUCH /////
// Include software version in another php file for the sake of git pull
include_once("version.php");
function doLog($string) {
file_put_contents($GLOBALS['logfile'], $string . "\r\n", FILE_APPEND);

View File

@ -173,6 +173,12 @@ if (isset($_GET['do']) && $_GET['do']=="login" && isset($_POST['submitBtn']) &&
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=.5, shrink-to-fit=yes">
<script language="javascript" type="text/javascript">
<?php
if(file_exists("users/." . $_SESSION['idleirc-user'] . ".pingfile"))
{
?>
<!--
var httpObject = null;
var link = "";
@ -392,12 +398,29 @@ if (isset($_GET['do']) && $_GET['do']=="login" && isset($_POST['submitBtn']) &&
if(Notification.permission !== "granted") {
Notification.requestPermission();
}
<?php
} else {
?>
function getInput() {
// IRC bouncer not running, warn
alert("You're not connected to the server, please connect your bouncer to send messages");
}
function keypressed(e) {
if(e.keyCode=='13'){
getInput();
}
}
<?php
}
?>
//-->
</script>
</head>
<body<?php if(!isset($_GET['register']) && !isset($_GET['logs']) && !isset($_GET['settings']) && isset($_SESSION['idleirc-user'])) { echo ' onload="UpdateTimer();"'; } ?>>
<body<?php if(!isset($_GET['register']) && !isset($_GET['logs']) && !isset($_GET['settings']) && isset($_SESSION['idleirc-user']) && file_exists("users/." . $_SESSION['idleirc-user'] . ".pingfile")) { echo ' onload="UpdateTimer();"'; } ?>>
<div class="info"><?php echo $title . " " . $version;
if(isset($_SESSION['idleirc-user'])) { echo " ~ Connected to: " . $_SESSION['idleirc-servaddr'] . ":" . $_SESSION['idleirc-servport'] . " on " . $_SESSION['idleirc-channel']; } ?></div>
if(isset($_SESSION['idleirc-user'])) { echo " ~ Using: " . $_SESSION['idleirc-servaddr'] . ":" . $_SESSION['idleirc-servport'] . " on " . $_SESSION['idleirc-channel']; } ?></div>
<?php
if (isset($_GET['register'])) {

View File

@ -59,7 +59,8 @@ input, button, select, textarea{
}
.form table {
width: 60%;
min-width: 250px;
max-width: 600px;
margin: auto;
}

10
version.php Normal file
View File

@ -0,0 +1,10 @@
<?php
///////
// IdleIRC - 2020
// (C) Chris Dorman, GPLv3
// https://github.com/Pentium44/idleirc
///////
$version = "1.3.3"; // IdleIRC version
?>