-
Notifications
You must be signed in to change notification settings - Fork 1
/
beta.html
137 lines (134 loc) · 4.9 KB
/
beta.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
---
title: Cevelop Beta Plug-ins
layout: default
active: download
permalink: /beta/
---
<div class="jumbotron">
<div class="container">
<h1>Beta Plug-ins <small>– preview upcoming features</small></h1>
</div>
</div>
<div class="container beta-plugins">
<div class="row">
<div class="col-sm-12">
<h4>
Do you want to try our latest plug-ins and preview upcoming features in Cevelop?
</h4>
<p>
The Beta Plug-ins update site contains nightly builds of several of our plug-ins
and can be installed into Cevelop. Use the Update Site corresponding to your
Cevelop version to install the Cevelop Beta Plug-ins (already installed plug-ins
will simply be upgraded).
<br/><br/>
The following Beta Plug-ins are currently available:
<ul>
<li>
<b>Constificator</b> helps to write const-correct code. It finds places in your
source code where the const qualifier can be added and provides a refactoring to automatically
add it for you.
</li>
<li>
<b>GSLAtor</b> checks if your code conforms to the <a href="https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines" target="_blank">C++ Core Guidelines</a>. Often, it can
fix a violation of a guideline with a built-in refactoring.
</li>
<li>
<b>Intwidthfixator</b> replaces implementation-dependent integral types, e.g. int, with fixed-width types, e.g. int32_t, and vice-versa.
</li>
<li>
<b>Ctylechecker</b> performs a lightweight check of simple style mistakes.
</li>
<li>
<b>Codeanalysator</b> check if your code conforms to the MISRA, Autosar or C++ Core Guidelines.
</li>
</ul>
</p>
<h3>
Beta Plug-ins for Cevelop 1.12
</h3>
<p>
Use the following update site to install the Beta Plug-ins
</p>
<pre>https://s3.infs.ch/cevelop/update/1.12.0</pre>
<button class="btn btn-default btn-sm" data-clipboard-text="https://s3.infs.ch/cevelop/update/1.12.0">
<i class="fa fa-clipboard" aria-hidden="true"></i> Copy to Clipboard
</button>
<h3>
Beta Plug-ins for Cevelop 1.11
</h3>
<p>
Use the following update site to install the Beta Plug-ins
</p>
<pre>https://s3.infs.ch/cevelop/update/1.11.0</pre>
<button class="btn btn-default btn-sm" data-clipboard-text="https://s3.infs.ch/cevelop/update/1.11.0">
<i class="fa fa-clipboard" aria-hidden="true"></i> Copy to Clipboard
</button>
<h3>
Beta Plug-ins for Cevelop 1.10
</h3>
<p>
Use the following update site to install the Beta Plug-ins
</p>
<pre>https://s3.infs.ch/cevelop/update/1.10.0</pre>
<button class="btn btn-default btn-sm" data-clipboard-text="https://s3.infs.ch/cevelop/update/1.10.0">
<i class="fa fa-clipboard" aria-hidden="true"></i> Copy to Clipboard
</button>
<h3>
Beta Plug-ins for Cevelop 1.9
</h3>
<p>
Use the following update site to install the Beta Plug-ins
</p>
<pre>https://s3.infs.ch/cevelop/update/1.9.0</pre>
<button class="btn btn-default btn-sm" data-clipboard-text="https://s3.infs.ch/cevelop/update/1.9.0">
<i class="fa fa-clipboard" aria-hidden="true"></i> Copy to Clipboard
</button>
<h3>
Beta Plug-ins for Cevelop 1.8
</h3>
<p>
Use the following update site to install the Beta Plug-ins
</p>
<pre>https://s3.infs.ch/cevelop/update/1.8.0</pre>
<button class="btn btn-default btn-sm" data-clipboard-text="https://s3.infs.ch/cevelop/update/1.8.0">
<i class="fa fa-clipboard" aria-hidden="true"></i> Copy to Clipboard
</button>
<h3>
Beta Plug-ins for Cevelop 1.7
</h3>
<p>
Use the following update site to install the Beta Plug-ins
</p>
<pre>https://s3.infs.ch/cevelop/update/1.7.0</pre>
<button class="btn btn-default btn-sm" data-clipboard-text="https://s3.infs.ch/cevelop/update/1.7.0">
<i class="fa fa-clipboard" aria-hidden="true"></i> Copy to Clipboard
</button>
<p>
To install the plug-ins, follow our installation guide below.
Please use our <a href="https://github.com/Cevelop/Issues" target="_blank">GitHub Issue Tracker</a> to report bugs.
</p>
<h3>
Installation Instructions
</h3>
<p>
In Cevelop, open the Install New Software Dialog:
</p>
<p>
<img src="../img/help_install_new_software.png"/>
</p>
<p>
Paste the update site location that you copied and hit enter. After a few seconds,
the list of available plug-ins should appear:
</p>
<p>
<img src="../img/install_new_software.png"/>
</p>
<p>
Select the plug-ins to install or update and follow the wizard by clicking <em>Next</em>.
</p>
</div>
</div>
</div>
<script>
new Clipboard('.beta-plugins .btn');
</script>