Feed Advanced Search

May 27 2020

atem added a comment to T12566: [Junior Job]: Show the latest version number of KMyMoney on the homepage.

Ok then in that case may I suggest to do like Vscode guys did : https://code.visualstudio.com/

May 27 2020, 4:19 PM · Junior Jobs, KMyMoney, Websites
ostroffjh added a comment to T12566: [Junior Job]: Show the latest version number of KMyMoney on the homepage.

I wish it were that simeple :-) Although we have both current (5.0.x) and vintage (4.8.x) releases, we have several "versions" of each, especially depending on platform. For Linux, it's source, appimage, or get it from your distribution. For Windows, there are multiple paths, depending on build system (craft or cross compiling) and build system (autotools or msys, and I may have these wrong). There's also MacOS. That multiplicity is unfortunate, but due to not all combinations being able to deliver all functionality and components successfully. However, I think it would be really cool if we could do something like LibreOffice - a drop down for each version with an entry for each available download. That would complement and not replace the current different page for each build type with an entry for each version - especially the CI services with daily entries. Bottom line, however, is the simplest thing we need is just to have the most recent 5.0.x and 4.8.x releases listed, perhaps with release dates, on the main page.

May 27 2020, 3:40 PM · Junior Jobs, KMyMoney, Websites
atem added a comment to T12566: [Junior Job]: Show the latest version number of KMyMoney on the homepage.

@tbaumgart ok then no problem, we can do something like Libreoffice : https://www.libreoffice.org/download/download/

May 27 2020, 3:00 PM · Junior Jobs, KMyMoney, Websites
tbaumgart added a comment to T12566: [Junior Job]: Show the latest version number of KMyMoney on the homepage.

@atem Don't worry to much about the enclosing HTML. As I mentioned, that was the q&d way to get the jekyll supported version going. It's the content that should be kept. We don't care if it comes out of a config file (preferred) or not. I agree, it is easier to maintain. Regarding the versions: we have a latest based on KF5 (stable) and one on KDE4 (vintage is a cool name). The versions available for download maybe different, depending on the OS environment. Here is how we displayed different versions in the old days of the project (Example).

May 27 2020, 2:53 PM · Junior Jobs, KMyMoney, Websites
atem added a comment to T12566: [Junior Job]: Show the latest version number of KMyMoney on the homepage.

@ostroffjh, Still I don't get what you mean. For Plasma Desktop, it's written "Latest Release: Plasma 5.18 LTS" even if they do fixes older releases. So just a variable in _config.yml like kmymoney_latest_version: 5.0.8 and display it in the homepage is easy. If you need something more advanced, I need more details how you want it displayed.

May 27 2020, 2:41 PM · Junior Jobs, KMyMoney, Websites
tbaumgart added a comment to T12566: [Junior Job]: Show the latest version number of KMyMoney on the homepage.

@atem in case you need to adjust the HTML and want to convert it to markdown, please feel free to make suggestions. This seems to be a leftover from the conversion to jekyll.

May 27 2020, 2:09 PM · Junior Jobs, KMyMoney, Websites
ostroffjh added a comment to T12566: [Junior Job]: Show the latest version number of KMyMoney on the homepage.

@atem Development is done in master branch, so no version numbers there. However, we do make releases from both 5.0 and 4.8 branches.

May 27 2020, 1:08 PM · Junior Jobs, KMyMoney, Websites
atem added a comment to T12566: [Junior Job]: Show the latest version number of KMyMoney on the homepage.

@ognarb I can do it, I am just confused about "Multiple branches should be supported (stable, unstable, vintage, ...)".

May 27 2020, 7:29 AM · Junior Jobs, KMyMoney, Websites

May 17 2020

wrobelda added a watcher for KMyMoney: wrobelda.
May 17 2020, 8:38 PM
tbaumgart closed D29776: Fix New Account Wizard throws exception on empty payment method selected.
May 17 2020, 8:39 AM · KMyMoney

May 16 2020

tbaumgart accepted D29776: Fix New Account Wizard throws exception on empty payment method selected.

