Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

set download links to point always towards the latest release #15

Merged
merged 3 commits into from
Apr 2, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1"><title>Mark Text</title><link rel="shortcut icon" href=https://marktext.app/favicon.png><link href=https://marktext.app/renderer.2ccffc4a2dd2fdb1df64.css rel=stylesheet></head><body><noscript><strong>We're sorry but marktext doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id=app></div><script type=text/javascript src=https://marktext.app/renderer.js></script></body></html>
<!DOCTYPE html><html lang=en><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1"><title>Mark Text</title><link rel="shortcut icon" href=https://marktext.app/favicon.png><link href=https://marktext.app/renderer.b932a087a0f8f9f75937.css rel=stylesheet></head><body><noscript><strong>We're sorry but marktext doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id=app></div><script type=text/javascript src=https://marktext.app/renderer.js></script></body></html>

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions docs/renderer.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/renderer.js.map

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions src/components/titleBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,27 +24,27 @@
<div class="download-group">
<div class="download-info">Available for macOS, Windows and Linux.</div>
<div class="button-group">
<a class="button" href="https://github.com/marktext/marktext/releases/download/v0.15.1/marktext-0.15.1.dmg" target="_blank">
<a class="button" href="https://github.com/marktext/marktext/releases/latest/download/marktext.dmg" target="_blank">
<svg :viewBox="MacIcon.viewBox" aria-hidden="true" class="icon">
<use :xlink:href="MacIcon.url" />
</svg>
<span>macOS</span>
</a>
<a class="button" href="https://github.com/marktext/marktext/releases/download/v0.15.1/marktext-setup-0.15.1.exe" target="_blank">
<a class="button" href="https://github.com/marktext/marktext/releases/latest/download/marktext-setup.exe" target="_blank">
<svg :viewBox="WindowsIcon.viewBox" aria-hidden="true" class="icon">
<use :xlink:href="WindowsIcon.url" />
</svg>
<span>Windows</span>
</a>
<a class="button" href="https://github.com/marktext/marktext/releases/download/v0.15.1/marktext-0.15.1-x86_64.AppImage" target="_blank">
<a class="button" href="https://github.com/marktext/marktext/releases/latest/download/marktext-x86_64.AppImage" target="_blank">
<svg :viewBox="LinuxIcon.viewBox" aria-hidden="true" class="icon">
<use :xlink:href="LinuxIcon.url" />
</svg>
<span>Linux</span>
</a>
</div>
<div class="releases">
or see <a href="https://github.com/marktext/marktext/releases/latest">all releases</a>
or see <a href="https://github.com/marktext/marktext/releases">all releases</a>
</div>
</div>
</div>
Expand Down