1. 26 2月, 2020 1 次提交
  2. 19 2月, 2020 1 次提交
  3. 15 2月, 2020 4 次提交
  4. 14 2月, 2020 1 次提交
    • A
      Simplify frontend · b8fa7da9
      Asher 提交于
      Just a login form and a list of applications. No modals or anything like
      that.
      b8fa7da9
  5. 06 2月, 2020 1 次提交
  6. 05 2月, 2020 2 次提交
  7. 16 1月, 2020 1 次提交
  8. 09 1月, 2020 1 次提交
  9. 08 1月, 2020 1 次提交
    • A
      Update nbin · 6a1dcab7
      Asher 提交于
      Should finally be able to build with Node v12 now.
      6a1dcab7
  10. 01 11月, 2019 1 次提交
  11. 19 10月, 2019 3 次提交
    • A
      Simplify build and development steps · 4cd2f2cd
      Asher 提交于
      4cd2f2cd
    • A
      Add dependencies required for running build script · 88cef85f
      Asher 提交于
      They were getting pulled from VS Code which doesn't work if you are
      running a build in a clean repo.
      88cef85f
    • A
      Update to 1.39.2 · bdd11f74
      Asher 提交于
      Also too the opportunity to rewrite the build script since there was a
      change in the build steps (mainly how the product JSON is inserted) and
      to get the build changes out of the patch. It also no longer relies on
      external caching (we'll want to do this within CI instead).
      bdd11f74
  12. 11 10月, 2019 1 次提交
  13. 08 10月, 2019 1 次提交
  14. 05 10月, 2019 1 次提交
  15. 17 9月, 2019 1 次提交
    • A
      Update nbin · ef069d9b
      Asher 提交于
      The latest version contains a fix for passing null options when reading
      a file. Fixes #544.
      ef069d9b
  16. 13 9月, 2019 1 次提交
    • A
      Add tar endpoint · f8635a12
      Asher 提交于
      This will be used to load extensions into the browser using requirefs.
      f8635a12
  17. 31 8月, 2019 1 次提交
  18. 14 8月, 2019 1 次提交
  19. 10 8月, 2019 1 次提交
  20. 03 8月, 2019 1 次提交
    • A
      Groundwork for language support · 712274d9
      Asher 提交于
      - Implement the localization service.
      - Use the proper build process which generates the require JSON files.
      - Implement getting the locale and language configuration.
      712274d9
  21. 01 8月, 2019 1 次提交
  22. 19 7月, 2019 6 次提交
  23. 02 5月, 2019 1 次提交
  24. 17 4月, 2019 1 次提交
    • L
      Added serviceworker and web-manifest (#154) · 22b485ac
      Luca Casonato 提交于
      * Added serviceworker and manifest.json
      
      * added deps in package.json
      
      * fixed image link
      
      * actually fixed images i think
      
      * added assets to individual module folders
      
      * added caching
      
      * Serviceworker now properly loads
      
      * Changed single to double quotes
      
      * Update lock
      
      * moved the service worker back into prod only
      
      * removed sw from general
      
      * changed background color of splash screen
      
      * added logo to server
      
      * centralized logo into single assets folder
      22b485ac
  25. 16 4月, 2019 1 次提交
    • A
      Update node to 10.15.1 (#472) · aabb2ecd
      Asher 提交于
      * Update Node to 10.15.1
      
      * Remove string replace that was used for oclif
      
      * Update nbin
      
      * Package node-pty and spdlog with nbin
      
      * Label stderr/stdout from shared process
      
      * Remove fork override
      
      * Prevent "already disposed" errors when trying to kill disposed proxies
      
      * Include spdlog dependencies
      
      * Shim /node_modules
      
      * Add node_modules to Docker ignore
      
      It keeps using my already-built .node files which results in a
      mismatching GLIBC version error.
      
      * Update nbin
      aabb2ecd
  26. 04 4月, 2019 1 次提交
    • K
      Improve CI caching (#416) · dcf409ae
      Kyle Carberry 提交于
      * Adjust linux distro to ubuntu 14.04
      
      * Cache lib directory for speedy builds
      
      * Fix path linking for default extensions
      
      * Update reset
      
      * Reset to head
      
      * Improve caching
      
      * Still run yarn in CI
      
      * Update yarn before install
      
      * Increase cache timeout
      
      * Install vscode from vstar
      
      * Undo data-dir changes to CLI, add back clean, remove unused CI func
      
      * Remove additional flags added
      
      * Remove unused dependency
      
      * Reset vscode install dir so patching always works
      dcf409ae
  27. 02 4月, 2019 1 次提交
  28. 27 3月, 2019 1 次提交
    • A
      Refactor evaluations (#285) · dc2253e7
      Asher 提交于
      * Replace evaluations with proxies and messages
      
      * Return proxies synchronously
      
      Otherwise events can be lost.
      
      * Ensure events cannot be missed
      
      * Refactor remaining fills
      
      * Use more up-to-date version of util
      
      For callbackify.
      
      * Wait for dispose to come back before removing
      
      This prevents issues with the "done" event not always being the last
      event fired. For example a socket might close and then end, but only
      if the caller called end.
      
      * Remove old node-pty tests
      
      * Fix emitting events twice on duplex streams
      
      * Preserve environment when spawning processes
      
      * Throw a better error if the proxy doesn't exist
      
      * Remove rimraf dependency from ide
      
      * Update net.Server.listening
      
      * Use exit event instead of killed
      
      Doesn't look like killed is even a thing.
      
      * Add response timeout to server
      
      * Fix trash
      
      * Require node-pty & spdlog after they get unpackaged
      
      This fixes an error when running in the binary.
      
      * Fix errors in down emitter preventing reconnecting
      
      * Fix disposing proxies when nothing listens to "error" event
      
      * Refactor event tests to use jest.fn()
      
      * Reject proxy call when disconnected
      
      Otherwise it'll wait for the timeout which is a waste of time since we
      already know the connection is dead.
      
      * Use nbin for binary packaging
      
      * Remove additional module requires
      
      * Attempt to remove require for local bootstrap-fork
      
      * Externalize fsevents
      dc2253e7
  29. 13 3月, 2019 1 次提交