README, code styling
This commit is contained in:
parent
08d72c5a58
commit
310dcf8671
|
@ -0,0 +1,17 @@
|
|||
Copyright (C) 2020 - Verdnatura Levante S.L.
|
||||
|
||||
This package is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
On Debian systems, the complete text of the GNU General Public
|
||||
License can be found in "/usr/share/common-licenses/GPL-3".
|
|
@ -0,0 +1,18 @@
|
|||
# Access updater
|
||||
|
||||
Simple application based on HTA/Javascript to update Microsoft Access modules.
|
||||
|
||||
## Getting Started
|
||||
|
||||
Steps to build the installer.
|
||||
|
||||
* Install Inno Setup.
|
||||
* Open setup.iss file.
|
||||
* Push the compile button and wait until the process ends.
|
||||
* The installer will be generated at the parent project folder.
|
||||
|
||||
# Built with
|
||||
|
||||
* [HTA](https://en.wikipedia.org/wiki/HTML_Application)
|
||||
* [Inno Setup](https://www.jrsoftware.org/isinfo.php)
|
||||
* [7zip](https://www.7-zip.org/)
|
|
@ -22,10 +22,10 @@
|
|||
windowsstate="normal"/>
|
||||
</head>
|
||||
<body
|
||||
onload="App._onLoad (event)"
|
||||
onunload="App._onUnload (event)"
|
||||
onkeypress="App._onKeyPress (event)"
|
||||
onclick="App._onBodyClick (event)">
|
||||
onload="App._onLoad(event)"
|
||||
onunload="App._onUnload(event)"
|
||||
onkeypress="App._onKeyPress(event)"
|
||||
onclick="App._onBodyClick(event)">
|
||||
<img
|
||||
id="logo"
|
||||
src="verdnatura.png"
|
||||
|
@ -47,7 +47,7 @@
|
|||
<div id="submit">
|
||||
<button
|
||||
id="enter"
|
||||
onclick="App._onEnterClick (event)">
|
||||
onclick="App._onEnterClick(event)">
|
||||
Entrar
|
||||
</button>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue