mirror of
https://ghproxy.net/https://github.com/CaptainCore/captaincore.git
synced 2025-10-03 23:47:30 +08:00
🚀 RELEASE: Version 0.13.0
This commit is contained in:
parent
41027a12ad
commit
433af897cb
3 changed files with 13 additions and 2 deletions
11
changelog.md
11
changelog.md
|
@ -1,5 +1,16 @@
|
|||
# Changelog
|
||||
|
||||
## [0.13.0] - 2021-11-20
|
||||
### Added
|
||||
- Commands `quicksave list`, `quicksave list-generate`, `quicksave list-missing`, `quicksave get` and `quicksave get-generate` which power the improved Quicksave GUI.
|
||||
- Command `backup list-missing` to generate missing backup responses for GUI.
|
||||
|
||||
### Changed
|
||||
- Command `account sync` has been restored with compatibility fixes for Cobra
|
||||
- Improved `monitor` server caching handling
|
||||
- Improved remote script `update` with new WP-CLI `--exec` parameter to quickly pass `define( 'WP_ADMIN', true );` before running updates.
|
||||
- Massive [quicksave performance improvements](https://captaincore.io/quicksave-performance-improvements/). Generating quicksaves will now also create individual `commit-<hash>.json` files and a `list.json`. Those cached responses are used to power a very fast GUI.
|
||||
|
||||
## [0.12.0] - 2021-07-04
|
||||
### Added
|
||||
- Command `server`. Previously was a separate project named CaptainCore Dispatch which has now been merged here.
|
||||
|
|
|
@ -11,7 +11,7 @@ var versionCmd = &cobra.Command{
|
|||
Use: "version",
|
||||
Short: "Display version info",
|
||||
Run: func(cmd *cobra.Command, args []string) {
|
||||
version := "captaincore 0.12.0\n- go version: " + runtime.Version() + "\n- platform: " + runtime.GOOS + "/" + runtime.GOARCH
|
||||
version := "captaincore 0.13.0\n- go version: " + runtime.Version() + "\n- platform: " + runtime.GOOS + "/" + runtime.GOARCH
|
||||
fmt.Println(version)
|
||||
},
|
||||
}
|
||||
|
|
|
@ -74,7 +74,7 @@ a:hover { opacity: 0.75 }
|
|||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h2><a href="https://captaincore.io"><img src="assets/logo-192x192.png" style="width:32px; filter: invert(100%) grayscale(100%) brightness(100); top: 7px; position: relative; margin-right: 4px;">CaptainCore</a><small style="font-size: .57em;">v0.12.0</small></h2>
|
||||
<h2><a href="https://captaincore.io"><img src="assets/logo-192x192.png" style="width:32px; filter: invert(100%) grayscale(100%) brightness(100); top: 7px; position: relative; margin-right: 4px;">CaptainCore</a><small style="font-size: .57em;">v0.13.0</small></h2>
|
||||
<p><a target="_blank" href="https://docs.captaincore.io">Docs 📖</a><a target="_blank" href="https://captaincore.io/development-updates/">Development Updates 🔔</a></p>
|
||||
<p><a class="github-button" href="https://github.com/sponsors/austinginder" data-icon="octicon-heart" data-size="large" aria-label="Sponsor @austinginder on GitHub">Sponsor via Github</a></p>
|
||||
</body>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue