mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2025-04-10 04:36:40 +00:00
Bump CC:T to 1.101.0
These version numbers are very hard to type correctly.
This commit is contained in:
parent
1acb8441ec
commit
6b93fafc46
@ -5,7 +5,7 @@ kotlin.stdlib.default.dependency=false
|
||||
kotlin.jvm.target.validation.mode=error
|
||||
|
||||
# Mod properties
|
||||
modVersion=1.100.10
|
||||
modVersion=1.101.0
|
||||
|
||||
# Minecraft properties: We want to configure this here so we can read it in settings.gradle
|
||||
mcVersion=1.16.5
|
||||
|
@ -372,8 +372,7 @@ public final class CommandComputerCraft
|
||||
private static final List<AggregatedMetric> DEFAULT_FIELDS = Arrays.asList(
|
||||
new AggregatedMetric( Metrics.COMPUTER_TASKS, Aggregate.COUNT ),
|
||||
new AggregatedMetric( Metrics.COMPUTER_TASKS, Aggregate.NONE ),
|
||||
new AggregatedMetric( Metrics.COMPUTER_TASKS, Aggregate.AVG ),
|
||||
new AggregatedMetric( Metrics.COMPUTER_TASKS, Aggregate.MAX )
|
||||
new AggregatedMetric( Metrics.COMPUTER_TASKS, Aggregate.AVG )
|
||||
);
|
||||
|
||||
private static int displayTimings( CommandSource source, AggregatedMetric sortField, List<AggregatedMetric> fields ) throws CommandSyntaxException
|
||||
|
@ -1,10 +1,28 @@
|
||||
# New features in CC: Tweaked 1.101.0
|
||||
|
||||
* Improvee Dutch translation (Quezler)
|
||||
* Better reporting of fatal computer timeouts in the server log.
|
||||
* Convert detail providers into a registry, allowing peripheral mods to read item/block details.
|
||||
* Redesign the metrics system. `/computercraft track` now allows computing aggregates (total, max, avg) on any metric, not just computer time.
|
||||
* File drag-and-drop now queues a `file_transfer` event on the computer. The
|
||||
built-in shell or the `import` program must now be running to upload files.
|
||||
* The `peripheral` now searches for remote peripherals using any peripheral with the `peripheral_hub` type, not just wired modems.
|
||||
* Add `include_hidden` option to `fs.complete`, which can be used to prevent hidden files showing up in autocomplete results. (IvoLeal72)
|
||||
* Add `shell.autocomplete_hidden` setting. (IvoLeal72)
|
||||
|
||||
Several bug fixes:
|
||||
* Prevent `edit`'s "Run" command scrolling the terminal output on smaller
|
||||
screens.
|
||||
* Remove some non-determinism in computing item's `nbt` hash.
|
||||
* Don't set the `Origin` header on outgoing websocket requests.
|
||||
|
||||
# New features in CC: Tweaked 1.100.10
|
||||
|
||||
* Mention WAV support in speaker help (MCJack123).
|
||||
* Add http programs to the path, even when http is not enabled.
|
||||
|
||||
Several bug fixes:
|
||||
* Fix example in textutils.pagedTabulate docs (IvoLeal72).
|
||||
* Fix example in `textutils.pagedTabulate` docs (IvoLeal72).
|
||||
* Fix help program treating the terminal one line longer than it was.
|
||||
* Send block updates to client when turtle moves (roland-a).
|
||||
|
||||
|
@ -1,11 +1,19 @@
|
||||
New features in CC: Tweaked 1.100.10
|
||||
New features in CC: Tweaked 1.101.0
|
||||
|
||||
* Mention WAV support in speaker help (MCJack123).
|
||||
* Add http programs to the path, even when http is not enabled.
|
||||
* Improvee Dutch translation (Quezler)
|
||||
* Better reporting of fatal computer timeouts in the server log.
|
||||
* Convert detail providers into a registry, allowing peripheral mods to read item/block details.
|
||||
* Redesign the metrics system. `/computercraft track` now allows computing aggregates (total, max, avg) on any metric, not just computer time.
|
||||
* File drag-and-drop now queues a `file_transfer` event on the computer. The
|
||||
built-in shell or the `import` program must now be running to upload files.
|
||||
* The `peripheral` now searches for remote peripherals using any peripheral with the `peripheral_hub` type, not just wired modems.
|
||||
* Add `include_hidden` option to `fs.complete`, which can be used to prevent hidden files showing up in autocomplete results. (IvoLeal72)
|
||||
* Add `shell.autocomplete_hidden` setting. (IvoLeal72)
|
||||
|
||||
Several bug fixes:
|
||||
* Fix example in textutils.pagedTabulate docs (IvoLeal72).
|
||||
* Fix help program treating the terminal one line longer than it was.
|
||||
* Send block updates to client when turtle moves (roland-a).
|
||||
* Prevent `edit`'s "Run" command scrolling the terminal output on smaller
|
||||
screens.
|
||||
* Remove some non-determinism in computing item's `nbt` hash.
|
||||
* Don't set the `Origin` header on outgoing websocket requests.
|
||||
|
||||
Type "help changelog" to see the full version history.
|
||||
|
Loading…
x
Reference in New Issue
Block a user