Skip to content

Commit

Permalink
Release 1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
pgulutzan committed Jul 4, 2017
1 parent b27b584 commit b4574cd
Show file tree
Hide file tree
Showing 15 changed files with 139 additions and 120 deletions.
43 changes: 28 additions & 15 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2014-2016 by Ocelot Computer Services Inc. All rights reserved.
# Copyright (c) 2014-2017 by Ocelot Computer Services Inc. All rights reserved.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -92,8 +92,8 @@

# FILENAME_EXTRA
# Default is blank. Ocelot passes -DFILENAME_EXTRA="qt4" when building with qt4,
# so the final package name will look like ocelotgui-1.0.4qt4-1_amd64.deb or
# ocelotgui-1.0.4qt4-1.x86_64.rpm. Ordinarily it should not be specified.
# so the final package name will look like ocelotgui-1.0.5qt4-1_amd64.deb or
# ocelotgui-1.0.5qt4-1.x86_64.rpm. Ordinarily it should not be specified.

# FILENAME_RELEASE
# Default is "1". This affects filenames generated by cpack. Ordinarily it doesn't need to be changed.
Expand All @@ -107,29 +107,42 @@
# cmake . -DCPACK_GENERATOR="DEB"
# make
# cpack
# lintian ocelotgui-1.0.4-1_amd64.deb
# sudo dpkg -i ocelotgui-1.0.4-1_amd64.deb
# lintian ocelotgui-1.0.5-1_amd64.deb
# sudo dpkg -i ocelotgui-1.0.5-1_amd64.deb
# Todo: lintian will warn "new-package-should-close-itp-bug", which we ignore.
# Todo: lintian will warn about permissions if you are not root, which we work around by being root.

# e.g. to generate .rpm file and install with rpm:
# cmake . -DCPACK_GENERATOR="RPM"
# make
# cpack
# rpmlint ocelotgui-1.0.4-1.x86_64.rpm
# rpm -i ocelotgui-1.0.4-1.x86_64.rpm
# rpmlint ocelotgui-1.0.5-1.x86_64.rpm
# rpm -i ocelotgui-1.0.5-1.x86_64.rpm
# Todo: rpmlint will warn "standard-dir-owned-by-package" for /usr/share/man and /usr/share/man/man1, which we ignore.
# Todo: rpmlint will warn "no-signature", which we ignore.
# Todo: rpmlint will warn "no-packager-tag", wich we ignore.

# Todo: allow user to pass -DCMAKE_INSTALL_RPATH

message("-- CmakeLists.txt for ocelotgui 1.0.4")
message("-- CmakeLists.txt for ocelotgui 1.0.5")
message("-- see comments in CMakeLists.txt for special instructions")
message("-- see README.md for general instructions for building")

cmake_minimum_required(VERSION 2.8.11)

if (CMAKE_MAJOR_VERSION EQUAL "3")
if (CMAKE_MINOR_VERSION EQUAL "7")
if (CPACK_GENERATOR MATCHES "DEB")
message("-- Warning: CPack 3.7 bug:")
message(" CPack version 3.7 may put md5sums files in the wrong directory.")
message(" https://cmake.org/pipermail/cmake/2017-March/065110.html")
message(" This may cause lintian to generate warnings.")
message(" The .deb file is actually okay so this bug can be ignored.")
message(" Or: use a different version of CMake/CPack.")
endif (CPACK_GENERATOR MATCHES "DEB")
endif (CMAKE_MINOR_VERSION EQUAL "7")
endif (CMAKE_MAJOR_VERSION EQUAL "3")

project(ocelotgui)

# Find MYSQL include.
Expand Down Expand Up @@ -297,7 +310,7 @@ endif (CPACK_GENERATOR MATCHES "RPM")
if (CPACK_GENERATOR MATCHES "DEB")
#lintian complains changelog-file-missing-in-native-package, this fixes it,
#but lintian will still complain new-package-should-close-itp-bug
#which we cannot fix until version >= 1.0.4 and someone posts an ITP bug
#which we cannot fix until version >= 1.0.5 and someone posts an ITP bug
execute_process(COMMAND cp changelog changelog.bak)
execute_process(COMMAND gzip -9 -f -n changelog)
execute_process(COMMAND mv changelog.bak changelog)
Expand All @@ -324,21 +337,21 @@ if (CPACK_GENERATOR MATCHES "RPM")
install(FILES ocelotgui.1 DESTINATION ${CMAKE_INSTALL_MANDIR}/man1)
endif (CPACK_GENERATOR MATCHES "RPM")

