Skip to content

Commit b35e37b

Browse files
author
MicroEJ GitHub Delivery
committed
Version 7.6.0
1 parent c57bf47 commit b35e37b

File tree

117 files changed

+2842
-2993
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

117 files changed

+2842
-2993
lines changed

.gitmodules

Whitespace-only changes.

com.microej.demo.widget/.classpath

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
<classpath>
33
<classpathentry kind="src" path="src/main/java"/>
44
<classpathentry kind="src" path="src/main/resources"/>
5+
<classpathentry kind="src" path="src/test/java"/>
56
<classpathentry kind="con" path="org.apache.ivyde.eclipse.cpcontainer.IVYDE_CONTAINER/?project=com.microej.demo.widget&amp;ivyXmlPath=module.ivy&amp;confs=*"/>
7+
<classpathentry kind="src" path="src-adpgenerated/junit/java">
8+
<attributes>
9+
<attribute name="addonProcessorKind" value="generatedJava"/>
10+
<attribute name="ignore_optional_problems" value="true"/>
11+
</attributes>
12+
</classpathentry>
613
<classpathentry kind="output" path="bin"/>
714
</classpath>

com.microej.demo.widget/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@
1111
/launchers/*.properties
1212
/bin-test/
1313
/.scannerwork
14+
/.cache

com.microej.demo.widget/.project

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@
1010
<arguments>
1111
</arguments>
1212
</buildCommand>
13+
<buildCommand>
14+
<name>com.is2t.microej.addonprocessor.addonProcessorBuilder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
1318
</buildSpec>
1419
<natures>
1520
<nature>org.eclipse.jdt.core.javanature</nature>

com.microej.demo.widget/CHANGELOG.md

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,37 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [7.6.0] - 2023-10-09
9+
10+
### Added
11+
12+
- Add AnimatedImage widget and page.
13+
- Add CircularProgressWithGradient widget and page.
14+
- Add WheelWithHighlight widget and page.
15+
- Add ScrollingTextOnCircle widget and page.
16+
- Add StringOnCirclePainter class for drawing text on a circle.
17+
18+
### Fixed
19+
20+
- Fix scroll max scrollTo position.
21+
22+
### Changed
23+
24+
- Update image for SecretScroll page.
25+
- Update MWT dependency to 3.5.0.
26+
- Update Widget dependency to 5.0.0.
27+
- Update DoubleTemperatureSlider.
28+
- Update RadioButton.
29+
- Update CircularDottedProgress.
30+
- Update CircularIndeterminateProgress.
31+
- Update CircularProgress.
32+
- Update Wheel.
33+
- Simplify SliderWithProgress.
34+
- Simplify SliderWithValue.
35+
- Put more smooth rounded corners on the right panel.
36+
- Update the images heap configuration (needed by ScrollingTextOnCircle).
37+
- Merge the different scroll implementations.
38+
839
## [7.5.1] - 2022-10-20
940

1041
### Fixed
@@ -188,5 +219,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
188219

189220
---
190221
_Markdown_
191-
_Copyright 2016-2022 MicroEJ Corp. All rights reserved._
222+
_Copyright 2016-2023 MicroEJ Corp. All rights reserved._
192223
_Use of this source code is governed by a BSD-style license that can be found with this software._

com.microej.demo.widget/README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Here are the pages:
2020
- `Label`: demonstrates the simple `Label` widget from the widget library.
2121
- `AutoscrollLabel`: demonstrates a label which autoscroll when the label text is longer than label length.
2222
- `Image Widget` : demonstrates how to display an image using `ImageWidget` from the widget library.
23+
- `Animated image`: demonstrates an `AnimatedImage` widget.
2324
- `Slider with value` : demonstrates a slider with displayed value.
2425
- `Slider with progress` : demonstrates a slider with progress.
2526
- `Circular Slider` : demonstrates a circular slider.
@@ -34,7 +35,10 @@ Here are the pages:
3435
- `Circular Indeterminate Progress`: demonstrates a `CircularIndeterminateProgress` widget.
3536
- `Circular Dotted Progress`: demonstrates a `CircularDottedProgress` widget.
3637
- `Circular Progress`: demonstrates a `CircularProgress` widget.
38+
- `Circular Progress With Gradient`: demonstrates a `CircularProgressWithGradient` widget.
3739
- `Wheel` : demonstrates a `Wheel` widget.
40+
- `WheelWithHighlight` : demonstrates a `WheelWithHighlight` widget, where the selected item is highlighted with a larger font.
41+
- `ScrollingTextOnCircle` : demonstrates a `ScrollingTextOnCircle` widget, which draws a scrolling text on a circle.
3842
- `Carousel`: demonstrates a `Carousel` widget.
3943
- `List`: demonstrates the `List` container from the widget library.
4044
- `Grid`: demonstrates the `Grid` container from the widget library.
@@ -50,7 +54,6 @@ Here are the pages:
5054
- `Line Chart`: demonstrates a `LineChart` widget.
5155
- `Bar Chart`: demonstrates a `BarChart` widget.
5256

53-
5457
# Usage
5558

5659
The main class is [Navigation.java](src/main/java/com/microej/demo/widget/common/Navigation.java).
@@ -80,5 +83,5 @@ N/A
8083
None.
8184

8285
---
83-
_Copyright 2020-2022 MicroEJ Corp. All rights reserved._
86+
_Copyright 2020-2023 MicroEJ Corp. All rights reserved._
8487
_Use of this source code is governed by a BSD-style license that can be found with this software._

com.microej.demo.widget/build/common.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
# Copyright 2020-2022 MicroEJ Corp. All rights reserved.
1+
# Copyright 2020-2023 MicroEJ Corp. All rights reserved.
22
# Use of this source code is governed by a BSD-style license that can be found with this software.
33

44
ej.microui.fontConverter.useIt=true
55
ej.microui.imageConverter.useIt=true
6-
ej.microui.memory.imagesheap.size=0
6+
ej.microui.memory.imagesheap.size=42000
77

88
soar.generate.classnames=false
99
cldc.encoding.utf8.included=false
1010
com.microej.library.edc.securitymanager.enabled=false
1111
com.microej.library.edc.tostring.included=false
1212

1313
# Java heap size
14-
core.memory.javaheap.size=16500
15-
core.memory.javaheapsum.size=16500
14+
core.memory.javaheap.size=19000
15+
core.memory.javaheapsum.size=19000
1616
# immortal heap size
1717
core.memory.immortal.size=256
1818

0 commit comments

Comments
 (0)