Skip to content
This repository was archived by the owner on Jan 30, 2022. It is now read-only.

Commit 9337c18

Browse files
committed
Release 1.6.1
1 parent 726edfd commit 9337c18

File tree

5 files changed

+14
-9
lines changed

5 files changed

+14
-9
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ Also available at http://userscripts.org/scripts/show/160864
2020
![Screenshot](http://wikberg.fi/grfx/wme_ja.png)
2121

2222
###Changelog
23+
####1.6.1
24+
- Added more translated strings
25+
- Fix settings to actually load properly with Chrome extension
26+
2327
####1.6
2428
- Add color codes for different turn instructions
2529
- Add user configurable options

crx_bootstrap.user.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
// @namespace http://userscripts.org/users/508112
44
// @description Show the angle between two selected (and connected) segments
55
// @include /^https://(editor-beta|www)\.waze\.com\/(.{2,6}\/)?editor\/.*$/
6-
// @updateURL https://userscripts.org/scripts/source/160864.user.js
7-
// @version 1.6
6+
// @updateURL https://github.com/milkboy/WME-ja/raw/master/wme_junctionangle.user.js
7+
// @version 1.6.1
88
// @grant GM_getResourceURL
9-
// @copyright 2013 Michael Wikberg <michael@wikberg.fi>
9+
// @copyright 2015 Michael Wikberg <michael@wikberg.fi>
1010
// @run_at document_start
1111
// ==/UserScript==
1212

@@ -20,10 +20,11 @@ else {
2020
}
2121

2222
var ja_script = document.createElement('script');
23+
ja_script.type = "text/javascript";
2324
ja_script.src = getURL("wme_junctionangle.user.js");
2425
ja_script.async = false;
2526
ja_script.onload = function() { };
2627

2728
//append real code into document
2829
document.head.appendChild(ja_script);
29-
console.log("Bootstrapped CRX...");
30+
//console.log("Bootstrapped CRX...");

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"version": "1.6",
32
"name": "__MSG_extName__",
43
"short_name": "WME-JA",
4+
"version": "1.6.1",
55
"manifest_version": 2,
66
"default_locale": "en",
77

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"description": "Waze Map Editor (WME) addon to help with junction design. If two connected segments are selected, it shows the turn angle, otherwise the the angle between each segment.",
66
"author": "Michael Wikberg <michael@wikberg.fi>",
77
"license": "Creative Commons by-nc-sa 3.0",
8-
"version": "1.6",
8+
"version": "1.6.1",
99
"homepage": "https://github.com/milkboy/WME-ja",
1010
"icon": "ja48.png",
1111
"lib": "firefox"

wme_junctionangle.user.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
// @namespace https://github.com/milkboy/WME-ja
44
// @description Show the angle between two selected (and connected) segments
55
// @include /^https:\/\/(www|editor-beta)\.waze\.com\/(.{2,6}\/)?editor\/.*$/
6-
// @version 1.6
76
// @updateURL https://github.com/milkboy/WME-ja/raw/master/wme_junctionangle.user.js
7+
// @version 1.6.1
88
// @grant none
9-
// @copyright 2014 Michael Wikberg <waze@wikberg.fi>
9+
// @copyright 2015 Michael Wikberg <waze@wikberg.fi>
1010
// @license CC-BY-NC-SA
1111
// ==/UserScript==
1212

@@ -23,7 +23,7 @@
2323

2424
function run_ja() {
2525

26-
var junctionangle_version = "1.6";
26+
var junctionangle_version = "1.6.1";
2727
var junctionangle_debug = 1; //0: no output, 1: basic info, 2: debug 3: crazy debug
2828
var $;
2929
var ja_features = [];

0 commit comments

Comments
 (0)