diff --git a/.SpaceVim.d/autoload/SpaceVim/dev/releases.vim b/.SpaceVim.d/autoload/SpaceVim/dev/releases.vim index fb65108d4..4ac988fa5 100644 --- a/.SpaceVim.d/autoload/SpaceVim/dev/releases.vim +++ b/.SpaceVim.d/autoload/SpaceVim/dev/releases.vim @@ -16,17 +16,17 @@ scriptencoding utf-8 " 2018-09-26 v0.9.0 is released at https://github.com/SpaceVim/SpaceVim/pull/2203 " 2018-12-25 v1.0.0 is released at https://github.com/SpaceVim/SpaceVim/pull/2377 " 2019-04-08 v1.1.0 is released at https://github.com/SpaceVim/SpaceVim/pull/2726 -" 2019-07-17 v1.2.0 is released at https://github.com/SpaceVim/SpaceVim/pull/2974 +" 2019-07-17 v1.2.0 is released at https://github.com/SpaceVim/SpaceVim/pull/2947 " 这是所有 ID 小于上一次 release ID,并且还未被合并的 ID,在新的release " 之后,需要把已经合并了的删除! let s:unmerged_prs_since_last_release = [2014, 2218, 2232, 2242, 2307, \ 2390, 2396, 2407, 2446, 2447, 2541, 2627, 2655, 2664, - \ 2952, 2954, 2955, 2953, 2961, 2956, 2965, 2967, 2970, - \ 2732, 2950, 2971] + \ 2732,] " these options can be changed when going to release new tag -let s:last_release_number = 2974 -let s:current_release_number = -1 +let s:last_release_number = 2947 +" 当要新建一个 release 时,修改为该release 的ID,通常为 -1。 +let s:current_release_number = 3213 " this is a list of pull request number which > last_release_number and < " current_release_number " next time when I release v1.1.0, only need to update following option @@ -37,7 +37,7 @@ let s:unmerged_prs_since_current_release = [] " exclude prs in unmerged_prs_since_current_release function! SpaceVim#dev#releases#get_unmerged_prs() abort - return copy(s:unmerged_prs_since_last_release) + return deepcopy(s:unmerged_prs_since_last_release) endfunction function! SpaceVim#dev#releases#last_release_number() abort @@ -82,7 +82,7 @@ endfunction function! s:get_list_of_PRs() abort let prs = [] - for i in range(1, 10) + for i in range(1, 20) let issues = s:list_closed_prs('SpaceVim','SpaceVim', i) call extend(prs, \ filter(issues, @@ -90,9 +90,11 @@ function! s:get_list_of_PRs() abort \ . s:last_release_number \ . " && v:val['number'] < " \ . s:current_release_number - \ . ' && !empty(get(v:val, "merged_at", ""))' \ . " && index(s:unmerged_prs_since_current_release, v:val['number']) == -1 " \ )) + " remove + " !empty(get(v:val, 'merged_at', '')) + " @ todo add a way to check if the pr is merged endfor for i in s:unmerged_prs_since_last_release let pr = github#api#issues#Get_issue('SpaceVim', 'SpaceVim', i) diff --git a/.SpaceVim.d/init.vim b/.SpaceVim.d/init.vim index bae31902f..047b8fe66 100644 --- a/.SpaceVim.d/init.vim +++ b/.SpaceVim.d/init.vim @@ -32,4 +32,5 @@ call SpaceVim#plugins#a#set_config_name('.projections.json') command! -nargs=1 IssueEdit call SpaceVim#dev#issuemanager#edit() command! -nargs=1 PullCreate call SpaceVim#dev#pull#create() command! -nargs=1 PullMerge call SpaceVim#dev#pull#merge() +command! ReleaseSpaceVim call SpaceVim#dev#releases#open() diff --git a/README.cn.md b/README.cn.md index 00a54f731..22a4755af 100644 --- a/README.cn.md +++ b/README.cn.md @@ -18,7 +18,7 @@ Github: 码云: -![welcome-page](https://user-images.githubusercontent.com/13142418/61462920-0bd9d000-a9a6-11e9-8e1f-c70d6ec6ca1e.png) +![welcome-page](https://user-images.githubusercontent.com/13142418/68079142-904e4280-fe1f-11e9-993e-b834ea3d39ea.png) 推荐阅读: diff --git a/README.md b/README.md index 8958843a4..2d7abd04b 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ [![Build Status](https://travis-ci.org/SpaceVim/SpaceVim.svg?branch=master)](https://travis-ci.org/SpaceVim/SpaceVim) [![Build status](https://ci.appveyor.com/api/projects/status/eh3t5oph70abp665/branch/master?svg=true)](https://ci.appveyor.com/project/wsdjeg/spacevim/branch/master) [![codecov](https://codecov.io/gh/SpaceVim/SpaceVim/branch/master/graph/badge.svg)](https://codecov.io/gh/SpaceVim/SpaceVim/branch/master) -![Version](https://img.shields.io/badge/version-1.3.0--dev-8700FF.svg) +![Version](https://img.shields.io/badge/version-1.3.0-8700FF.svg) [![GPLv3 License](https://img.shields.io/badge/license-GPLv3-blue.svg)](LICENSE) [![Doc](https://img.shields.io/badge/doc-%3Ah%20SpaceVim-orange.svg)](doc/SpaceVim.txt) @@ -21,9 +21,9 @@ SpaceVim is a community-driven modular Vim distribution. It manages collections of plugins in layers, which help to collect related packages together to provide IDE-like features. SpaceVim is not just a vimrc but an ultimate Vim configuration, It contains many built-in features. -![welcome-page](https://user-images.githubusercontent.com/13142418/61462920-0bd9d000-a9a6-11e9-8e1f-c70d6ec6ca1e.png) +![welcome-page](https://user-images.githubusercontent.com/13142418/68079142-904e4280-fe1f-11e9-993e-b834ea3d39ea.png) -The last release is v1.2.0, check out [following-HEAD](https://github.com/SpaceVim/SpaceVim/wiki/Following-HEAD) page for what happened since last release. +The last release is v1.3.0, check out [following-HEAD](https://github.com/SpaceVim/SpaceVim/wiki/Following-HEAD) page for what happened since last release. ## Instructions diff --git a/autoload/SpaceVim.vim b/autoload/SpaceVim.vim index fdc60854e..abbc1fec1 100644 --- a/autoload/SpaceVim.vim +++ b/autoload/SpaceVim.vim @@ -43,7 +43,7 @@ scriptencoding utf-8 "" " Version of SpaceVim , this value can not be changed. -let g:spacevim_version = '1.3.0-dev' +let g:spacevim_version = '1.3.0' lockvar g:spacevim_version "" diff --git a/docs/_config.yml b/docs/_config.yml index d5538e3f7..3d471601b 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -42,4 +42,4 @@ defaults: - scope: path: "" values: - image: https://user-images.githubusercontent.com/13142418/61462920-0bd9d000-a9a6-11e9-8e1f-c70d6ec6ca1e.png + image: https://user-images.githubusercontent.com/13142418/68079142-904e4280-fe1f-11e9-993e-b834ea3d39ea.png diff --git a/docs/_posts/2019-11-01-SpaceVim-release-v1.3.0.md b/docs/_posts/2019-11-01-SpaceVim-release-v1.3.0.md new file mode 100644 index 000000000..57c77339c --- /dev/null +++ b/docs/_posts/2019-11-01-SpaceVim-release-v1.3.0.md @@ -0,0 +1,235 @@ +--- +title: SpaceVim release v1.3.0 +categories: [changelog, blog] +excerpt: "SpaceVim release v1.3.0" +type: NewsArticle +image: https://user-images.githubusercontent.com/13142418/68079142-904e4280-fe1f-11e9-993e-b834ea3d39ea.png +commentsID: "SpaceVim release v1.3.0" +comments: true +--- + +# [Changelogs](../development#changelog) > SpaceVim release v1.3.0 + + + +- [What's New](#whats-new) + - [New layers](#new-layers) + - [New features](#new-features) + - [Improvements](#improvements) +- [Pull requests](#pull-requests) + - [New Features](#new-features-1) + - [Feature Changes](#feature-changes) + - [Bug Fixs](#bug-fixs) + - [Unmarked PRs](#unmarked-prs) + + + + +The last release is v1.2.0, After three months development. +The v1.3.0 has been released. So let's take a look at what happened since last relase. + +![v1.3.0](https://user-images.githubusercontent.com/13142418/61462920-0bd9d000-a9a6-11e9-8e1f-c70d6ec6ca1e.png) + +- [Quick start guide](../quick-start-guide/): installation, configuration, and resources of learning SpaceVim +- [documentation](../documentation/): the primary official document of SpaceVim +- [available layers](../layers/): a list of available layers which can be used in SpaceVim + +## What's New + +### New layers + +Since last release, we have added 10 programming language layer: + +- [lang#gosu](../layers/lang/gosu/) +- [lang#wolfram](../layers/lang/wolfram/) +- [lang#chapel](../layers/lang/chapel/) +- [lang#foxpro](../layers/lang/foxpro/) +- [lang#idris](../layers/lang/idris/) +- [lang#batch](../layers/lang/batch/) +- [lang#io](../layers/lang/io/) +- [lang#j](../layers/lang/j/) +- [lang#goby](../layers/lang/goby/) +- [lang#assembly](../layers/lang/assembly/) + +we also add some function layers: + +- [CtrlSpace](../layers/ctrlspace/) + + +### New features + +The following layers have been improved: + +- [leaderf](../layers/leaderf/) + +### Improvements + +- improve the `enable` option when load layer. + +```toml +[[layers]] + name = "denite" + enable = "has('python3')" +``` + +- autoscroll the buffer in REPL window. + +the REPL buffer will be scrolled automatically. + +## Pull requests + +here is the list of all the pull requests since last release: + +### New Features + +- Add key binding to close denite in filter buffer [#3206](https://github.com/SpaceVim/SpaceVim/pull/3206) +- Add CtrlSpace to layers.md [#3182](https://github.com/SpaceVim/SpaceVim/pull/3182) +- Add support for fuzzy find unicode [#3168](https://github.com/SpaceVim/SpaceVim/pull/3168) +- Add key binding to close flygrep [#3166](https://github.com/SpaceVim/SpaceVim/pull/3166) +- Add npm support for building 2 plugins [#3154](https://github.com/SpaceVim/SpaceVim/pull/3154) +- Add test for api [#3135](https://github.com/SpaceVim/SpaceVim/pull/3135) +- Add vim#window api [#3133](https://github.com/SpaceVim/SpaceVim/pull/3133) +- Add lua_foldmethod as lang#lua layer option [#3123](https://github.com/SpaceVim/SpaceVim/pull/3123) +- Add lang#wolfram layer [#3122](https://github.com/SpaceVim/SpaceVim/pull/3122) +- Add lang#chapel layer [#3118](https://github.com/SpaceVim/SpaceVim/pull/3118) +- add: add two new align symbols: # % [#3112](https://github.com/SpaceVim/SpaceVim/pull/3112) +- Add lsp support for crystal [#3108](https://github.com/SpaceVim/SpaceVim/pull/3108) +- Add lang#gosu layer [#3106](https://github.com/SpaceVim/SpaceVim/pull/3106) +- Add option to show hidden files in filetree [#3103](https://github.com/SpaceVim/SpaceVim/pull/3103) +- Add lang#foxpro layer [#3093](https://github.com/SpaceVim/SpaceVim/pull/3093) +- Add command to create pull request [#3091](https://github.com/SpaceVim/SpaceVim/pull/3091) +- Add keybinding for resize defx [#3084](https://github.com/SpaceVim/SpaceVim/pull/3084) +- Add lang#idris layer [#3081](https://github.com/SpaceVim/SpaceVim/pull/3081) +- Add lang#batch layer [#3079](https://github.com/SpaceVim/SpaceVim/pull/3079) +- Add lang#io layer [#3078](https://github.com/SpaceVim/SpaceVim/pull/3078) +- Add a new layer: CtrlSpace (plugin) [#3075](https://github.com/SpaceVim/SpaceVim/pull/3075) +- Add lang#goby layer [#3055](https://github.com/SpaceVim/SpaceVim/pull/3055) +- Add ~ keybinding for iedit [#3046](https://github.com/SpaceVim/SpaceVim/pull/3046) +- add fname_to_path function [#3043](https://github.com/SpaceVim/SpaceVim/pull/3043) +- add fish script support [#3033](https://github.com/SpaceVim/SpaceVim/pull/3033) +- Add: add new layer lang#j [#3032](https://github.com/SpaceVim/SpaceVim/pull/3032) +- Add vertical split support [#2999](https://github.com/SpaceVim/SpaceVim/pull/2999) +- Add lang#assembly layer [#2979](https://github.com/SpaceVim/SpaceVim/pull/2979) +- Add debug support for powershell [#2961](https://github.com/SpaceVim/SpaceVim/pull/2961) +- Add additional bindings from coc.nvim for c layer [#2967](https://github.com/SpaceVim/SpaceVim/pull/2967) +- Add Leader f f to fzf layer [#2971](https://github.com/SpaceVim/SpaceVim/pull/2971) + + +### Feature Changes + +- change lang#plantuml add a plugin to preivew uml in brower and save pics in disk [#3180](https://github.com/SpaceVim/SpaceVim/pull/3180) +- Change rust.vim [#3173](https://github.com/SpaceVim/SpaceVim/pull/3173) +- change lang#java mapping-gd [#3167](https://github.com/SpaceVim/SpaceVim/pull/3167) +- change lang#java mapping-gd, add a new mapping [#3164](https://github.com/SpaceVim/SpaceVim/pull/3164) +- Change: rename tags layer to gtags layer [#3030](https://github.com/SpaceVim/SpaceVim/pull/3030) +- Change: fix csharp layer and update doc (#2935). [#3007](https://github.com/SpaceVim/SpaceVim/pull/3007) +- Change plugin list plugin [#2446](https://github.com/SpaceVim/SpaceVim/pull/2446) + + +### Bug Fixs + +- Fix split string function [#3201](https://github.com/SpaceVim/SpaceVim/pull/3201) +- fix [SPC]xa[SPC] aligns the entire paragraph instead of selection [#3191](https://github.com/SpaceVim/SpaceVim/pull/3191) +- Fix invalid fileformat of some files (Windows instead Unix). [#3190](https://github.com/SpaceVim/SpaceVim/pull/3190) +- Fix code runner encoding [#3184](https://github.com/SpaceVim/SpaceVim/pull/3184) +- Fix leaderf mru support [#3171](https://github.com/SpaceVim/SpaceVim/pull/3171) +- Fix job api [#3165](https://github.com/SpaceVim/SpaceVim/pull/3165) +- Fixed typo [#3162](https://github.com/SpaceVim/SpaceVim/pull/3162) +- fix [SPC]bt for defx [#3160](https://github.com/SpaceVim/SpaceVim/pull/3160) +- Fix typo and change wording [#3158](https://github.com/SpaceVim/SpaceVim/pull/3158) +- Fix typo [#3155](https://github.com/SpaceVim/SpaceVim/pull/3155) +- fixed a typo [#3151](https://github.com/SpaceVim/SpaceVim/pull/3151) +- fix completion for :OpenProject, close #3145 [#3146](https://github.com/SpaceVim/SpaceVim/pull/3146) +- Fix lint build vim [#3144](https://github.com/SpaceVim/SpaceVim/pull/3144) +- Fix typo in documentation [#3142](https://github.com/SpaceVim/SpaceVim/pull/3142) +- Fix repl cursor position [#3139](https://github.com/SpaceVim/SpaceVim/pull/3139) +- Fix lint [#3124](https://github.com/SpaceVim/SpaceVim/pull/3124) +- Fix floating windows api [#3119](https://github.com/SpaceVim/SpaceVim/pull/3119) +- Fix title of quickfix statusline [#3113](https://github.com/SpaceVim/SpaceVim/pull/3113) +- Fix NeoSolarized [#3109](https://github.com/SpaceVim/SpaceVim/pull/3109) +- Fix bs in insert mode [#3089](https://github.com/SpaceVim/SpaceVim/pull/3089) +- Fix: add ':nohlsearch' feature to match the documentation. [#3085](https://github.com/SpaceVim/SpaceVim/pull/3085) +- Fix typo in PHP layer documentation [#3080](https://github.com/SpaceVim/SpaceVim/pull/3080) +- Fix search background plugin [#3070](https://github.com/SpaceVim/SpaceVim/pull/3070) +- Fixed typo 'yarked' to 'yanked' [#3059](https://github.com/SpaceVim/SpaceVim/pull/3059) +- Fix keybindings for GitGutter Hunks [#3049](https://github.com/SpaceVim/SpaceVim/pull/3049) +- Fix install script [#3048](https://github.com/SpaceVim/SpaceVim/pull/3048) +- Fixed output error where open file by flyGrep [#3041](https://github.com/SpaceVim/SpaceVim/pull/3041) +- Fix #2897 [#3021](https://github.com/SpaceVim/SpaceVim/pull/3021) +- Fix: fugitive blame [#3006](https://github.com/SpaceVim/SpaceVim/pull/3006) +- fix shortcuts/docs about marking spelling [#3003](https://github.com/SpaceVim/SpaceVim/pull/3003) +- fix typos [#3000](https://github.com/SpaceVim/SpaceVim/pull/3000) +- Fix typo [#2989](https://github.com/SpaceVim/SpaceVim/pull/2989) +- Fix flygrep and vim-todo error [#2983](https://github.com/SpaceVim/SpaceVim/pull/2983) +- Fix matchaddpos api func [#2982](https://github.com/SpaceVim/SpaceVim/pull/2982) +- fix api func matchaddpos [#2977](https://github.com/SpaceVim/SpaceVim/pull/2977) +- fix a map bug cscope [#2952](https://github.com/SpaceVim/SpaceVim/pull/2952) +- Fix: Issue #2948 function call update from deoplete#mappings#smart_close_p… [#2954](https://github.com/SpaceVim/SpaceVim/pull/2954) +- Fix errors in Go layer shortcuts in the documentation [#2955](https://github.com/SpaceVim/SpaceVim/pull/2955) +- fix a map bug cscope [#2953](https://github.com/SpaceVim/SpaceVim/pull/2953) +- Fix typo [#2965](https://github.com/SpaceVim/SpaceVim/pull/2965) +- Fix typo in edit.md [#2970](https://github.com/SpaceVim/SpaceVim/pull/2970) + + +### Unmarked PRs + +- 'enable' of layer configuration supports expression [#3211](https://github.com/SpaceVim/SpaceVim/pull/3211) +- Update language server docs for elm [#3209](https://github.com/SpaceVim/SpaceVim/pull/3209) +- Update elixir layer [#3205](https://github.com/SpaceVim/SpaceVim/pull/3205) +- Support search key with prefix [#3193](https://github.com/SpaceVim/SpaceVim/pull/3193) +- Improve window swapping [#3192](https://github.com/SpaceVim/SpaceVim/pull/3192) +- Improve todo manager [#3185](https://github.com/SpaceVim/SpaceVim/pull/3185) +- Improve windisk info [#3183](https://github.com/SpaceVim/SpaceVim/pull/3183) +- Update chinese community [#3176](https://github.com/SpaceVim/SpaceVim/pull/3176) +- Use deoplete-plugins/deoplete-dictionary instead [#3172](https://github.com/SpaceVim/SpaceVim/pull/3172) +- move [SPC]iu from edit layer to unite layer, and add the same mapping… [#3169](https://github.com/SpaceVim/SpaceVim/pull/3169) +- Update links [#3152](https://github.com/SpaceVim/SpaceVim/pull/3152) +- split feed xml [#3149](https://github.com/SpaceVim/SpaceVim/pull/3149) +- Improve lang#scala layer [#3148](https://github.com/SpaceVim/SpaceVim/pull/3148) +- Buffer api [#3136](https://github.com/SpaceVim/SpaceVim/pull/3136) +- Improve autoscroll feature [#3134](https://github.com/SpaceVim/SpaceVim/pull/3134) +- Scheme guile support [#3127](https://github.com/SpaceVim/SpaceVim/pull/3127) +- Improve the vim api [#3126](https://github.com/SpaceVim/SpaceVim/pull/3126) +- Autoscroll runner and repl windows [#3125](https://github.com/SpaceVim/SpaceVim/pull/3125) +- Update website [#3121](https://github.com/SpaceVim/SpaceVim/pull/3121) +- Improve spacevim.org [#3117](https://github.com/SpaceVim/SpaceVim/pull/3117) +- Doc: fix some typos. [#3116](https://github.com/SpaceVim/SpaceVim/pull/3116) +- Improve doc [#3115](https://github.com/SpaceVim/SpaceVim/pull/3115) +- Improve leaderf layer [#3114](https://github.com/SpaceVim/SpaceVim/pull/3114) +- Preserve Git Hunks while using Github Layer [#3105](https://github.com/SpaceVim/SpaceVim/pull/3105) +- Improve autocomplete layer [#3099](https://github.com/SpaceVim/SpaceVim/pull/3099) +- Improve the statusline for quickfix buffer [#3098](https://github.com/SpaceVim/SpaceVim/pull/3098) +- flygrep replace mode [#3090](https://github.com/SpaceVim/SpaceVim/pull/3090) +- Pythonenable typeinfo [#3088](https://github.com/SpaceVim/SpaceVim/pull/3088) +- Maven [#3087](https://github.com/SpaceVim/SpaceVim/pull/3087) +- Disable issue of github and gitee [#3086](https://github.com/SpaceVim/SpaceVim/pull/3086) +- Colorscheme spacevim [#3074](https://github.com/SpaceVim/SpaceVim/pull/3074) +- Remove listchars setting in guide [#3071](https://github.com/SpaceVim/SpaceVim/pull/3071) +- Set search tools for Grepper [#3069](https://github.com/SpaceVim/SpaceVim/pull/3069) +- Update crystal layer [#3067](https://github.com/SpaceVim/SpaceVim/pull/3067) +- Denite fix [#3066](https://github.com/SpaceVim/SpaceVim/pull/3066) +- Refactor lua initialization [#3065](https://github.com/SpaceVim/SpaceVim/pull/3065) +- deoplete and denite backward compatibility [#3058](https://github.com/SpaceVim/SpaceVim/pull/3058) +- Update hint desc [#3050](https://github.com/SpaceVim/SpaceVim/pull/3050) +- detach iedit plugin [#3047](https://github.com/SpaceVim/SpaceVim/pull/3047) +- urlescape spaces in font names [#3042](https://github.com/SpaceVim/SpaceVim/pull/3042) +- Googlegroups [#3040](https://github.com/SpaceVim/SpaceVim/pull/3040) +- Naming rules [#3037](https://github.com/SpaceVim/SpaceVim/pull/3037) +- Python file head [#3036](https://github.com/SpaceVim/SpaceVim/pull/3036) +- Improve file head support [#3034](https://github.com/SpaceVim/SpaceVim/pull/3034) +- Update cscope layer [#3023](https://github.com/SpaceVim/SpaceVim/pull/3023) +- Ctrlp message [#3022](https://github.com/SpaceVim/SpaceVim/pull/3022) +- Improve: make ctrlp layer works better [#3015](https://github.com/SpaceVim/SpaceVim/pull/3015) +- plugin install failed to call _append_buf_line in WIN10 [#3011](https://github.com/SpaceVim/SpaceVim/pull/3011) +- Update manager.vim [#3010](https://github.com/SpaceVim/SpaceVim/pull/3010) +- Website: Add git-plugin documentation to git layer [#3005](https://github.com/SpaceVim/SpaceVim/pull/3005) +- Comment code block in markdown [#2988](https://github.com/SpaceVim/SpaceVim/pull/2988) +- Make ruby runner support stdin [#2986](https://github.com/SpaceVim/SpaceVim/pull/2986) +- close #2367 [#2978](https://github.com/SpaceVim/SpaceVim/pull/2978) +- Type: change works to work [#2975](https://github.com/SpaceVim/SpaceVim/pull/2975) +- Update erlang layer code owner [#2218](https://github.com/SpaceVim/SpaceVim/pull/2218) +- Introduce lang#nix layer [#2541](https://github.com/SpaceVim/SpaceVim/pull/2541) +- Version [#2956](https://github.com/SpaceVim/SpaceVim/pull/2956) +- Update version to v1.2.0-dev [#2732](https://github.com/SpaceVim/SpaceVim/pull/2732) +- On Windows, send CTRL+r if '+' register is not given [#2950](https://github.com/SpaceVim/SpaceVim/pull/2950) + diff --git a/docs/cn/index.md b/docs/cn/index.md index 361df46d9..8782ed300 100644 --- a/docs/cn/index.md +++ b/docs/cn/index.md @@ -8,10 +8,10 @@ lang: zh [![Build Status](https://travis-ci.org/SpaceVim/SpaceVim.svg?branch=dev)](https://travis-ci.org/SpaceVim/SpaceVim) [![Build status](https://ci.appveyor.com/api/projects/status/eh3t5oph70abp665/branch/dev?svg=true)](https://ci.appveyor.com/project/wsdjeg/spacevim/branch/master) [![codecov](https://codecov.io/gh/SpaceVim/SpaceVim/branch/dev/graph/badge.svg)](https://codecov.io/gh/SpaceVim/SpaceVim/branch/master) -[![Version](https://img.shields.io/badge/version-1.1.0--dev-8700FF.svg)](https://github.com/SpaceVim/SpaceVim/releases) +[![Version](https://img.shields.io/badge/version-1.3.0--dev-8700FF.svg)](https://github.com/SpaceVim/SpaceVim/releases) [![GPLv3 License](https://img.shields.io/badge/license-GPLv3-blue.svg)](https://github.com/SpaceVim/SpaceVim/blob/master/LICENSE) -![welcome-page](https://user-images.githubusercontent.com/13142418/61462920-0bd9d000-a9a6-11e9-8e1f-c70d6ec6ca1e.png) +![welcome-page](https://user-images.githubusercontent.com/13142418/68079142-904e4280-fe1f-11e9-993e-b834ea3d39ea.png) # SpaceVim - 模块化的 Vim IDE diff --git a/docs/cn/install.cmd b/docs/cn/install.cmd index 8ff8f0a48..99dea3d5e 100644 --- a/docs/cn/install.cmd +++ b/docs/cn/install.cmd @@ -11,7 +11,7 @@ echo " \______/| ##____/ \_______/\_______/\_______/ \_/ |__|__/ |__/ echo " | ## " echo " | ## " echo " |__/ " -echo " 版本 : 1.2.0 中文官网 : https://spacevim.org/cn/ " +echo " 版本 : 1.3.0 中文官网 : https://spacevim.org/cn/ " Push-Location ~ diff --git a/docs/cn/install.sh b/docs/cn/install.sh index 1f8da1811..966b2c8d3 100755 --- a/docs/cn/install.sh +++ b/docs/cn/install.sh @@ -84,7 +84,7 @@ On_IWhite='\033[0;107m' # White # }}} # version -Version='1.2.0' +Version='1.3.0' #System name System="$(uname -s)" @@ -453,4 +453,4 @@ main () { main $@ -# vim:set foldenable foldmethod=marker: +# vim:set nofoldenable foldmethod=marker: diff --git a/docs/cn/roadmap.md b/docs/cn/roadmap.md index a9113caf2..f913cb3f1 100644 --- a/docs/cn/roadmap.md +++ b/docs/cn/roadmap.md @@ -11,7 +11,7 @@ SpaceVim 的设计蓝图和[里程碑](https://github.com/SpaceVim/SpaceVim/mile - [下一个版本](#下一个版本) - - [v1.1.0](#v110) + - [v1.4.0](#v140) - [版本说明](#版本说明) - [Completed](#completed) - [v0.1.0](#v010) @@ -25,12 +25,15 @@ SpaceVim 的设计蓝图和[里程碑](https://github.com/SpaceVim/SpaceVim/mile - [v0.8.0](#v080) - [v0.9.0](#v090) - [v1.0.0](#v100) + - [v1.1.0](#v110) + - [v1.2.0](#v120) + - [v1.3.0](#v130) ## 下一个版本 -### [v1.1.0](https://github.com/SpaceVim/SpaceVim/milestone/14) +### [v1.4.0](https://github.com/SpaceVim/SpaceVim/milestone/17) ## 版本说明 @@ -130,4 +133,16 @@ First stable release of SpaceVim release note: [v1.0.0](http://spacevim.org/SpaceVim-release-v1.0.0/) +### [v1.1.0](https://github.com/SpaceVim/SpaceVim/milestone/14) + +release note: [v1.1.0](http://spacevim.org/SpaceVim-release-v1.1.0/) + +### [v1.2.0](https://github.com/SpaceVim/SpaceVim/milestone/15) + +release note: [v1.2.0](http://spacevim.org/SpaceVim-release-v1.2.0/) + +### [v1.3.0](https://github.com/SpaceVim/SpaceVim/milestone/16) + +release note: [v1.3.0](http://spacevim.org/SpaceVim-release-v1.3.0/) + diff --git a/docs/index.md b/docs/index.md index 0c54fc86f..7e5f31948 100644 --- a/docs/index.md +++ b/docs/index.md @@ -7,10 +7,10 @@ description: "SpaceVim is a community-driven vim distribution that seeks to prov [![Build Status](https://travis-ci.org/SpaceVim/SpaceVim.svg?branch=dev)](https://travis-ci.org/SpaceVim/SpaceVim) [![Build status](https://ci.appveyor.com/api/projects/status/eh3t5oph70abp665/branch/dev?svg=true)](https://ci.appveyor.com/project/wsdjeg/spacevim/branch/master) [![codecov](https://codecov.io/gh/SpaceVim/SpaceVim/branch/dev/graph/badge.svg)](https://codecov.io/gh/SpaceVim/SpaceVim/branch/master) -[![Version](https://img.shields.io/badge/version-1.2.0-8700FF.svg)](https://github.com/SpaceVim/SpaceVim/releases) +[![Version](https://img.shields.io/badge/version-1.3.0-8700FF.svg)](https://github.com/SpaceVim/SpaceVim/releases) [![GPLv3 License](https://img.shields.io/badge/license-GPLv3-blue.svg)](https://github.com/SpaceVim/SpaceVim/blob/master/LICENSE) -![welcome-page](https://user-images.githubusercontent.com/13142418/61462920-0bd9d000-a9a6-11e9-8e1f-c70d6ec6ca1e.png) +![welcome-page](https://user-images.githubusercontent.com/13142418/68079142-904e4280-fe1f-11e9-993e-b834ea3d39ea.png) # SpaceVim - Modern Vim distribution diff --git a/docs/install.sh b/docs/install.sh index a69689e54..431e93497 100755 --- a/docs/install.sh +++ b/docs/install.sh @@ -84,7 +84,7 @@ On_IWhite='\033[0;107m' # White # }}} # version -Version='1.3.0-dev' +Version='1.3.0' #System name System="$(uname -s)" @@ -458,4 +458,4 @@ main () { main $@ -# vim:set foldenable foldmethod=marker: +# vim:set nofoldenable foldmethod=marker: diff --git a/wiki/cn/Following-HEAD.md b/wiki/cn/Following-HEAD.md index 637dd95f4..c00e9544c 100644 --- a/wiki/cn/Following-HEAD.md +++ b/wiki/cn/Following-HEAD.md @@ -1,72 +1,17 @@ -本页罗列出自上一版本 v1.1.0 以来,master 分支上所发生的变更记录: +本页罗列出自上一版本 v1.3.0 以来,master 分支上所发生的变更记录: ## 下一个版本 -下一个版本号为 v1.2.0 +下一个版本号为 v1.4.0 -#### 新特性 - -- Add lang#goby layer [#3055](https://github.com/SpaceVim/SpaceVim/pull/3055) -- Add ~ keybinding for iedit [#3046](https://github.com/SpaceVim/SpaceVim/pull/3046) -- add fish script support [#3033](https://github.com/SpaceVim/SpaceVim/pull/3033) -- Add: add new layer lang#j [#3032](https://github.com/SpaceVim/SpaceVim/pull/3032) -- Add vertical split support [#2999](https://github.com/SpaceVim/SpaceVim/pull/2999) -- Add debug support for powershell [#2961](https://github.com/SpaceVim/SpaceVim/pull/2961) -- Add additional bindings from coc.nvim for c layer [#2967](https://github.com/SpaceVim/SpaceVim/pull/2967) -- Add Leader f f to fzf layer [#2971](https://github.com/SpaceVim/SpaceVim/pull/2971) - -#### 改变 - -- Change: rename tags layer to gtags layer [#3030](https://github.com/SpaceVim/SpaceVim/pull/3030) -- Change: fix csharp layer and update doc (#2935). [#3007](https://github.com/SpaceVim/SpaceVim/pull/3007) - -#### 问题修复 - -- Fixed typo 'yarked' to 'yanked' [#3059](https://github.com/SpaceVim/SpaceVim/pull/3059) -- Fix keybindings for GitGutter Hunks [#3049](https://github.com/SpaceVim/SpaceVim/pull/3049) -- Fix install script [#3048](https://github.com/SpaceVim/SpaceVim/pull/3048) -- Fixed output error where open file by flyGrep [#3041](https://github.com/SpaceVim/SpaceVim/pull/3041) -- Fix #2897 [#3021](https://github.com/SpaceVim/SpaceVim/pull/3021) -- Fix: fugitive blame [#3006](https://github.com/SpaceVim/SpaceVim/pull/3006) -- fix shortcuts/docs about marking spelling [#3003](https://github.com/SpaceVim/SpaceVim/pull/3003) -- fix typos [#3000](https://github.com/SpaceVim/SpaceVim/pull/3000) -- fix a map bug cscope[#2952](https://github.com/SpaceVim/SpaceVim/pull/2952) -- Fix: Issue #2948 function call update from deoplete#mappings#smart_close_p… [#2954](https://github.com/SpaceVim/SpaceVim/pull/2954) -- Fix errors in Go layer shortcuts in the documentation [#2955](https://github.com/SpaceVim/SpaceVim/pull/2955) -- fix a map bug cscope[#2953](https://github.com/SpaceVim/SpaceVim/pull/2953) -- Fix typo [#2965](https://github.com/SpaceVim/SpaceVim/pull/2965) -- Fix typo in edit.md [#2970](https://github.com/SpaceVim/SpaceVim/pull/2970) - -#### 未知 - -- Update crystal layer [#3067](https://github.com/SpaceVim/SpaceVim/pull/3067) -- Denite fix [#3066](https://github.com/SpaceVim/SpaceVim/pull/3066) -- Refactor lua initialization [#3065](https://github.com/SpaceVim/SpaceVim/pull/3065) -- deoplete and denite backward compatibility [#3058](https://github.com/SpaceVim/SpaceVim/pull/3058) -- Update hint desc [#3050](https://github.com/SpaceVim/SpaceVim/pull/3050) -- detach iedit plugin [#3047](https://github.com/SpaceVim/SpaceVim/pull/3047) -- urlescape spaces in font names [#3042](https://github.com/SpaceVim/SpaceVim/pull/3042) -- Googlegroups [#3040](https://github.com/SpaceVim/SpaceVim/pull/3040) -- Naming rules [#3037](https://github.com/SpaceVim/SpaceVim/pull/3037) -- Python file head [#3036](https://github.com/SpaceVim/SpaceVim/pull/3036) -- Improve file head support [#3034](https://github.com/SpaceVim/SpaceVim/pull/3034) -- Update cscope layer [#3023](https://github.com/SpaceVim/SpaceVim/pull/3023) -- Ctrlp message [#3022](https://github.com/SpaceVim/SpaceVim/pull/3022) -- Improve: make ctrlp layer works better [#3015](https://github.com/SpaceVim/SpaceVim/pull/3015) -- plugin install failed to call \_append_buf_line in WIN10 [#3011](https://github.com/SpaceVim/SpaceVim/pull/3011) -- Update manager.vim [#3010](https://github.com/SpaceVim/SpaceVim/pull/3010) -- Website: Add git-plugin documentation to git layer [#3005](https://github.com/SpaceVim/SpaceVim/pull/3005) -- Version [#2956](https://github.com/SpaceVim/SpaceVim/pull/2956) -- Update version to v1.2.0-dev [#2732](https://github.com/SpaceVim/SpaceVim/pull/2732) -- On Windows, send CTRL+r if '+' register is not given [#2950](https://github.com/SpaceVim/SpaceVim/pull/2950) ## 上一个版本 -SpaceVim 于 2019-04-08 发布 v1.1.0 版本,可查阅版本发布文章: +SpaceVim 于 2019-04-08 发布 v1.3.0 版本,可查阅版本发布文章: -- [SpaceVim 发布 v1.1.0 版本](https://spacevim.org/SpaceVim-release-v1.1.0/) +- [SpaceVim 发布 v1.3.0 版本](https://spacevim.org/SpaceVim-release-v1.3.0/)