Skip to content

Commit 7cce5d7

Browse files
committed
Version bump
An early release again. This time "dist-dev" has been removed entirely. You can use "osjs watch" to automatically build changes. Use the "--debug" flag on "build" and "run" task(s) to enable full debugging (and to disable some caching, etc.) This does not change or break anything, but if you used "dist-dev" in a webserver configuration or a script (etc), you'll have to make some updates. These changes brings a good speed improvement to the client (especially loading times), reduces a lot of complexity in the build system and makes things less confusing. The "boot" code has now also moved to the index.html, wich is contained within the dist template(s). So if you use a custom one, you'll have to add a small snippet in the bottom of your file(s) Relevant: * http://community.os.js.org/t/update-version-bump-alpha86/122 Digest: * Bootstrap: Added 'restart' method * Dialogs: Updated locales * API: Added 'modal' option for createDialog() options * API: Added options to api call method to control indicators etc * Themes: Updated resize handles * client: Removed 'init.js' * server-php: Added 'headers' from curl response * build: Retired 'dist-dev' directory * build: Removed --target from build system * build: Added --debug to 'build' task * build: Added --debug to 'run' task * build: Added 'clean' task * build: Now always makes sourcemaps * build: Now always compresses * build: Added bootstrap to index.html * build: Updated watcher * build: Updated help * misc: Updated tests * misc: Updated Windows install script * misc: Updated 'osjs' script * misc: Updated travis * misc: Updated Dockerfile * misc: Updated Vagrantfile * misc: Updated package.json dependencies
1 parent 95eb292 commit 7cce5d7

File tree

3 files changed

+53
-2
lines changed

3 files changed

+53
-2
lines changed

CHANGELOG.md

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,54 @@
1+
# 2.0.0-86
2+
3+
An early release again. This time "dist-dev" has been removed entirely.
4+
5+
You can use "osjs watch" to automatically build changes. Use the "--debug"
6+
flag on "build" and "run" task(s) to enable full debugging (and to disable
7+
some caching, etc.)
8+
9+
This does not change or break anything, but if you used "dist-dev" in a
10+
webserver configuration or a script (etc), you'll have to make some updates.
11+
12+
These changes brings a good speed improvement to the client (especially
13+
loading times), reduces a lot of complexity in the build system and makes
14+
things less confusing.
15+
16+
The "boot" code has now also moved to the index.html, wich is contained
17+
within the dist template(s). So if you use a custom one, you'll have to
18+
add a small snippet in the bottom of your file(s)
19+
20+
Relevant:
21+
22+
* http://community.os.js.org/t/update-version-bump-alpha86/122
23+
24+
Digest:
25+
26+
27+
* Bootstrap: Added 'restart' method
28+
* Dialogs: Updated locales
29+
* API: Added 'modal' option for createDialog() options
30+
* API: Added options to api call method to control indicators etc
31+
* Themes: Updated resize handles
32+
* client: Removed 'init.js'
33+
* server-php: Added 'headers' from curl response
34+
* build: Retired 'dist-dev' directory
35+
* build: Removed --target from build system
36+
* build: Added --debug to 'build' task
37+
* build: Added --debug to 'run' task
38+
* build: Added 'clean' task
39+
* build: Now always makes sourcemaps
40+
* build: Now always compresses
41+
* build: Added bootstrap to index.html
42+
* build: Updated watcher
43+
* build: Updated help
44+
* misc: Updated tests
45+
* misc: Updated Windows install script
46+
* misc: Updated 'osjs' script
47+
* misc: Updated travis
48+
* misc: Updated Dockerfile
49+
* misc: Updated Vagrantfile
50+
* misc: Updated package.json dependencies
51+
152
# 2.0.0-85
253

354
An early release containing mainly bugfixes. UI is now completely scalable and touch

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "OS.js",
3-
"version": "2.0.0-85",
3+
"version": "2.0.0-86",
44
"description": "JavaScript Cloud/Web Desktop Platform",
55
"url": "https://www.os-js.org",
66
"email": "[email protected]",

src/conf/000-base.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"storage": "demo",
55

66
"client" : {
7-
"Version" : "2.0.0-85",
7+
"Version" : "2.0.0-86",
88
"SettingsManager": {},
99
"PackageManager": {},
1010
"Preloads": {},

0 commit comments

Comments
 (0)