chore: remove outdated changes

This commit is contained in:
Travis Abendshien
2025-08-12 14:20:38 -07:00
parent 2d92dd3060
commit 3cf1bf1530
3 changed files with 4 additions and 13 deletions
+4 -4
View File
@@ -250,8 +250,8 @@ Discrete library objects representing [attributes](<https://en.wikipedia.org/wik
### :material-file-cog: Macros
- [ ] Standard, Human Readable Format (TOML) :material-chevron-triple-up:{ .priority-high title="High Priority" } **[v9.7.x]**
- [ ] Versioning System :material-chevron-triple-up:{ .priority-high title="High Priority" } **[v9.7.x]**
- [x] Standard, Human Readable Format (TOML) :material-chevron-triple-up:{ .priority-high title="High Priority" } **[v9.7.x]**
- [x] Versioning System :material-chevron-triple-up:{ .priority-high title="High Priority" } **[v9.7.x]**
- [ ] Triggers **[v9.7.x]**
- [ ] On File Added :material-chevron-triple-up:{ .priority-high title="High Priority" }
- [ ] On Library Refresh :material-chevron-triple-up:{ .priority-high title="High Priority" }
@@ -289,8 +289,8 @@ Packs are intended as an easy way to import and export specific data between lib
- [ ] Standard, Human Readable Format (TOML) :material-chevron-triple-up:{ .priority-high title="High Priority" }
- [ ] Versioning System :material-chevron-double-up:{ .priority-med title="Medium Priority" }
- [x] Macro Sharing :material-chevron-triple-up:{ .priority-high title="High Priority" } **[v9.7.x]**
- [ ] Importable :material-chevron-triple-up:{ .priority-high title="High Priority" }
- [ ] Exportable :material-chevron-triple-up:{ .priority-high title="High Priority" }
- [x] Importable :material-chevron-triple-up:{ .priority-high title="High Priority" }
- [x] Exportable :material-chevron-triple-up:{ .priority-high title="High Priority" }
- [ ] Sharable Entry Data :material-chevron-up:{ .priority-low title="Low Priority" }
- _Specifics of this are yet to be determined_
- [ ] Export Library to Human Readable Format :material-chevron-triple-up:{ .priority-high title="High Priority" } **[v10.0.0]**
@@ -392,14 +392,6 @@ class MainMenuBar(QMenuBar):
def setup_macros_menu(self):
self.macros_menu = QMenu(Translations["menu.macros"], self)
self.test_macro_1 = "import_metadata.toml"
self.test_macro_1_action = QAction(self.test_macro_1, self)
self.macros_menu.addAction(self.test_macro_1_action)
self.test_macro_2 = "conditionals.toml"
self.test_macro_2_action = QAction(self.test_macro_2, self)
self.macros_menu.addAction(self.test_macro_2_action)
self.folders_to_tags_action = QAction(Translations["menu.macros.folders_to_tags"], self)
self.folders_to_tags_action.setEnabled(False)
self.macros_menu.addAction(self.folders_to_tags_action)
-1
View File
@@ -622,7 +622,6 @@ class QtDriver(DriverMixin, QObject):
# region Macros Menu ==========================================================
self.main_window.menu_bar.macros_menu.aboutToShow.connect(self.update_macros_menu)
self.update_macros_menu()
def create_folders_tags_modal():
if not hasattr(self, "folders_modal"):