# version = 1.0.4
# version = 1.0.5
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "GUI client for MySQL or MariaDB")
set(CPACK_PACKAGE_VENDOR "Ocelot Computer Services Inc.")
set(CPACK_PACKAGE_CONTACT "Peter Gulutzan")
set(CPACK_PACKAGE_VERSION_MAJOR "1")
set(CPACK_PACKAGE_VERSION_MINOR "0")
set(CPACK_PACKAGE_VERSION_PATCH "4")
set(CPACK_PACKAGE_VERSION_PATCH "5")
# Todo: set(CPACK_PACKAGE_DESCRIPTION_FILE first-lines-of-README)
# CPACK_PACKAGE_INSTALL_DIRECTORY = default
set(CPACK_PACKAGE_ICON ocelotgui_logo.png)
# CPACK_PROJECT_CONFIG_FILE = nonexistent

# I assume nobody wants package names like ocelotgui-1.0.4-Linux.deb
# I assume nobody wants package names like ocelotgui-1.0.5-Linux.deb
# but that's what I get if CMAKE_SYSTEM_NAME = "Linux".
# I'd prefer ocelotgui-1.0.4-1_amd64.deb or ocelotgui-1.0.4.x86_64.rpm
# I'd prefer ocelotgui-1.0.5-1_amd64.deb or ocelotgui-1.0.5.x86_64.rpm
# If it's neither "DEB" nor "RPM", CPACK_PACKAGE_FILE_NAME = default.
set(FILENAME_PLATFORM_FOR_DEB "Linux")
set(FILENAME_PLATFORM_FOR_RPM "Linux")
Expand Down Expand Up @@ -378,7 +391,7 @@ if (CPACK_GENERATOR MATCHES "DEB")
# CPACK_RESOURCE_FILE_WELCOME = nonexistent
# CPACK_GENERATOR = we expect it to be specified if cpack will be used.
# CPACK_DEBIAN_PACKAGE_NAME = default = CPACK_PACKAGE_NAME = project name
# CPACK_DEBIAN_PACKAGE_VERSION = default = CPACK_PACKAGE_VERSION = 1.0.4
# CPACK_DEBIAN_PACKAGE_VERSION = default = CPACK_PACKAGE_VERSION = 1.0.5
# CPACK_DEBIAN_PACKAGE_DEPENDS = todo?
set(CPACK_DEBIAN_PACKAGE_MAINTAINER "Peter Gulutzan <pgulutzan@ocelot.ca>")
set(CPACK_DEBIAN_PACKAGE_DESCRIPTION "Ocelot GUI (ocelotgui), a database client, allows users to connect to
Expand All @@ -399,7 +412,7 @@ if (CPACK_GENERATOR MATCHES "RPM")
# Todo: For other than Mageia prefer CPACK_RPM_PACKAGE_GROUP "Applications/Databases"
#CPACK_RPM_PACKAGE_SUMMARY = default = CPACK_PACKAGE_DESCRIPTION_SUMMARY
set(CPACK_RPM_PACKAGE_NAME "ocelotgui")
#CPACK_RPM_PACKAGE_VERSION = DEFAULT = CPACK_PACKAGE_VERSION = 1.0.4
#CPACK_RPM_PACKAGE_VERSION = DEFAULT = CPACK_PACKAGE_VERSION = 1.0.5
set(CPACK_RPM_PACKAGE_RELEASE ${FILENAME_RELEASE})
set(CPACK_RPM_PACKAGE_LICENSE GPLv2)
set(CPACK_RPM_PACKAGE_GROUP "Databases")
Expand Down
56 changes: 28 additions & 28 deletions README.htm
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@

Ocelot ocelotgui

<P>Version 1.0.4</P>
<P>Version 1.0.5</P>

<P>The Ocelot GUI (ocelotgui), a database client, allows users to connect to
a MySQL or MariaDB DBMS server, enter SQL statements, and receive results.
Some of its features are: syntax highlighting, user-settable colors
and fonts for each part of the screen, result-set displays
with multi-line rows and resizable columns, and a debugger.</P>

<P>Copyright (c) 2014-2016, Ocelot Computer Services Inc.
<P>Copyright (c) 2014-2017, Ocelot Computer Services Inc.
All rights reserved.</P>

<P>For the GPL license terms see <A href="https://github.com/ocelot-inc/ocelotgui/blob/master/LICENSE.GPL">https://github.com/ocelot-inc/ocelotgui/blob/master/LICENSE.GPL</A>.</P>
Expand Down Expand Up @@ -104,26 +104,26 @@ <H3 id="getting-the-ocelotgui-executable-package">Getting the ocelotgui executab
cut and paste the corresponding pair of instructions onto your computer and
you can be up and running in about 15 seconds.<BR><BR>
For 32-bit, Debian-like, Qt4<PRE>
wget https://github.com/ocelot-inc/ocelotgui/releases/download/1.0.4/ocelotgui_1.0.4qt4-1_i386.deb
sudo dpkg -i ocelotgui_1.0.4qt4-1_i386.deb</PRE>
wget https://github.com/ocelot-inc/ocelotgui/releases/download/1.0.5/ocelotgui_1.0.5qt4-1_i386.deb
sudo dpkg -i ocelotgui_1.0.5qt4-1_i386.deb</PRE>
For 32-bit, Debian-like, Qt5<PRE>
wget https://github.com/ocelot-inc/ocelotgui/releases/download/1.0.4/ocelotgui_1.0.4-1_i386.deb
sudo dpkg -i ocelotgui_1.0.4-1_i386.deb</PRE>
wget https://github.com/ocelot-inc/ocelotgui/releases/download/1.0.5/ocelotgui_1.0.5-1_i386.deb
sudo dpkg -i ocelotgui_1.0.5-1_i386.deb</PRE>
For 64-bit, Debian-like, Qt4<PRE>
wget https://github.com/ocelot-inc/ocelotgui/releases/download/1.0.4/ocelotgui_1.0.4qt4-1_amd64.deb
sudo dpkg -i ocelotgui_1.0.4qt4-1_amd64.deb</PRE>
wget https://github.com/ocelot-inc/ocelotgui/releases/download/1.0.5/ocelotgui_1.0.5qt4-1_amd64.deb
sudo dpkg -i ocelotgui_1.0.5qt4-1_amd64.deb</PRE>
For 64-bit, Debian-like, Qt5<PRE>
wget https://github.com/ocelot-inc/ocelotgui/releases/download/1.0.4/ocelotgui_1.0.4-1_amd64.deb
sudo dpkg -i ocelotgui_1.0.4-1_amd64.deb</PRE>
wget https://github.com/ocelot-inc/ocelotgui/releases/download/1.0.5/ocelotgui_1.0.5-1_amd64.deb
sudo dpkg -i ocelotgui_1.0.5-1_amd64.deb</PRE>
For 64-bit, RPM-like, Qt4<PRE>
wget https://github.com/ocelot-inc/ocelotgui/releases/download/1.0.4/ocelotgui-1.0.4qt4-1.x86_64.rpm
sudo rpm -i ocelotgui-1.0.4qt4-1.x86_64.rpm</PRE>
wget https://github.com/ocelot-inc/ocelotgui/releases/download/1.0.5/ocelotgui-1.0.5qt4-1.x86_64.rpm
sudo rpm -i ocelotgui-1.0.5qt4-1.x86_64.rpm</PRE>
For 64-bit, RPM-like, Qt5<PRE>
wget https://github.com/ocelot-inc/ocelotgui/releases/download/1.0.4/ocelotgui-1.0.4-1.x86_64.rpm
sudo rpm -i ocelotgui-1.0.4-1.x86_64.rpm</PRE>
wget https://github.com/ocelot-inc/ocelotgui/releases/download/1.0.5/ocelotgui-1.0.5-1.x86_64.rpm
sudo rpm -i ocelotgui-1.0.5-1.x86_64.rpm</PRE>
For 32-bit, RPM-like, Qt4<PRE>
wget https://github.com/ocelot-inc/ocelotgui/releases/download/1.0.4/ocelotgui-1.0.4qt4-1.i686.rpm
sudo rpm -i ocelotgui-1.0.4qt4-1.i686.rpm</PRE>
wget https://github.com/ocelot-inc/ocelotgui/releases/download/1.0.5/ocelotgui-1.0.5qt4-1.i686.rpm
sudo rpm -i ocelotgui-1.0.5qt4-1.i686.rpm</PRE>
</P>

<H3 id="getting-and-using-the-ocelotgui-source">Getting and using the ocelotgui source</H3><HR>
Expand Down Expand Up @@ -151,14 +151,14 @@ <H3 id="getting-and-using-the-ocelotgui-source">Getting and using the ocelotgui
Although the release does not have the "latest" source which is
in ocelot-inc/ocelotgui, it usually is more stable.
A release file is highlighted in green
by github and is named ocelotgui-[version].tar.gz. Thus release 1.0.4 is at
https://github.com/ocelot-inc/ocelotgui/releases/download/1.0.4/ocelotgui-1.0.4.tar.gz.
by github and is named ocelotgui-[version].tar.gz. Thus release 1.0.5 is at
https://github.com/ocelot-inc/ocelotgui/releases/download/1.0.5/ocelotgui-1.0.5.tar.gz.
Typically, to get it, one would cd to a download directory, then
<PRE>
wget https://github.com/ocelot-inc/ocelotgui/releases/download/1.0.4/ocelotgui-1.0.4.tar.gz
wget https://github.com/ocelot-inc/ocelotgui/releases/download/1.0.5/ocelotgui-1.0.5.tar.gz
</PRE>
or use a browser to go to <A HREF="https://github.com/ocelot-inc/ocelotgui/releases">https://github.com/ocelot-inc/ocelotgui/releases</A>
and click ocelotgui-1.0.4.tar.gz.</P>
and click ocelotgui-1.0.5.tar.gz.</P>

<P>A tip for SUSE 42.1: do the following install instructions in advance.
If the packages already exist, then there will be harmless error messages.<BR>
Expand All @@ -173,7 +173,7 @@ <H3 id="getting-and-using-the-ocelotgui-source">Getting and using the ocelotgui
sudo apt-get install qt5-default qtbase5-dev qt5-qmake qtbase5-dev-tools</PRE></P>

<P>Unpack all the source files by saying:<PRE>
tar -zxvf ocelotgui-1.0.4.tar.gz
tar -zxvf ocelotgui-1.0.5.tar.gz
cd ocelotgui</PRE>
At this point it is a good idea to examine the file CMakeLists.txt.
This file has comments about options which are available to
Expand All @@ -198,14 +198,14 @@ <H3 id="getting-and-using-the-ocelotgui-source">Getting and using the ocelotgui
cmake . -DCPACK_GENERATOR="DEB"
make
cpack
sudo dpkg -i ocelotgui_1.0.4-1_i386.deb
#or sudo dpkg -i ocelotgui_1.0.4-1_amd64.deb</PRE>
sudo dpkg -i ocelotgui_1.0.5-1_i386.deb
#or sudo dpkg -i ocelotgui_1.0.5-1_amd64.deb</PRE>
For RPM-like platforms say:<PRE>
cmake . -DCPACK_GENERATOR="RPM"
make
cpack
sudo rpm -i ocelotgui-1.0.4-1.x86_64.rpm
#or sudo rpm -i ocelotgui-1.0.4-1.i686.rpm</PRE>
sudo rpm -i ocelotgui-1.0.5-1.x86_64.rpm
#or sudo rpm -i ocelotgui-1.0.5-1.i686.rpm</PRE>
Usually the result will go to subdirectories of /usr, in which case,
if /usr/bin is on your PATH, then saying ocelotgui will start the program.
For additional cmake options see the comments in CMakeLists.txt.
Expand Down Expand Up @@ -269,9 +269,9 @@ <H2 ID="some-screenshots">Some screenshots</H2><HR>

<H2 ID="user-manual">User Manual</H2><HR><HR>

<P>Version 1.0.4, December 15 2016</P>
<P>Version 1.0.5, July 2 2017</P>

<P>Copyright (c) 2014-2016 by Ocelot Computer Services Inc. All rights reserved.</P>
<P>Copyright (c) 2014-2017 by Ocelot Computer Services Inc. All rights reserved.</P>

<P>This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -689,7 +689,7 @@ <H3 id="special-effects">Special Effects</H3><HR>
incompatible behavior change in version 5.7, which affects the
debugger. The originally recommended workaround was to say
"set global show_compatibility_56=on;". We believe we have made a
more permanent fix for this problem in ocelotgui version 1.0.4.</P>
more permanent fix for this problem in ocelotgui version 1.0.5.</P>

<P>RE: CONNECTION DIALOG. As stated earlier, if a password is necessary
to connect, it is sufficient to start ocelotgui with "--password=<i>password</i>"
Expand Down
56 changes: 28 additions & 28 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@

Ocelot ocelotgui

<P>Version 1.0.4</P>
<P>Version 1.0.5</P>

<P>The Ocelot GUI (ocelotgui), a database client, allows users to connect to
a MySQL or MariaDB DBMS server, enter SQL statements, and receive results.
Some of its features are: syntax highlighting, user-settable colors
and fonts for each part of the screen, result-set displays
with multi-line rows and resizable columns, and a debugger.</P>

<P>Copyright (c) 2014-2016, Ocelot Computer Services Inc.
<P>Copyright (c) 2014-2017, Ocelot Computer Services Inc.
All rights reserved.</P>

<P>For the GPL license terms see <A href="https://github.com/ocelot-inc/ocelotgui/blob/master/LICENSE.GPL">https://github.com/ocelot-inc/ocelotgui/blob/master/LICENSE.GPL</A>.</P>
Expand Down Expand Up @@ -104,26 +104,26 @@ If one of the following ocelotgui binary packages is compatible with your platfo
cut and paste the corresponding pair of instructions onto your computer and
you can be up and running in about 15 seconds.<BR><BR>
For 32-bit, Debian-like, Qt4<PRE>
wget https://github.com/ocelot-inc/ocelotgui/releases/download/1.0.4/ocelotgui_1.0.4qt4-1_i386.deb
sudo dpkg -i ocelotgui_1.0.4qt4-1_i386.deb</PRE>
wget https://github.com/ocelot-inc/ocelotgui/releases/download/1.0.5/ocelotgui_1.0.5qt4-1_i386.deb
sudo dpkg -i ocelotgui_1.0.5qt4-1_i386.deb</PRE>
For 32-bit, Debian-like, Qt5<PRE>
wget https://github.com/ocelot-inc/ocelotgui/releases/download/1.0.4/ocelotgui_1.0.4-1_i386.deb
sudo dpkg -i ocelotgui_1.0.4-1_i386.deb</PRE>
wget https://github.com/ocelot-inc/ocelotgui/releases/download/1.0.5/ocelotgui_1.0.5-1_i386.deb
sudo dpkg -i ocelotgui_1.0.5-1_i386.deb</PRE>
For 64-bit, Debian-like, Qt4<PRE>
wget https://github.com/ocelot-inc/ocelotgui/releases/download/1.0.4/ocelotgui_1.0.4qt4-1_amd64.deb
sudo dpkg -i ocelotgui_1.0.4qt4-1_amd64.deb</PRE>
wget https://github.com/ocelot-inc/ocelotgui/releases/download/1.0.5/ocelotgui_1.0.5qt4-1_amd64.deb
sudo dpkg -i ocelotgui_1.0.5qt4-1_amd64.deb</PRE>
For 64-bit, Debian-like, Qt5<PRE>
wget https://github.com/ocelot-inc/ocelotgui/releases/download/1.0.4/ocelotgui_1.0.4-1_amd64.deb
sudo dpkg -i ocelotgui_1.0.4-1_amd64.deb</PRE>
wget https://github.com/ocelot-inc/ocelotgui/releases/download/1.0.5/ocelotgui_1.0.5-1_amd64.deb
sudo dpkg -i ocelotgui_1.0.5-1_amd64.deb</PRE>
For 64-bit, RPM-like, Qt4<PRE>
wget https://github.com/ocelot-inc/ocelotgui/releases/download/1.0.4/ocelotgui-1.0.4qt4-1.x86_64.rpm
sudo rpm -i ocelotgui-1.0.4qt4-1.x86_64.rpm</PRE>
wget https://github.com/ocelot-inc/ocelotgui/releases/download/1.0.5/ocelotgui-1.0.5qt4-1.x86_64.rpm
sudo rpm -i ocelotgui-1.0.5qt4-1.x86_64.rpm</PRE>
For 64-bit, RPM-like, Qt5<PRE>
wget https://github.com/ocelot-inc/ocelotgui/releases/download/1.0.4/ocelotgui-1.0.4-1.x86_64.rpm
sudo rpm -i ocelotgui-1.0.4-1.x86_64.rpm</PRE>
wget https://github.com/ocelot-inc/ocelotgui/releases/download/1.0.5/ocelotgui-1.0.5-1.x86_64.rpm
sudo rpm -i ocelotgui-1.0.5-1.x86_64.rpm</PRE>
For 32-bit, RPM-like, Qt4<PRE>
wget https://github.com/ocelot-inc/ocelotgui/releases/download/1.0.4/ocelotgui-1.0.4qt4-1.i686.rpm
sudo rpm -i ocelotgui-1.0.4qt4-1.i686.rpm</PRE>
wget https://github.com/ocelot-inc/ocelotgui/releases/download/1.0.5/ocelotgui-1.0.5qt4-1.i686.rpm
sudo rpm -i ocelotgui-1.0.5qt4-1.i686.rpm</PRE>
</P>

<H3 id="getting-and-using-the-ocelotgui-source">Getting and using the ocelotgui source</H3><HR>
Expand Down Expand Up @@ -151,14 +151,14 @@ A release includes the source files as of the release time.
Although the release does not have the "latest" source which is
in ocelot-inc/ocelotgui, it usually is more stable.
A release file is highlighted in green
by github and is named ocelotgui-[version].tar.gz. Thus release 1.0.4 is at
https://github.com/ocelot-inc/ocelotgui/releases/download/1.0.4/ocelotgui-1.0.4.tar.gz.
by github and is named ocelotgui-[version].tar.gz. Thus release 1.0.5 is at
https://github.com/ocelot-inc/ocelotgui/releases/download/1.0.5/ocelotgui-1.0.5.tar.gz.
Typically, to get it, one would cd to a download directory, then
<PRE>
wget https://github.com/ocelot-inc/ocelotgui/releases/download/1.0.4/ocelotgui-1.0.4.tar.gz
wget https://github.com/ocelot-inc/ocelotgui/releases/download/1.0.5/ocelotgui-1.0.5.tar.gz
</PRE>
or use a browser to go to <A HREF="https://github.com/ocelot-inc/ocelotgui/releases">https://github.com/ocelot-inc/ocelotgui/releases</A>
and click ocelotgui-1.0.4.tar.gz.</P>
and click ocelotgui-1.0.5.tar.gz.</P>

<P>A tip for SUSE 42.1: do the following install instructions in advance.
If the packages already exist, then there will be harmless error messages.<BR>
Expand All @@ -173,7 +173,7 @@ If the packages already exist, then there will be harmless error messages.<BR>
sudo apt-get install qt5-default qtbase5-dev qt5-qmake qtbase5-dev-tools</PRE></P>

<P>Unpack all the source files by saying:<PRE>
tar -zxvf ocelotgui-1.0.4.tar.gz
tar -zxvf ocelotgui-1.0.5.tar.gz
cd ocelotgui</PRE>
At this point it is a good idea to examine the file CMakeLists.txt.
This file has comments about options which are available to
Expand All @@ -198,14 +198,14 @@ For Debian-like platforms say:<PRE>
cmake . -DCPACK_GENERATOR="DEB"
make
cpack
sudo dpkg -i ocelotgui_1.0.4-1_i386.deb
#or sudo dpkg -i ocelotgui_1.0.4-1_amd64.deb</PRE>
sudo dpkg -i ocelotgui_1.0.5-1_i386.deb
#or sudo dpkg -i ocelotgui_1.0.5-1_amd64.deb</PRE>
For RPM-like platforms say:<PRE>
cmake . -DCPACK_GENERATOR="RPM"
make
cpack
sudo rpm -i ocelotgui-1.0.4-1.x86_64.rpm
#or sudo rpm -i ocelotgui-1.0.4-1.i686.rpm</PRE>
sudo rpm -i ocelotgui-1.0.5-1.x86_64.rpm
#or sudo rpm -i ocelotgui-1.0.5-1.i686.rpm</PRE>
Usually the result will go to subdirectories of /usr, in which case,
if /usr/bin is on your PATH, then saying ocelotgui will start the program.
For additional cmake options see the comments in CMakeLists.txt.
Expand Down Expand Up @@ -269,9 +269,9 @@ Stop again with File|Exit or control-Q.

<H2 ID="user-manual">User Manual</H2><HR><HR>

<P>Version 1.0.4, December 15 2016</P>
<P>Version 1.0.5, July 2 2017</P>

<P>Copyright (c) 2014-2016 by Ocelot Computer Services Inc. All rights reserved.</P>
<P>Copyright (c) 2014-2017 by Ocelot Computer Services Inc. All rights reserved.</P>

<P>This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -689,7 +689,7 @@ an options file such as my.cnf.</P>
incompatible behavior change in version 5.7, which affects the
debugger. The originally recommended workaround was to say
"set global show_compatibility_56=on;". We believe we have made a
more permanent fix for this problem in ocelotgui version 1.0.4.</P>
more permanent fix for this problem in ocelotgui version 1.0.5.</P>

<P>RE: CONNECTION DIALOG. As stated earlier, if a password is necessary
to connect, it is sufficient to start ocelotgui with "--password=<i>password</i>"
Expand Down
Loading

0 comments on commit b4574cd

Please sign in to comment.