Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2.0-rc6 #59

Merged
merged 38 commits into from
Jul 31, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
66d4e56
Iteration for next 2.0-SNAPSHOT release.
kevzlou7979 May 11, 2017
21a2eeb
Fixed MaterialDataPager is initialized twice #60
kevzlou7979 May 24, 2017
25857de
Only set the column name if its null or empty (#39).
BenDol Jun 16, 2017
b430fa0
Apply fix for ListDataSource (thanks @reofake) Fix #34
BenDol Jun 16, 2017
e4598bb
Added addCategory(String) for adding categories manually.
BenDol Jun 20, 2017
639f4ae
Expose the row components API.
BenDol Jun 21, 2017
d145849
Fix some bugs.
BenDol Jun 25, 2017
912229d
Forgot from previous commit.
BenDol Jun 25, 2017
918b337
Rename onScrollY to onVerticalScroll.
BenDol Jun 25, 2017
f9f52bf
Fixed the jittering in InfiniteDataView.
BenDol Jun 25, 2017
2f78323
Improve the buffer calculations for InfiniteDataView.
BenDol Jun 25, 2017
702b6b8
Use width: 100% rather than assigning manual widths.
BenDol Jun 26, 2017
d59a85e
Account for the indexOffset when rendering bottomBuffer.
BenDol Jun 26, 2017
be0e3b1
Compress the new Javascript changes.
BenDol Jun 26, 2017
eabea29
Fix a top clipping issue with the stick header.
BenDol Jul 15, 2017
75e3685
Fix potential exception.
BenDol Jul 25, 2017
168110d
Partial implementation of b42b183cff932d4d5a1bc58f3f3341c2c7e6cc2a.
BenDol Jul 25, 2017
cd6dd0a
Improvements for the category accessibility.
BenDol Jul 25, 2017
2f2cca7
Resolved an optimization issue (categories current index wasn't being…
BenDol Jul 25, 2017
c251331
Fix a minor regression in latest commits.
BenDol Jul 25, 2017
a32b842
Apply selection type fix.
BenDol Jul 25, 2017
36e93c8
Cherry pick more fixes from dev branch.
BenDol Jul 25, 2017
d83d567
Fix the merge issue in the snapshot.
BenDol Jul 28, 2017
c1213c8
Some minor improvements.
BenDol Jul 28, 2017
28647eb
Major loading improvements to address #19 & #11.
BenDol Jul 28, 2017
1e1f7b6
Add updateRow and getRowByModel.
BenDol Jul 28, 2017
ff242b8
Implement autoSort property to Columns.
BenDol Jul 29, 2017
dedf008
Remove redundant field updater.
BenDol Jul 29, 2017
86da297
Address the cache issue specified in #35
BenDol Jul 29, 2017
0aa970d
Implement rendering events for two use cases:
BenDol Jul 29, 2017
1967692
Fix a bug with shift + row selecting & added row collapse(d) events.
BenDol Jul 29, 2017
e723027
Implement openByDefault property to CategoryComponent.
BenDol Jul 29, 2017
0ae2569
Check the category component default open property before attaching a…
BenDol Jul 29, 2017
8c23284
Revert "Remove redundant field updater."
BenDol Jul 29, 2017
928e0e6
Fix the projects license positioning.
BenDol Jul 29, 2017
95d6881
Fixed missing license header
kevzlou7979 Jul 31, 2017
9cd0058
Updated GWT Version to 2.8.1
kevzlou7979 Jul 31, 2017
bb53a9a
Preparation for 2.0-rc6 release.
kevzlou7979 Jul 31, 2017
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ A complex table component designed for the material design specifications!
Support documentation can be found [here](https://github.com/GwtMaterialDesign/gwt-material-table/wiki)

## Maven
Current Version 2.0-rc5
Current Version 2.0-rc6
```xml
<dependency>
<groupId>com.github.gwtmaterialdesign</groupId>
<artifactId>gwt-material-table</artifactId>
<version>2.0-rc5</version>
<version>2.0-rc6</version>
</dependency>
```

Expand Down
8 changes: 3 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
<parent>
<artifactId>gwt-material-parent</artifactId>
<groupId>com.github.gwtmaterialdesign</groupId>
<version>2.0-rc5</version>
<version>2.0-rc6</version>
</parent>

<artifactId>gwt-material-table</artifactId>
<version>2.0-rc5</version>
<version>2.0-rc6</version>

<name>Gwt Material Table</name>
<description>A complex table component designed for the material design specifications</description>
Expand Down Expand Up @@ -59,16 +59,14 @@
<webappDirectory>${project.build.directory}/${project.build.finalName}</webappDirectory>

<!-- Libraries -->
<gwt.version>2.8.0</gwt.version>
<gwt-material.version>2.0-rc5</gwt-material.version>
<gwt-material.version>2.0-rc6</gwt-material.version>

<!-- Testing -->
<junit.version>4.11</junit.version>

<!-- Plugin Versions -->
<maven-surefire-plugin.version>2.18.1</maven-surefire-plugin.version>
<maven-compiler-plugin.version>3.2</maven-compiler-plugin.version>
<gwt-maven-plugin.version>2.8.0</gwt-maven-plugin.version>
</properties>

<licenses>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
package gwt.material.design.client.base;

/*
* #%L
* GwtMaterial
* %%
* Copyright (C) 2015 - 2016 GwtMaterialDesign
* Copyright (C) 2015 - 2017 GwtMaterialDesign
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -19,6 +17,7 @@
* limitations under the License.
* #L%
*/
package gwt.material.design.client.base;

import com.google.gwt.user.client.Timer;

Expand Down
Loading