aboutsummaryrefslogtreecommitdiffstats
path: root/dist/files-sidebar.js.map
Commit message (Expand)AuthorAgeFilesLines
* Compile assetsnextcloud-command2022-04-211-1/+1
* Bump moment from 2.29.1 to 2.29.2dependabot[bot]2022-04-091-1/+1
* Bump @nextcloud/moment from 1.1.1 to 1.2.0dependabot[bot]2022-03-191-1/+1
* Add profile default setting for adminChristopher Ng2022-03-181-1/+1
* Hide preview if it is in full screen mode (viewer is open)Julius Härtl2022-03-021-1/+1
* Use asset-loader instead of url-loaderLouis Chemineau2022-02-141-1/+1
* Use @nextcloud/sharing in files and files_sharingLouis Chemineau2022-01-261-1/+1
* Bump @nextcloud/axios from 1.8.0 to 1.9.0dependabot[bot]2022-01-221-1/+1
* Compile frontendLouis Chemineau2022-01-211-1/+1
* Bump style-loader from 2.0.0 to 3.3.1dependabot[bot]2022-01-191-1/+1
* Bump webpack from 5.46.0 to 5.66.0dependabot[bot]2022-01-171-1/+1
* Compile frontend to update license filesLouis Chemineau2022-01-111-1/+1
* Add generic type and description when its missingLouis Chemineau2022-01-111-1/+1
* Typing correctionsLouis Chemineau2022-01-111-1/+1
* Fix webpack versionLouis Chemineau2022-01-081-1/+1
* Compile bundleLouis Chemineau2022-01-081-1/+1
* Ensure mapfile consistencyJohn Molakvoæ (skjnldsv)2022-01-081-1/+1
* Split common vendor chunkJohn Molakvoæ (skjnldsv)2022-01-081-0/+1
RANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU AFFERO GENERAL PUBLIC LICENSE for more details. * * You should have received a copy of the GNU Affero General Public * License along with this library. If not, see <http://www.gnu.org/licenses/>. * */ $RUNTIME_NOAPPS = true; //no apps, yet try { require_once 'lib/base.php'; if(OC_Config::getValue('installed')==1) $installed='true'; else $installed='false'; $values=array( 'installed'=>$installed, 'version'=>implode('.', OC_Util::getVersion()), 'versionstring'=>OC_Util::getVersionString(), 'edition'=>OC_Util::getEditionString()); if (OC::$CLI) { print_r($values); } else { echo(json_encode($values)); } } catch (Exception $ex) { OC_Response::setStatus(OC_Response::STATUS_INTERNAL_SERVER_ERROR); \OCP\Util::writeLog('remote', $ex->getMessage(), \OCP\Util::FATAL); }