I'll take care of landing it but this may only happen after the repository has been moved to its new location over the weekend.

May 16 2020, 6:48 AM · KMyMoney
rszczesiak updated the diff for D29776: Fix New Account Wizard throws exception on empty payment method selected.

Added the fix for incorrect Next button tooltip messages on the Schedule page.

May 16 2020, 6:45 AM · KMyMoney
tbaumgart added a comment to D29776: Fix New Account Wizard throws exception on empty payment method selected.

Simply add it here.

May 16 2020, 4:35 AM · KMyMoney

May 15 2020

rszczesiak added a comment to D29776: Fix New Account Wizard throws exception on empty payment method selected.

OK, I found it.
The 2nd last line of the isComplete() method should be d->m_wizard->d_func()->m_nextButton->setToolTip(msg); instead of d->m_wizard->d_func()->m_finishButton->setToolTip(msg);
Now the tooltip message informs the user why the Next button is disabled.

May 15 2020, 8:24 PM · KMyMoney
ostroffjh added a comment to D29776: Fix New Account Wizard throws exception on empty payment method selected.

I suppose that the minimal fix to prevent the crash is the best approach here, and the issue of notifying the user of why an action is disabled can be deferred for later discussion of a consistent approach.

May 15 2020, 8:16 PM · KMyMoney
rszczesiak added a comment to D29776: Fix New Account Wizard throws exception on empty payment method selected.

@tbaumgart, That's right. I also investigated those #if 0/#endif lines to find out why they had been added before I decided to bring those two payment methods back and found no good reason. It might well have been only temporary and the author forgot to revert the change.

May 15 2020, 6:44 PM · KMyMoney
rszczesiak added a comment to D29776: Fix New Account Wizard throws exception on empty payment method selected.

@ostroffjh, I agree that your concerns are important. I have just skimmed through the code and came acrosss something that may render useful.
There is a virtual method isComplete() in KMyMoneyWizardPage class.

/**
  * This returns, if all necessary data for this page has been
  * filled. It is used to enabled the 'Next' or 'Finish' button.
  * The button is only enabled, if this method returns @p true,
  * which is the default implementation.
  *
  * @retval false more data required from the user before we can proceed
  * @retval true all data available, we allow to switch to the next page
  */
virtual bool isComplete() const;

The method is overridden in subclass CreditCardSchedulePage which is changed by this patch.
It seems this approach works as expected on the previous page:


For some reason tooltip message is not supported correctly on the Schedule page. This needs looking into more closely to find out why.

May 15 2020, 6:39 PM · KMyMoney
tbaumgart added a comment to D29776: Fix New Account Wizard throws exception on empty payment method selected.

I wondered who added the #if 0 / #endif and traced them back into 2009 but could not go back any further. They existed every since.
It certainly does not make sense to skip adding a method and then later on make it the current one (2nd last line of this method). That is simply wrong. So the fix to add those methods seems valid to me.

May 15 2020, 6:32 PM · KMyMoney
ostroffjh added a comment to D29776: Fix New Account Wizard throws exception on empty payment method selected.

I defer a decision to Thomas, and consistency across the app is good. The issue of how to notify the user what is blocking the desired action is a more widespread problem, and might be better deferred until it can be addressed in general, and not just in specific cases. (That has mostly arisen when trying to delete something, and it is not clear what is preventing that.)

May 15 2020, 3:14 PM · KMyMoney
rszczesiak added a comment to D29776: Fix New Account Wizard throws exception on empty payment method selected.

The patch also disallows the user to intentionally set empty payment method. Empty method is not listed. Therefore I consider the fix quite solid.

May 15 2020, 3:11 PM · KMyMoney
rszczesiak added a comment to D29776: Fix New Account Wizard throws exception on empty payment method selected.

What about just refusing to allow to complete the creation (instead of crashing) unless a payment method is selected, but not set a default type?

May 15 2020, 2:57 PM · KMyMoney
ostroffjh added a comment to D29776: Fix New Account Wizard throws exception on empty payment method selected.

