Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
noinil committed Jan 23, 2023
2 parents b9efb43 + 491e17b commit 74af528
Show file tree
Hide file tree
Showing 10 changed files with 68 additions and 8 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Mark stale issues and pull requests

on:
schedule:
- cron: '*/15 * * * *'

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
operations-per-run: 100
stale-issue-message: >
This issue has been automatically marked as stale because it has not
had recent activity. It will be closed if no further activity occurs.
Please let us know if this issue is still valid!
stale-pr-message: >
This PR has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs.
Please let us know if this PR is still need merging!
stale-issue-label: 'stale'
exempt-issue-label: 'High Priority'
stale-pr-label: 'stale'
exempt-pr-label: 'High Priority'
days-before-stale: 365
days-before-close: 90
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ python-*-docs-html
/srecode-map.el
/recentf
.mc-lists.el
transient/

# Private directory
private/
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.org
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
* Release 0.200.x
** 0.200.14 (2022/01/08)
*** Fixes
- Small bug fixes
- Depreciate curated releases
** 0.200.13 (2018/01/25)
*** Fixes
- Remove =ess-R-object-popup= from =ess= layer (thanks to NGaffney)
Expand Down
14 changes: 13 additions & 1 deletion core/core-emacs-backports.el
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,18 @@
;;
;;; License: GPLv3

;; nothing for now
(when (and (version< "25" emacs-version)
(version< emacs-version "26.3"))
;; Hack to prevent TLS error with Emacs 26.1 and 26.2 and gnutls 3.6.4 and
;; above see https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34341
(message (concat "Testing if your Emacs version %s and GnuTLS version "
"need the TLS work-around...")
emacs-version)
(message "More info at https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34341")
(unless (<= libgnutls-version 30603)
(message (concat "Your Emacs version %s and GnutTLS version %s "
"need the work-around, applying it...")
emacs-version libgnutls-version)
(setq gnutls-algorithm-priority "NORMAL:-VERS-TLS1.3")))

(provide 'core-emacs-backports)
8 changes: 4 additions & 4 deletions core/core-keybindings.el
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ LONG-NAME if given is stored in `spacemacs/prefix-titles'."
(kbd full-prefix-emacs))))
;; define the prefix command only if it does not already exist
(unless long-name (setq long-name name))
(which-key-declare-prefixes
(which-key-add-key-based-replacements
full-prefix-emacs (cons name long-name)
full-prefix (cons name long-name))))
(put 'spacemacs/declare-prefix 'lisp-indent-function 'defun)
Expand All @@ -78,13 +78,13 @@ used as the prefix command."
" " (substring prefix 1))))
(unless long-name (setq long-name name))
(let ((prefix-name (cons name long-name)))
(which-key-declare-prefixes-for-mode mode
(which-key-add-major-mode-key-based-replacements mode
full-prefix-emacs prefix-name
full-prefix prefix-name)
(when (and is-major-mode-prefix dotspacemacs-major-mode-leader-key)
(which-key-declare-prefixes-for-mode mode major-mode-prefix prefix-name))
(which-key-add-major-mode-key-based-replacements mode major-mode-prefix prefix-name))
(when (and is-major-mode-prefix dotspacemacs-major-mode-emacs-leader-key)
(which-key-declare-prefixes-for-mode
(which-key-add-major-mode-key-based-replacements
mode major-mode-prefix-emacs prefix-name)))))
(put 'spacemacs/declare-prefix-for-mode 'lisp-indent-function 'defun)

Expand Down
2 changes: 1 addition & 1 deletion core/core-spacemacs-buffer.el
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
;;
;;; Code:

(defconst spacemacs-buffer-version-info "0.200.13"
(defconst spacemacs-buffer-version-info "0.200.14"
"Current version used to display addition release information.")

(defconst spacemacs-buffer-name "*spacemacs*"
Expand Down
1 change: 1 addition & 0 deletions core/core-spacemacs.el
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
(defconst emacs-start-time (current-time))

(require 'subr-x nil 'noerror)
(require 'core-emacs-backports)
(require 'page-break-lines)
(require 'core-debug)
(require 'core-command-line)
Expand Down
14 changes: 14 additions & 0 deletions core/info/release-notes/0.200.14.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
╭───────────────────────────────────────────────────────────╮

VERSION 0.200.14 (deprecated)

╰───────────────────────────────────────────────────────────╯

This is version 0.200.14 of the currently unmaintained master branch. The master
branch is using curated version of packages for increased stability.

However this approach proofed to be very work intensive and we have therefore
stopped supplying those versions for now.

As these packages are not longer updated you should consider migrating to the
maintained "develop" branch.
2 changes: 1 addition & 1 deletion init.el
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
(defconst spacemacs-emacs-min-version "24.3" "Minimal version of Emacs.")
=======

(defconst spacemacs-version "0.200.13" "Spacemacs version.")
(defconst spacemacs-version "0.200.14" "Spacemacs version.")
(defconst spacemacs-emacs-min-version "24.4" "Minimal version of Emacs.")
>>>>>>> upstream/master

Expand Down
2 changes: 1 addition & 1 deletion layers/+distributions/spacemacs-bootstrap/packages.el
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@
(concat leader-key " m") "major mode commands"
(concat leader-key " " dotspacemacs-emacs-command-key) "M-x"))

(which-key-declare-prefixes
(which-key-add-key-based-replacements
dotspacemacs-leader-key '("root" . "Spacemacs root")
dotspacemacs-emacs-leader-key '("root" . "Spacemacs root")
(concat dotspacemacs-leader-key " m")
Expand Down

0 comments on commit 74af528

Please sign in to comment.