Skip to content

Commit

Permalink
deploy: 56ad855
Browse files Browse the repository at this point in the history
  • Loading branch information
cboulanger committed Jul 28, 2023
1 parent f3f49e2 commit 7f21ff3
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion v7.6/_variables.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"qooxdoo": {
"version": "7.6.0"
"version": "7.6.1"
}
}
10 changes: 6 additions & 4 deletions v7.6/desktop/gui/resources.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,15 @@ you will shadow the file of the same resource id in the framework.

## Declaring resources in the code

You have to declare the resources you wish to use in your application code in an
`@asset` compiler hint near the top of your source file.
You have to declare the resources you wish to use in your application code in a jsdoc
`@asset` compiler hint near the top of your source file. Note that the comment
must start with a slash and two stars (`/**`) or the jsdoc parser will ignore it
– neither `/*` nor `/***` will work! This problem can be hard to find, since all assets
declared in such an inactive comment will simply be ignored
there won't be a warning or anything.

```javascript
/**
*
* @asset(myapp/icons/16/folder-open.png)
*/
```
Expand All @@ -49,7 +52,6 @@ use simple (shell) wildcards to specify a whole set of resources:

```javascript
/**
*
* @asset(myapp/icons/16/*)
*/
```
Expand Down
2 changes: 1 addition & 1 deletion v7.6/development/testing/unit_testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ To run browser based test you have to

```json
"environment": {
"testtapper.testNameSpace": "myapp.test"
"qxl.testtapper.testNameSpace": "myapp.test"
},
```

Expand Down
3 changes: 3 additions & 0 deletions v7.6/release-notes.7.0.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Qooxdoo Release Notes

## Fixes for v7.6.1
For a full list of changes see https://github.com/qooxdoo/qooxdoo/commits/master?branch=master&qualified_name=refs%2Fheads%2Fmaster&since=2023-04-13&until==2023-07-28

## New features in v7.6
improved support for webfonts:

Expand Down

0 comments on commit 7f21ff3

Please sign in to comment.