What about just refusing to allow to complete the creation (instead of crashing) unless a payment method is selected, but not set a default type? That does raise the same issue we have elsewhere of how to inform the user of why the action is disabled - but I suggested in another bug using some sort of notification or status area, especially if there was only one remaining reason the action could not be completed.

May 15 2020, 2:34 PM · KMyMoney
rszczesiak requested review of D29776: Fix New Account Wizard throws exception on empty payment method selected.
May 15 2020, 2:27 PM · KMyMoney

May 14 2020

tbaumgart closed D29614: Fix Account context menu's Reconcile option opens incorrect ledger.
May 14 2020, 5:37 PM · KMyMoney

May 13 2020

tbaumgart added a comment to D29614: Fix Account context menu's Reconcile option opens incorrect ledger.

Yes, will do. Just did not find the time to do it.

May 13 2020, 9:00 AM · KMyMoney
rszczesiak added a comment to D29614: Fix Account context menu's Reconcile option opens incorrect ledger.

@tbaumgart, thank you for your acceptance. Could you please land the patch for me? I do not have git push permission.

May 13 2020, 6:51 AM · KMyMoney

May 12 2020

tbaumgart accepted D29614: Fix Account context menu's Reconcile option opens incorrect ledger.
May 12 2020, 7:55 PM · KMyMoney

May 11 2020

rszczesiak added a project to D29614: Fix Account context menu's Reconcile option opens incorrect ledger: KMyMoney.
May 11 2020, 10:01 AM · KMyMoney

May 8 2020

tbaumgart closed D29446: Fix Freeze: logarithmic vertical axis and negative data range From value.
May 8 2020, 11:40 AM · KMyMoney
rszczesiak updated the diff for D29446: Fix Freeze: logarithmic vertical axis and negative data range From value.

Removed unnecessary function declaration.

May 8 2020, 10:10 AM · KMyMoney
rszczesiak updated the diff for D29446: Fix Freeze: logarithmic vertical axis and negative data range From value.

Added the requested changes.

May 8 2020, 10:07 AM · KMyMoney
tbaumgart closed D29480: Fix Logarithmic vertical axis has multiple zero labels.
May 8 2020, 7:37 AM · KMyMoney

May 6 2020

rszczesiak added a comment to D29480: Fix Logarithmic vertical axis has multiple zero labels.

Thanks :) I really like to see that charts work as expected.

May 6 2020, 8:01 PM · KMyMoney
tbaumgart added inline comments to D29446: Fix Freeze: logarithmic vertical axis and negative data range From value.
May 6 2020, 7:22 PM · KMyMoney
rszczesiak added inline comments to D29446: Fix Freeze: logarithmic vertical axis and negative data range From value.
May 6 2020, 6:35 PM · KMyMoney
tbaumgart accepted D29480: Fix Logarithmic vertical axis has multiple zero labels.

I see, you get a kick out of this charting stuff. Cool.

May 6 2020, 4:49 PM · KMyMoney
tbaumgart requested changes to D29446: Fix Freeze: logarithmic vertical axis and negative data range From value.
May 6 2020, 4:04 PM · KMyMoney
rszczesiak added a comment to D29480: Fix Logarithmic vertical axis has multiple zero labels.

Before fix:

May 6 2020, 1:37 PM · KMyMoney
rszczesiak added a project to D29480: Fix Logarithmic vertical axis has multiple zero labels: KMyMoney.
May 6 2020, 12:07 PM · KMyMoney
rszczesiak updated the diff for D29446: Fix Freeze: logarithmic vertical axis and negative data range From value.

Simplified c'tor arguments. Removed unnecessary if statements. Added indentation.

May 6 2020, 7:41 AM · KMyMoney

May 5 2020

rszczesiak added a project to D29446: Fix Freeze: logarithmic vertical axis and negative data range From value: KMyMoney.
May 5 2020, 7:27 PM · KMyMoney

May 2 2020

tbaumgart closed D29255: Fix ordinate axis labels when zooming.
May 2 2020, 5:12 AM · KDiagram, KMyMoney

May 1 2020

rszczesiak updated the diff for D29255: Fix ordinate axis labels when zooming.

