mirror of
https://github.com/atom/atom.git
synced 2026-02-17 01:51:54 -05:00
5.4 KiB
5.4 KiB
Highlights from the past week
- Atom IDE
- Started conversion of atom-languageclient to TypeScript atom/atom-languageclient#175
- @atom/watcher
- Report events related to symlinks and test for symlink-related edge cases.
- Produce filesystem events with a consistent parent path to the one used to create a watcher, even if the watcher was created with a a path containing symlinks.
- Verified correct behavior with regard to filesystem case sensitivity.
- Corrected buggy utf8 to utf16 conversion on Windows.
- Ran through the MacOS cases in the testing matrix.
- Set up a Samba share on @ungb's testing server to exercise Samba network drives.
- Published version 1.0.0 on npm.
- GitHub Package
- Introduce a package configuration option to disable the in-editor merge conflict resolution.
- Published a new release v0.10.0
- Investigated and spiked on a fix for amending bug in single-commit repos, which was surfaced by failing cache invalidation tests that were blocking release
- Deferred fixing underlying bug - atom/github#1303
- Fixed failing tests - atom/github#1302
- Teletype
- Released Teletype 0.7.0 with improved diagnostics for errors that occur during package initialization (atom/teletype#266, atom/teletype#297)
- Opened atom/teletype#323, atom/teletype-client#52, and atom/fuzzy-finder#335 to pave the way for guests to use the fuzzy-finder to open any remote editor shared by the host (atom/teletype#268)
Focus for week ahead
- Atom IDE
- Finish conversion of atom-languageclient to TypeScript atom/atom-languageclient#175
- Contribute TypeScript type definitions for Atom IDE to DefinitelyTyped
- Contribute missing TypeScript type defintions for Atom to DefinitelyTyped
- @atom/watcher
- Complete the testing matrix on Linux and Windows.
- :shipit: Merge @atom/watcher support into Atom (as a non-default
PathWatcherbackend). :shipit:
- GitHub Package
- Quarterly planning. Which might change all of these 😉
- Finish tracking down our freezing CI builds.
- Resurrect the gargantuan credential helper and GPG pinentry refactoring PR and see how much work is needed to get it over the finish line.
- Fix issue with diff view popping up unexpectedly - atom/github#1287
- Teletype
- Complete initial implementation and merge pull requests (atom/teletype#323, atom/teletype-client#52, and atom/fuzzy-finder#335) allowing guests to use the fuzzy-finder to open any remote editor shared by the host (atom/teletype#268)
- Use fuzzy-finder support internally in our day-to-day workflows to assess usability
- Tree-sitter
- Finish and merge tree-sitter/tree-sitter#128, which fixes a fundamental performance problem when editing large files.
- Fix syntax highlighting bugs #16643 and #16642.
- Fix #16621 - snippets not working when using Tree-sitter.
- Xray
- @nathansobo (and @as-cii part time) will be focusing the next 12 weeks on a prototype for a new Electron-based text editor. The goal is to explore the viability of radical performance improvements that could be possible if we make breaking changes to Atom's APIs. At the end of the 12 weeks, we will reassess our plans based on what we have managed to learn and accomplish.
- Week 1 of 12
- Clarify and document goals for the next 12 weeks.
- Ensure that the guide matches our current plans.
- Refine WebGL based text rendering.
- Make sure ASCII text renders correctly without being clipped
- Render text correctly on high DPI displays
- Use correct API for texture atlas updates
- Add mouse-wheel scrolling support
- Non-ASCII rendering, using the HarfBuzz text shaping library to detect combining characters
- Stretch goal: Switch document encoding to UTF-8 for memory compactness and support multi-byte-aware character indexing.