Skip to content

Commit eaf0d2d

Browse files
committed
update version number, add docker files, update README, minor UI fixes
1 parent 88828e9 commit eaf0d2d

File tree

189 files changed

+75
-25
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

189 files changed

+75
-25
lines changed

Dockerfile

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
FROM php:8.0-apache
2+
3+
RUN apt-get update && \
4+
apt-get -y install libgmp-dev && \
5+
docker-php-ext-install gmp

README.md

+40-21

docker-compose.yml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
version: "3"
2+
3+
services:
4+
app:
5+
container_name: webriscv_app
6+
build: ./
7+
ports:
8+
- "80:80"
9+
volumes:
10+
- ./www:/var/www/html
11+

css/main.css renamed to www/css/main.css

+16-1
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,8 @@ a.link3:hover {
147147
}
148148

149149
a.link4 {
150+
display: block;
151+
width: 100%;
150152
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
151153
font-size: 10px;
152154
color: black;
@@ -167,6 +169,19 @@ a.link4disabled {
167169
user-select: none;
168170
}
169171

172+
a.link5 {
173+
display: block;
174+
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
175+
font-size: 14px;
176+
color: black;
177+
text-decoration: none;
178+
user-select: none;
179+
border: 1px solid black;
180+
}
181+
a.link5:hover {
182+
color: red;
183+
}
184+
170185
input.form {
171186
cursor: pointer;
172187
}
@@ -234,4 +249,4 @@ tr.alternating:nth-child(odd){
234249

235250
#schemaBody {
236251
background-color: #f0f0f0;
237-
}
252+
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

index.php renamed to www/index.php

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/init.php renamed to www/src/init.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
//VERSION
3-
$_SESSION['version']="1.7.4";
3+
$_SESSION['version']="1.7.5";
44

55
//BOUNDS
66
$_SESSION['maxCycle']=2000;
File renamed without changes.

src/leftPanel.php renamed to www/src/leftPanel.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,10 @@
7878
<table width="100%" cellpadding="0" cellspacing="0">
7979
<tr>
8080
<td align="center" width="50%" style="padding: 0px 3px 0px 6px;">
81-
<a style="font-size: 14px; display: block; border: 1px solid black; padding: 2px 5px;" class="link4" href="javascript:void(0);" onclick="javascript:window.open('pipeTable.php','','width=600,height=400');">EXECUTION TABLE</a>
81+
<a class="link5" style="padding: 2px 5px;" href="javascript:void(0);" onclick="javascript:window.open('pipeTable.php','','width=600,height=400');">EXECUTION TABLE</a>
8282
</td>
8383
<td align="center" width="50%" style="padding: 0px 6px 0px 3px;">
84-
<a style="font-size: 14px; display: block; border: 1px solid black; padding: 2px 37px 2px 38px; " class="link4" href="javascript:void(0);" onclick="javascript:window.open('console.php','','width=600,height=400');">CONSOLE</a>
84+
<a class="link5" style="padding: 2px 37px 2px 38px;" href="javascript:void(0);" onclick="javascript:window.open('console.php','','width=600,height=400');">CONSOLE</a>
8585
</td>
8686
</tr>
8787
</table>
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)