App version
Posted: 2023-09-15 02:55
How can I tell which version of Appgini I used to generate a web app?
TD
TD
A place where AppGini users can exchange ideas and help each other.
https://forums.appgini.com:443/phpbb/
https://forums.appgini.com:443/phpbb/viewtopic.php?f=2&t=5214
version
-property which you can evaluate in javascript, for example in console prompt of your browser's developer tools:Code: Select all
AppGini.version
common.js
. In new versions there should be a version-initialization around line 3:
Code: Select all
AppGini.version = 22.14;
APP_VERSION
, defined in definitions.php
:
Code: Select all
@define('APP_VERSION', '22.14');
Code: Select all
<!-- file: hooks/header-extras.php -->
<script>
modal_window({
title: 'AppGini Version',
message: 'v.<?= APP_VERSION ?>'
});
</script>
TABLENAME_dml.php
files and see the comments in the first couple of lines:Code: Select all
<?php
// ...
// This script and data application were generated by AppGini 22.14
// ...
<version>
5.
and check if there are any code comments, generated by that older version. I have just opened an older project and found code comments like this one which means at least since 5.72 there should be code such comments:
Code: Select all
// This script and data application were generated by AppGini 5.72