1
0
mirror of https://github.com/lrsjng/h5ai.git synced 2025-09-01 18:03:50 +02:00

Compare commits

..

5 Commits

Author SHA1 Message Date
Lars Jung
b097ac2b2d Version 0.22.1 2012-10-16 17:02:24 +02:00
Lars Jung
f047f94ad9 Merge branch 'develop' 2012-10-16 17:00:33 +02:00
Lars Jung
072f1c8158 Fixes a edge-case problem with the API. 2012-10-16 15:16:20 +02:00
Lars Jung
ca19318671 Updates responsive styles. 2012-10-16 15:11:00 +02:00
Lars Jung
c80c2b146a Updates version to 0.23-dev 2012-10-14 18:40:43 +02:00
4 changed files with 22 additions and 14 deletions

View File

@@ -58,6 +58,12 @@ It profits from these great projects:
## Changelog
(**h5ai** uses [semantic versioning](http://semver.org/))
### v0.22.1 - *2012-10-16*
* bug fix concerning API requests in PHP mode
* minor changes in responsive styles
### v0.22 - *2012-10-14*
* general changes h5ai directory layout and configuration

View File

@@ -1,6 +1,6 @@
{
"name": "h5ai",
"version": "0.22",
"version": "0.22.1",
"description": "a modern HTTP web server index",
"url": "http://larsjung.de/h5ai/",
"author": "Lars Jung",

View File

@@ -1,18 +1,8 @@
@media only screen and (max-width: 500px) {
#topbar {
.view span {
display: none;
}
body {
margin: 8px;
}
#extended.view-icons {
padding: 0;
border: none;
margin: 0 -14px;
}
}
@media only screen and (max-width: 350px) {
#topbar {
.crumb {
display: none;
@@ -20,6 +10,9 @@
.current {
display: block;
}
.view span {
display: none;
}
}
#extended.view-details {
.header .label, .entry .label {
@@ -29,11 +22,19 @@
display: none;
}
}
#extended.view-icons {
padding: 0;
border: none;
margin: 0 -14px;
}
#bottombar {
.center {
display: none;
}
}
#tree {
display: none !important;
}
}
@media print {

View File

@@ -21,7 +21,8 @@ normalized_require_once("/server/php/inc/Entry.php");
$app = new App(APP_ABS_PATH, APP_ABS_HREF, ABS_HREF);
if (count($_REQUEST)) {
// if (count($_REQUEST)) {
if (array_key_exists("action", $_REQUEST)) {
header("Content-type: application/json");