Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
<preference name="androidxEnabled" value="true" />
<preference name="GradlePluginKotlinEnabled" value="true" />
<preference name="android-targetSdkVersion" value="36" />
<preference name="android-minSdkVersion" value="26" />


<edit-config file="app/src/main/AndroidManifest.xml" mode="merge"
Expand Down
16 changes: 16 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@
"cordova-plugin-sftp": {},
"com.foxdebug.acode.rk.exec.terminal": {},
"com.foxdebug.acode.rk.plugin.plugincontext": {},
"cordova-plugin-system": {},
"com.foxdebug.acode.rk.auth": {},
"com.foxdebug.acode.rk.exec.proot": {},
"cordova-plugin-iap": {},
"com.foxdebug.acode.rk.customtabs": {}
"com.foxdebug.acode.rk.customtabs": {},
"cordova-plugin-system": {}
},
"platforms": [
"android"
Expand Down Expand Up @@ -194,5 +194,5 @@
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.42.1"
},
"browserslist": "cover 100%,not android < 5"
"browserslist": "cover 100%"
}
10 changes: 0 additions & 10 deletions rspack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,6 @@ module.exports = (env, options) => {
syntax: 'typescript',
tsx: false,
},
transform: {
// react: {
// pragma: 'tag',
// pragmaFrag: 'Array',
// throwIfNamespace: false,
// development: false,
// useBuiltins: false,
// runtime: 'classic',
// },
},
target: 'es2015',
},
},
Expand Down
5 changes: 5 additions & 0 deletions src/components/audioPlayer/style.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
@supports not (gap: 1px) {
.audio-player > * + * { margin-left: 15px; }
.volume-control > * + * { margin-left: 8px; }
}

.audio-player {
background: var(--primary-color, #1e1e1e);
border-radius: 10px;
Expand Down
16 changes: 16 additions & 0 deletions src/components/lspInfoDialog/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -454,4 +454,20 @@
font-weight: 600;
color: var(--popup-text-color);
font-family: monospace;
}

@supports not (gap: 1px) {
.lsp-list-actions > * + * { margin-left: 8px; }
.lsp-action-btn > * + * { margin-left: 6px; }
.lsp-server-item > * + * { margin-left: 12px; }
.lsp-server-info > * + * { margin-top: 2px; }
.lsp-details-header > * + * { margin-left: 8px; }
.lsp-header-actions > * + * { margin-left: 4px; }
.lsp-details-title > * + * { margin-left: 10px; }
.lsp-chip-container > * { margin-right: 5px; margin-bottom: 5px; }
.lsp-logs-actions > * + * { margin-left: 2px; }
.lsp-log > * + * { margin-left: 6px; }
.lsp-logs-title > * + * { margin-left: 4px; }
.lsp-stats-container > * + * { margin-left: 16px; }
.lsp-stat > * + * { margin-left: 6px; }
}
8 changes: 8 additions & 0 deletions src/components/lspStatusBar/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,14 @@ wc-page:not([footer-height]) #lsp-status-bar {
bottom: 10px;
}

@supports not (gap: 1px) {
#lsp-status-bar {
.lsp-status-content > * + * { margin-left: 10px; }
.lsp-status-text > * + * { margin-top: 2px; }
.lsp-status-progress > * + * { margin-left: 8px; }
}
}

@keyframes lspStatusSlideUp {
from {
transform: translateY(100%);
Expand Down
15 changes: 15 additions & 0 deletions src/components/referencesPanel/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,21 @@
}
}

@supports not (gap: 1px) {
.references-panel {
.header-content > * + * { margin-top: 2px; }
.header-title > * + * { margin-left: 8px; }
.header-actions > * + * { margin-left: 4px; }
.loading-state > * + * { margin-left: 12px; }
}
.ref-file-header > * + * { margin-left: 8px; }
.ref-item > * + * { margin-left: 10px; }
.references-tab-container {
.header-info > * + * { margin-left: 10px; }
.loading-state > * + * { margin-left: 12px; }
}
}

.references-tab-container {
display: flex;
flex-direction: column;
Expand Down
Loading