Skip to content

Commit

Permalink
Bump to version 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
takaxp committed Mar 24, 2021
1 parent 9d3170f commit f94cf84
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 8 deletions.
13 changes: 13 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
2021-03-24 Takaaki ISHIKAWA <takaxp@ieee.org>

* moom-font.el: version 1.6.0
- no changes

* moom.el: version 1.6.0
- [breaking change] moom-change-frame-width-max is obsoleted
- [breaking change] moom-change-frame-height-max has been removed
- [improve] management of cycle height
- [new] keybindings for moom-fill-width and moom-fill-height
- [new] moom-command-history-length
- [new feature] Undo

2021-03-06 Takaaki ISHIKAWA <takaxp@ieee.org>

* moom-font.el: version 1.5.0
Expand Down
11 changes: 3 additions & 8 deletions moom.el
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

;; Author: Takaaki ISHIKAWA <takaxp at ieee dot org>
;; Keywords: frames, faces, convenience
;; Version: 1.5.9
;; Version: 1.6.0
;; Maintainer: Takaaki ISHIKAWA <takaxp at ieee dot org>
;; URL: https://github.com/takaxp/Moom
;; Package-Requires: ((emacs "25.1"))
Expand Down Expand Up @@ -881,7 +881,7 @@ actions when selecting a monitor."
(interactive)
(let ((dma-list (display-monitor-attributes-list)))
(moom-jump-to-monitor
(let ((v (+ (moom--current-monitor-id) 1)))
(let ((v (1+ (moom--current-monitor-id))))
(if (equal v (length dma-list)) 0 v))))
(moom-print-monitors))

Expand Down Expand Up @@ -1045,11 +1045,6 @@ If PLIST is nil, `moom-fill-band-options' is applied."
(moom--font-resize (moom--fullscreen-font-size)
(+ (moom--max-frame-pixel-width)
(moom--frame-internal-width)))
;; (set-frame-width nil moom-frame-width-single)
;; (when (and moom--font-module-p
;; (floatp range))
;; (setq band-pixel-width (- (moom--frame-pixel-width)
;; (moom--frame-internal-width))))
(setq band-pixel-width (moom--max-frame-pixel-width))))
(when (and band-pixel-width
band-pixel-height)
Expand Down Expand Up @@ -1678,7 +1673,7 @@ The keybindings will be assigned only when Emacs runs in GUI."
(defun moom-version ()
"The release version of Moom."
(interactive)
(let ((moom-release "1.5.9"))
(let ((moom-release "1.6.0"))
(message "[Moom] v%s" moom-release)))

;;;###autoload
Expand Down

0 comments on commit f94cf84

Please sign in to comment.