-
Notifications
You must be signed in to change notification settings - Fork 121
/
Copy pathNOTES
125 lines (102 loc) · 3.88 KB
/
NOTES
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/******************************************************************************/
/* TODO */
/******************************************************************************/
>>v0.x<<
:print #108
- Printing Support
:cleanser #90
- Reintroduce ClearDataForOrigin
- Ability to list Data
- Ideally: Storage for LocalData
:form_data #107
- Password, Form Data API
:html_auth #106
- User authorization API
DONE:
>>v0.7.6<<
- Fix string message (remote) #242
- Proxy (Set proxy / session API) #155 #169
- Remote (Internal IPC Mechanism)
- Fix CloseDevTools #234
>>v0.7.5<<
- ThrustWindow and <webview> DevTools #205
- Input support for file and color #208
- Javascript Dialog Management for <webview> #210
- Frameless window support #119
- Fix updagint webview class #213
- webview Title accessor and event #215
- Fixes setting webview.src after navigation #217
- Fixes webview.canGoForward #218
>>v0.7.4<<
- Upgrade to Chrome 38.0.x.x
- Global application menu #201
- Menu popup on specific window
- <webview> support
>>v0.7.3<<
- Window events and accessors #190
- Application menu cleanup OSX #180
- Kiosk support #197
>>v0.7.2<<
- Fix Menu not working Ubuntu #193
- Windows support
- Distribution creation scripts
>>v0.7.1<<
- Drop Unix Domain Socket in favor of stdin/stout API
>>v0.7.0<<
- Remove NodeJS & JSON RPCish API
- Upgrade to Chrome 36.0.x.x
- Upgrade to Chrome 37.0.x.x
- Native menus API
>>v0.6<<
- Cookies op_count
- Upgrade to Node 0.11.14 (v8: 3.25.30.0)
- Upgrade to Chrome 35.0.1916.114 (v8: 3.25.28.16)
- Add domain_key (eTLD+1) to cookie object exposed thorugh API
- Bugfixes [fix #136]
- FLOATING control support
>>v0.5<<
- Context Menu API enhancement
- Add the ability to run NodeJS only
- Upgrade to Chrome 32.0.1700.68 (v8: 3.22.24.9)
- Upgrade to Node 0.10.24 (v8: 3.22.24.9)
- Fix DevTools I/F
>>v0.4<<
- Page Zoom API
- Window Title & Context Menu API
- DevTools API
- File Upload/Download UI
- Antialiasing
- GTK Icon API
>>v0.3<<:
- Finish Cookie API: Load/LoadForKey/Flush
- Check LoadForKey/Load merge is OK (null / '')
- Cookie Deserialization
- Expose VisitedLinks AddURL to JS (to add url from there)
- Embed NeDB in Shell for Cookie Storage
- Delete VisitedLinks / Cache / Local Storage JS API
- Capture ExoFrame ScreenShot from API
/******************************************************************************/
/* BUILD NOTES */
/******************************************************************************/
GYP_GENERATORS=ninja gyp --depth . thrust_shell.gyp
ninja -C out/Debug thrust_shell -j 1
# When receiving message: `The application cannot be opened because its executable is missing.`
/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Support/lsregister -kill -r -domain local -domain system -domain user
/******************************************************************************/
/* CHROMIUM URLS */
/******************************************************************************/
http://src.chromium.org/chrome/releases/
http://omahaproxy.appspot.com/
/******************************************************************************/
/* NOTES ON CHROMIUM */
/******************************************************************************/
- Issue 159193: Move URLRequestContext getters from Profile into StoragePartition
https://code.google.com/p/chromium/issues/detail?id=159193#c28
- Issue 330264: Tracking bug: Migrate BrowserPlugin to use RenderFrame Architecture
https://code.google.com/p/chromium/issues/detail?id=330264
- Issue 304341: Move frame specific functionality from RenderView(Host) to RenderFrame(Host)
https://code.google.com/p/chromium/issues/detail?id=304341#c60
/******************************************************************************/
/* NOTES ATOM_SHELL */
/******************************************************************************/
Linux High DPI Support: https://github.com/atom/atom-shell/issues/615#event-181505020