aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Update changelogHEADmasterGravatar Tom Willemse2013-09-141-3/+10
|
* Show some messages for errorsGravatar Tom Willemse2013-09-141-1/+24
| | | | When certain actions can't be completed messages are now shown.
* Use (real) prepared statements for all db actionsGravatar Tom Willemse2013-09-141-135/+129
| | | | | | Prepared statements were already being used, but wrong. Instead of creating a string with the right information the SQL should contain parameters which should be bound by other functions.
* Show alert when adding a manga failsGravatar Tom Willemse2013-09-141-0/+3
| | | | In the future this should be expanded to include why adding it failed.
* Use SQL prepared statement for insertionGravatar Tom Willemse2013-09-141-31/+47
| | | | | | | | | | When creating a new manga with a name containing a quote (') it would fail. No message was shown to indicate it had failed and the manga was not added. This was caused by not quoting the quote in the SQL. All SQL queries should use prepared statements in order to make no mistakes quoting quotes and other things.
* Replace README.md with README.orgGravatar Tom Willemse2013-05-032-19/+19
|
* Upgrade license to GPLv3Gravatar Tom Willemse2013-05-0319-289/+910
|
* Add "Delete" button to detail windowGravatar Tom Willemsen2012-10-264-17/+79
| | | | | | | | | | | | | | | | * src/data.c (data_delete_manga): New function, deletes a manga and its associated volumes. (data_update_manga): Extra free. * src/eom-detail-window.c (add_menu): Add a "Delete" button to the menu. (on_delete): New function. Shows a confirmation dialog and if the user pressed "Ok" tries to delete the manga and close the window. * src/eom-main-window.c (on_row_activated): Connect to the `hide' signal instead of the `delete-event' signal. I couldn't find how te emit my own `delete-event' signal, then I found that hide works both when I close a window and when the window manager does it.
* Correctly show changes when total goes downGravatar Tom Willemsen2012-10-252-10/+27
| | | | | | | | | | | | | | | | | | | * src/data.c (data_update_manga): When updating, set `current_qty' to the lesser of `current_qty' and `total_qty' so that current will never exceed total. If the update went well remove any volumes that have numbers greater than the `total_qty'. * src/eom-detail-window.c (eom_detail_window_load): Get to upper bound of rows, if I need 1.5 rows I actually need 2 rows, what was I thinking? Clear both tables of children before filling them up again. (cb_destroy): New function. Just calls destroy in `widget', but `gtk_widget_destroy' doesn't seem like a valid `GtkCallback'. (on_volume_toggled): When adding a volume fails, revert one from `current_qty'. Don't mess with `self->manga->current_qty', just reset the manga id, otherwise we will know that there should be one more or less volume, but won't show it in the manga's volumes collection.
* Show an "infinite" list when total is unknownGravatar Tom Willemsen2012-10-251-2/+11
| | | | | | | | * src/eom-detail-window.c (eom_detail_window_load): If the currently selected manga's `total_qty' is `0', take, for viewing/editing purposes, the manga's `current_qty' + `1' instead. (on_volume_toggled): If the current manga's `total_qty' is `0' reload the screen after toggling a manga as collected.
* Add "Read" filter to main windowGravatar Tom Willemsen2012-10-253-6/+50
| | | | | | | | | | | | | * src/data.c (data_get_unread_manga): New function. Gets any manga that have unread volumes. (data_get_volumes_for_manga): Default `volumes' to `NULL' to make sure we don't get garbage by mistake. * src/eom-main-window.c: Add new enum. The filter states that the main screen has. (eom_main_window_load): Get a list of unread manga if the window's state indecates we're looking for them. (add_menu): Add read filter button, shows only unread manga.
* Add - and + button after number entryGravatar Tom Willemsen2012-10-241-0/+41
| | | | | | | | | | These should make it easier to work with numbers. * src/eom-new-item-dialog.c (change): New function. Callback for the `+' and `-' buttons, either adds or subtracts one from the quantity field. (eom_new_item_dialog_init): Add `+' and `-' buttons after quantity entry.
* Change "New Manga" to "New..."Gravatar Tom Willemsen2012-10-241-1/+1
| | | | Since it shows a dialog box it's better to indicate that with `...'.
* Show read and collected side-by-sideGravatar Tom Willemsen2012-10-241-6/+13
| | | | | * src/eom-detail-window.c (COLUMNS): Change the number of columns per table from 8 to 4 since they now have to share space.
* Add updating of data for mangaGravatar Tom Willemsen2012-10-247-70/+220
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The title and total numbers can now be changed. * src/data.c (data_add_manga): Change `name' to `const gchar*', we're not changing it. (data_update_manga): New function, updates a manga's information. * src/eom-detail-window.c (eom_detail_window_load): New function, prepares the tables to show the right data. (add_menu): New function, adds a menu to the window. (eom_detail_window_init): Call `add_menu' and prepare the other widgets for showing. (on_edit): New function, opens an edit dialog and reloads the screen afterwards. (set_manga_id): Move data filling to `eom_detail_window_load' and widget preparation to `eom_detail_window_init' and call `eom_detail_window_load'. * src/eom-detail-window.h (EomDetailWindow): Add `ctable' and `rtable' members, these are the tables that show the data. * src/eom-main-window.c (on_new): No need to save and copy the name of a manga, just destroy the widget later and destroy it always. * src/eom-new-item-dialog.c (eom_new_item_dialog_class_init): Add write-only `manga-id' property. (EOM_NEW_PROP_MID): New enum. (finalize): New function. Free the associated manga. (get_property): New function. Get a property, has no properties to get for now. (set_manga_id): New function. Show a manga's information in the entries. (set_property): New function. Set a property. Calls `set_manga_id' for the `manga-id' property. * src/eom-new-item-dialog.h (EomNewItemDialog): Add a `Manga' as member.
* Don't expand or fill the volumes tablesGravatar Tom Willemsen2012-10-231-4/+2
| | | | | | | | | | Makes it look ugly. * src/eom-detail-window.c (on_volume_toggled): Remove unused variable `txt'. (set_manga_id): Remove unused variable `bbox'. Change the `expand' and `fill' arguments to `gtk_box_pack_start' to `FALSE' for both tables.
* Show some more warnings during compilationGravatar Tom Willemsen2012-10-231-1/+1
|
* Don't show editable fields in detail windowGravatar Tom Willemsen2012-10-232-64/+3
|
* Rename edit window to detail windowGravatar Tom Willemsen2012-10-236-35/+36
| | | | It won't function as an edit window much longer.
* Set edit window title to manga nameGravatar Tom Willemsen2012-10-231-0/+2
|
* Remove some old commentsGravatar Tom Willemsen2012-10-231-4/+0
|
* Update debian/changelogGravatar Tom Willemsen2012-10-211-3/+15
|
* Show volumes in two tables, not listsGravatar Tom Willemsen2012-10-211-21/+53
| | | | | | | | | | | | | First collected volumes, then read volumes. * src/eom-edit-window.c (COLUMNS): New constant, the number of columns to show in the table. (create_volume_button): New function. Creates a button that represent the state of a volume. (eom_edit_window_init): Don't make the box with volumes force all widgets to be the same size. (set_manga_id): Show labels above each group of volumes, this way nobody has to guess on what they mean.
* Restyle, reindent, refactor (a little)Gravatar Tom Willemsen2012-10-2110-955/+866
|
* Remember filter after closing edit windowGravatar Tom Willemsen2012-10-213-16/+14
| | | | | | | | | | | | | | | | | * src/eom-main-window.c (eom_main_window_new): Set the `state' variable to 0 the first time around. (eom_main_window_load): Remove the `manga' parameter. Get incomplete collections when `state' is `0'. (eom_main_window_on_filter): Don't fetch any manga, just set the window's `state'. (eom_main_window_on_new): (eom_main_window_on_edit_closed): No more `manga' parameter for `eom_main_window_load'. * src/eom-main-window.h (struct _EomMainWindow): Add `state' property. * src/interface.c (interface_show_main_window): No more `manga' parameter for `eom_main_window_load'.
* Update README.mdGravatar Tom Willemsen2012-10-201-1/+2
|
* Change version and note about sematic versioningGravatar Tom Willemsen2012-10-202-1/+6
|
* Add silly readmeGravatar Tom Willemsen2012-10-201-0/+13
|
* Add Collect filterGravatar Tom Willemsen2012-10-205-25/+95
| | | | | | | | | | | | | | | | | | | | | | | | | | | This filter, in the main window, shows only the manga that still need to be collected, not the completed ones. * src/data.c (data_get_manga): Use `data_get_manga_for_query'. (data_get_incomplete_manga): New function, get all manga that arent' completely collected yet. (data_get_manga_for_query): New function, fetches all the manga as `query' specifies. * src/data.h: Add `data_get_incomplete_manga'. * src/eom-main-window.c (filter_args): New struct. Contains arguments needed by the filter callback. (eom_main_window_load): Accept a list of manga, this list will be used to show the manga, if it's NULL, a list of all manga is used. (eom_main_window_add_menu): Add `All' and `Collect' filter buttons. (eom_main_window_on_filter): Callback for the filter buttons, reloads the list with the correct manga. * src/eom-main-window.h: Add manga parameter to `eom_main_window_load'. * src/interface.c (interface_show_main_window): Pass `NULL' to `eom_main_window_load' to show all manga.
* Manga volumes can be marked 'read'Gravatar Tom Willemsen2011-01-304-34/+147
| | | | In the eom-edit-window a list is shown with all the available manga which indicated which ones have been read
* Changed email adresGravatar Tom Willemsen2011-01-203-2/+15
|
* Merge branch 'selector'Gravatar Tom Willemsen2010-11-184-132/+32
|\
| * SelectionGravatar Tom Willemsen2010-11-184-132/+32
|/ | | | The main window now actually looks and works like it should as defined by the style guides
* Segfault FS#2Gravatar Tom Willemsen2010-11-031-0/+1
| | | | Forgot to calloc the collection of collected manga
* Added little bit of memory management, removed a lot of ↵Gravatar Tom Willemsen2010-11-033-11/+23
| | | | g_print
* Changed section from user/other to user/utilitiesGravatar Tom Willemsen2010-10-281-1/+1
|
* Merge branch 'deb'Gravatar Tom Willemsen2010-10-2840-0/+1584
|\
| * Created files for packaging as .debGravatar Tom Willemsen2010-10-2826-0/+937
| |
| * MakesGravatar Tom Willemsen2010-10-2511-6/+594
| | | | | | | | using automake it can be built and installed
| * Compiles with automakeGravatar Tom Willemsen2010-10-254-58/+16
| |
| * First tryGravatar Tom Willemsen2010-10-2210-0/+101
|/
* Edit which volumes you haveGravatar Tom Willemsen2010-10-229-85/+236
|
* WoopsGravatar Tom Willemsen2010-10-212-1/+1
|
* Changed name from Collections to Eye on MangaGravatar Tom Willemsen2010-10-2119-414/+419
|
* Merge branch 'data' into eye-on-mangaGravatar Tom Willemsen2010-10-211-1/+1
|\ | | | | | | | | Conflicts: src/c-edit-window.c
| * Edit screenGravatar Tom Willemsen2010-10-215-53/+223
| |
* | Edit screenGravatar Tom Willemsen2010-10-215-53/+223
|/
* Edit windowGravatar Tom Willemsen2010-10-205-0/+174
|
* Change qty and add itemsGravatar Tom Willemsen2010-10-194-23/+145
| | | | | Current quantity can be changed by clicking add or remove Add new series
* DataGravatar Tom Willemsen2010-10-199-10/+287
| | | | | Data is gotten from an sqlite3 database New series can be added to the database