Skip to content

Commit

Permalink
package 31.10.22
Browse files Browse the repository at this point in the history
  • Loading branch information
anester-aws committed Oct 31, 2022
1 parent 5f60801 commit 7896f6f
Show file tree
Hide file tree
Showing 36 changed files with 245 additions and 19 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [1.12.4](https://github.com/ajaxorg/ace/compare/v1.12.3...v1.12.4) (2022-10-31)


### Bug Fixes

* Open valid url under cursor ([#4970](https://github.com/ajaxorg/ace/issues/4970)) ([bf2913a](https://github.com/ajaxorg/ace/commit/bf2913a71624e94d13727115b2aa0ef0c279c89f))
* Update for Csound 6.18.0 ([#4974](https://github.com/ajaxorg/ace/issues/4974)) ([6886b02](https://github.com/ajaxorg/ace/commit/6886b0233e9e1d8d6cce5d3ade7b27fe4527c940))
* update/add missing demo samples ([#4975](https://github.com/ajaxorg/ace/issues/4975)) ([2b8236e](https://github.com/ajaxorg/ace/commit/2b8236eaf1df10caa9ff45a06902df14947cd968))

### [1.12.3](https://github.com/ajaxorg/ace/compare/v1.12.2...v1.12.3) (2022-10-18)


Expand Down
4 changes: 3 additions & 1 deletion demo/kitchen-sink/demo.js
Original file line number Diff line number Diff line change
Expand Up @@ -1660,6 +1660,7 @@ var supportedModes = {
LiveScript: ["ls"],
Log: ["log"],
LogiQL: ["logic|lql"],
Logtalk: ["lgt"],
LSL: ["lsl"],
Lua: ["lua"],
LuaPage: ["lp"],
Expand Down Expand Up @@ -1723,6 +1724,7 @@ var supportedModes = {
snippets: ["snippets"],
Soy_Template: ["soy"],
Space: ["space"],
SPARQL: ["rq"],
SQL: ["sql"],
SQLServer: ["sqlserver"],
Stylus: ["styl|stylus"],
Expand All @@ -1735,6 +1737,7 @@ var supportedModes = {
Textile: ["textile"],
Toml: ["toml"],
TSX: ["tsx"],
Turtle: ["ttl"],
Twig: ["twig|swig"],
Typescript: ["ts|typescript|str"],
Vala: ["vala"],
Expand Down Expand Up @@ -2060,7 +2063,6 @@ var docs = {

"docs/c9search.c9search_results": "C9 Search Results",
"docs/mel.mel": "MEL",
"docs/Nix.nix": "Nix"
};

var ownSource = {
Expand Down
7 changes: 7 additions & 0 deletions demo/kitchen-sink/docs/django.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{% extends "base.html" %}

{% block title %}Ace Django Template{% endblock %}

{% block content %}
<h1>Hello, {{ name|default:"World" }}!</h1>
{% endblock %}
33 changes: 33 additions & 0 deletions demo/kitchen-sink/docs/fortran.f
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
#include "globalDefines.h"

!=========================================================
program main
!=========================================================
use params_module, only : nx, ny, nz

implicit none

integer, parameter :: g = 9.81
real, allocatable, dimension(:,:,:) :: array
integer :: a, b, c
real*8 :: x, y, z

b = 5
c = 7

#ifdef ARRAY_COMP
allocate(array(10,10,10), status=a)

write(c,'(i5.5)') b
#endif

if(x.lt.5.0) then
array(:,:,:) = g
else
array(:,:,:) = x - y
endif

return
!========================================================
end program main
!========================================================
18 changes: 18 additions & 0 deletions demo/kitchen-sink/docs/mips.s
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Original source from https://eng.libretexts.org
# Kann, Charles W., "Introduction To MIPS Assembly Language Programming" (2015). Open Textbooks. 2.
# https://cupola.gettysburg.edu/oer/2

# Program File: Program2-1.asm
# Author: Charles Kann
# Purpose: First program, Hello World
.text # Define the program instructions.
main: # Label to define the main program.
li $v0,4 # Load 4 into $v0 to indicate a print string.
la $a0, greeting # Load the address of the greeting into $a0.
syscall # Print greeting. The print is indicated by
# $v0 having a value of 4, and the string to
# print is stored at the address in $a0.
li $v0, 10 # Load a 10 (halt) into $v0.
syscall # The program ends.
.data # Define the program data.
greeting: .asciiz "Hello World" #The string to print.
9 changes: 9 additions & 0 deletions demo/kitchen-sink/docs/text.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
This is just some text!

// These
# are
-- not
<!-- comments -->
(but indent actions work)

This is just some text!
2 changes: 1 addition & 1 deletion kitchen-sink.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<meta name="author" content="Fabian Jakobs">
<!--
Ace
version 1.12.3
version 1.12.4
commit
-->

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "ace-builds",
"main": "./src-noconflict/ace.js",
"typings": "ace.d.ts",
"version": "1.12.3",
"version": "1.12.4",
"description": "Ace (Ajax.org Cloud9 Editor)",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
Expand Down
2 changes: 1 addition & 1 deletion src-min-noconflict/ace.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src-min-noconflict/ext-modelist.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 7896f6f

Please sign in to comment.