With the priceless help from @tbaumgart I managed to find a solution. Please find attached the final version of the patch.

May 1 2020, 9:28 PM · KDiagram, KMyMoney
rszczesiak updated the diff for D29255: Fix ordinate axis labels when zooming.

I have done some more testing and I realized that precision (number of digits after the decimal point) is subject to change. In fact, account balance history chart is pretty straightforward but the code that I worked with is also used with configurable charts in reports. Precision can be changed in the Range tab of the Report Configuration window.
My previous patch created yAxis by calling new KReportCartesianAxis(loc, m_precision) whereas it should be new KReportCartesianAxis(loc, config.yLabelsPrecision()).

May 1 2020, 12:37 PM · KDiagram, KMyMoney

Apr 30 2020

rszczesiak updated the diff for D29255: Fix ordinate axis labels when zooming.
Apr 30 2020, 7:40 AM · KDiagram, KMyMoney
rszczesiak updated the diff for D29255: Fix ordinate axis labels when zooming.

0.0 is quite a special argument for the logarithm. I made one last change adding support for this case.

Apr 30 2020, 7:30 AM · KDiagram, KMyMoney
rszczesiak updated the diff for D29255: Fix ordinate axis labels when zooming.

Also there was a todo comment in the code I have removed, so thought it to be appropriate to take care of it lest it be missed out.

/ @todo this might also need some vertical adjustment in case of a horizontal line
/ see below how this has been solved for linear graphs

Indeed, support for logarithmic axis type was required.
Now I think the code is robust and complete. Now I'll just wait for the final review from you :)

Apr 30 2020, 7:03 AM · KDiagram, KMyMoney
tbaumgart added a comment to D29255: Fix ordinate axis labels when zooming.

Still looks OK to me. Push it.

Apr 30 2020, 6:51 AM · KDiagram, KMyMoney

Apr 29 2020

rszczesiak updated the diff for D29255: Fix ordinate axis labels when zooming.

There is one thing I overlooked in my previous revision. I have just tested my changes against a new account with clear history (empty ledger). It leads to a horizontal-line chart that is drawn incorrectly if no custom grid extension is made. The conclusion is the original grid extension code is here to stay. I have just moved it from void KReportChartView::slotNeedUpdate() to the bottom of void KReportChartView::drawPivotChart( ... ) and I refactored a little bit. Sorry for messing around in this already accepted patch. The good thing is labels are now printed correctly even when one zooms a horizontal-line chart :)

Apr 29 2020, 10:41 PM · KDiagram, KMyMoney
rszczesiak added inline comments to D29255: Fix ordinate axis labels when zooming.
Apr 29 2020, 8:12 PM · KDiagram, KMyMoney
rszczesiak updated the diff for D29255: Fix ordinate axis labels when zooming.
Apr 29 2020, 8:04 PM · KDiagram, KMyMoney
rszczesiak updated the diff for D29255: Fix ordinate axis labels when zooming.

Thank you, @tbaumgart for your time spent reviewing my changes. I have amended my commit message with tag "BUG: 420767"

Apr 29 2020, 7:44 PM · KDiagram, KMyMoney
tbaumgart added a comment to D29255: Fix ordinate axis labels when zooming.

Do we have a bug entry for this one? If not, please create one and add

Apr 29 2020, 4:46 PM · KDiagram, KMyMoney
tbaumgart accepted D29255: Fix ordinate axis labels when zooming.

Looks good to me.

Apr 29 2020, 4:45 PM · KDiagram, KMyMoney

Apr 28 2020

rszczesiak updated the diff for D29255: Fix ordinate axis labels when zooming.

Uploaded a new diff patch after changes according to @tbaumgart's comments.

Apr 28 2020, 9:20 PM · KDiagram, KMyMoney
rszczesiak added inline comments to D29255: Fix ordinate axis labels when zooming.
Apr 28 2020, 9:18 PM · KDiagram, KMyMoney
tbaumgart requested changes to D29255: Fix ordinate axis labels when zooming.

This in general is a high quality patch. Thanks much. The changes I suggest are minor details.

