Skip to content

Commit d6a9e93

Browse files
committed
Version bump
New event handling and touch system, VFS improvements, bugfixes and entire codebase now uses JSDoc. Digest: * UI: Entirely new touch event handling system * UI: Updated IE support * UI: General performance improvements * Utils: Added `$css()` method * Utils: Added extend and inherit methods * Core: XHR requests now always responds with correct errors * Core: Added `LocaleDetect` config for automatic locale detection * Core: Added `MountManager` Class for maintining mounts * CoreWM: Bugfixes * Themes: Added `@base_font_size` variable * API: `getConfig()` no longer throws errors and instead return defined default value * API: `open()` now supports directories * VFS: Added `LocalStorage` module * VFS: Added `Web Transport` module * VFS: Improvements to read-only mounts * VFS: Reworked internal Transport APIs * VFS: Better configuration support * VFS: Can now natively use http/https paths * VFS: `File` now guesses MIME type automatically * VFS: Fixes to `OneDrive` * Handler: More extension support * GUI: Added more helpers to `UIElement` * GUI: Reworked `gui-menu` event handling * GUI: Rewroked `gui-menu-bar` event handling * GUI: Reworked `DataView` event handling * GUI: Added programatic support for all menu elements * GUI: Rewrote expensive CSS rules * locales: Updated `vi_VN` * server-node: Now possible to override home path resolver * server-node: Application apis now loaded when server starts * server-node: Added pre-init support for application APIs * server-php: Better Windows support * misc: Updated `src/conf` organization * misc: Split up some namespaces/files * misc: General cleanups * misc: Removed unused and deprecated functions * misc: General bugfixes based on feedback from community * build: Improved package preload parsing in Grunt * doc: Entire codebase now uses JSDoc * doc: Added examples
1 parent 979223a commit d6a9e93

File tree

3 files changed

+49
-2
lines changed

3 files changed

+49
-2
lines changed

CHANGELOG.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,52 @@
11
# 2.0.0-alpha77
22

3+
New event handling and touch system, VFS improvements, bugfixes and entire codebase now uses JSDoc.
4+
5+
Digest:
6+
7+
* UI: Entirely new touch event handling system
8+
* UI: Updated IE support
9+
* UI: General performance improvements
10+
* Utils: Added `$css()` method
11+
* Utils: Added extend and inherit methods
12+
* Core: XHR requests now always responds with correct errors
13+
* Core: Added `LocaleDetect` config for automatic locale detection
14+
* Core: Added `MountManager` Class for maintining mounts
15+
* CoreWM: Bugfixes
16+
* Themes: Added `@base_font_size` variable
17+
* API: `getConfig()` no longer throws errors and instead return defined default value
18+
* API: `open()` now supports directories
19+
* VFS: Added `LocalStorage` module
20+
* VFS: Added `Web Transport` module
21+
* VFS: Improvements to read-only mounts
22+
* VFS: Reworked internal Transport APIs
23+
* VFS: Better configuration support
24+
* VFS: Can now natively use http/https paths
25+
* VFS: `File` now guesses MIME type automatically
26+
* VFS: Fixes to `OneDrive`
27+
* Handler: More extension support
28+
* GUI: Added more helpers to `UIElement`
29+
* GUI: Reworked `gui-menu` event handling
30+
* GUI: Rewroked `gui-menu-bar` event handling
31+
* GUI: Reworked `DataView` event handling
32+
* GUI: Added programatic support for all menu elements
33+
* GUI: Rewrote expensive CSS rules
34+
* locales: Updated `vi_VN`
35+
* server-node: Now possible to override home path resolver
36+
* server-node: Application apis now loaded when server starts
37+
* server-node: Added pre-init support for application APIs
38+
* server-php: Better Windows support
39+
* misc: Updated `src/conf` organization
40+
* misc: Split up some namespaces/files
41+
* misc: General cleanups
42+
* misc: Removed unused and deprecated functions
43+
* misc: General bugfixes based on feedback from community
44+
* build: Improved package preload parsing in Grunt
45+
* doc: Entire codebase now uses JSDoc
46+
* doc: Added examples
47+
48+
# 2.0.0-alpha77
49+
350
A ton of new features, massive amount of cleanups. General bugfixes and improvements
451
to documentation and developer features.
552

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-alpha.77",
3+
"version": "2.0.0-alpha.78",
44
"description": "JavaScript Cloud/Web Desktop Platform",
55
"url": "http://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
@@ -3,7 +3,7 @@
33
"connection": "http",
44

55
"client" : {
6-
"Version" : "2.0-alpha77",
6+
"Version" : "2.0-alpha78",
77
"SettingsManager": {},
88
"PackageManager": {},
99
"Preloads": {},

0 commit comments

Comments
 (0)