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

Commit

Permalink
Version 0.13.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
Artefact2 committed Aug 25, 2015
1 parent b099dd3 commit 80075b7
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 9 deletions.
5 changes: 5 additions & 0 deletions UPDATING
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
v0.13.5, released 2015-08-25
============================

The osmium schema has been updated.

v0.13.4, released 2015-02-17
============================

Expand Down
8 changes: 6 additions & 2 deletions bin/reverence_insert
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,12 @@ def processRows(tablename, columnmap, rowset):
if row.typeID == 33857 or row.typeID == 33858 or row.typeID >= 350000:
continue

cur.execute(querystring, [ (k(row) if callable(k) else getattr(row,k) if hasattr(row,k) else row[k])
for k in columnmap.viewvalues() ])
try:
cur.execute(querystring, [ (k(row) if callable(k) else getattr(row,k) if hasattr(row,k) else row[k])
for k in columnmap.viewvalues() ])
except(KeyError):
pass

i += 1
if i % 25000 == 0:
print "%s..." % i,
Expand Down
7 changes: 7 additions & 0 deletions ext/eve-versions.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
[
{
"tag": "galatea-10",
"name": "Galatea 1.0",
"build": 957210,
"reldate": 1440421200,
"dogmaver": 18
},
{
"tag": "aegis-10",
"name": "Aegis 1.0",
Expand Down
6 changes: 3 additions & 3 deletions inc/root.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,13 +79,13 @@
const STATICVER = 17;

/** Bump this when CSS files are updated */
const CSS_STATICVER = 27;
const CSS_STATICVER = 28;

/** Bump this when JS snippets are updated */
const JS_STATICVER = 34;
const JS_STATICVER = 35;

/** Bump this when clientdata.json is updated */
const CLIENT_DATA_STATICVER = 44;
const CLIENT_DATA_STATICVER = 45;

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

Expand Down
6 changes: 3 additions & 3 deletions src/md/changelog.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# staging
# Version 0.13

# Version 0.13.5, released 2015-08-25

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

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

# Version 0.13

## Version 0.13.4, released 2015-02-17

* Fix slot counts while editing tech III ships.
Expand Down
2 changes: 1 addition & 1 deletion src/snippets/new_loadout-sources.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ osmium_init_sources = function() {
success: function(json) {
for(var i in json.payload) {
if(!(json.payload[i] in osmium_types)) {
alert('Type ' + payload[i] + ' not in static client data ; try deleting your cache and refreshing. Please report issue if this persists.');
alert('Type ' + json.payload[i] + ' not in static client data ; try deleting your cache and refreshing. Please report issue if this persists.');
continue;
}

Expand Down

0 comments on commit 80075b7

Please sign in to comment.