alexandria-book-collection-manager 0.7.10 → 0.7.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/dependabot.yml +5 -1
- data/.github/workflows/ruby.yml +33 -19
- data/.rubocop.yml +12 -3
- data/.rubocop_todo.yml +30 -29
- data/CHANGELOG.md +64 -25
- data/Gemfile +0 -6
- data/Rakefile +2 -2
- data/alexandria-book-collection-manager.gemspec +20 -17
- data/bin/rake +28 -0
- data/bin/rspec +28 -0
- data/doc/dependency_decisions.yml +32 -26
- data/{bin → exe}/alexandria +1 -3
- data/lib/alexandria/about.rb +1 -0
- data/lib/alexandria/book_providers/bl_provider.rb +4 -6
- data/lib/alexandria/book_providers/{douban.rb → douban_provider.rb} +1 -1
- data/lib/alexandria/book_providers/loc_provider.rb +2 -6
- data/lib/alexandria/book_providers/sbn_provider.rb +2 -12
- data/lib/alexandria/book_providers/thalia_provider.rb +5 -6
- data/lib/alexandria/book_providers/{web.rb → website_based_provider.rb} +20 -1
- data/lib/alexandria/book_providers/{worldcat.rb → world_cat_provider.rb} +3 -4
- data/lib/alexandria/book_providers/z3950_provider.rb +24 -26
- data/lib/alexandria/book_providers.rb +14 -10
- data/lib/alexandria/config.rb +2 -2
- data/lib/alexandria/console.rb +12 -10
- data/lib/alexandria/export_format.rb +3 -2
- data/lib/alexandria/export_library.rb +31 -36
- data/lib/alexandria/import_library.rb +3 -4
- data/lib/alexandria/import_library_csv.rb +2 -2
- data/lib/alexandria/library_collection.rb +1 -1
- data/lib/alexandria/library_store.rb +19 -14
- data/lib/alexandria/logging.rb +22 -21
- data/lib/alexandria/models/book.rb +1 -2
- data/lib/alexandria/models/library.rb +5 -6
- data/lib/alexandria/preferences.rb +7 -19
- data/lib/alexandria/pseudo_marc_parser.rb +1 -1
- data/lib/alexandria/scanners/cue_cat.rb +5 -9
- data/lib/alexandria/scanners/{keyboard.rb → keyboard_wedge.rb} +3 -3
- data/lib/alexandria/scanners.rb +2 -2
- data/lib/alexandria/smart_library.rb +7 -3
- data/lib/alexandria/ui/acquire_dialog.rb +42 -45
- data/lib/alexandria/ui/alert_dialog.rb +1 -1
- data/lib/alexandria/ui/barcode_animation.rb +3 -3
- data/lib/alexandria/ui/book_properties_dialog.rb +9 -9
- data/lib/alexandria/ui/book_properties_dialog_base.rb +10 -11
- data/lib/alexandria/ui/builder_base.rb +1 -1
- data/lib/alexandria/ui/callbacks.rb +8 -7
- data/lib/alexandria/ui/confirm_erase_dialog.rb +1 -0
- data/lib/alexandria/ui/conflict_while_copying_dialog.rb +1 -0
- data/lib/alexandria/ui/export_dialog.rb +1 -0
- data/lib/alexandria/ui/{iconview.rb → icon_view_manager.rb} +1 -0
- data/lib/alexandria/ui/iconview_tooltips.rb +1 -1
- data/lib/alexandria/ui/keep_bad_isbn_dialog.rb +1 -0
- data/lib/alexandria/ui/libraries_combo.rb +1 -0
- data/lib/alexandria/ui/listview.rb +2 -0
- data/lib/alexandria/ui/main_app.rb +3 -1
- data/lib/alexandria/ui/multi_drag_treeview.rb +0 -2
- data/lib/alexandria/ui/new_book_dialog.rb +15 -20
- data/lib/alexandria/ui/new_book_dialog_manual.rb +7 -7
- data/lib/alexandria/ui/new_provider_dialog.rb +1 -0
- data/lib/alexandria/ui/new_smart_library_dialog.rb +2 -1
- data/lib/alexandria/ui/preferences_dialog.rb +4 -4
- data/lib/alexandria/ui/provider_preferences_dialog.rb +1 -0
- data/lib/alexandria/ui/really_delete_dialog.rb +1 -0
- data/lib/alexandria/ui/sidepane_manager.rb +49 -48
- data/lib/alexandria/ui/skip_entry_dialog.rb +1 -0
- data/lib/alexandria/ui/smart_library_properties_dialog.rb +1 -0
- data/lib/alexandria/ui/smart_library_properties_dialog_base.rb +2 -1
- data/lib/alexandria/ui/{sound.rb → sound_effects_player.rb} +3 -0
- data/lib/alexandria/ui/ui_manager.rb +192 -141
- data/lib/alexandria/ui.rb +1 -0
- data/lib/alexandria/version.rb +1 -1
- data/po/Makefile +1 -1
- data/po/it.po +64 -82
- data/spec/alexandria/book_providers/bl_provider_spec.rb +10 -1
- data/spec/alexandria/book_providers/douban_provider_spec.rb +17 -0
- data/spec/alexandria/book_providers/loc_provider_spec.rb +8 -0
- data/spec/alexandria/book_providers/sbn_provider_spec.rb +9 -1
- data/spec/alexandria/book_providers/thalia_provider_spec.rb +8 -0
- data/spec/alexandria/book_providers/world_cat_provider_spec.rb +8 -0
- data/spec/alexandria/book_providers/z3950_provider_spec.rb +22 -0
- data/spec/alexandria/console_spec.rb +1 -1
- data/spec/alexandria/export_library_spec.rb +57 -11
- data/spec/alexandria/library_collection_spec.rb +24 -0
- data/spec/alexandria/library_spec.rb +2 -1
- data/spec/alexandria/library_store_spec.rb +32 -0
- data/spec/alexandria/scanners/keyboard_wedge_spec.rb +47 -0
- data/spec/alexandria/ui/about_dialog_spec.rb +1 -1
- data/spec/alexandria/ui/acquire_dialog_spec.rb +8 -3
- data/spec/alexandria/ui/alert_dialog_spec.rb +1 -1
- data/spec/alexandria/ui/bad_isbns_dialog_spec.rb +1 -1
- data/spec/alexandria/ui/book_properties_dialog_spec.rb +1 -1
- data/spec/alexandria/ui/confirm_erase_dialog_spec.rb +1 -1
- data/spec/alexandria/ui/conflict_while_copying_dialog_spec.rb +1 -1
- data/spec/alexandria/ui/error_dialog_spec.rb +1 -1
- data/spec/alexandria/ui/export_dialog_spec.rb +3 -3
- data/spec/alexandria/ui/{iconview_spec.rb → icon_view_manager_spec.rb} +1 -1
- data/spec/alexandria/ui/keep_bad_isbn_dialog_spec.rb +1 -1
- data/spec/alexandria/ui/main_app_spec.rb +0 -2
- data/spec/alexandria/ui/new_book_dialog_manual_spec.rb +1 -1
- data/spec/alexandria/ui/new_book_dialog_spec.rb +6 -3
- data/spec/alexandria/ui/preferences_dialog_spec.rb +1 -1
- data/spec/alexandria/ui/provider_preferences_dialog_spec.rb +22 -7
- data/spec/alexandria/ui/really_delete_dialog_spec.rb +1 -1
- data/spec/alexandria/ui/sidepane_manager_spec.rb +1 -1
- data/spec/alexandria/ui/skip_entry_dialog_spec.rb +1 -1
- data/spec/alexandria/ui/ui_manager_spec.rb +2 -2
- data/spec/end_to_end/basic_run_spec.rb +2 -1
- data/spec/spec_helper.rb +4 -2
- data/tasks/setup.rb +1 -1
- data/util/rake/fileinstall.rb +5 -6
- data/util/rake/omfgenerate.rb +1 -1
- metadata +93 -61
- /data/spec/alexandria/ui/{sound_spec.rb → sound_effects_player_spec.rb} +0 -0
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: alexandria-book-collection-manager
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.11
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alexander McCormmach
|
|
@@ -25,11 +25,38 @@ authors:
|
|
|
25
25
|
- Takayuki Kusano
|
|
26
26
|
- Timothy Malone
|
|
27
27
|
- Zachary P. Landau
|
|
28
|
-
|
|
29
|
-
bindir: bin
|
|
28
|
+
bindir: exe
|
|
30
29
|
cert_chain: []
|
|
31
|
-
date:
|
|
30
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
32
31
|
dependencies:
|
|
32
|
+
- !ruby/object:Gem::Dependency
|
|
33
|
+
name: alexandria-zoom
|
|
34
|
+
requirement: !ruby/object:Gem::Requirement
|
|
35
|
+
requirements:
|
|
36
|
+
- - "~>"
|
|
37
|
+
- !ruby/object:Gem::Version
|
|
38
|
+
version: 0.6.0
|
|
39
|
+
type: :runtime
|
|
40
|
+
prerelease: false
|
|
41
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
42
|
+
requirements:
|
|
43
|
+
- - "~>"
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
version: 0.6.0
|
|
46
|
+
- !ruby/object:Gem::Dependency
|
|
47
|
+
name: csv
|
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
|
49
|
+
requirements:
|
|
50
|
+
- - "~>"
|
|
51
|
+
- !ruby/object:Gem::Version
|
|
52
|
+
version: '3.2'
|
|
53
|
+
type: :runtime
|
|
54
|
+
prerelease: false
|
|
55
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
56
|
+
requirements:
|
|
57
|
+
- - "~>"
|
|
58
|
+
- !ruby/object:Gem::Version
|
|
59
|
+
version: '3.2'
|
|
33
60
|
- !ruby/object:Gem::Dependency
|
|
34
61
|
name: gettext
|
|
35
62
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -50,28 +77,28 @@ dependencies:
|
|
|
50
77
|
requirements:
|
|
51
78
|
- - "~>"
|
|
52
79
|
- !ruby/object:Gem::Version
|
|
53
|
-
version: 4.0
|
|
80
|
+
version: 4.3.0
|
|
54
81
|
type: :runtime
|
|
55
82
|
prerelease: false
|
|
56
83
|
version_requirements: !ruby/object:Gem::Requirement
|
|
57
84
|
requirements:
|
|
58
85
|
- - "~>"
|
|
59
86
|
- !ruby/object:Gem::Version
|
|
60
|
-
version: 4.0
|
|
87
|
+
version: 4.3.0
|
|
61
88
|
- !ruby/object:Gem::Dependency
|
|
62
89
|
name: gtk3
|
|
63
90
|
requirement: !ruby/object:Gem::Requirement
|
|
64
91
|
requirements:
|
|
65
92
|
- - "~>"
|
|
66
93
|
- !ruby/object:Gem::Version
|
|
67
|
-
version: 4.0
|
|
94
|
+
version: 4.3.0
|
|
68
95
|
type: :runtime
|
|
69
96
|
prerelease: false
|
|
70
97
|
version_requirements: !ruby/object:Gem::Requirement
|
|
71
98
|
requirements:
|
|
72
99
|
- - "~>"
|
|
73
100
|
- !ruby/object:Gem::Version
|
|
74
|
-
version: 4.0
|
|
101
|
+
version: 4.3.0
|
|
75
102
|
- !ruby/object:Gem::Dependency
|
|
76
103
|
name: htmlentities
|
|
77
104
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -101,73 +128,61 @@ dependencies:
|
|
|
101
128
|
- !ruby/object:Gem::Version
|
|
102
129
|
version: '3.0'
|
|
103
130
|
- !ruby/object:Gem::Dependency
|
|
104
|
-
name:
|
|
131
|
+
name: logger
|
|
105
132
|
requirement: !ruby/object:Gem::Requirement
|
|
106
133
|
requirements:
|
|
107
|
-
- - "
|
|
108
|
-
- !ruby/object:Gem::Version
|
|
109
|
-
version: '1.0'
|
|
110
|
-
- - "<"
|
|
134
|
+
- - "~>"
|
|
111
135
|
- !ruby/object:Gem::Version
|
|
112
|
-
version: '1.
|
|
136
|
+
version: '1.7'
|
|
113
137
|
type: :runtime
|
|
114
138
|
prerelease: false
|
|
115
139
|
version_requirements: !ruby/object:Gem::Requirement
|
|
116
140
|
requirements:
|
|
117
|
-
- - "
|
|
118
|
-
- !ruby/object:Gem::Version
|
|
119
|
-
version: '1.0'
|
|
120
|
-
- - "<"
|
|
141
|
+
- - "~>"
|
|
121
142
|
- !ruby/object:Gem::Version
|
|
122
|
-
version: '1.
|
|
143
|
+
version: '1.7'
|
|
123
144
|
- !ruby/object:Gem::Dependency
|
|
124
|
-
name:
|
|
145
|
+
name: marc
|
|
125
146
|
requirement: !ruby/object:Gem::Requirement
|
|
126
147
|
requirements:
|
|
127
148
|
- - "~>"
|
|
128
149
|
- !ruby/object:Gem::Version
|
|
129
|
-
version: '1.
|
|
150
|
+
version: '1.3'
|
|
130
151
|
type: :runtime
|
|
131
152
|
prerelease: false
|
|
132
153
|
version_requirements: !ruby/object:Gem::Requirement
|
|
133
154
|
requirements:
|
|
134
155
|
- - "~>"
|
|
135
156
|
- !ruby/object:Gem::Version
|
|
136
|
-
version: '1.
|
|
157
|
+
version: '1.3'
|
|
137
158
|
- !ruby/object:Gem::Dependency
|
|
138
|
-
name:
|
|
159
|
+
name: nokogiri
|
|
139
160
|
requirement: !ruby/object:Gem::Requirement
|
|
140
161
|
requirements:
|
|
141
|
-
- - "
|
|
142
|
-
- !ruby/object:Gem::Version
|
|
143
|
-
version: '3.2'
|
|
144
|
-
- - "<"
|
|
162
|
+
- - "~>"
|
|
145
163
|
- !ruby/object:Gem::Version
|
|
146
|
-
version: '
|
|
164
|
+
version: '1.11'
|
|
147
165
|
type: :runtime
|
|
148
166
|
prerelease: false
|
|
149
167
|
version_requirements: !ruby/object:Gem::Requirement
|
|
150
168
|
requirements:
|
|
151
|
-
- - "
|
|
152
|
-
- !ruby/object:Gem::Version
|
|
153
|
-
version: '3.2'
|
|
154
|
-
- - "<"
|
|
169
|
+
- - "~>"
|
|
155
170
|
- !ruby/object:Gem::Version
|
|
156
|
-
version: '
|
|
171
|
+
version: '1.11'
|
|
157
172
|
- !ruby/object:Gem::Dependency
|
|
158
|
-
name:
|
|
173
|
+
name: observer
|
|
159
174
|
requirement: !ruby/object:Gem::Requirement
|
|
160
175
|
requirements:
|
|
161
176
|
- - "~>"
|
|
162
177
|
- !ruby/object:Gem::Version
|
|
163
|
-
version: 0.
|
|
178
|
+
version: 0.1.2
|
|
164
179
|
type: :runtime
|
|
165
180
|
prerelease: false
|
|
166
181
|
version_requirements: !ruby/object:Gem::Requirement
|
|
167
182
|
requirements:
|
|
168
183
|
- - "~>"
|
|
169
184
|
- !ruby/object:Gem::Version
|
|
170
|
-
version: 0.
|
|
185
|
+
version: 0.1.2
|
|
171
186
|
- !ruby/object:Gem::Dependency
|
|
172
187
|
name: gnome_app_driver
|
|
173
188
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -216,70 +231,84 @@ dependencies:
|
|
|
216
231
|
requirements:
|
|
217
232
|
- - "~>"
|
|
218
233
|
- !ruby/object:Gem::Version
|
|
219
|
-
version: '1.
|
|
234
|
+
version: '1.79'
|
|
220
235
|
type: :development
|
|
221
236
|
prerelease: false
|
|
222
237
|
version_requirements: !ruby/object:Gem::Requirement
|
|
223
238
|
requirements:
|
|
224
239
|
- - "~>"
|
|
225
240
|
- !ruby/object:Gem::Version
|
|
226
|
-
version: '1.
|
|
241
|
+
version: '1.79'
|
|
227
242
|
- !ruby/object:Gem::Dependency
|
|
228
243
|
name: rubocop-i18n
|
|
229
244
|
requirement: !ruby/object:Gem::Requirement
|
|
230
245
|
requirements:
|
|
231
246
|
- - "~>"
|
|
232
247
|
- !ruby/object:Gem::Version
|
|
233
|
-
version: '3.
|
|
248
|
+
version: '3.2'
|
|
234
249
|
type: :development
|
|
235
250
|
prerelease: false
|
|
236
251
|
version_requirements: !ruby/object:Gem::Requirement
|
|
237
252
|
requirements:
|
|
238
253
|
- - "~>"
|
|
239
254
|
- !ruby/object:Gem::Version
|
|
240
|
-
version: '3.
|
|
255
|
+
version: '3.2'
|
|
241
256
|
- !ruby/object:Gem::Dependency
|
|
242
257
|
name: rubocop-performance
|
|
243
258
|
requirement: !ruby/object:Gem::Requirement
|
|
244
259
|
requirements:
|
|
245
260
|
- - "~>"
|
|
246
261
|
- !ruby/object:Gem::Version
|
|
247
|
-
version: '1.
|
|
262
|
+
version: '1.25'
|
|
248
263
|
type: :development
|
|
249
264
|
prerelease: false
|
|
250
265
|
version_requirements: !ruby/object:Gem::Requirement
|
|
251
266
|
requirements:
|
|
252
267
|
- - "~>"
|
|
253
268
|
- !ruby/object:Gem::Version
|
|
254
|
-
version: '1.
|
|
269
|
+
version: '1.25'
|
|
255
270
|
- !ruby/object:Gem::Dependency
|
|
256
271
|
name: rubocop-rake
|
|
257
272
|
requirement: !ruby/object:Gem::Requirement
|
|
258
273
|
requirements:
|
|
259
274
|
- - "~>"
|
|
260
275
|
- !ruby/object:Gem::Version
|
|
261
|
-
version: 0.
|
|
276
|
+
version: 0.7.1
|
|
262
277
|
type: :development
|
|
263
278
|
prerelease: false
|
|
264
279
|
version_requirements: !ruby/object:Gem::Requirement
|
|
265
280
|
requirements:
|
|
266
281
|
- - "~>"
|
|
267
282
|
- !ruby/object:Gem::Version
|
|
268
|
-
version: 0.
|
|
283
|
+
version: 0.7.1
|
|
269
284
|
- !ruby/object:Gem::Dependency
|
|
270
285
|
name: rubocop-rspec
|
|
271
286
|
requirement: !ruby/object:Gem::Requirement
|
|
272
287
|
requirements:
|
|
273
288
|
- - "~>"
|
|
274
289
|
- !ruby/object:Gem::Version
|
|
275
|
-
version: '
|
|
290
|
+
version: '3.6'
|
|
291
|
+
type: :development
|
|
292
|
+
prerelease: false
|
|
293
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
294
|
+
requirements:
|
|
295
|
+
- - "~>"
|
|
296
|
+
- !ruby/object:Gem::Version
|
|
297
|
+
version: '3.6'
|
|
298
|
+
- !ruby/object:Gem::Dependency
|
|
299
|
+
name: simplecov
|
|
300
|
+
requirement: !ruby/object:Gem::Requirement
|
|
301
|
+
requirements:
|
|
302
|
+
- - "~>"
|
|
303
|
+
- !ruby/object:Gem::Version
|
|
304
|
+
version: 0.22.0
|
|
276
305
|
type: :development
|
|
277
306
|
prerelease: false
|
|
278
307
|
version_requirements: !ruby/object:Gem::Requirement
|
|
279
308
|
requirements:
|
|
280
309
|
- - "~>"
|
|
281
310
|
- !ruby/object:Gem::Version
|
|
282
|
-
version:
|
|
311
|
+
version: 0.22.0
|
|
283
312
|
- !ruby/object:Gem::Dependency
|
|
284
313
|
name: webmock
|
|
285
314
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -294,7 +323,6 @@ dependencies:
|
|
|
294
323
|
- - "~>"
|
|
295
324
|
- !ruby/object:Gem::Version
|
|
296
325
|
version: '3.9'
|
|
297
|
-
description:
|
|
298
326
|
email:
|
|
299
327
|
- matijs@matijs.net
|
|
300
328
|
executables:
|
|
@@ -323,7 +351,8 @@ files:
|
|
|
323
351
|
- TODO.md
|
|
324
352
|
- alexandria-book-collection-manager.gemspec
|
|
325
353
|
- alexandria.desktop.in
|
|
326
|
-
- bin/
|
|
354
|
+
- bin/rake
|
|
355
|
+
- bin/rspec
|
|
327
356
|
- doc/AUTHORS
|
|
328
357
|
- doc/BUGS
|
|
329
358
|
- doc/FAQ
|
|
@@ -332,16 +361,17 @@ files:
|
|
|
332
361
|
- doc/alexandria.1
|
|
333
362
|
- doc/cuecat_support.rdoc
|
|
334
363
|
- doc/dependency_decisions.yml
|
|
364
|
+
- exe/alexandria
|
|
335
365
|
- lib/alexandria.rb
|
|
336
366
|
- lib/alexandria/about.rb
|
|
337
367
|
- lib/alexandria/book_providers.rb
|
|
338
368
|
- lib/alexandria/book_providers/bl_provider.rb
|
|
339
|
-
- lib/alexandria/book_providers/
|
|
369
|
+
- lib/alexandria/book_providers/douban_provider.rb
|
|
340
370
|
- lib/alexandria/book_providers/loc_provider.rb
|
|
341
371
|
- lib/alexandria/book_providers/sbn_provider.rb
|
|
342
372
|
- lib/alexandria/book_providers/thalia_provider.rb
|
|
343
|
-
- lib/alexandria/book_providers/
|
|
344
|
-
- lib/alexandria/book_providers/
|
|
373
|
+
- lib/alexandria/book_providers/website_based_provider.rb
|
|
374
|
+
- lib/alexandria/book_providers/world_cat_provider.rb
|
|
345
375
|
- lib/alexandria/book_providers/z3950_provider.rb
|
|
346
376
|
- lib/alexandria/config.rb
|
|
347
377
|
- lib/alexandria/console.rb
|
|
@@ -363,7 +393,7 @@ files:
|
|
|
363
393
|
- lib/alexandria/pseudo_marc_parser.rb
|
|
364
394
|
- lib/alexandria/scanners.rb
|
|
365
395
|
- lib/alexandria/scanners/cue_cat.rb
|
|
366
|
-
- lib/alexandria/scanners/
|
|
396
|
+
- lib/alexandria/scanners/keyboard_wedge.rb
|
|
367
397
|
- lib/alexandria/smart_library.rb
|
|
368
398
|
- lib/alexandria/ui.rb
|
|
369
399
|
- lib/alexandria/ui/about_dialog.rb
|
|
@@ -383,8 +413,8 @@ files:
|
|
|
383
413
|
- lib/alexandria/ui/dndable.rb
|
|
384
414
|
- lib/alexandria/ui/error_dialog.rb
|
|
385
415
|
- lib/alexandria/ui/export_dialog.rb
|
|
416
|
+
- lib/alexandria/ui/icon_view_manager.rb
|
|
386
417
|
- lib/alexandria/ui/icons.rb
|
|
387
|
-
- lib/alexandria/ui/iconview.rb
|
|
388
418
|
- lib/alexandria/ui/iconview_tooltips.rb
|
|
389
419
|
- lib/alexandria/ui/import_dialog.rb
|
|
390
420
|
- lib/alexandria/ui/init.rb
|
|
@@ -407,7 +437,7 @@ files:
|
|
|
407
437
|
- lib/alexandria/ui/smart_library_properties_dialog.rb
|
|
408
438
|
- lib/alexandria/ui/smart_library_properties_dialog_base.rb
|
|
409
439
|
- lib/alexandria/ui/smart_library_rule_box.rb
|
|
410
|
-
- lib/alexandria/ui/
|
|
440
|
+
- lib/alexandria/ui/sound_effects_player.rb
|
|
411
441
|
- lib/alexandria/ui/ui_manager.rb
|
|
412
442
|
- lib/alexandria/undo_manager.rb
|
|
413
443
|
- lib/alexandria/version.rb
|
|
@@ -566,19 +596,23 @@ files:
|
|
|
566
596
|
- share/sounds/alexandria/scanning.ogg
|
|
567
597
|
- share/sounds/alexandria/scanning.wav
|
|
568
598
|
- spec/alexandria/book_providers/bl_provider_spec.rb
|
|
599
|
+
- spec/alexandria/book_providers/douban_provider_spec.rb
|
|
569
600
|
- spec/alexandria/book_providers/loc_provider_spec.rb
|
|
570
601
|
- spec/alexandria/book_providers/sbn_provider_spec.rb
|
|
571
602
|
- spec/alexandria/book_providers/thalia_provider_spec.rb
|
|
572
603
|
- spec/alexandria/book_providers/world_cat_provider_spec.rb
|
|
604
|
+
- spec/alexandria/book_providers/z3950_provider_spec.rb
|
|
573
605
|
- spec/alexandria/book_providers_spec.rb
|
|
574
606
|
- spec/alexandria/book_spec.rb
|
|
575
607
|
- spec/alexandria/console_spec.rb
|
|
576
608
|
- spec/alexandria/export_library_spec.rb
|
|
609
|
+
- spec/alexandria/library_collection_spec.rb
|
|
577
610
|
- spec/alexandria/library_spec.rb
|
|
578
611
|
- spec/alexandria/library_store_spec.rb
|
|
579
612
|
- spec/alexandria/preferences_spec.rb
|
|
580
613
|
- spec/alexandria/pseudo_marc_parser_spec.rb
|
|
581
614
|
- spec/alexandria/scanners/cue_cat_spec.rb
|
|
615
|
+
- spec/alexandria/scanners/keyboard_wedge_spec.rb
|
|
582
616
|
- spec/alexandria/smart_library_spec.rb
|
|
583
617
|
- spec/alexandria/ui/about_dialog_spec.rb
|
|
584
618
|
- spec/alexandria/ui/acquire_dialog_spec.rb
|
|
@@ -589,8 +623,8 @@ files:
|
|
|
589
623
|
- spec/alexandria/ui/conflict_while_copying_dialog_spec.rb
|
|
590
624
|
- spec/alexandria/ui/error_dialog_spec.rb
|
|
591
625
|
- spec/alexandria/ui/export_dialog_spec.rb
|
|
626
|
+
- spec/alexandria/ui/icon_view_manager_spec.rb
|
|
592
627
|
- spec/alexandria/ui/icons_spec.rb
|
|
593
|
-
- spec/alexandria/ui/iconview_spec.rb
|
|
594
628
|
- spec/alexandria/ui/import_dialog_spec.rb
|
|
595
629
|
- spec/alexandria/ui/keep_bad_isbn_dialog_spec.rb
|
|
596
630
|
- spec/alexandria/ui/main_app_spec.rb
|
|
@@ -604,7 +638,7 @@ files:
|
|
|
604
638
|
- spec/alexandria/ui/sidepane_manager_spec.rb
|
|
605
639
|
- spec/alexandria/ui/skip_entry_dialog_spec.rb
|
|
606
640
|
- spec/alexandria/ui/smart_library_properties_dialog_spec.rb
|
|
607
|
-
- spec/alexandria/ui/
|
|
641
|
+
- spec/alexandria/ui/sound_effects_player_spec.rb
|
|
608
642
|
- spec/alexandria/ui/ui_manager_spec.rb
|
|
609
643
|
- spec/data/isbns.txt
|
|
610
644
|
- spec/data/libraries/0.6.1-noisbn/My Library/0201398257.yaml
|
|
@@ -633,10 +667,9 @@ files:
|
|
|
633
667
|
- util/rake/omfgenerate.rb
|
|
634
668
|
homepage: http://www.github.com/mvz/alexandria-book-collection-manager
|
|
635
669
|
licenses:
|
|
636
|
-
- GPL-2.0
|
|
670
|
+
- GPL-2.0-or-later
|
|
637
671
|
metadata:
|
|
638
672
|
rubygems_mfa_required: 'true'
|
|
639
|
-
post_install_message:
|
|
640
673
|
rdoc_options:
|
|
641
674
|
- "--main"
|
|
642
675
|
- README.md
|
|
@@ -646,15 +679,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
646
679
|
requirements:
|
|
647
680
|
- - ">="
|
|
648
681
|
- !ruby/object:Gem::Version
|
|
649
|
-
version: 2.
|
|
682
|
+
version: 3.2.0
|
|
650
683
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
651
684
|
requirements:
|
|
652
685
|
- - ">="
|
|
653
686
|
- !ruby/object:Gem::Version
|
|
654
687
|
version: '0'
|
|
655
688
|
requirements: []
|
|
656
|
-
rubygems_version:
|
|
657
|
-
signing_key:
|
|
689
|
+
rubygems_version: 4.0.3
|
|
658
690
|
specification_version: 4
|
|
659
691
|
summary: GNOME application for managing collections of books
|
|
660
692
|
test_files: []
|
|
File without changes
|