Skip to content

Commit 8eb60bf

Browse files
committed
Tagging 2.0.2.
1 parent 1c1b6d6 commit 8eb60bf

File tree

9 files changed

+294
-96
lines changed

9 files changed

+294
-96
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,13 @@ Online Demos
4545
Download
4646
--------
4747

48-
Latest CubesViewer stable release is 2.0.1:
48+
Latest CubesViewer stable release is 2.0.2:
4949

50-
* CubesViewer 2.0.1
51-
* [cubesviewer-v2.0.1.zip](https://github.com/jjmontesl/cubesviewer/archive/v2.0.1.zip)
52-
* [cubesviewer-server-v2.0.1.zip](https://github.com/jjmontesl/cubesviewer-server/archive/v2.0.1.zip)
53-
* [Changelog](http://github.com/jjmontesl/cubesviewer/blob/v2.0.1/CHANGES.txt)
54-
* [Release Notes](http://github.com/jjmontesl/cubesviewer/blob/v2.0.1/RELEASE-NOTES.txt)
50+
* CubesViewer 2.0.2
51+
* [cubesviewer-v2.0.2.zip](https://github.com/jjmontesl/cubesviewer/archive/v2.0.2.zip)
52+
* [cubesviewer-server-v2.0.2.zip](https://github.com/jjmontesl/cubesviewer-server/archive/v2.0.2.zip)
53+
* [Changelog](http://github.com/jjmontesl/cubesviewer/blob/v2.0.2/CHANGES.txt)
54+
* [Release Notes](http://github.com/jjmontesl/cubesviewer/blob/v2.0.2/RELEASE-NOTES.txt)
5555
* Works with *Cubes 1.0.x* and *Cubes 1.1.x*
5656

5757
CubesViewer Server already includes the CubesViewer library so you just need that package

RELEASE-NOTES.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,10 @@ Your Cubes model may need some extra configuration if you wish to use features l
7474
Upgrading from 2.0.1
7575
--------------------
7676

77-
1. A new Javascript dependency has been added to the Studio application (this does
78-
not apply if you are using embedding CubesViewer views, only Studio).
79-
Check the sample `html/studio.html` for an up to date list of dependencies.
77+
1. A new Javascript dependency (masonry) has been added to the Studio application
78+
(this does not apply if you are using embedding CubesViewer views, only if
79+
embedding CubesViewer Studio). Check the sample `html/studio.html` for an up to
80+
date list of dependencies.
8081

8182

8283
Upgrading from 0.10 or 0.11

TODO.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,9 +122,9 @@ Consider contributing to CubesViewer! This is a possible roadmap (reverse order)
122122
* Map representations from facts, including segments from individual points in facts (plot paths, with metrics and filtering!)
123123
* Map charts. Design already available.
124124

125-
[2.0.2]
125+
[2.0.3]
126126

127-
* Remove -devel from version, -beta from doc, generate files, copy to web and server, same on server.
127+
* Remove -devel from version, -beta from doc, package.json version cubesviewer version, generate files, copy to web and server, same on server.
128128
Release notes, Tag repo (release), Announcement, Move this todo item to next release top.
129129
* Submenu loading issue.
130130

@@ -133,7 +133,7 @@ Consider contributing to CubesViewer! This is a possible roadmap (reverse order)
133133

134134
* Fix: toggling legend does not redraw chart (just moves legend?). Redrawing the chart (ie switching view mode) actually works.
135135
Same for sometimes drilling down or changing a filter, grid doens't get correct size.
136-
* Size change when switching views is very irritating. Hack that (fix height during changes/reloads?).
136+
* Size change when switching views is irritating. Hack that (fix height during changes/reloads?).
137137

138138
* Fix to grid sort function cache was incorrect? If two grids are loaded, clicking on a column in grid A could affect sorting in grid B (#71).
139139
* Error: [$parse:lexerr] Lexer Error: Unexpected next character at columns 45-45 [Í] in expression [entity['SECRETARÍA XERAL TÉCNICA '](CONSELLERÍA DE CULTURA, EDUCACIÓN E ORDENACIÓN UNIVERSITARIA)].

cubesviewer/core/cubesviewer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ angular.module('cv').run([ '$timeout', '$log', 'cvOptions', 'cubesService', 'cub
133133
function CubesViewer() {
134134

135135
// CubesViewer version
136-
this.version = "2.0.2-devel";
136+
this.version = "2.0.2";
137137

138138
/**
139139
* State of a view that has not yet been fully initialized, and cannot be interacted with.

cubesviewer/cubesviewer.templates.js

Lines changed: 37 additions & 18 deletions
Large diffs are not rendered by default.

dist/cubesviewer.css

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6843,6 +6843,9 @@ button.cv-bootstrap .close {
68436843
.cv-grid-header-dimension {
68446844
color: #004400;
68456845
}
6846+
.cv-grid-header-dimensionattribute {
6847+
color: #666666;
6848+
}
68466849
.cv-grid-header-measure {
68476850
color: #444477;
68486851
}
@@ -6984,8 +6987,7 @@ div.nvtooltip {
69846987
width: 100%;
69856988
/* Full Width */
69866989
height: 3px;
6987-
margin: 0px 0px 3px 0px;
6988-
/*position: fixed;*/
6990+
margin: -4px 0px 1px 0px;
69896991
position: relative;
69906992
overflow-x: hidden;
69916993
}

0 commit comments

Comments
 (0)