Skip to content

Commit 433af89

Browse files
committed
πŸš€ RELEASE: Version 0.13.0
1 parent 41027a1 commit 433af89

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

β€Žchangelog.mdβ€Ž

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## [0.13.0] - 2021-11-20
4+
### Added
5+
- Commands `quicksave list`, `quicksave list-generate`, `quicksave list-missing`, `quicksave get` and `quicksave get-generate` which power the improved Quicksave GUI.
6+
- Command `backup list-missing` to generate missing backup responses for GUI.
7+
8+
### Changed
9+
- Command `account sync` has been restored with compatibility fixes for Cobra
10+
- Improved `monitor` server caching handling
11+
- Improved remote script `update` with new WP-CLI `--exec` parameter to quickly pass `define( 'WP_ADMIN', true );` before running updates.
12+
- 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.
13+
314
## [0.12.0] - 2021-07-04
415
### Added
516
- Command `server`. Previously was a separate project named CaptainCore Dispatch which has now been merged here.

β€Žcmd/version.goβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ var versionCmd = &cobra.Command{
1111
Use: "version",
1212
Short: "Display version info",
1313
Run: func(cmd *cobra.Command, args []string) {
14-
version := "captaincore 0.12.0\n- go version: " + runtime.Version() + "\n- platform: " + runtime.GOOS + "/" + runtime.GOARCH
14+
version := "captaincore 0.13.0\n- go version: " + runtime.Version() + "\n- platform: " + runtime.GOOS + "/" + runtime.GOARCH
1515
fmt.Println(version)
1616
},
1717
}

β€Žserver/server.goβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ a:hover { opacity: 0.75 }
7474
</style>
7575
</head>
7676
<body>
77-
<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>
77+
<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>
7878
<p><a target="_blank" href="https://docs.captaincore.io">Docs πŸ“–</a><a target="_blank" href="https://captaincore.io/development-updates/">Development Updates πŸ””</a></p>
7979
<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>
8080
</body>

0 commit comments

Comments
Β (0)