CC: Tweaked 1.101 for MC 1.16.x, 1.18.x and 1.19.x #1198
SquidDev
started this conversation in
Announcements
Replies: 1 comment 3 replies
-
Oh, one thing I forgot to mention: this will be the last feature release for 1.16 and 1.18. I'll still fix any major bugs for the next few months (and I dare say there will be some), but want to focus development time on 1.19 for now. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
So funny story, back in March of this year my employer went bankrupt. This didn't, as one might expect, leave me out of a job - I was sort of in a quasi-employment; paid, just with nothing to do. And so, amidst searching for a new job, I fell off the wagon of my retirement and started working on some CC: Tweaked features again.
While most of my hacking away hasn't been very productive, there have been some useful things come out of it. This release contains the last of this work, which is just a general cleanup to remove some of tech debt which has accumulated over the years.
That said, this release does have some useful features!
file_transfer
eventBack in 1.97.0 we added support for uploading files onto a computer by dragging and dropping them from your file browser. This wrote directly to the computer file system, bypassing CraftOS entirely.
We now instead queue a
file_transfer
event, which contains the list of files to upload.The shell listens to this event, so if you're not running any other program, you can just drop the file and the UX should be largely the same.
There's also an
import
program which has the same functionality, if you're running a shell which doesn't support file transfers.No more hidden files!
Shell autocompletion has always been a bit irritating, as it decides to complete hidden files before anything else. @IvoLeal72 has added a
shell.autocomplete_hidden
setting (defaults to true) which only completes hidden files if you type a.
!As always, thanks to everyone who has contributed to this release, be that with code, feedback or bug reports!
Beta Was this translation helpful? Give feedback.
All reactions