-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use latest, update docs, remove setup file, change font
- Loading branch information
Dolev Farhi
committed
Sep 27, 2023
1 parent
939ff38
commit 65503b3
Showing
8 changed files
with
23 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,7 +53,9 @@ | |
|
||
# Welcome to OPA Alfred! The reasonably usable self-hosted alternative to OPA's Playground | ||
|
||
# Enter your policy below :-) | ||
# Found a bug? report at https://github.com/dolevf/Open-Policy-Agent-Alfred/issues | ||
|
||
# Enter your policy below | ||
|
||
package play | ||
|
||
|
@@ -127,7 +129,7 @@ | |
var editor = ace.edit("editor"); | ||
editor.session.setMode("ace/mode/golang"); | ||
editor.setShowPrintMargin(false); | ||
|
||
var editordata = ace.edit("editordata"); | ||
editordata.session.setMode("ace/mode/yaml"); | ||
|
||
|
@@ -140,23 +142,19 @@ | |
|
||
// Fonts | ||
editor.setOptions({ | ||
fontFamily: "Roboto Mono", | ||
fontSize: "10pt" | ||
}); | ||
|
||
editorinput.setOptions({ | ||
fontFamily: "Roboto Mono", | ||
fontSize: "10pt", | ||
wrap: false | ||
}); | ||
|
||
editordata.setOptions({ | ||
fontFamily: "Roboto Mono", | ||
fontSize: "10pt" | ||
}); | ||
|
||
editorresult.setOptions({ | ||
fontFamily: "Roboto Mono", | ||
fontSize: "10pt" | ||
}); | ||
|
||
|
@@ -252,7 +250,7 @@ | |
} | ||
</script> | ||
<footer class="page-footer font-small bg-dark"> | ||
<div class="footer-copyright text-center py-3" style="color: white;">♥ Built by <a href="mailto:[email protected]">Dolev Farhi</a></div> | ||
<div class="footer-copyright text-center py-3" style="color: white;">Built by <a href="mailto:[email protected]">Dolev Farhi</a></div> | ||
</footer> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
VERSION = '1.1.0' | ||
VERSION = '1.1.1' |