Skip to content

fix regression #63

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

Merged
merged 1 commit into from
Jan 23, 2025
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## CHANGELOG

### [25.3.1] - Jan 23, 2025
- Fixed a regression where `jinjafx_input` wasn't working due to Output name validation

### [25.3.0] - Jan 23, 2025
- Add directory structure to outputs in output pane if the output name contains `/`
- Add output name validation to sanitise output names if invalid values are provided
Expand Down Expand Up @@ -388,6 +391,7 @@
- Initial release


[25.3.1]: https://github.com/cmason3/jinjafx_server/compare/25.3.0...25.3.1
[25.3.0]: https://github.com/cmason3/jinjafx_server/compare/25.2.2...25.3.0
[25.2.2]: https://github.com/cmason3/jinjafx_server/compare/25.2.1...25.2.2
[25.2.1]: https://github.com/cmason3/jinjafx_server/compare/25.2.0...25.2.1
Expand Down
2 changes: 1 addition & 1 deletion jinjafx_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import re, argparse, hashlib, traceback, glob, hmac, uuid, struct, binascii, gzip, requests, ctypes, subprocess
import cmarkgfm, emoji

__version__ = '25.3.0'
__version__ = '25.3.1'

llock = threading.RLock()
rlock = threading.RLock()
Expand Down
2 changes: 1 addition & 1 deletion www/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<script src="https://cdnjs.cloudflare.com/ajax/libs/js-yaml/4.1.0/js-yaml.min.js" integrity="sha512-CSBhVREyzHAjAFfBlIBakjoRUKp5h7VSweP0InR/pAJyptH7peuhCsqAI/snV+TwZmXZqoUklpXp6R6wMnYf5Q==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/dayjs/1.11.13/dayjs.min.js" integrity="sha512-FwNWaxyfy2XlEINoSnZh1JQ5TRRtGow0D6XcmAWmYCRgvqOUTnzCxPc9uF35u5ZEpirk1uhlPVA19tflhvnW1g==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/dayjs/1.11.13/plugin/relativeTime.min.js" integrity="sha512-MVzDPmm7QZ8PhEiqJXKz/zw2HJuv61waxb8XXuZMMs9b+an3LoqOqhOEt5Nq3LY1e4Ipbbd/e+AWgERdHlVgaA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="/3bcdde1f/jinjafx_m.js"></script>
<script src="/d7ec0c8e/jinjafx_m.js"></script>
</head>
<body>
<div id="overlay"></div>
Expand Down
2 changes: 1 addition & 1 deletion www/jinjafx_m.js
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ function getStatusText(code) {
try {
obj = JSON.parse(xHR.responseText);
if (obj.status === "ok") {
r_input_form = d(obj.outputs['Output']);
r_input_form = d(obj.outputs['Output:text']);
document.getElementById('jinjafx_input_form').innerHTML = r_input_form;
input_form = vars['jinjafx_input']['body'];
jinput = new bootstrap.Modal(document.getElementById('jinjafx_input'), {
Expand Down
Loading