diff --git a/.gitignore b/.gitignore
index f145e35..a60ae53 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
node_modules
not_versioned
Thumbs.db
+*~
diff --git a/index.html b/index.html
index 1fb5287..817550f 100644
--- a/index.html
+++ b/index.html
@@ -10050,6 +10050,11 @@ Walletgenerator.net use the same security measures as the original project. All-
Release notes
+ 10.2014 --
+
+ - Add support for Jumbucks. Contribution from Julian Yap.
+
+
10.2014 --
- Add support for HTML5Coin, W2Coin, PandaCoin, ACoin, Fibre, and Titcoin.
@@ -10337,7 +10342,7 @@ janin.currencies = [
janin.currency.createCurrency ("HTML5Coin", 0x28, 0xa8, "6", "R" , "HBUk5NzWyemrwLffC8pLFXabbJuMRKbkc7"),
janin.currency.createCurrency ("iXcoin", 0x8a, 0x80, "5", "[LK]" , "xnF1nshqFLaVdDGBmQ4k2jBQkr8nbuCkLz"),
janin.currency.createCurrency ("Judgecoin", 0x2b, 0xab, "6", "S" , "JbF9ZnvoFkBdasPEq21jCCTnTUDSiyWrAQ"),
- janin.currency.createCurrency ("Jumbucks", 0x2b, 0xab, "6", "S" , ""),
+ janin.currency.createCurrency ("Jumbucks", 0x2b, 0xab, "6", "S" , "Jg1cc9v6GbyDLt9YfuVHbkrrUEzmUeY4iY"),
janin.currency.createCurrency ("Litecoin", 0x30, 0xb0, "6", "T" , "LiScnsyPcqsyxn1fx92BcFguryXcw4DgCy"),
janin.currency.createCurrency ("MagicInternetMoney", 0x30, 0xb0,"6", "T", "LPRqCTYEy53FkEzhRTCauLc7Qq23Z5mxZU"),
janin.currency.createCurrency ("Marscoin", 0x32, 0xb2, "6", "T" , "M8caDttyKt2r7V7WHMMkRZ1jEzxj16fgCn"),
diff --git a/src/index.html b/src/index.html
index ecba5be..98f913c 100644
--- a/src/index.html
+++ b/src/index.html
@@ -515,6 +515,11 @@ Walletgenerator.net use the same security measures as the original project. All-
Release notes
+ 10.2014 --
+
+ - Add support for Jumbucks. Contribution from Julian Yap.
+
+
10.2014 --
- Add support for HTML5Coin, W2Coin, PandaCoin, ACoin, Fibre, and Titcoin.
diff --git a/src/janin.currency.js b/src/janin.currency.js
index 06572ed..ed430ef 100644
--- a/src/janin.currency.js
+++ b/src/janin.currency.js
@@ -109,7 +109,7 @@ janin.currencies = [
janin.currency.createCurrency ("HTML5Coin", 0x28, 0xa8, "6", "R" , "HBUk5NzWyemrwLffC8pLFXabbJuMRKbkc7"),
janin.currency.createCurrency ("iXcoin", 0x8a, 0x80, "5", "[LK]" , "xnF1nshqFLaVdDGBmQ4k2jBQkr8nbuCkLz"),
janin.currency.createCurrency ("Judgecoin", 0x2b, 0xab, "6", "S" , "JbF9ZnvoFkBdasPEq21jCCTnTUDSiyWrAQ"),
- janin.currency.createCurrency ("Jumbucks", 0x2b, 0xab, "6", "S" , ""),
+ janin.currency.createCurrency ("Jumbucks", 0x2b, 0xab, "6", "S" , "Jg1cc9v6GbyDLt9YfuVHbkrrUEzmUeY4iY"),
janin.currency.createCurrency ("Litecoin", 0x30, 0xb0, "6", "T" , "LiScnsyPcqsyxn1fx92BcFguryXcw4DgCy"),
janin.currency.createCurrency ("MagicInternetMoney", 0x30, 0xb0,"6", "T", "LPRqCTYEy53FkEzhRTCauLc7Qq23Z5mxZU"),
janin.currency.createCurrency ("Marscoin", 0x32, 0xb2, "6", "T" , "M8caDttyKt2r7V7WHMMkRZ1jEzxj16fgCn"),