Skip to content

Add Mostrami #67

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 3 commits into from
May 22, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Version 2.7.1
  • Loading branch information
graham-trott committed May 22, 2020
commit 67a6a8acf2864a8a584b0ed59b3f7c36433c7c9c
2 changes: 1 addition & 1 deletion dist/easycoder-min.js

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

2 changes: 1 addition & 1 deletion dist/easycoder.js
Original file line number Diff line number Diff line change
Expand Up @@ -8367,7 +8367,7 @@ const EasyCoder = {
}
},
};
EasyCoder.version = `2.7.0`;
EasyCoder.version = `2.7.1`;
EasyCoder.timestamp = Date.now();
console.log(`EasyCoder loaded; waiting for page`);

Expand Down
6 changes: 3 additions & 3 deletions dist/easycoder.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: EasyCoder
* Plugin URI: https://easycoder.software
* Description: Control the appearance and behavior of your posts and pages by embedding simple English-like scripts, without the need to learn JavaScript.
* Version: 2.7.0
* Version: 2.7.1
* Author: EasyCoder Software
* Author URI: https://easycoder.software
*/
Expand All @@ -16,9 +16,9 @@
add_action('wp_enqueue_scripts', 'easycoder_enqueue_script', 2);
function easycoder_enqueue_script() {
wp_enqueue_script('easycoder_script',
'https://cdn.jsdelivr.net/gh/easycoder/easycoder.github.io/dist/easycoder.js', array(), '2.7.0');
'https://cdn.jsdelivr.net/gh/easycoder/easycoder.github.io/dist/easycoder.js', array(), '2.7.1');
// wp_enqueue_script('easycoder_script', 'https://rembrandt.easycoder.software/dist/easycoder.js',
array(), '2.7.0');
array(), '2.7.1');
}

// Set up default plugin and REST scripts
Expand Down
3 changes: 3 additions & 0 deletions dist/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ For tutorials and a programmers' reference see our [EasyCoder Software Codex](ht

== Changelog ==

= 2.7.1 04-may 2020 =
* Fix bug in 'set styles'

= 2.7.0 04-may 2020 =
* Added 'click left' and 'click top'

Expand Down
2 changes: 1 addition & 1 deletion js/easycoder/EasyCoder.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
EasyCoder.version = `2.7.0`;
EasyCoder.version = `2.7.1`;
EasyCoder.timestamp = Date.now();
console.log(`EasyCoder loaded; waiting for page`);

Expand Down
6 changes: 3 additions & 3 deletions server/easycoder.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: EasyCoder
* Plugin URI: https://easycoder.software
* Description: Control the appearance and behavior of your posts and pages by embedding simple English-like scripts, without the need to learn JavaScript.
* Version: 2.7.0
* Version: 2.7.1
* Author: EasyCoder Software
* Author URI: https://easycoder.software
*/
Expand All @@ -16,9 +16,9 @@
add_action('wp_enqueue_scripts', 'easycoder_enqueue_script', 2);
function easycoder_enqueue_script() {
wp_enqueue_script('easycoder_script',
'https://cdn.jsdelivr.net/gh/easycoder/easycoder.github.io/dist/easycoder.js', array(), '2.7.0');
'https://cdn.jsdelivr.net/gh/easycoder/easycoder.github.io/dist/easycoder.js', array(), '2.7.1');
// wp_enqueue_script('easycoder_script', 'https://rembrandt.easycoder.software/dist/easycoder.js',
array(), '2.7.0');
array(), '2.7.1');
}

// Set up default plugin and REST scripts
Expand Down
3 changes: 3 additions & 0 deletions server/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ For tutorials and a programmers' reference see our [EasyCoder Software Codex](ht

== Changelog ==

= 2.7.1 04-may 2020 =
* Fix bug in 'set styles'

= 2.7.0 04-may 2020 =
* Added 'click left' and 'click top'

Expand Down