trying to fix
This commit is contained in:
parent
fa407dfeb6
commit
e013d7569e
368
%backup%~
Normal file
368
%backup%~
Normal file
|
@ -0,0 +1,368 @@
|
||||||
|
/*
|
||||||
|
SPDX-FileCopyrightText: 2014 Marco Martin <mart@kde.org>
|
||||||
|
|
||||||
|
SPDX-License-Identifier: GPL-2.0-or-later
|
||||||
|
*/
|
||||||
|
|
||||||
|
import QtQuick 2.6
|
||||||
|
import QtQuick.Layouts 1.1
|
||||||
|
import QtQuick.Window 2.1
|
||||||
|
import org.kde.plasma.core 2.0 as PlasmaCore
|
||||||
|
import org.kde.plasma.components 2.0 as PlasmaComponents // For Highlight
|
||||||
|
import org.kde.plasma.components 3.0 as PlasmaComponents3
|
||||||
|
import org.kde.plasma.extras 2.0 as PlasmaExtras
|
||||||
|
import org.kde.milou 0.1 as Milou
|
||||||
|
|
||||||
|
ColumnLayout {
|
||||||
|
id: root
|
||||||
|
property string query
|
||||||
|
property string runner
|
||||||
|
property bool showHistory: false
|
||||||
|
property alias runnerManager: results.runnerManager
|
||||||
|
|
||||||
|
LayoutMirroring.enabled: Qt.application.layoutDirection === Qt.RightToLeft
|
||||||
|
LayoutMirroring.childrenInherit: true
|
||||||
|
|
||||||
|
onQueryChanged: {
|
||||||
|
queryField.text = query;
|
||||||
|
}
|
||||||
|
|
||||||
|
Connections {
|
||||||
|
target: runnerWindow
|
||||||
|
function onVisibleChanged() {
|
||||||
|
if (runnerWindow.visible) {
|
||||||
|
queryField.forceActiveFocus();
|
||||||
|
listView.currentIndex = -1
|
||||||
|
if (runnerManager.retainPriorSearch) {
|
||||||
|
// If we manually specified a query(D-Bus invocation) we don't want to retain the prior search
|
||||||
|
if (!query) {
|
||||||
|
queryField.text = runnerManager.priorSearch
|
||||||
|
queryField.select(root.query.length, 0)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if (runnerManager.retainPriorSearch) {
|
||||||
|
runnerManager.priorSearch = root.query
|
||||||
|
}
|
||||||
|
root.runner = ""
|
||||||
|
root.query = ""
|
||||||
|
root.showHistory = false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Connections {
|
||||||
|
target: root
|
||||||
|
function onShowHistoryChanged() {
|
||||||
|
if (showHistory) {
|
||||||
|
// we store 50 entries in the history but only show 20 in the UI so it doesn't get too huge
|
||||||
|
listView.model = runnerManager.history.slice(0, 20)
|
||||||
|
} else {
|
||||||
|
listView.model = []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
RowLayout {
|
||||||
|
Layout.alignment: Qt.AlignTop
|
||||||
|
PlasmaComponents3.ToolButton {
|
||||||
|
icon.name: "configure"
|
||||||
|
onClicked: {
|
||||||
|
runnerWindow.visible = false
|
||||||
|
runnerWindow.displayConfiguration()
|
||||||
|
}
|
||||||
|
Accessible.name: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Configure")
|
||||||
|
Accessible.description: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Configure Search Plugins")
|
||||||
|
visible: runnerWindow.canConfigure
|
||||||
|
PlasmaComponents3.ToolTip {
|
||||||
|
text: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Configure KRunner…")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
PlasmaComponents3.TextField {
|
||||||
|
id: queryField
|
||||||
|
property bool allowCompletion: false
|
||||||
|
|
||||||
|
clearButtonShown: true
|
||||||
|
Layout.minimumWidth: PlasmaCore.Units.gridUnit * 25
|
||||||
|
Layout.maximumWidth: PlasmaCore.Units.gridUnit * 25
|
||||||
|
|
||||||
|
inputMethodHints: Qt.ImhNoPredictiveText
|
||||||
|
|
||||||
|
activeFocusOnPress: true
|
||||||
|
placeholderText: results.runnerName ? i18ndc("plasma_lookandfeel_org.kde.lookandfeel",
|
||||||
|
"Textfield placeholder text, query specific KRunner",
|
||||||
|
"Search '%1'…", results.runnerName)
|
||||||
|
: i18ndc("plasma_lookandfeel_org.kde.lookandfeel",
|
||||||
|
"Textfield placeholder text", "Search…")
|
||||||
|
|
||||||
|
PlasmaComponents3.BusyIndicator {
|
||||||
|
anchors {
|
||||||
|
right: parent.right
|
||||||
|
top: parent.top
|
||||||
|
bottom: parent.bottom
|
||||||
|
margins: PlasmaCore.Units.smallSpacing
|
||||||
|
rightMargin: height
|
||||||
|
}
|
||||||
|
|
||||||
|
Timer {
|
||||||
|
id: queryTimer
|
||||||
|
property bool queryDisplay: false
|
||||||
|
running: results.querying
|
||||||
|
repeat: true
|
||||||
|
onRunningChanged: if (queryDisplay && !running) {
|
||||||
|
queryDisplay = false
|
||||||
|
}
|
||||||
|
onTriggered: if (!queryDisplay) {
|
||||||
|
queryDisplay = true
|
||||||
|
}
|
||||||
|
interval: 500
|
||||||
|
}
|
||||||
|
|
||||||
|
running: queryTimer.queryDisplay
|
||||||
|
}
|
||||||
|
function move_up() {
|
||||||
|
if (length === 0) {
|
||||||
|
root.showHistory = true;
|
||||||
|
if (listView.count > 0) {
|
||||||
|
listView.forceActiveFocus();
|
||||||
|
}
|
||||||
|
} else if (results.count > 0) {
|
||||||
|
results.forceActiveFocus();
|
||||||
|
results.decrementCurrentIndex();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function move_down() {
|
||||||
|
if (length === 0) {
|
||||||
|
root.showHistory = true;
|
||||||
|
if (listView.count > 0) {
|
||||||
|
listView.forceActiveFocus();
|
||||||
|
}
|
||||||
|
} else if (results.count > 0) {
|
||||||
|
results.forceActiveFocus();
|
||||||
|
results.incrementCurrentIndex();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
onTextChanged: {
|
||||||
|
root.query = queryField.text
|
||||||
|
if (allowCompletion && length > 0 && runnerManager.historyEnabled) {
|
||||||
|
var oldText = text
|
||||||
|
var suggestedText = runnerManager.getHistorySuggestion(text);
|
||||||
|
if (suggestedText.length > 0) {
|
||||||
|
text = text + suggestedText.substr(oldText.length)
|
||||||
|
select(text.length, oldText.length)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Keys.onPressed: {
|
||||||
|
allowCompletion = (event.key !== Qt.Key_Backspace && event.key !== Qt.Key_Delete)
|
||||||
|
|
||||||
|
if (event.modifiers & Qt.ControlModifier) {
|
||||||
|
if (event.key === Qt.Key_J) {
|
||||||
|
move_down()
|
||||||
|
event.accepted = true;
|
||||||
|
} else if (event.key === Qt.Key_K) {
|
||||||
|
move_up()
|
||||||
|
event.accepted = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Keys.onUpPressed: move_up()
|
||||||
|
Keys.onDownPressed: move_down()
|
||||||
|
function closeOrRun(event) {
|
||||||
|
// Close KRunner if no text was typed and enter was pressed, FEATURE: 211225
|
||||||
|
if (!root.query) {
|
||||||
|
runnerWindow.visible = false
|
||||||
|
} else {
|
||||||
|
results.runCurrentIndex(event)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Keys.onEnterPressed: closeOrRun(event)
|
||||||
|
Keys.onReturnPressed: closeOrRun(event)
|
||||||
|
|
||||||
|
Keys.onEscapePressed: {
|
||||||
|
runnerWindow.visible = false
|
||||||
|
}
|
||||||
|
|
||||||
|
PlasmaCore.SvgItem {
|
||||||
|
anchors {
|
||||||
|
right: parent.right
|
||||||
|
rightMargin: 6 // from PlasmaStyle TextFieldStyle
|
||||||
|
verticalCenter: parent.verticalCenter
|
||||||
|
}
|
||||||
|
// match clear button
|
||||||
|
width: Math.max(parent.height * 0.8, PlasmaCore.Units.iconSizes.small)
|
||||||
|
height: width
|
||||||
|
svg: PlasmaCore.Svg {
|
||||||
|
imagePath: "widgets/arrows"
|
||||||
|
colorGroup: PlasmaCore.Theme.ButtonColorGroup
|
||||||
|
}
|
||||||
|
elementId: "down-arrow"
|
||||||
|
visible: queryField.length === 0 && runnerManager.historyEnabled
|
||||||
|
|
||||||
|
MouseArea {
|
||||||
|
anchors.fill: parent
|
||||||
|
onPressed: {
|
||||||
|
root.showHistory = !root.showHistory
|
||||||
|
if (root.showHistory) {
|
||||||
|
listView.forceActiveFocus(); // is the history list
|
||||||
|
} else {
|
||||||
|
queryField.forceActiveFocus();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
PlasmaComponents3.ToolButton {
|
||||||
|
checkable: true
|
||||||
|
checked: runnerWindow.pinned
|
||||||
|
onToggled: runnerWindow.pinned = checked
|
||||||
|
icon.name: "window-pin"
|
||||||
|
Accessible.name: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Pin")
|
||||||
|
Accessible.description: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Pin Search")
|
||||||
|
PlasmaComponents3.ToolTip {
|
||||||
|
text: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Keep Open")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
PlasmaExtras.ScrollArea {
|
||||||
|
Layout.alignment: Qt.AlignTop
|
||||||
|
visible: results.count > 0
|
||||||
|
enabled: visible
|
||||||
|
Layout.fillWidth: true
|
||||||
|
Layout.preferredHeight: Math.min(Screen.height, results.contentHeight)
|
||||||
|
|
||||||
|
Milou.ResultsView {
|
||||||
|
id: results
|
||||||
|
queryString: root.query
|
||||||
|
runner: root.runner
|
||||||
|
|
||||||
|
Keys.onPressed: {
|
||||||
|
var ctrl = event.modifiers & Qt.ControlModifier;
|
||||||
|
if (ctrl && event.key === Qt.Key_J) {
|
||||||
|
incrementCurrentIndex()
|
||||||
|
} else if (ctrl && event.key === Qt.Key_K) {
|
||||||
|
decrementCurrentIndex()
|
||||||
|
} else if (event.text !== "") {
|
||||||
|
// This prevents unprintable control characters from being inserted
|
||||||
|
if (!/[\x00-\x1F\x7F]/.test(event.text)) {
|
||||||
|
queryField.text += event.text;
|
||||||
|
}
|
||||||
|
queryField.cursorPosition = queryField.text.length
|
||||||
|
queryField.focus = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Keys.onEscapePressed: {
|
||||||
|
runnerWindow.visible = false
|
||||||
|
}
|
||||||
|
|
||||||
|
onActivated: {
|
||||||
|
runnerWindow.visible = false
|
||||||
|
}
|
||||||
|
|
||||||
|
onUpdateQueryString: {
|
||||||
|
queryField.text = text
|
||||||
|
queryField.cursorPosition = cursorPosition
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
PlasmaExtras.ScrollArea {
|
||||||
|
Layout.alignment: Qt.AlignTop
|
||||||
|
Layout.fillWidth: true
|
||||||
|
visible: root.query.length === 0 && listView.count > 0
|
||||||
|
// don't accept keyboard input when not visible so the keys propagate to the other list
|
||||||
|
enabled: visible
|
||||||
|
Layout.preferredHeight: Math.min(Screen.height, listView.contentHeight)
|
||||||
|
|
||||||
|
ListView {
|
||||||
|
id: listView // needs this id so the delegate can access it
|
||||||
|
keyNavigationWraps: true
|
||||||
|
highlight: PlasmaComponents.Highlight {}
|
||||||
|
highlightMoveDuration: 0
|
||||||
|
activeFocusOnTab: true
|
||||||
|
model: []
|
||||||
|
delegate: Milou.ResultDelegate {
|
||||||
|
id: resultDelegate
|
||||||
|
width: listView.width
|
||||||
|
typeText: index === 0 ? i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Recent Queries") : ""
|
||||||
|
additionalActions: [{
|
||||||
|
icon: "list-remove",
|
||||||
|
text: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Remove")
|
||||||
|
}]
|
||||||
|
Accessible.description: i18n("in category recent queries")
|
||||||
|
}
|
||||||
|
|
||||||
|
onActiveFocusChanged: {
|
||||||
|
if (!activeFocus && currentIndex == listView.count-1) {
|
||||||
|
currentIndex = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Keys.onReturnPressed: runCurrentIndex(event)
|
||||||
|
Keys.onEnterPressed: runCurrentIndex(event)
|
||||||
|
|
||||||
|
Keys.onTabPressed: {
|
||||||
|
if (currentIndex == listView.count-1) {
|
||||||
|
listView.nextItemInFocusChain(true).forceActiveFocus();
|
||||||
|
} else {
|
||||||
|
incrementCurrentIndex()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Keys.onBacktabPressed: {
|
||||||
|
if (currentIndex == 0) {
|
||||||
|
listView.nextItemInFocusChain(false).forceActiveFocus();
|
||||||
|
} else {
|
||||||
|
decrementCurrentIndex()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Keys.onPressed: {
|
||||||
|
var ctrl = event.modifiers & Qt.ControlModifier;
|
||||||
|
if (ctrl && event.key === Qt.Key_J) {
|
||||||
|
incrementCurrentIndex()
|
||||||
|
} else if (ctrl && event.key === Qt.Key_K) {
|
||||||
|
decrementCurrentIndex()
|
||||||
|
} else if (event.text !== "") {
|
||||||
|
// This prevents unprintable control characters from being inserted
|
||||||
|
if (event.key == Qt.Key_Escape) {
|
||||||
|
root.showHistory = false
|
||||||
|
} else if (!/[\x00-\x1F\x7F]/.test(event.text)) {
|
||||||
|
queryField.text += event.text;
|
||||||
|
}
|
||||||
|
queryField.focus = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Keys.onUpPressed: decrementCurrentIndex()
|
||||||
|
Keys.onDownPressed: incrementCurrentIndex()
|
||||||
|
|
||||||
|
function runCurrentIndex(event) {
|
||||||
|
var entry = runnerManager.history[currentIndex]
|
||||||
|
if (entry) {
|
||||||
|
// If user presses Shift+Return to invoke an action, invoke the first runner action
|
||||||
|
if (event && event.modifiers === Qt.ShiftModifier
|
||||||
|
&& currentItem.additionalActions && currentItem.additionalActions.length > 0) {
|
||||||
|
runAction(0);
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
queryField.text = entry
|
||||||
|
queryField.forceActiveFocus();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function runAction(actionIndex) {
|
||||||
|
if (actionIndex === 0) {
|
||||||
|
// QStringList changes just reset the model, so we'll remember the index and set it again
|
||||||
|
var currentIndex = listView.currentIndex
|
||||||
|
runnerManager.removeFromHistory(currentIndex)
|
||||||
|
model = runnerManager.history
|
||||||
|
listView.currentIndex = currentIndex
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
BIN
eln-cache/28.0.50-44ac3a0d/.dirs-local-768d6c50-3c8c4da3.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/.dirs-local-768d6c50-3c8c4da3.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/ace-link-7a4ed537-9b6883eb.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/ace-link-7a4ed537-9b6883eb.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/ace-window-724a814d-bdead42a.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/ace-window-724a814d-bdead42a.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/adaptive-wrap-c83524d9-51d9187b.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/adaptive-wrap-c83524d9-51d9187b.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/add-log-cb3c2979-c121e39e.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/add-log-cb3c2979-c121e39e.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/advice-791b3e89-8d7f16b5.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/advice-791b3e89-8d7f16b5.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/aggressive-indent-86401a70-fb4a240b.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/aggressive-indent-86401a70-fb4a240b.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/all-the-icons-1ad5358b-7859fd3f.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/all-the-icons-1ad5358b-7859fd3f.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/all-the-icons-dired-7fd6fc0e-521e6047.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/all-the-icons-dired-7fd6fc0e-521e6047.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/all-the-icons-faces-8a6248d1-270cbf21.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/all-the-icons-faces-8a6248d1-270cbf21.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/annalist-4b6bdf63-bf925ab7.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/annalist-4b6bdf63-bf925ab7.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/ansi-color-75eac800-23d9be8d.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/ansi-color-75eac800-23d9be8d.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/apropos-7c1ecbdf-150a396d.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/apropos-7c1ecbdf-150a396d.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/arc-mode-bac5621c-3f3a0a2d.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/arc-mode-bac5621c-3f3a0a2d.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/auth-source-49df7eef-3dd99b41.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/auth-source-49df7eef-3dd99b41.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/auth-source-pass-c498fbad-e957616f.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/auth-source-pass-c498fbad-e957616f.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/autorevert-841d6890-00485556.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/autorevert-841d6890-00485556.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/avl-tree-508a9d96-ff6398fe.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/avl-tree-508a9d96-ff6398fe.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/avy-6b823570-768418fc.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/avy-6b823570-768418fc.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/backtrace-f58a28c5-d64ce0f4.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/backtrace-f58a28c5-d64ce0f4.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/bibtex-2f037630-93359f17.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/bibtex-2f037630-93359f17.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/bind-key-190106ee-5f57fc5a.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/bind-key-190106ee-5f57fc5a.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/bindat-f163bea1-cc727e0c.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/bindat-f163bea1-cc727e0c.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/bongo-6442dd7e-fb949ccc.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/bongo-6442dd7e-fb949ccc.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/bookmark-8667481e-095c61a0.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/bookmark-8667481e-095c61a0.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/browse-url-87f72988-4d9c500c.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/browse-url-87f72988-4d9c500c.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/bug-reference-79735dad-10c20e90.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/bug-reference-79735dad-10c20e90.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/bui-button-a19443c9-4f7c7562.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/bui-button-a19443c9-4f7c7562.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/bui-core-987f6013-f6eaceae.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/bui-core-987f6013-f6eaceae.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/bui-entry-bdfdbc41-e7ec7573.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/bui-entry-bdfdbc41-e7ec7573.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/bui-f796a61d-223d7a44.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/bui-f796a61d-223d7a44.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/bui-history-e8f29cc9-57f33ff2.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/bui-history-e8f29cc9-57f33ff2.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/bui-info-640a73f9-8faa1495.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/bui-info-640a73f9-8faa1495.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/bui-list-d270d0d8-a75f659e.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/bui-list-d270d0d8-a75f659e.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/bui-utils-a6a74e4f-10ba2c8a.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/bui-utils-a6a74e4f-10ba2c8a.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/cal-bahai-caf89889-bea97be2.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/cal-bahai-caf89889-bea97be2.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/cal-china-28218d30-0abd7093.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/cal-china-28218d30-0abd7093.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/cal-dst-f85a5a15-3c9b3eeb.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/cal-dst-f85a5a15-3c9b3eeb.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/cal-hebrew-32b77d47-de788d3d.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/cal-hebrew-32b77d47-de788d3d.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/cal-islam-74de7ee1-0980456a.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/cal-islam-74de7ee1-0980456a.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/cal-iso-8ac36734-b5d503db.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/cal-iso-8ac36734-b5d503db.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/cal-menu-9380b697-5c9f8c2f.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/cal-menu-9380b697-5c9f8c2f.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/cal-move-aed18331-a6fd6cc5.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/cal-move-aed18331-a6fd6cc5.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/calc-222b057e-e4631398.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/calc-222b057e-e4631398.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/calc-aent-1719b1cd-44173e44.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/calc-aent-1719b1cd-44173e44.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/calc-bin-61359665-ce53deba.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/calc-bin-61359665-ce53deba.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/calc-ext-169a1473-ef049517.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/calc-ext-169a1473-ef049517.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/calc-macs-86f6acaa-7f6a6f0c.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/calc-macs-86f6acaa-7f6a6f0c.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/calc-map-cec1a5a6-a30d1b4f.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/calc-map-cec1a5a6-a30d1b4f.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/calc-menu-43d1e6da-d599b8f7.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/calc-menu-43d1e6da-d599b8f7.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/calc-stat-bb7f9833-68ca4b17.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/calc-stat-bb7f9833-68ca4b17.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/calc-vec-8d9dd57c-4f776d44.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/calc-vec-8d9dd57c-4f776d44.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/calendar-d19e5c14-0aeb3c1f.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/calendar-d19e5c14-0aeb3c1f.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/calfw-6f0a71d8-652690ea.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/calfw-6f0a71d8-652690ea.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/calfw-ical-3715b1bf-da0ad04a.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/calfw-ical-3715b1bf-da0ad04a.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/calfw-org-3a14bc5b-69a3a62c.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/calfw-org-3a14bc5b-69a3a62c.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/cc-align-bb265728-ca0abab6.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/cc-align-bb265728-ca0abab6.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/cc-cmds-9eab15be-f40bb044.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/cc-cmds-9eab15be-f40bb044.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/cc-defs-029877ca-b9743fdc.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/cc-defs-029877ca-b9743fdc.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/cc-engine-ccfcb170-101d4a36.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/cc-engine-ccfcb170-101d4a36.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/cc-fonts-d7d8a7f5-56458d8a.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/cc-fonts-d7d8a7f5-56458d8a.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/cc-guess-fa39ca73-2d1c5705.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/cc-guess-fa39ca73-2d1c5705.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/cc-menus-d370fa63-c2236929.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/cc-menus-d370fa63-c2236929.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/cc-mode-515a98a5-0f12b642.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/cc-mode-515a98a5-0f12b642.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/cc-styles-e4992978-f737b86d.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/cc-styles-e4992978-f737b86d.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/cc-vars-6cc3f0fc-2f706707.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/cc-vars-6cc3f0fc-2f706707.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/cedet-e5d89324-5d9968e0.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/cedet-e5d89324-5d9968e0.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/cfrs-26fd0f31-072c5bc7.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/cfrs-26fd0f31-072c5bc7.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/char-fold-b79b1b8c-5a333c88.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/char-fold-b79b1b8c-5a333c88.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/checkdoc-9cc89cb2-bdb3f6b1.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/checkdoc-9cc89cb2-bdb3f6b1.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/cl-51cb6d6a-e29864c8.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/cl-51cb6d6a-e29864c8.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/cl-extra-d7051cba-2e47a860.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/cl-extra-d7051cba-2e47a860.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/cl-lib-8b938900-257e0be7.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/cl-lib-8b938900-257e0be7.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/cl-macs-7ae82f81-f71bf46d.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/cl-macs-7ae82f81-f71bf46d.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/cl-print-79bf9fb1-6154d273.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/cl-print-79bf9fb1-6154d273.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/cl-seq-f464c4e2-95d0eb23.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/cl-seq-f464c4e2-95d0eb23.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/color-9d7980a5-ed707236.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/color-9d7980a5-ed707236.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/comint-faef15ad-1c803613.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/comint-faef15ad-1c803613.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/command-log-mode-f91c255c-2806fd71.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/command-log-mode-f91c255c-2806fd71.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/comp-57d77626-7a336ffb.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/comp-57d77626-7a336ffb.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/company-abbrev-e443f0b1-e7faa952.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/company-abbrev-e443f0b1-e7faa952.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/company-aeb90e0e-14e1dec2.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/company-aeb90e0e-14e1dec2.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/company-bbdb-caca4278-ded57d01.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/company-bbdb-caca4278-ded57d01.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/company-capf-4f242e99-6fdf3946.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/company-capf-4f242e99-6fdf3946.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/company-clang-e04d2a8d-bebd0226.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/company-clang-e04d2a8d-bebd0226.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/company-cmake-49b9aee9-08284e21.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/company-cmake-49b9aee9-08284e21.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/company-css-2b6b94b7-8c153c1a.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/company-css-2b6b94b7-8c153c1a.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/company-dabbrev-986310d0-da73f475.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/company-dabbrev-986310d0-da73f475.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/company-dabbrev-code-606dbd41-13df6729.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/company-dabbrev-code-606dbd41-13df6729.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/company-dict-96298f36-cac529e0.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/company-dict-96298f36-cac529e0.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/company-elisp-3a8a0287-ce253fbc.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/company-elisp-3a8a0287-ce253fbc.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/company-etags-07b684a1-63250bac.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/company-etags-07b684a1-63250bac.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/company-files-4a7c7763-29f87e98.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/company-files-4a7c7763-29f87e98.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/company-gtags-15daa9a2-29c99ba5.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/company-gtags-15daa9a2-29c99ba5.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/company-ispell-33a2ea8a-8db44459.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/company-ispell-33a2ea8a-8db44459.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/company-keywords-c14cf0e0-739f5b97.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/company-keywords-c14cf0e0-739f5b97.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/company-nxml-5e0f6ac6-ee8eaff2.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/company-nxml-5e0f6ac6-ee8eaff2.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/company-oddmuse-eaa6e0c6-7c80f611.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/company-oddmuse-eaa6e0c6-7c80f611.eln
Executable file
Binary file not shown.
BIN
eln-cache/28.0.50-44ac3a0d/company-qml-319dd016-db05d02a.eln
Executable file
BIN
eln-cache/28.0.50-44ac3a0d/company-qml-319dd016-db05d02a.eln
Executable file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue