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

Commit 80075b7

Browse files
committed
Version 0.13.5.
1 parent b099dd3 commit 80075b7

9 files changed

+25
-9
lines changed

UPDATING

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
v0.13.5, released 2015-08-25
2+
============================
3+
4+
The osmium schema has been updated.
5+
16
v0.13.4, released 2015-02-17
27
============================
38

bin/reverence_insert

+6-2
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,12 @@ def processRows(tablename, columnmap, rowset):
7373
if row.typeID == 33857 or row.typeID == 33858 or row.typeID >= 350000:
7474
continue
7575

76-
cur.execute(querystring, [ (k(row) if callable(k) else getattr(row,k) if hasattr(row,k) else row[k])
77-
for k in columnmap.viewvalues() ])
76+
try:
77+
cur.execute(querystring, [ (k(row) if callable(k) else getattr(row,k) if hasattr(row,k) else row[k])
78+
for k in columnmap.viewvalues() ])
79+
except(KeyError):
80+
pass
81+
7882
i += 1
7983
if i % 25000 == 0:
8084
print "%s..." % i,

ext/eve-versions.json

+7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
[
2+
{
3+
"tag": "galatea-10",
4+
"name": "Galatea 1.0",
5+
"build": 957210,
6+
"reldate": 1440421200,
7+
"dogmaver": 18
8+
},
29
{
310
"tag": "aegis-10",
411
"name": "Aegis 1.0",

inc/root.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -79,13 +79,13 @@
7979
const STATICVER = 17;
8080

8181
/** Bump this when CSS files are updated */
82-
const CSS_STATICVER = 27;
82+
const CSS_STATICVER = 28;
8383

8484
/** Bump this when JS snippets are updated */
85-
const JS_STATICVER = 34;
85+
const JS_STATICVER = 35;
8686

8787
/** Bump this when clientdata.json is updated */
88-
const CLIENT_DATA_STATICVER = 44;
88+
const CLIENT_DATA_STATICVER = 45;
8989

9090
define(__NAMESPACE__.'\CACHE_DIRECTORY', ROOT.'/cache');
9191

src/md/changelog.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# staging
1+
# Version 0.13
2+
3+
# Version 0.13.5, released 2015-08-25
24

35
* Add option to export loadouts as SVG. Add code template to embed it into another webpage.
46

57
* Support adding effect beacons (like wormhole or incursion effects) to loadouts.
68

7-
# Version 0.13
8-
99
## Version 0.13.4, released 2015-02-17
1010

1111
* Fix slot counts while editing tech III ships.

src/snippets/new_loadout-sources.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ osmium_init_sources = function() {
104104
success: function(json) {
105105
for(var i in json.payload) {
106106
if(!(json.payload[i] in osmium_types)) {
107-
alert('Type ' + payload[i] + ' not in static client data ; try deleting your cache and refreshing. Please report issue if this persists.');
107+
alert('Type ' + json.payload[i] + ' not in static client data ; try deleting your cache and refreshing. Please report issue if this persists.');
108108
continue;
109109
}
110110

0 commit comments

Comments
 (0)