Skip to content

Commit d195a10

Browse files
committed
...
1 parent ef12ed4 commit d195a10

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

src/org/yccheok/jstock/gui/Continent.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ public static Continent toContinent(Country country) {
6161
map.put(Country.Japan, Asia);
6262
map.put(Country.Korea, Asia);
6363
map.put(Country.Malaysia, Asia);
64+
map.put(Country.Mexico, America);
6465
map.put(Country.Netherlands, Europe);
6566
map.put(Country.NewZealand, Australia);
6667
map.put(Country.Norway, Europe);

src/org/yccheok/jstock/gui/Utils.java

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2487,9 +2487,10 @@ public static List<Country> getSupportedStockMarketCountries() {
24872487
}
24882488

24892489
java.util.List<Country> countries = new ArrayList<>(Arrays.asList(Country.values()));
2490-
// Czech and Hungary are only for currency exchange purpose.
2490+
// Czech, Hungary, Mexico are only for currency exchange purpose.
24912491
countries.remove(Country.Czech);
24922492
countries.remove(Country.Hungary);
2493+
countries.remove(Country.Mexico);
24932494

24942495
List<WatchlistInfo> watchlistInfos = org.yccheok.jstock.watchlist.Utils.getWatchlistInfos();
24952496

@@ -2741,11 +2742,11 @@ public ApplicationInfo(int applicationVersionID, String windowsDownloadLink, Str
27412742

27422743
////////////////////////////////////////////////////////////////////////////
27432744
////////////////////////////////////////////////////////////////////////////
2744-
private static final String ABOUT_BOX_VERSION_STRING = "1.0.7.44";
2745+
private static final String ABOUT_BOX_VERSION_STRING = "1.0.7.45";
27452746

2746-
// 1.0.7.44
2747+
// 1.0.7.45
27472748
// For About box comparision on latest version purpose.
2748-
private static final int APPLICATION_VERSION_ID = 1174;
2749+
private static final int APPLICATION_VERSION_ID = 1175;
27492750
////////////////////////////////////////////////////////////////////////////
27502751
////////////////////////////////////////////////////////////////////////////
27512752

0 commit comments

Comments
 (0)