Apr 28 2020, 6:48 PM · KDiagram, KMyMoney
rszczesiak updated the test plan for D29255: Fix ordinate axis labels when zooming.
Apr 28 2020, 2:09 PM · KDiagram, KMyMoney
rszczesiak updated the test plan for D29255: Fix ordinate axis labels when zooming.
Apr 28 2020, 1:51 PM · KDiagram, KMyMoney
rszczesiak added a watcher for KMyMoney: rszczesiak.
Apr 28 2020, 1:21 PM
rszczesiak requested review of D29255: Fix ordinate axis labels when zooming.
Apr 28 2020, 1:18 PM · KDiagram, KMyMoney

Mar 10 2020

tbaumgart added a comment to D27930: Bump aqbanking version to 6.1.2.

Extract from the jenkins log:

19:33:14  -- Downloading...
19:33:14     dst='/home/appimage//appimage-workspace//downloads/qt-everywhere-src-5.11.3.tar.xz'
19:33:14     timeout='none'
19:33:14  -- Using src='https://download.qt.io/archive/qt/5.11/5.11.3/single/qt-everywhere-src-5.11.3.tar.xz'
19:33:14  -- Retrying...
19:33:14  -- Using src='https://download.qt.io/archive/qt/5.11/5.11.3/single/qt-everywhere-src-5.11.3.tar.xz'
19:33:14  -- Retry after 5 seconds (attempt #2) ...
19:33:19  -- Using src='https://download.qt.io/archive/qt/5.11/5.11.3/single/qt-everywhere-src-5.11.3.tar.xz'
19:33:19  -- Retry after 5 seconds (attempt #3) ...
19:33:25  -- Using src='https://download.qt.io/archive/qt/5.11/5.11.3/single/qt-everywhere-src-5.11.3.tar.xz'
19:33:25  -- Retry after 15 seconds (attempt #4) ...
19:33:39  -- Using src='https://download.qt.io/archive/qt/5.11/5.11.3/single/qt-everywhere-src-5.11.3.tar.xz'
19:33:40  -- Retry after 60 seconds (attempt #5) ...
19:34:47  -- Using src='https://download.qt.io/archive/qt/5.11/5.11.3/single/qt-everywhere-src-5.11.3.tar.xz'
19:34:47  CMake Error at ext_qt-stamp/download-ext_qt.cmake:159 (message):
19:34:47    Each download failed!

Apparently caused by a TLS cipher negotiation problem.

Mar 10 2020, 6:19 AM · KMyMoney
mgehre added a comment to D27930: Bump aqbanking version to 6.1.2.

Any idea why the build failed https://binary-factory.kde.org/job/KMyMoney_Nightly_Appimage_Dependency_Build/51/ ?

Mar 10 2020, 12:10 AM · KMyMoney

Mar 8 2020

tbaumgart closed D27930: Bump aqbanking version to 6.1.2.
Mar 8 2020, 6:12 PM · KMyMoney
mgehre added a comment to D27930: Bump aqbanking version to 6.1.2.

I don't have write access. Would appreciate if you could do it!

Mar 8 2020, 6:00 PM · KMyMoney
tbaumgart accepted D27930: Bump aqbanking version to 6.1.2.

Please let me know, if you have write access to the repo. If not, I can take care of committing this change.

Mar 8 2020, 4:48 PM · KMyMoney
mgehre added a reviewer for D27930: Bump aqbanking version to 6.1.2: tbaumgart.
Mar 8 2020, 2:21 PM · KMyMoney
mgehre requested review of D27930: Bump aqbanking version to 6.1.2.
Mar 8 2020, 2:20 PM · KMyMoney

Feb 29 2020

jhayes removed a watcher for KMyMoney: jhayes.
Feb 29 2020, 1:13 PM

Feb 23 2020

Abella closed D27582: Documentation improves http: to https:, Review links and some menu items.
Feb 23 2020, 8:28 PM · Documentation, KMyMoney
tbaumgart added a comment to D27582: Documentation improves http: to https:, Review links and some menu items.

I can commit into master (whit 'arc land') but I don't know how to do it in 5.0

Feb 23 2020, 1:47 PM · Documentation, KMyMoney
Abella added a comment to D27582: Documentation improves http: to https:, Review links and some menu items.

I can commit into master (whit 'arc land') but I don't know how to do it in 5.0

Feb 23 2020, 1:26 PM · Documentation, KMyMoney
Abella added a comment to D27582: Documentation improves http: to https:, Review links and some menu items.

The kmymoney-devel@kde.org mailing list is an even better option for that purpose.

Feb 23 2020, 1:17 PM · Documentation, KMyMoney
tbaumgart added a comment to D27582: Documentation improves http: to https:, Review links and some menu items.

Next time I use kmymoney@kde.org mailing list. Chapter updates by KMyMoney team will be very welcome by Catalan team.

Feb 23 2020, 6:11 AM · Documentation, KMyMoney
ostroffjh added a comment to D27582: Documentation improves http: to https:, Review links and some menu items.

Thanks for your help - these are things I have obviously missed, and will help me in future updates.
This should be able to go into both master and 5.0 branch.

Feb 23 2020, 12:16 AM · Documentation, KMyMoney
Abella added a comment to D27582: Documentation improves http: to https:, Review links and some menu items.

Please note that the KMyMoney team (mainly myself) generally handles the doc editing for this application.

Feb 23 2020, 12:01 AM · Documentation, KMyMoney

Feb 22 2020

ostroffjh accepted D27582: Documentation improves http: to https:, Review links and some menu items.

Please note that the KMyMoney team (mainly myself) generally handles the doc editing for this application. However, all these changes look OK to me. Also note that about half the chapters have not yet been updated to reflect Version 5 of the program - there are two of slowly working our way through that backlog. In general, we do not post doc updates through Phabricator, although I'll be happy to do so in order to get a review for these types of changes.

Feb 22 2020, 7:23 PM · Documentation, KMyMoney
Abella added reviewers for D27582: Documentation improves http: to https:, Review links and some menu items: habacker, yurchor.
Feb 22 2020, 6:39 PM · Documentation, KMyMoney
Abella requested review of D27582: Documentation improves http: to https:, Review links and some menu items.
Feb 22 2020, 6:33 PM · Documentation, KMyMoney

Jan 30 2020

philhopkins closed T11777: add ability to set payee city and payee state as Resolved.

They are, this patch just provides the ability to save this data into the existing database using existing variables. This variables are the ones that are used in the print checks plugin.

Jan 30 2020, 5:23 PM · KMyMoney

Jan 20 2020

tbaumgart updated the task description for T12566: [Junior Job]: Show the latest version number of KMyMoney on the homepage.
Jan 20 2020, 6:56 PM · Junior Jobs, KMyMoney, Websites
tbaumgart updated the task description for T12566: [Junior Job]: Show the latest version number of KMyMoney on the homepage.
Jan 20 2020, 6:54 PM · Junior Jobs, KMyMoney, Websites
ognarb placed T12566: [Junior Job]: Show the latest version number of KMyMoney on the homepage up for grabs.
Jan 20 2020, 5:43 PM · Junior Jobs, KMyMoney, Websites
ognarb moved T12566: [Junior Job]: Show the latest version number of KMyMoney on the homepage from incoming to Junior Job on the Websites board.
Jan 20 2020, 3:56 PM · Junior Jobs, KMyMoney, Websites
ognarb updated the task description for T12566: [Junior Job]: Show the latest version number of KMyMoney on the homepage.
Jan 20 2020, 2:39 PM · Junior Jobs, KMyMoney, Websites
ognarb renamed T12566: [Junior Job]: Show the latest version number of KMyMoney on the homepage from [Junior Job]: Show that latest version of kmymoney on the homepage to [Junior Job]: Show the latest version number of KMyMoney on the homepage.
Jan 20 2020, 2:39 PM · Junior Jobs, KMyMoney, Websites
ognarb triaged T12566: [Junior Job]: Show the latest version number of KMyMoney on the homepage as Normal priority.
Jan 20 2020, 2:36 PM · Junior Jobs, KMyMoney, Websites
ognarb added a comment to T11403: Update kmymoney website.

Much better. Would it be worth the effort to add mention to the home page of the latest released version? If not on the Home page, at least on the Download page? I know I sometimes do go to an application's page just to confirm I'm actually on the latest released version. Right now, other than the News page, I don't see it anywhere within two or three clicks of the Home page.

Jan 20 2020, 2:29 PM · Junior Jobs, KMyMoney, Websites

Jan 19 2020

ostroffjh added a comment to T11403: Update kmymoney website.

Much better. Would it be worth the effort to add mention to the home page of the latest released version? If not on the Home page, at least on the Download page? I know I sometimes do go to an application's page just to confirm I'm actually on the latest released version. Right now, other than the News page, I don't see it anywhere within two or three clicks of the Home page.

Jan 19 2020, 5:28 PM · Junior Jobs, KMyMoney, Websites
ognarb added a comment to T11403: Update kmymoney website.

I just moved the news to /news and increased the list of news per page to 10

Jan 19 2020, 5:00 PM · Junior Jobs, KMyMoney, Websites
tbaumgart added a comment to T11403: Update kmymoney website.

Unfortunately, the number of items per page is fix for all pages in jekyll. Since the announcements on the first page are somewhat indistinguishable from the rest, how about having a News section between KMyMoney and Support in the top header. Creating a news subdir allows us to have another index.html (the pagination only works on index.html) but I have not tested that at all, just ideas

Jan 19 2020, 7:20 AM · Junior Jobs, KMyMoney, Websites

Jan 18 2020

ostroffjh added a comment to T11403: Update kmymoney website.

Yes, especially after the first page. Even the first page is larger than most screens, so putting 5 or even 10 items per page after the first seems OK. (It seems the announcements are clipped to at most a few lines, so they will never be very long.)

Jan 18 2020, 11:29 PM · Junior Jobs, KMyMoney, Websites
ognarb added a comment to T11403: Update kmymoney website.

I just pushed a fix :) Maybe we could also increase the number of announcements displayed per page?

Jan 18 2020, 10:57 PM · Junior Jobs, KMyMoney, Websites
ostroffjh added a comment to T11403: Update kmymoney website.

Thanks for all the work on this, but there are 12 pages, and the only thing that changes is Announcements, and even that took me a while to notice, since that section is not set off from the rest in any way. Also, the "Major Platform" icons are missing on all except the first page. The second is likely to be a bug somewhere. The first is more a style issue - so where is the best place to discuss how it "should" work, and what options there are.
Thanks.

Jan 18 2020, 10:51 PM · Junior Jobs, KMyMoney, Websites
ognarb closed T11403: Update kmymoney website as Resolved.

kmymoney.org now use the new design and is deployed 🎉 Many thanks to all the peoples who helped with the update.

Jan 18 2020, 10:20 PM · Junior Jobs, KMyMoney, Websites

Dec 28 2019

jhayes added a watcher for KMyMoney: jhayes.
Dec 28 2019, 3:16 AM

Dec 9 2019

tbaumgart added a comment to T11403: Update kmymoney website.

A nice blog-post about this task contains some guidance to setup the development environment in case that helps.

Dec 9 2019, 8:34 AM · Junior Jobs, KMyMoney, Websites

Dec 8 2019

ssharmaaditya added a comment to T11403: Update kmymoney website.

Hi @ognarb . I want to work on this website redesign during the season of KDE this time. Please guide me regarding this.

Dec 8 2019, 1:25 PM · Junior Jobs, KMyMoney, Websites

Nov 16 2019

ognarb added a comment to T11403: Update kmymoney website.

@adrianchavesfernandez Please request push access :) In the meantime Phabricator diff are also ok

Nov 16 2019, 4:51 PM · Junior Jobs, KMyMoney, Websites
adrianchavesfernandez added a comment to T11403: Update kmymoney website.

Should I request push access until we finish the migration, or should I use Phabricator differentials?

Nov 16 2019, 4:42 PM · Junior Jobs, KMyMoney, Websites