Compare commits
No commits in common. "b8338be28322d9ff5e555c71524dff3c4a1d487e" and "9e0005f077a5cfa2f51266928f3c41da21a93f59" have entirely different histories.
b8338be283
...
9e0005f077
@ -43,21 +43,9 @@
|
|||||||
<image>https://git.bugsy.cz/beval/roster/raw/branch/master/screenshots/history.png</image>
|
<image>https://git.bugsy.cz/beval/roster/raw/branch/master/screenshots/history.png</image>
|
||||||
<caption>Request history panel</caption>
|
<caption>Request history panel</caption>
|
||||||
</screenshot>
|
</screenshot>
|
||||||
<screenshot>
|
|
||||||
<image>https://git.bugsy.cz/beval/roster/raw/branch/master/screenshots/load_openapi.png</image>
|
|
||||||
<caption>OpenAPI/Swagger import dialog with loaded operations</caption>
|
|
||||||
</screenshot>
|
|
||||||
</screenshots>
|
</screenshots>
|
||||||
|
|
||||||
<releases>
|
<releases>
|
||||||
<release version="0.9.2" date="2026-05-13">
|
|
||||||
<description translate="no">
|
|
||||||
<p>Version 0.9.2 release</p>
|
|
||||||
<ul>
|
|
||||||
<li>Fix console.error() not available in scripts</li>
|
|
||||||
</ul>
|
|
||||||
</description>
|
|
||||||
</release>
|
|
||||||
<release version="0.9.1" date="2026-05-12">
|
<release version="0.9.1" date="2026-05-12">
|
||||||
<description translate="no">
|
<description translate="no">
|
||||||
<p>Version 0.9.1 release</p>
|
<p>Version 0.9.1 release</p>
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
project('roster',
|
project('roster',
|
||||||
version: '0.9.2',
|
version: '0.9.1',
|
||||||
meson_version: '>= 1.0.0',
|
meson_version: '>= 1.0.0',
|
||||||
default_options: [ 'warning_level=2', 'werror=false', ],
|
default_options: [ 'warning_level=2', 'werror=false', ],
|
||||||
)
|
)
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 83 KiB After Width: | Height: | Size: 121 KiB |
|
Before Width: | Height: | Size: 86 KiB |
|
Before Width: | Height: | Size: 82 KiB After Width: | Height: | Size: 126 KiB |
|
Before Width: | Height: | Size: 71 KiB After Width: | Height: | Size: 136 KiB |
@ -102,9 +102,6 @@ let consoleOutput = [];
|
|||||||
const console = {{
|
const console = {{
|
||||||
log: function(...args) {{
|
log: function(...args) {{
|
||||||
consoleOutput.push(args.map(arg => String(arg)).join(' '));
|
consoleOutput.push(args.map(arg => String(arg)).join(' '));
|
||||||
}},
|
|
||||||
error: function(...args) {{
|
|
||||||
consoleOutput.push(args.map(arg => String(arg)).join(' '));
|
|
||||||
}}
|
}}
|
||||||
}};
|
}};
|
||||||
|
|
||||||
@ -228,9 +225,6 @@ let consoleOutput = [];
|
|||||||
const console = {{
|
const console = {{
|
||||||
log: function(...args) {{
|
log: function(...args) {{
|
||||||
consoleOutput.push(args.map(arg => String(arg)).join(' '));
|
consoleOutput.push(args.map(arg => String(arg)).join(' '));
|
||||||
}},
|
|
||||||
error: function(...args) {{
|
|
||||||
consoleOutput.push(args.map(arg => String(arg)).join(' '));
|
|
||||||
}}
|
}}
|
||||||
}};
|
}};
|
||||||
|
|
||||||
|
|||||||