Skip to content

Commit

Permalink
Update links & copyright, remove email, bump to v0.68
Browse files Browse the repository at this point in the history
  • Loading branch information
timabell committed Jan 18, 2024
1 parent 9d76842 commit 25f9852
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 15 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SQL Schema Explorer

Copyright 2015-20 Tim Abell
Copyright 2015-2024 Tim Abell

<https://timabell.github.io/schema-explorer/>

Expand Down
7 changes: 3 additions & 4 deletions about/about.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,15 @@ package about
import "fmt"

type AboutType struct {
Version, Email, ProductName, Website string
Version, ProductName, Website string
}

var gitVersion = "local-dev-build"

var About = AboutType{
ProductName: "Sql Schema Explorer",
Version: "0.67-" + gitVersion,
Website: "http://schemaexplorer.io/",
Email: "[email protected]",
Version: "0.68-" + gitVersion,
Website: "https://github.com/timabell/schema-explorer",
}

func (about AboutType) Summary() string {
Expand Down
2 changes: 1 addition & 1 deletion config/peek-config.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# http://schemaexplorer.io/
# https://github.com/timabell/schema-explorer
# This file configures which columns will be loaded from the other side of a foreign key.
# Place this file next the schema explorer executable and name it peek-config.txt

Expand Down
2 changes: 1 addition & 1 deletion licensing/licensing.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
)

var copyrightYear = 2019
var copyrightYear = 2024

func LicenseText() string {
return fmt.Sprintf("Licensed under A-GPLv3")
Expand Down
7 changes: 3 additions & 4 deletions sse.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
Sql Data Viewer, Copyright Tim Abell 2015-19
Sql Data Viewer, Copyright Tim Abell 2015-2024
All rights reserved.
A tool for browsing the data in any rdbms databse
Expand Down Expand Up @@ -27,11 +27,10 @@ func main() {
options.SetupArgs()
options.ReadArgsAndEnv()

log.Printf("%s\n %s\n %s\n Feeback/support/contact: <%s>",
log.Printf("%s\n %s\n %s",
about.About.Summary(),
licensing.CopyrightText(),
licensing.LicenseText(),
about.About.Email)
licensing.LicenseText())

// only spit out connection info if configured
if options.Options.Driver != "" {
Expand Down
2 changes: 1 addition & 1 deletion static/license.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<h1>Licenses</h1>

<h2>Sql Schema Explorer</h2>
<p>Schema Explorer is Copyright Tim Abell 2015-2019 and must
<p>Schema Explorer is Copyright Tim Abell 2015-2024 and must
be redistributed and used in accordances with the applicable licenses.</p>

<p>
Expand Down
5 changes: 2 additions & 3 deletions templates/layout.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,9 @@
<a href="/static/license.html">Terms of use</a>
</p>
<p>
Feedback / support / contact: <a href="mailto:{{.LayoutData.About.Email}}">{{.LayoutData.About.Email}}</a>
- please help improve Sql Schema Explorer
Please help improve Sql Schema Explorer
<br/>
Like it? Share the love with a <a href="https://twitter.com/intent/tweet?text=I%20loved%20using%20Sql%20Schema%20Explorer%20today%21%20You%20should%20try%20it%20too%20%3A-%29%20Check%20it%20out%20at%3A%20http%3A//schemaexplorer.io/%20-%20made%20with%20love%20by%20@tim_abell" target="_blank">tweet</a>!</p>
Like it? Share the love with a <a href="https://twitter.com/intent/tweet?text=I%20loved%20using%20Sql%20Schema%20Explorer%20today%21%20You%20should%20try%20it%20too%20%3A-%29%20Check%20it%20out%20at%3A%20http%3A//timabell.github.io/schema-explorer/%20-%20made%20with%20love%20by%20@tim_abell" target="_blank">tweet</a>!</p>
</footer>
<script>
$(document).ready(function() {
Expand Down

0 comments on commit 25f9852

Please sign in to comment.