37 Commits

Author SHA1 Message Date
9cc5fc6aaf Turn readme.txt into a more comprehensive online help document 2014-10-13 18:49:59 +00:00
4fa5555fa5 Solve all missing and wrong DLL issues for 32/64 bit PostgreSQL mode. Fixes issue #3543. 2014-06-08 05:55:07 +00:00
6ece2cc5a6 Include required file for PostgreSQL connections in setup routine. Taken from http://slproweb.com/download/Win32OpenSSL_Light-1_0_1g.exe 2014-04-17 13:36:21 +00:00
4aee9078ee Add experimental PostgreSQL support, issue #3190. Include 32bit and 64bit dll's in installer. 2014-04-15 06:17:37 +00:00
ccb5ed7d03 Allow disabling the creation of start menu icons in the installer. Fixes issue #3510. 2014-03-08 04:03:23 +00:00
61e3642851 Automatically detect UI language and use localized messages on installer 2014-02-15 07:23:53 +00:00
c3b911b64d Ask to close HeidiSQL processes while installing. See pm from Dave. 2014-02-15 06:50:08 +00:00
ece5ea3231 My server has enough RAM now for a better compression of the installer. LZMA2/max requires ~110MB of memory. 2013-11-15 05:17:03 +00:00
59dbff06a2 Introduce 64bit builds and 32/64 bit mixed installer 2013-11-13 05:38:44 +00:00
fdca39e00d Route donate link in installer to the right url. 2013-09-14 08:23:08 +00:00
c5a52475c5 Decrease memory requirement for compressing files in installer, by using ZIP instead of LZMA2. 2012-02-02 21:09:37 +00:00
5b60d7047e Add basic support for pluggable authentication:
* Implement and export callback function "mysql_authentication_dialog_ask"
* Update libmysql.dll to the one from MariaDB 5.2.10
* Copy dialog.dll from MariaDB into plugins subfolder
* Modify installer so it creates the plugins folder and its dll files
* Fixes issue #2658
2011-12-23 17:11:36 +00:00
5882219337 Auto build installer by InnoSetup command line 2011-12-09 21:07:35 +00:00
22ba3b55e8 Introduce Inno Setup Preprocessor constants in order to automate most version strings and other commonly used literals. 2010-11-20 17:40:25 +00:00
8f9812714a Remove uninstall icon from being created by installer. As suggested here: http://www.heidisql.com/forum.php?t=6699 2010-10-30 06:58:22 +00:00
9877e09d95 Revert r3218 - let user run into errors when he's trying to install to c:\program files\... as non-admin. So, at least he can chose a different directory and is not completely blocked from installing. Fixes issue #899. 2010-04-23 19:15:14 +00:00
63fa44d0fd Prepare 5.1 version for installer 2010-04-14 23:04:22 +00:00
bcd2215858 Installer: Fix wrong URLs 2010-03-26 21:58:39 +00:00
1614508c62 Installer: Prepare version numbers for coming release 2010-03-26 21:30:11 +00:00
dd7efd3ea6 Installer: Ensure readme file can be used in the last step when user checks "View readme" 2010-03-26 21:28:50 +00:00
d8949f8569 Installer: Admin privs are required as we write to c:\program files, and the installer should ensure that it runs with appropriate privs. 2010-03-26 21:25:16 +00:00
8d647f81c8 Preparations for upcoming major release 2010-01-30 08:02:37 +00:00
83a8df4f64 Keep release version number also in builds, instead of x.y. Can help to identify the right version one is using and looks less ugly in all places. Fixes issue #1372. 2009-11-17 00:30:00 +00:00
468b6ac3f8 Add statistic call option to release installer.
(Makes it mandatory to revert previous commit before releasing, as the installer doesn't save any reg value if the checkbox was unchecked. Then, the confirmation dialog should not appear!)
2009-06-20 22:52:11 +00:00
3abce288e0 Add a "Donate" button to the very last page of the InnoSetup installer. 2009-05-05 22:15:34 +00:00
805fed187d Enable installation for non admins. Lets at least a non-admin user select a different install directory. Issue #899 2008-12-14 11:21:47 +00:00
ab5cbe1421 Opt-out for the auto-check-for-updates option by default, as discussed. 2008-05-25 19:02:55 +00:00
08298abd9e Move manifest file into the exe by activating the "Runtime Themes" project option. Ensures theming is active even when the exe has a different name than the manifest file (e.g. "heidisql.r123.exe") 2008-05-18 18:33:31 +00:00
4200ca1bc6 Add an installation option to enable/disable the automatic update checks, as discussed. By default the option is enabled, like in HeidiSQL itself. The user now has the chance to disable this option early enough so phoning home is never done.
(Btw, there are quite some hardcoded, redundant values in this .iss file. Would be great if it could make use of our const.inc)
2008-02-20 21:49:07 +00:00
74805a3474 Set default version numbers in relevant places. Releases should get their version numbers in /tags . 2007-11-29 19:22:10 +00:00
771580fbea Belated version updates for 3.2 release 2007-11-20 21:35:30 +00:00
aefe3b36ab Prepare installer for 3.1 release 2007-11-14 19:53:54 +00:00
61071aee6d InnoSetup doesn't like strings in VersionInfoVersion 2007-10-12 20:11:59 +00:00
9ef861313b Installation: enable the support of creation of update package with Inno Setup 2007-09-25 20:59:22 +00:00
0ce5dd72a7 Preparation for coming 3.1 RC1 release "Gazelle" :) 2007-09-24 23:27:38 +00:00
69e1abbf43 Implement an up-to-date list of MySQL functions in mysql.pas. Used for
- popupmenu in query memo
- query helpers
- SynCompletionProposal
Drops function.txt and parser for that file.

Pros:
- No dependency on this file anymore
- Much easier and safer coding
- File-parsing no longer needed

Notes:

The old function.txt was meant to be editable and extensible for users but I never saw or heard anyone who does that, most likely because it wasn't documented. Another problem was that the file resided in the programs-directory, where only administrators have write-access, so in these cases it couldn't be edited anyway.

The PHP file in /extras can be used for creating an up-to-date list for mysql.pas .

As not all functions of the new list are available in all mysql-versions, it would be the best if we would fetch the list by the use of HELP commands. Contra: Would result in poor performancing popupmenu and many servers don't have the help-tables filled.
2007-07-04 22:31:56 +00:00
bffc0206f2 Organize repository into standard trunk/branches/tags structure. 2007-06-26 11:26:18 +00:00