Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
6d93f59
Add `Finish CIP` option to Tools
f-osorio Feb 3, 2026
0ad1b51
Fix copyright duplication on manual edit
f-osorio Feb 3, 2026
fbce78c
Add year to call number when there is none
f-osorio Feb 3, 2026
ad94d14
Fix multiple uses of CIP function creating multiple cc dates
f-osorio Feb 3, 2026
82b3aa0
Fix `cancel` still tryingt to make changes
f-osorio Feb 3, 2026
482ab16
Move "Finish CIP" into its own modal
f-osorio Feb 4, 2026
f7da89c
clean up
f-osorio Feb 4, 2026
9d85cb6
Handle `yes` update dates, but no pub year given
f-osorio Feb 4, 2026
5608c19
Add confirmation when updates but no date
f-osorio Feb 4, 2026
983d3a8
Limit to staging/dev
f-osorio Feb 6, 2026
4da88dc
Adjust adding brackets to 264 $c
f-osorio Feb 6, 2026
844588f
Merge branch 'main' into finish-cip-button
f-osorio Feb 10, 2026
a087ac1
Merge branch 'main' into finish-cip-button
f-osorio Feb 11, 2026
763fc6c
Merge branch 'finish-cip-button' of github.com:lcnetdev/marva-quartz …
f-osorio Feb 11, 2026
457d97a
Only show when on edit screen
f-osorio Feb 11, 2026
b6b7a00
Expand CIP functions
f-osorio Feb 18, 2026
1dc34b7
Merge branch 'main' into finish-cip-button
f-osorio Feb 19, 2026
430e916
Update Instance Note
f-osorio Feb 19, 2026
3d957f9
fix initial height
f-osorio Mar 9, 2026
8c85201
Merge branch 'main' into finish-cip-button
f-osorio May 11, 2026
bbf4342
Fix merge conflict fix bug
f-osorio May 11, 2026
6464f36
Split ebook CIP from dat
f-osorio May 11, 2026
8cef2b5
Merge branch 'main' into finish-cip-button
f-osorio May 15, 2026
7e24771
Adjust name, add hotkey
f-osorio May 15, 2026
1b9380f
Remove "ebook?", turn into a form
f-osorio May 18, 2026
b29b314
Improve function when there's an empty date
f-osorio May 18, 2026
238acfc
Populate copyright date in modal if available
f-osorio May 28, 2026
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
12 changes: 12 additions & 0 deletions ::
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
Add pref to use arrow keys to nav btwn compts

Was the default, now a preference that is opt in. Only applies to
literal fields. Lookups still use arrow keys to move between components.
# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.
#
# On branch pref-nav-with-arrows
# Changes to be committed:
# modified: src/components/panels/edit/fields/Literal.vue
# modified: src/stores/preference.js
#
8 changes: 7 additions & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ import AutoDeweyModal from "./components/panels/edit/modals/AutoDeweyModal.vue";
import YoshinoSubjectsModal from "./components/panels/edit/modals/YoshinoSubjectsModal.vue";
import MarvaScanModal from "./components/panels/edit/modals/MarvaScanModal.vue";
import UpdateAvailableModal from "@/components/general/UpdateAvailableModal.vue";
import CipModal from "@/components/panels/edit/modals/CipModal.vue"



Expand Down Expand Up @@ -59,6 +60,7 @@ export default {
FieldColorsModal,
HubStubCreateModal,
NacoStubCreateModal,
CipModal,
MarvaLogModal,
UserDirectoryModal,
FolioSyncModal
Expand All @@ -76,7 +78,7 @@ export default {
...mapStores(useConfigStore, useProfileStore, usePreferenceStore, useMarvaScanStore),
// // gives read access to this.count and this.double
...mapState(useProfileStore, ['profilesLoaded', 'showValidateModal','profilesLoaded', 'showPostModal', 'showItemInstanceSelection', 'isTestEnv']),
...mapWritableState(useProfileStore, ['showShelfListingModal','showHubStubCreateModal', 'showAutoDeweyModal', 'showYoshinoSubjectsModal', 'showNacoStubCreateModal', 'showMarvaLogModal', 'showUserDirectoryModal', 'showFolioSyncModal']),
...mapWritableState(useProfileStore, ['showShelfListingModal','showHubStubCreateModal', 'showAutoDeweyModal', 'showYoshinoSubjectsModal', 'showNacoStubCreateModal', 'showMarvaLogModal', 'showUserDirectoryModal', 'showFolioSyncModal', 'showCipModal']),
...mapWritableState(useMarvaScanStore, { showMarvaScanModal: 'showModal' }),

...mapState(usePreferenceStore, ['showPrefModal','catCode','ssoSessionExpired']),
Expand Down Expand Up @@ -207,6 +209,10 @@ export default {
<TextMacroModal v-model="showTextMacroModal" />
</template>

<template v-if="showCipModal==true">
<CipModal v-model="showCipModal" />
</template>

<template v-if="showNonLatinBulkModal==true">
<NonLatinBulkModal v-model="showNonLatinBulkModal" />
</template>
Expand Down
Loading
Loading