contentdb/app/templates/packages/release_new.html

95 lines
3.1 KiB
HTML
Raw Normal View History

2018-03-20 19:40:19 +01:00
{% extends "base.html" %}
{% block title %}
Create a release | {{ package.title }}
{% endblock %}
{% block content %}
<p class="alert alert-info mb-4">
<a class="float-right btn btn-sm btn-info" href="{{ url_for('flatpage', path='help/release_webhooks') }}">{{ _("Learn more") }}</a>
{% if package.author == current_user and package.checkPerm(current_user, "APPROVE_RELEASE") and package.getIsOnGitHub() %}
<a class="float-right btn btn-sm btn-info mr-2" href="{{ url_for('github.setup_webhook', pid=package.id) }}">{{ _("Setup webhook") }}</a>
<i class="fas fa-info mr-2"></i>
{{ _("Create releases automatically when you push commits or tags to GitHub, using a webhook or the API.") }}
{% elif package.repo %}
<i class="fas fa-info mr-2"></i>
{{ _("You can create releases automatically when you push commits or tags to your repository, using a webhook or the API.") }}
{% else %}
<i class="fas fa-info mr-2"></i>
{{ _("Using git will allow you to create releases automatically when you push code or tags.") }}
{% endif %}
</p>
2018-12-22 23:29:30 +01:00
{% from "macros/forms.html" import render_field, render_submit_field, render_radio_field %}
2018-03-23 18:05:07 +01:00
<form method="POST" action="" enctype="multipart/form-data">
2018-03-20 19:40:19 +01:00
{{ form.hidden_tag() }}
<h3>1. Name release</h3>
2018-05-29 23:43:42 +02:00
{{ render_field(form.title, placeholder="Human readable. Eg: 1.0.0 or 2018-05-28") }}
<h3 class="mt-5">2. Set the content</h3>
2018-12-22 23:29:30 +01:00
<p class="mb-0">Method</p>
{{ render_radio_field(form.uploadOpt) }}
{% if package.repo %}
{{ render_field(form.vcsLabel, placeholder="Leave blank to use default branch", class_="mt-3") }}
{% endif %}
2018-12-22 23:29:30 +01:00
{{ render_field(form.fileUpload, fieldclass="form-control-file", class_="mt-3", accept=".zip") }}
<p>
Take a look at the <a href="/help/package_config/">Package Configuration and Releases Guide</a> for
tips on customising releases.
</p>
<h3 class="mt-5">3. Supported Minetest versions</h3>
<div class="row">
{{ render_field(form.min_rel, class_="col-sm-6") }}
{{ render_field(form.max_rel, class_="col-sm-6") }}
</div>
<p id="minmax_warning" style="color:#f00; display: none;">
Maximum must be greater than or equal to the minimum!
</p>
<p>
Set the minimum and maximum Minetest versions supported.
This release will be hidden to clients outside of that range.<br />
2019-01-29 01:18:49 +01:00
Leave both as None if in doubt.
You can <a href="/help/package_config/">set this automatically</a> in the .conf of your package.
</p>
<p>
You cannot select the oldest version for min or the newest version
for max as this does not make sense - you can't predict the future.
</p>
<p class="mt-5">
{{ render_submit_field(form.submit) }}
</p>
2018-03-20 19:40:19 +01:00
</form>
2018-03-20 19:40:19 +01:00
{% endblock %}
{% block scriptextra %}
<script src="/static/release_minmax.js?v=1"></script>
<script>
function check_opt() {
if ($("input[name=uploadOpt]:checked").val() == "vcs") {
$("#fileUpload").parent().hide();
$("#vcsLabel").parent().show();
} else {
$("#fileUpload").parent().show();
$("#vcsLabel").parent().hide();
}
}
$("input[name=uploadOpt]").change(check_opt);
check_opt();
</script>
{% endblock %}