mirror of
https://github.com/actualbudget/actual.git
synced 2026-05-07 20:38:54 -05:00
Compare commits
1 Commits
master
...
youngcw/fi
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
47c556cb24 |
1
.github/workflows/cut-release-branch.yml
vendored
1
.github/workflows/cut-release-branch.yml
vendored
@@ -26,7 +26,6 @@ permissions:
|
||||
jobs:
|
||||
cut-release-branch:
|
||||
runs-on: ubuntu-latest
|
||||
environment: release
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
|
||||
1
.github/workflows/docker-edge.yml
vendored
1
.github/workflows/docker-edge.yml
vendored
@@ -32,7 +32,6 @@ jobs:
|
||||
if: github.event_name == 'workflow_dispatch' || !github.event.repository.fork
|
||||
name: Build Docker image
|
||||
runs-on: ubuntu-latest
|
||||
environment: release
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu, alpine]
|
||||
|
||||
1
.github/workflows/docker-release.yml
vendored
1
.github/workflows/docker-release.yml
vendored
@@ -27,7 +27,6 @@ jobs:
|
||||
build:
|
||||
name: Build Docker image
|
||||
runs-on: ubuntu-latest
|
||||
environment: release
|
||||
steps:
|
||||
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
with:
|
||||
|
||||
2
.github/workflows/electron-master.yml
vendored
2
.github/workflows/electron-master.yml
vendored
@@ -21,7 +21,6 @@ jobs:
|
||||
# this is so the assets can be added to the release
|
||||
permissions:
|
||||
contents: write
|
||||
environment: release
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
@@ -124,7 +123,6 @@ jobs:
|
||||
publish-microsoft-store:
|
||||
needs: build
|
||||
runs-on: windows-latest
|
||||
environment: release
|
||||
if: ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') }}
|
||||
steps:
|
||||
- name: Install StoreBroker
|
||||
|
||||
1
.github/workflows/netlify-release.yml
vendored
1
.github/workflows/netlify-release.yml
vendored
@@ -19,7 +19,6 @@ concurrency:
|
||||
jobs:
|
||||
build-and-deploy:
|
||||
runs-on: ubuntu-latest
|
||||
environment: release
|
||||
steps:
|
||||
- name: Repository Checkout
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
|
||||
1
.github/workflows/publish-flathub.yml
vendored
1
.github/workflows/publish-flathub.yml
vendored
@@ -21,7 +21,6 @@ concurrency:
|
||||
jobs:
|
||||
publish-flathub:
|
||||
runs-on: ubuntu-22.04
|
||||
environment: release
|
||||
steps:
|
||||
- name: Resolve version
|
||||
id: resolve_version
|
||||
|
||||
@@ -27,7 +27,6 @@ jobs:
|
||||
- windows-latest
|
||||
- macos-latest
|
||||
runs-on: ${{ matrix.os }}
|
||||
environment: release
|
||||
if: github.event.repository.fork == false
|
||||
steps:
|
||||
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
||||
|
||||
2
.github/workflows/publish-npm-packages.yml
vendored
2
.github/workflows/publish-npm-packages.yml
vendored
@@ -87,7 +87,6 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
name: Publish npm packages
|
||||
needs: build-and-pack
|
||||
environment: release
|
||||
permissions:
|
||||
contents: read
|
||||
packages: write
|
||||
@@ -106,7 +105,6 @@ jobs:
|
||||
node-version: 24
|
||||
check-latest: true
|
||||
registry-url: 'https://registry.npmjs.org'
|
||||
cache: false
|
||||
|
||||
- name: Publish Core
|
||||
run: |
|
||||
|
||||
@@ -208,6 +208,19 @@ export function BankSyncCheckboxOptions({
|
||||
<Trans>Reimport deleted transactions</Trans>
|
||||
</CheckboxOptionWithHelp>
|
||||
|
||||
<CheckboxOptionWithHelp
|
||||
id="form_update_dates"
|
||||
checked={updateDates}
|
||||
onChange={() => setUpdateDates(!updateDates)}
|
||||
disabled={!importTransactions}
|
||||
helpText={t(
|
||||
'By enabling this, the transaction date will be overwritten by the one provided by the bank.',
|
||||
)}
|
||||
helpMode={helpMode}
|
||||
>
|
||||
<Trans>Update Dates</Trans>
|
||||
</CheckboxOptionWithHelp>
|
||||
|
||||
<CheckboxOptionWithHelp
|
||||
id="form_import_transactions"
|
||||
checked={!importTransactions}
|
||||
@@ -219,18 +232,6 @@ export function BankSyncCheckboxOptions({
|
||||
>
|
||||
<Trans>Investment Account</Trans>
|
||||
</CheckboxOptionWithHelp>
|
||||
|
||||
<CheckboxOptionWithHelp
|
||||
id="form_update_dates"
|
||||
checked={updateDates}
|
||||
onChange={() => setUpdateDates(!updateDates)}
|
||||
helpText={t(
|
||||
'By enabling this, the transaction date will be overwritten by the one provided by the bank.',
|
||||
)}
|
||||
helpMode={helpMode}
|
||||
>
|
||||
<Trans>Update Dates</Trans>
|
||||
</CheckboxOptionWithHelp>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,6 +0,0 @@
|
||||
---
|
||||
category: Maintenance
|
||||
authors: [MikesGlitch]
|
||||
---
|
||||
|
||||
Improve Github workflows with suggestions from the code scan.
|
||||
6
upcoming-release-notes/7742.md
Normal file
6
upcoming-release-notes/7742.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
category: Maintenance
|
||||
authors: [youngcw]
|
||||
---
|
||||
|
||||
Fix disabled settings of the bank sync options
|
||||
Reference in New Issue
Block a user