-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update README.md * Update README.md * revert version * revert comments * companyname * Update README.md * #114 Implemented CssUtil.GetDueClass & tests (#123) * #114 Implemented CssUtil.GetDueClass & tests * #114 Added semicolor to css rule * #114 Changed placement of css rule. * #114 removed dots from string result. * #114 PR review changes. * #115 Added call to GetDueClass method in monthly page. (#124) * add mockups for icons and colors * Adds font color to due period depending on severity. (#126) * Adds font color to due period depending on severity. * Returns text-end class for Index page. * Preserves newline in subscription description (#131) * Introduces subscription background color. (#135) * Adds background color to the database * Adds a control to select background color for a subscription * Updates tests to include background color * Updates migration scripts * Update subtrack.MAUI/Utilities/CssUtil.cs Co-authored-by: chrisK00 <[email protected]> * Minor updates * Update subtrack.MAUI/Pages/UpsertSubscription.razor Co-authored-by: chrisK00 <[email protected]> * Update subtrack.MAUI/Pages/UpsertSubscription.razor Co-authored-by: chrisK00 <[email protected]> * Update subtrack.MAUI/Pages/UpsertSubscription.razor Co-authored-by: chrisK00 <[email protected]> * Update subtrack.MAUI/Pages/UpsertSubscription.razor Co-authored-by: chrisK00 <[email protected]> * Minor adjustments --------- Co-authored-by: chrisK00 <[email protected]> * #128 make labels less visible (#136) * #128 make labels less visible * Update subtrack.MAUI/wwwroot/css/app.css Co-authored-by: chrisK00 <[email protected]> * Update subtrack.MAUI/Pages/SubscriptionDetails.razor Co-authored-by: chrisK00 <[email protected]> * Update subtrack.MAUI/Pages/SubscriptionDetails.razor Co-authored-by: chrisK00 <[email protected]> * Update subtrack.MAUI/Pages/SubscriptionDetails.razor Co-authored-by: chrisK00 <[email protected]> * Update subtrack.MAUI/Pages/SubscriptionDetails.razor Co-authored-by: chrisK00 <[email protected]> * Update subtrack.MAUI/Pages/SubscriptionDetails.razor Co-authored-by: chrisK00 <[email protected]> --------- Co-authored-by: chrisK00 <[email protected]> * #125 Added US Culture as a constant (#144) * #142 Fixed descriptions not displayed correctly. (#145) * update roadmap * make nav buttons larger and remove outline on back save and edit buttons (#143) * btn outline => btn filled * navbar simplification * resolve comments * format and remove non existing css class * remove default styling --------- Co-authored-by: ChrisK00 <[email protected]> Co-authored-by: chrisK00 <[email protected]> * Adds subscription icon and secondary color (#149) * Adds database columns for icon and secondary color * Adds controls for saving icon and secondary color for subscriptions * Use subscription icon and secondary colors in the UI * Updates migration scripts * Minor updates to UI * Minor UI updates * Updates subscription details title * Updates subscription details title * fix flaky test * Revert "fix flaky test" This reverts commit b3bb61d. * Feature/improve subscription card design poc (#150) * fix create sub bug. New style for cards. use dot instead of comma * fix overflow color picker input. fix currency on index showing on newline * fix flaky test * fix flaky test * roadmap * order by year (#154) * readme merge master * fix * return url on delete * Update README.md * Creates a settings page with controls for importing and exporting subscriptions (#157) * Implement exporting subscriptions (#158) * export subs * update roadmap * Update dotnet.yml * do not target IOS * Update dotnet.yml * global.json * more permissive .net 7 sdk * #147 Changed status bar color for android. (#159) * net 7 (#160) * Implement Importing subscriptions (#161) * added lastsubexporttime (#162) * roadmap --------- Co-authored-by: Konstantinos Grontis <[email protected]> Co-authored-by: denislavh <[email protected]> Co-authored-by: Ashwin Thyagarajan <[email protected]> Co-authored-by: Penguine-Os <[email protected]>
- Loading branch information
1 parent
a1a64dc
commit 756c171
Showing
26 changed files
with
413 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"sdk": { | ||
"version": "7.0.100", | ||
"rollForward": "latestMajor" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
115 changes: 115 additions & 0 deletions
115
subtrack.DAL/Migrations/20231211183205_LastSubscriptionExportTimeStamp.Designer.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
28 changes: 28 additions & 0 deletions
28
subtrack.DAL/Migrations/20231211183205_LastSubscriptionExportTimeStamp.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
using Microsoft.EntityFrameworkCore.Migrations; | ||
|
||
#nullable disable | ||
|
||
namespace subtrack.DAL.Migrations | ||
{ | ||
/// <inheritdoc /> | ||
public partial class LastSubscriptionExportTimeStamp : Migration | ||
{ | ||
/// <inheritdoc /> | ||
protected override void Up(MigrationBuilder migrationBuilder) | ||
{ | ||
migrationBuilder.InsertData( | ||
table: "Settings", | ||
columns: new[] { "Id", "Value", "settings_type" }, | ||
values: new object[] { "LastSubscriptionExportTimeStamp", null, "DateTimeSetting" }); | ||
} | ||
|
||
/// <inheritdoc /> | ||
protected override void Down(MigrationBuilder migrationBuilder) | ||
{ | ||
migrationBuilder.DeleteData( | ||
table: "Settings", | ||
keyColumn: "Id", | ||
keyValue: "LastSubscriptionExportTimeStamp"); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.