18 lines
717 B
Go
18 lines
717 B
Go
|
package main
|
||
|
|
||
|
const (
|
||
|
appName = "annie-mingui"
|
||
|
appAuthor = "Zhiming Wang"
|
||
|
appAuthorDomain = "zhimingwang.org"
|
||
|
about = `<p><strong>annie-mingui</strong> v2020.02.09</p>
|
||
|
<p>Copyright (c) 2020 Zhiming Wang</p>
|
||
|
<p>annie-mingui is a Qt wrapper for <a href="https://github.com/iawia002/annie">iawia002/annie</a> the video downloader. Credits:</p>
|
||
|
<ul>
|
||
|
<li>iawia002/annie, MIT license;</li>
|
||
|
<li><a href="https://qt.io">Qt</a>, LGPLv3 license;</li>
|
||
|
<li><a href="https://github.com/therecipe/qt">therecipe/qt</a>, Qt bindings for golang, LGPLv3 license.</li>
|
||
|
</ul>
|
||
|
<p>Project URL: <a href="https://github.com/fanaticscripter/annie-mingui">github.com/fanaticscripter/annie-mingui</a>.</p>
|
||
|
`
|
||
|
)
|